/* CRYPTIA — v4 Maximum */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --acc:   #6C47FF;
  --acc-l: #9278FF;
  --teal:  #0DBEAD;
  --gold:  #FFB800;
  --text:  #FFFFFF;
  --sub:   #B0AECB;
  --line:  rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', sans-serif;
  background: #000;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-optical-sizing: auto;
}
h1,h2,h3 { font-family: 'Bricolage Grotesque', sans-serif; font-optical-sizing: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 44px; }

/* ── CURSOR ── */
@media (hover:hover) and (pointer:fine) { body,a,button,select,input,textarea { cursor: none; } }
.c-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(108,71,255,0.6);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, border-color .2s, opacity .2s;
  mix-blend-mode: difference;
  display: none;
}
.c-ring.big { width: 60px; height: 60px; border-color: rgba(108,71,255,0.25); }
.c-dot {
  width: 4px; height: 4px; background: var(--acc);
  border-radius: 50%; position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); display: none;
}
@media (hover:hover) and (pointer:fine) { .c-ring,.c-dot { display: block; } }

/* ── PROGRESS BAR ── */
.progress-bar { position: fixed; top: 0; left: 0; height: 1px; width: 0%; background: linear-gradient(90deg, var(--acc), var(--teal)); z-index: 201; pointer-events: none; }

/* ── GRAIN ── */
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 9998; opacity: 0.022; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 256px; }

/* ══════════ NAV ══════════ */
#navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: all .4s; }
#navbar.scrolled { background: rgba(0,0,0,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 22px 44px; display: flex; align-items: center; }
.logo { display: flex; align-items: center; text-decoration: none; color: #fff; flex-shrink: 0; }
.logo img { height: 22px; width: auto; }
.logo-text { font-family: 'Orbitron', sans-serif; font-size: 0.9rem; font-weight: 400; letter-spacing: .25em; color: #fff; }
.nav-links { display: flex; gap: 4px; margin: 0 auto; }
.nav-links a {
  color: rgba(255,255,255,.55); text-decoration: none; font-size: .82rem;
  padding: 7px 14px; border-radius: 6px; transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 3px; left: 14px; right: 14px;
  height: 1px; background: var(--acc);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.nav-links a:hover, .nav-links a.act { color: #fff; }
.nav-links a:hover::after, .nav-links a.act::after { transform: scaleX(1); }
.nav-cta { font-size: .82rem; color: #fff; text-decoration: none; background: var(--acc); border: 1px solid var(--acc); padding: 9px 22px; border-radius: 50px; transition: all .25s; flex-shrink: 0; font-weight: 500; }
.nav-cta:hover { background: var(--acc-l); border-color: var(--acc-l); transform: translateY(-1px); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; margin-left: auto; }
.burger span { display: block; width: 20px; height: 1px; background: #fff; transition: all .3s; }
.mobile-menu { display: none; flex-direction: column; padding: 16px 44px 24px; border-top: 1px solid var(--line); background: rgba(0,0,0,0.97); backdrop-filter: blur(20px); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--sub); text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.mobile-cta { margin-top: 14px; color: #fff !important; border: 1px solid var(--line); padding: 12px 20px !important; border-radius: 50px; text-align: center; border-bottom: 1px solid var(--line) !important; }

/* ══════════ HERO ══════════ */
#hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; background: #000; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at 62% 50%, transparent 22%, rgba(0,0,0,.65) 100%),
              linear-gradient(to bottom, rgba(0,0,0,.3) 0%, transparent 22%, transparent 52%, rgba(0,0,0,1) 100%);
}
.hero-content {
  position: relative; z-index: 2; flex: 1;
  max-width: 58%; width: 100%; margin: 0; padding: 160px 44px 80px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-tag {
  display: flex; align-items: center; gap: 9px;
  font-size: .73rem; color: var(--sub);
  letter-spacing: .05em; margin-bottom: 44px;
  opacity: 0; transform: translateY(12px);
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #10B981; animation: pulse 2.4s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(16,185,129,.5)} 50%{box-shadow:0 0 0 5px rgba(16,185,129,0)} }

.hero-h1 {
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 800; line-height: .86;
  letter-spacing: -.06em; margin-bottom: 72px;
  font-optical-sizing: auto;
}
.line-wrap { display: block; overflow: hidden; }
.line-inner { display: block; transform: translateY(110%); }

/* Size contrast between lines */
.h-sub  {
  font-size: .5em;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: .03em;
  -webkit-text-fill-color: rgba(255,255,255,.65);
  background: none;
}
.h-main { font-size: 1.25em; }
.h-le   {
  font-size: .3em; font-weight: 300;
  -webkit-text-fill-color: rgba(255,255,255,.25);
  vertical-align: .15em;
  letter-spacing: .02em;
}

.hero-h1 em {
  font-style: normal;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.65);
  background: none;
  filter: drop-shadow(0 0 55px rgba(108,71,255,1)) drop-shadow(0 0 120px rgba(13,190,173,0.45)) drop-shadow(0 0 6px rgba(255,255,255,0.15));
}

.hero-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; opacity: 0; transform: translateY(20px); }
.hero-sub { color: var(--sub); font-size: .93rem; line-height: 1.85; font-weight: 300; }
.hero-sub strong { color: rgba(255,255,255,.85); font-weight: 500; }
.hero-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.hero-link {
  display: flex; align-items: center; gap: 10px;
  color: var(--sub); text-decoration: none; font-size: .86rem; font-weight: 300;
  transition: color .25s; position: relative; padding-bottom: 3px;
}
.hero-link::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.hero-link:hover { color: #fff; }
.hero-link:hover::after { transform: scaleX(1); }
.arrow { color: var(--acc); transition: transform .25s; }
.hero-link:hover .arrow { transform: translate(3px,-3px); }

/* Marquee */
.marquee-bar { position: relative; z-index: 2; border-top: 1px solid rgba(108,71,255,.2); border-bottom: 1px solid rgba(108,71,255,.2); padding: 15px 0; overflow: hidden; opacity: 0; background: rgba(108,71,255,.03); }
.marquee-inner { display: flex; align-items: center; gap: 28px; white-space: nowrap; animation: ticker 32s linear infinite; width: max-content; }
.marquee-inner span { font-size: .65rem; font-weight: 500; color: rgba(255,255,255,.75); letter-spacing: .15em; text-transform: uppercase; }
.marquee-inner .sep { color: var(--acc); opacity: .8; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-bar:hover .marquee-inner { animation-play-state: paused; }

/* ══════════ SECTIONS ══════════ */
.sect { padding: 80px 0; border-top: 1px solid var(--line); }
.sect-head { display: flex; align-items: center; gap: 16px; margin-bottom: 64px; }
.sect-num { font-family: 'Orbitron', sans-serif; font-size: .7rem; font-weight: 400; color: var(--acc); letter-spacing: .16em; }
.sect-label { font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: .18em; text-transform: uppercase; }
.sect-line { flex: 1; height: 1px; background: var(--line); transform: scaleX(0); transform-origin: left; transition: transform 1.2s cubic-bezier(.16,1,.3,1); }
.sect-line.in { transform: scaleX(1); }

/* ══════════ ABOUT ══════════ */
.pull-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.4rem, 6vw, 8rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -.055em;
  margin: 0 0 68px;
  border: none; padding: 68px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-style: normal; font-optical-sizing: auto;
  text-align: center;
  position: relative;
}
.pull-quote::before {
  font-size: clamp(10rem, 22vw, 28rem);
  color: var(--acc);
  opacity: 0.04;
  position: absolute;
  top: -.15em; left: -.02em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 64px; padding-top: 44px; border-top: 1px solid var(--line); }
.about-grid p { color: var(--sub); font-size: .93rem; line-height: 1.9; font-weight: 300; }
.about-grid p strong { color: rgba(255,255,255,.7); font-weight: 400; }

/* ══════════ ABOUT ══════════ */
.about-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 9rem);
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 56px;
  color: rgba(255,255,255,.82);
}
.about-headline em {
  font-style: italic;
  background: linear-gradient(130deg, var(--acc-l), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 52px;
}
.about-identity {
  position: sticky; top: 110px;
  display: flex; flex-direction: column; gap: 16px;
}
.abt-card {
  border: 1px solid rgba(108,71,255,.3);
  border-top: 2px solid var(--acc);
  padding: 32px 28px;
  background: #050510;
  position: relative; overflow: hidden;
}
.abt-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(108,71,255,.12) 0%, transparent 65%);
  pointer-events: none;
}
.abt-initials {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 5rem; font-weight: 300;
  line-height: 1; color: rgba(108,71,255,.25);
  letter-spacing: -.03em; margin-bottom: 20px;
}
.abt-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: #fff; letter-spacing: -.03em; margin-bottom: 4px;
}
.abt-role {
  font-family: 'Orbitron', sans-serif;
  font-size: .55rem; color: var(--acc-l);
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 20px;
}
.abt-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.abt-tags span {
  font-size: .6rem; color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  padding: 4px 11px; border-radius: 20px; letter-spacing: .04em;
}
.abt-pillars {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.abt-pillar {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.abt-pillar:last-child { border-bottom: none; }
.abt-pillar:hover { background: rgba(108,71,255,.04); }
.abt-pillar-num {
  font-family: 'Orbitron', sans-serif;
  font-size: .55rem; color: var(--acc);
  letter-spacing: .12em; flex-shrink: 0; opacity: .7;
}
.abt-pillar-text {
  font-size: .8rem; color: rgba(255,255,255,.65);
  font-weight: 300; line-height: 1.5;
}
.cred-list { display: flex; flex-direction: column; }
.cred-item {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 24px; padding: 22px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding-left .3s cubic-bezier(.16,1,.3,1);
}
.cred-item:first-child { border-top: 1px solid var(--line); }
.cred-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, var(--acc), transparent);
  transform: scaleY(0); transform-origin: center;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.cred-item:hover { padding-left: 14px; }
.cred-item:hover::before { transform: scaleY(1); }
.cred-num {
  font-family: 'Orbitron', sans-serif;
  font-size: .65rem; color: var(--acc);
  letter-spacing: .1em; padding-top: 4px; opacity: .5;
  transition: opacity .25s;
}
.cred-item:hover .cred-num { opacity: 1; }
.cred-body { display: flex; flex-direction: column; gap: 5px; }
.cred-body strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 700; color: #fff; letter-spacing: -.02em;
  font-optical-sizing: auto;
}
.cred-body span { color: rgba(255,255,255,.45); font-size: .82rem; line-height: 1.65; font-weight: 300; }

/* Stats — monumentales */
.stats-row { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-top: 60px; }
.stat {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateX(-20px);
  transition: padding-left .35s cubic-bezier(.16,1,.3,1);
  gap: 20px;
}
.stat strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.5rem, 11vw, 15rem);
  font-weight: 800; color: #fff; line-height: .88;
  letter-spacing: -.06em; font-optical-sizing: auto;
  flex-shrink: 0;
}
.stat span {
  color: rgba(255,255,255,.45); font-size: .66rem;
  letter-spacing: .14em; text-transform: uppercase;
  font-weight: 400; text-align: right;
  max-width: 180px; line-height: 1.6; flex-shrink: 0;
}
.stat-sep { display: none; }

/* ══════════ OFFERINGS ══════════ */
.offers-wrap { display: grid; grid-template-columns: 1fr 1px 1fr; border-top: 1px solid var(--line); }
.offer-divider { background: var(--line); }
.offer { padding: 52px 52px 52px 0; }
.offer:last-child { padding: 52px 0 52px 52px; }
.offer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.offer-h2 { font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 800; line-height: 1.02; letter-spacing: -.04em; font-optical-sizing: auto; }
.offer-hero-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.offer-hero-left { flex: 1; }
.offer-hero-right {
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
  flex-shrink: 0;
}
.offer-price-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.2rem; font-weight: 800;
  color: #fff; letter-spacing: -.05em; line-height: 1;
}
.offer-price-num span { font-size: 1.4rem; font-weight: 300; color: rgba(255,255,255,.45); margin-left: 2px; }
.price-tag { display: none; }
.pay-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--acc); color: #fff; font-weight: 700;
  font-size: .86rem; letter-spacing: .01em;
  padding: 12px 0; border-radius: 5px;
  text-decoration: none; transition: all .25s;
  width: 100%;
}
.pay-btn:hover { background: var(--acc-l); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(108,71,255,.4); }
.pay-arrow { font-size: .95rem; transition: transform .2s; }
.pay-btn:hover .pay-arrow { transform: translate(2px,-2px); }
.pay-note { font-size: .65rem; color: rgba(255,255,255,.28); text-align: center; font-weight: 300; line-height: 1.5; }
.teal-price { color: var(--teal); border-color: rgba(13,190,173,.25); background: rgba(13,190,173,.04); }
.teal-tag { font-family: 'Orbitron', sans-serif; font-size: .68rem; font-weight: 400; color: var(--teal); border: 1px solid rgba(13,190,173,.2); padding: 6px 14px; border-radius: 3px; flex-shrink: 0; margin-top: 6px; letter-spacing: .08em; text-transform: uppercase; }
.offer-p { color: var(--sub); font-size: .88rem; line-height: 1.82; font-weight: 300; margin-bottom: 32px; }
.offer-list { list-style: none; display: flex; flex-direction: column; margin-bottom: 36px; }
.offer-list li { display: flex; gap: 16px; align-items: baseline; color: rgba(255,255,255,.68); font-size: .84rem; line-height: 1.6; padding: 12px 0; border-bottom: 1px solid var(--line); transition: color .2s, padding-left .2s; }
.offer-list li:first-child { border-top: 1px solid var(--line); }
.offer-list li:hover { color: #fff; padding-left: 8px; }
.offer-list li > span { font-family: 'Orbitron', sans-serif; font-size: .58rem; color: var(--acc); flex-shrink: 0; letter-spacing: .1em; margin-top: 3px; }
.arrow-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--sub); font-size: .84rem; font-weight: 300; text-decoration: none; transition: color .25s, gap .25s; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 4px; }
.arrow-cta:hover { color: #fff; gap: 14px; border-bottom-color: rgba(255,255,255,.3); }
.arrow-cta span { color: var(--acc); transition: transform .25s; }
.arrow-cta:hover span { transform: translate(3px,-3px); }

/* ══════════ OFFER SOLO (single formation card) ══════════ */
.offer-solo {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}
.offer-solo-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px; gap: 24px;
}
.offer-h2 { font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 800; line-height: 1.02; letter-spacing: -.04em; font-optical-sizing: auto; }
.offer-sub { color: var(--sub); font-size: .82rem; margin-top: 8px; font-weight: 300; letter-spacing: .02em; }
.offer-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin: 24px 0 36px;
}
.offer-col-title {
  font-family: 'Orbitron', sans-serif; font-size: .6rem; font-weight: 400;
  color: rgba(255,255,255,.35); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px;
}
.offer-solo-foot { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; padding-top: 48px; border-top: 1px solid var(--line); margin-top: 48px; }
.btn-pay-large {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--acc); color: #fff;
  font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  padding: 16px 36px; border-radius: 6px;
  text-decoration: none; transition: all .28s;
  flex-shrink: 0;
}
.btn-pay-large span { font-size: 1.1rem; transition: transform .2s; }
.btn-pay-large:hover { background: var(--acc-l); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(108,71,255,.35); }
.btn-pay-large:hover span { transform: translate(2px,-2px); }
.foot-secondary { display: flex; flex-direction: column; gap: 10px; }

/* ══════════ OFFER H2 EM ══════════ */
.offer-h2-em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: .82em; letter-spacing: .01em;
  background: linear-gradient(130deg, var(--acc-l), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; margin-top: 6px;
}

/* ══════════ ADVANTAGE LIST ══════════ */
.adv-list { margin: 0; }
.adv-item {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 28px; align-items: start;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  transition: background .18s;
}
.adv-item:first-child { border-top: 1px solid var(--line); margin-top: 24px; }
.adv-item:hover { background: rgba(255,255,255,.015); }
.adv-num {
  font-family: 'Orbitron', sans-serif; font-size: .65rem;
  color: var(--acc); letter-spacing: .12em; font-weight: 400;
  padding-top: 4px;
}
.adv-mid strong {
  display: block; font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 6px; letter-spacing: -.01em;
}
.adv-mid p {
  font-size: .88rem; color: rgba(255,255,255,.6);
  line-height: 1.75; font-weight: 300; margin: 0;
}

/* ══════════ COMPARE TABLE ══════════ */
.offer-compare { padding: 48px 0 20px; border-top: 1px solid var(--line); }
.cmp-table {
  width: 100%; border-collapse: collapse; margin-top: 24px;
  font-size: .9rem;
}
.cmp-table th, .cmp-table td {
  padding: 18px 24px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.cmp-table th:nth-child(2), .cmp-table td:nth-child(2) {
  background: rgba(13,190,173,.06);
  border-left: 1px solid rgba(13,190,173,.2);
  border-right: 1px solid rgba(13,190,173,.2);
}
.cmp-table th {
  font-family: 'Orbitron', sans-serif; font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5); font-weight: 400;
}
.cmp-table td:first-child { color: rgba(255,255,255,.72); font-weight: 400; font-size: .88rem; }
.cmp-cryptia { color: var(--teal) !important; font-weight: 700 !important; letter-spacing: .08em !important; }
.cmp-other { color: rgba(255,255,255,.4) !important; }
.cmp-yes { color: var(--teal); font-weight: 700; font-size: .95rem; }
.cmp-yes span { font-weight: 300; color: rgba(255,255,255,.5); font-size: .82rem; margin-left: 4px; }
.cmp-no { color: rgba(255,255,255,.35); font-size: .95rem; }
.cmp-no span { font-size: .82rem; color: rgba(255,255,255,.35); margin-left: 4px; }
.cmp-table tbody tr:hover td { background: rgba(255,255,255,.025); }
.cmp-table tbody tr:hover td:nth-child(2) { background: rgba(13,190,173,.1); }

/* ══════════ WHY ══════════ */
.why-title { font-size: clamp(2.8rem, 6.5vw, 9rem); font-weight: 800; line-height: .95; letter-spacing: -.06em; margin-bottom: 28px; font-optical-sizing: auto; }
.why-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: 1.08em; letter-spacing: -.01em;
  background: linear-gradient(130deg, var(--acc-l), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.why-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 52px; padding-top: 44px; border-top: 1px solid var(--line); }
.why-text { color: var(--sub); font-size: .93rem; line-height: 1.9; font-weight: 300; }
.why-text strong { color: rgba(255,255,255,.8); font-weight: 500; }
/* Editorial full-width numbers */
.why-nums { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.why-num {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  gap: 24px; opacity: 0; transform: translateY(24px);
}
.why-num strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(3.5rem, 12vw, 16rem);
  font-weight: 800; color: #fff;
  letter-spacing: -.07em; line-height: .85;
  font-optical-sizing: auto; flex-shrink: 0;
}
.why-num:hover strong {
  background: linear-gradient(130deg, var(--acc-l), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: all .3s;
}
.why-num span { color: rgba(255,255,255,.48); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; text-align: right; max-width: 160px; line-height: 1.6; }

/* ══════════ PROCESS ══════════ */
.process-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.8vw, 4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.04em; margin-bottom: 56px;
  font-optical-sizing: auto;
}
.process-h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: 1.08em; letter-spacing: -.01em;
  background: linear-gradient(130deg, var(--acc-l), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.process-steps { display: flex; flex-direction: column; border-top: 1px solid var(--line); }

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .3s cubic-bezier(.16,1,.3,1);
  position: relative;
}
.process-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--acc), transparent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.16,1,.3,1);
}
.process-item:hover { padding-left: 20px; }
.process-item:hover::before { transform: scaleY(1); }

.pi-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--acc);
  letter-spacing: -.02em;
  padding-top: 4px;
  opacity: .5;
  transition: opacity .25s;
}
.process-item:hover .pi-num { opacity: 1; }

.pi-tag {
  font-family: 'Orbitron', sans-serif;
  font-size: .6rem;
  font-weight: 400;
  color: rgba(255,255,255,.35);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.pi-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -.025em;
  margin-bottom: 14px;
  line-height: 1.15;
  font-optical-sizing: auto;
}
.pi-body p {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.85;
  font-weight: 300;
  max-width: 680px;
}

/* ══════════ TESTIMONIALS ══════════ */
.testi-list { display: flex; flex-direction: column; }
.ti { padding: 34px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; transition: padding-left .3s; }
.ti:first-child { border-top: 1px solid var(--line); }
.ti:hover { padding-left: 14px; }
.ti p { color: rgba(255,255,255,.7); font-size: .93rem; line-height: 1.82; font-weight: 300; font-style: italic; transition: color .25s; }
.ti:hover p { color: rgba(255,255,255,.9); }
.ti cite { color: rgba(255,255,255,.45); font-size: .72rem; font-style: normal; letter-spacing: .04em; white-space: nowrap; }

/* ══════════ FAQ ══════════ */
.faq-wrap { display: grid; grid-template-columns: 300px 1fr; gap: 80px; }
.faq-left { position: sticky; top: 100px; }
.faq-left .sect-head { margin-bottom: 28px; }
.faq-left h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 800;
  line-height: 1.05; letter-spacing: -.04em; margin-bottom: 14px; font-optical-sizing: auto;
}
.faq-left h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400; font-size: 1.06em;
  background: linear-gradient(130deg, var(--acc-l), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.faq-left p { color: var(--sub); font-size: .86rem; line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.faq-list { display: flex; flex-direction: column; }
.fi { border-bottom: 1px solid var(--line); }
.fi:first-child { border-top: 1px solid var(--line); }
.fi.open { border-bottom-color: rgba(108,71,255,.25); border-left: 2px solid var(--acc); padding-left: 16px; }
.fq { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; background: none; border: none; color: rgba(255,255,255,.72); font-family: 'Instrument Sans', sans-serif; font-size: .88rem; font-weight: 400; text-align: left; transition: color .2s; }
.fq:hover, .fi.open .fq { color: #fff; }
.fi-icon { font-size: 1.1rem; color: rgba(255,255,255,.45); transition: transform .3s, color .2s; flex-shrink: 0; font-weight: 300; }
.fi.open .fi-icon { transform: rotate(45deg); color: var(--acc-l); }
.fa { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.fi.open .fa { max-height: 200px; }
.fa p { padding: 0 0 20px; color: rgba(255,255,255,.65); font-size: .86rem; line-height: 1.85; font-weight: 300; }

/* ══════════ CTA ══════════ */
.cta-sect { position: relative; overflow: hidden; }
.cta-glow { position: absolute; width: 800px; height: 800px; background: radial-gradient(circle, rgba(108,71,255,.1) 0%, transparent 65%); top: -200px; right: -200px; pointer-events: none; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; }
.cta-left .sect-head { margin-bottom: 28px; }
.cta-title { font-size: clamp(2.8rem, 5.5vw, 5.5rem); font-weight: 800; line-height: 1.02; letter-spacing: -.05em; margin-bottom: 18px; font-optical-sizing: auto; }
.cta-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: 1.08em; letter-spacing: -.01em;
  background: linear-gradient(130deg, var(--acc-l), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cta-left p { color: var(--sub); font-size: .9rem; line-height: 1.8; font-weight: 300; margin-bottom: 24px; }
.trust { display: flex; flex-direction: column; gap: 7px; }
.trust span { color: rgba(255,255,255,.55); font-size: .74rem; letter-spacing: .06em; }

/* Form */
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label { font-size: .68rem; font-weight: 500; color: rgba(255,255,255,.55); letter-spacing: .14em; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg input,.fg select,.fg textarea { background: transparent; border: none; border-bottom: 1px solid var(--line); padding: 12px 0; color: #fff; font-family: 'Instrument Sans', sans-serif; font-size: .9rem; font-weight: 300; outline: none; transition: border-color .2s; width: 100%; resize: none; -webkit-appearance: none; appearance: none; }
.fg input::placeholder,.fg textarea::placeholder { color: rgba(255,255,255,.3); }
.fg input:focus,.fg select:focus,.fg textarea:focus { border-color: var(--acc); }
.fg select option { background: #111; color: #fff; }
.btn-send { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--acc); color: #fff; padding: 18px; border-radius: 4px; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: .95rem; border: none; transition: all .3s cubic-bezier(.16,1,.3,1); box-shadow: 0 0 40px rgba(108,71,255,.3), 0 4px 24px rgba(108,71,255,.2); margin-top: 10px; letter-spacing: .02em; font-optical-sizing: auto; }
.btn-send:hover { background: var(--acc-l); transform: translateY(-3px); box-shadow: 0 16px 64px rgba(108,71,255,.5), 0 0 60px rgba(108,71,255,.2); }
.btn-send svg { width: 16px; height: 16px; }
.form-legal { text-align: center; color: rgba(255,255,255,.35); font-size: .68rem; margin-top: 14px; letter-spacing: .08em; }

/* ══════════ MODAL ══════════ */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(0,0,0,.88); backdrop-filter: blur(16px); }
.modal.show { display: flex; }
.modal-box { background: #0a0a0a; border: 1px solid var(--line); padding: 48px 40px; max-width: 360px; width: 90%; text-align: center; }
.modal-ok { width: 44px; height: 44px; border-radius: 50%; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.2); color: #10B981; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.modal-box h3 { font-size: 1.2rem; margin-bottom: 10px; }
.modal-box p { color: var(--sub); font-size: .86rem; line-height: 1.7; margin-bottom: 22px; font-weight: 300; }

/* ══════════ FOOTER ══════════ */
.footer { border-top: 1px solid var(--line); padding: 52px 0 28px; }
.footer-top { display: grid; grid-template-columns: auto 1fr; gap: 80px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); align-items: start; }
.f-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.f-cols > div { display: flex; flex-direction: column; gap: 10px; }
.f-cols strong { font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 4px; }
.f-cols a { color: rgba(255,255,255,.45); text-decoration: none; font-size: .82rem; font-weight: 300; transition: color .2s; }
.f-cols a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .72rem; letter-spacing: .06em; }
.f-socials { display: flex; gap: 10px; }
.f-socials a { width: 30px; height: 30px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2); transition: all .2s; }
.f-socials a svg { width: 13px; height: 13px; }
.f-socials a:hover { color: var(--acc-l); border-color: rgba(108,71,255,.3); }

/* ══════════ GSAP INITIAL STATES ══════════ */
.gsap-up { opacity: 0; transform: translateY(28px); }
.hero-tag, .hero-foot { opacity: 0; }
.line-inner { transform: translateY(110%); }
.marquee-bar { opacity: 0; }
.pull-quote { clip-path: inset(0 100% 0 0); }
.offer-list li { opacity: 0; transform: translateY(14px); }

/* ══ SCANLINES ══ */
#hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, rgba(0,0,0,0.055) 3px, rgba(0,0,0,0.055) 4px);
}

/* ══ STAT hover gradient ══ */
.stat:hover strong {
  background: linear-gradient(130deg, var(--acc-l), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  transition: all 0.3s;
}

/* ══ IMPACT STRIP ══ */
.impact-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: transparent;
}
.impact-inner {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap;
  animation: impactRun 22s linear infinite;
  width: max-content;
}
.impact-inner span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 4rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.14);
  letter-spacing: -.02em;
  font-optical-sizing: auto;
}
.impact-inner .isp {
  color: var(--acc); -webkit-text-stroke: 0;
  opacity: .7; font-size: 1.4rem; line-height: 1;
}
.impact-strip:hover .impact-inner { animation-play-state: paused; }
@keyframes impactRun { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══ PACKAGE OFFER ══ */
.package-offer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; padding: 44px 52px;
  border: 1px solid transparent;
  background-image: linear-gradient(#080808, #080808), linear-gradient(130deg, rgba(108,71,255,.5) 0%, rgba(13,190,173,.3) 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  margin-top: 20px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 80px rgba(108,71,255,.06), 0 0 0 1px rgba(108,71,255,.08) inset;
}
.package-offer::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(108,71,255,0.06) 0%, rgba(13,190,173,0.03) 100%);
  pointer-events: none;
}
.package-label {
  font-family: 'Orbitron', sans-serif; font-size: .62rem;
  font-weight: 400; color: var(--acc-l);
  letter-spacing: .14em; text-transform: uppercase;
  display: block; margin-bottom: 10px;
}
.package-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.035em; margin-bottom: 12px;
  font-optical-sizing: auto;
}
.package-left p { color: var(--sub); font-size: .87rem; line-height: 1.75; font-weight: 300; max-width: 420px; }
.package-left p em { font-style: italic; color: rgba(255,255,255,.65); }
.package-right { display: flex; flex-direction: column; align-items: flex-end; gap: 18px; flex-shrink: 0; }
.package-price { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.pkg-old { font-family: 'Orbitron', sans-serif; font-size: .72rem; color: var(--sub); text-decoration: line-through; letter-spacing: .06em; }
.package-price strong { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 800; color: #fff; letter-spacing: -.04em; line-height: 1; font-optical-sizing: auto; }
.pkg-save { font-size: .68rem; color: var(--teal); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }

@media (max-width: 768px) {
  .package-offer { flex-direction: column; align-items: flex-start; gap: 28px; padding: 28px 20px; }
  .package-right { align-items: flex-start; width: 100%; }
  .package-price { align-items: flex-start; }
}

/* ══ POUR QUI ══ */
.pourqui-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
  margin-top: 56px;
}
.pq-card {
  padding: 36px 32px;
  background: #000;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.pq-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(108,71,255,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.pq-card:hover { background: #080808; }
.pq-card:hover::before { opacity: 1; }
.pq-icon {
  font-size: 1.4rem; color: var(--acc);
  opacity: .7; line-height: 1;
  font-family: 'Orbitron', sans-serif;
}
.pq-card strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; letter-spacing: -.02em;
}
.pq-card p {
  font-size: .82rem; color: rgba(255,255,255,.5);
  line-height: 1.75; font-weight: 300;
}

/* ══ TESTIMONIALS ══ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.testi-card {
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  transition: border-color .3s;
}
.testi-card:hover { border-color: rgba(108,71,255,.3); }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; line-height: .7;
  color: var(--acc); opacity: .4;
  font-style: italic;
}
.testi-card p {
  font-size: .86rem; color: rgba(255,255,255,.6);
  line-height: 1.85; font-weight: 300; font-style: italic;
  flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px; border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--acc), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 700; color: #fff;
  flex-shrink: 0; letter-spacing: .05em;
}
.testi-author strong { font-size: .86rem; color: #fff; font-weight: 600; display: block; }
.testi-author span { font-size: .72rem; color: rgba(255,255,255,.4); font-weight: 300; }

@media (max-width: 1024px) {
  .pourqui-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .pourqui-grid { grid-template-columns: 1fr; }
  .pq-card { padding: 24px 20px; }
  .testi-card { padding: 24px 20px; }
}

/* ══ SPOTLIGHT ══ */
#spotlight {
  position: fixed;
  width: 650px; height: 650px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(108,71,255,0.04) 0%, transparent 68%);
  will-change: left, top;
}

/* ══ ROBOT 3D ══ */
.hero-robot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(340px, 42vw, 620px);
  height: clamp(420px, 60vh, 720px);
  z-index: 1;
  pointer-events: none;
}
.hero-robot spline-viewer {
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.hero-robot spline-viewer::part(logo),
.hero-robot spline-viewer::part(watermark) { display: none !important; }
#hero [class*="spline-watermark"],
#hero a[href*="spline"] { display: none !important; }
.hero-robot::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 180px; height: 48px;
  background: #000;
  z-index: 10;
  pointer-events: none;
}
@media (max-width:1024px) {
  .hero-robot {
    width: clamp(260px, 38vw, 420px);
    height: clamp(320px, 46vh, 520px);
    opacity: 0.7;
  }
}
@media (max-width:768px) { .hero-robot { display: none; } }

/* ══ OFFER FORMAT PILLS ══ */
.offer-format { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.fmt-pill {
  font-family: 'Orbitron', sans-serif;
  font-size: .62rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 12px; border: 1px solid rgba(108,71,255,.35); border-radius: 20px;
  color: rgba(108,71,255,.9); background: rgba(108,71,255,.07);
}

/* ══ PROGRAMME ══ */
.prog-head-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 48px; margin-bottom: 0;
}
.prog-pay-block {
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
  flex-shrink: 0; padding-top: 8px;
}
.prog-intro {
  font-family: 'Orbitron', sans-serif; font-size: .65rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 48px;
}
.prog-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-left: 1px solid var(--line);
}
.prog-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  padding: 36px 40px 36px 0; border-bottom: 1px solid var(--line);
  margin-left: -1px;
}
.prog-item:nth-child(even) { border-left: 1px solid var(--line); padding-left: 40px; }
.prog-num {
  font-family: 'Orbitron', sans-serif; font-size: .75rem; font-weight: 400;
  color: var(--acc); letter-spacing: .1em; padding-top: 4px;
}
.prog-body h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.prog-body p { font-size: .82rem; line-height: 1.75; color: var(--sub); }
.prog-footer { margin-top: 56px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px; padding-top: 40px; border-top: 1px solid var(--line); }
.prog-meta { display: flex; flex-direction: column; gap: 8px; }
.prog-meta span { font-size: .8rem; color: rgba(255,255,255,.45); padding-left: 16px; position: relative; }
.prog-meta span::before { content: '✓'; position: absolute; left: 0; color: var(--teal); }
@media (max-width: 768px) {
  .prog-grid { grid-template-columns: 1fr; }
  .prog-item { padding: 28px 0; }
  .prog-item:nth-child(even) { border-left: none; padding-left: 0; }
}

/* ══ PULL-QUOTE ══ */
.pull-quote::before {
  content: '"';
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(5rem, 9vw, 11rem);
  color: var(--acc);
  opacity: 0.2;
  line-height: .7;
  display: block;
  margin-bottom: 16px;
  font-weight: 800;
}

/* ══════════════════════════════════════
   RESPONSIVE — Complet
══════════════════════════════════════ */

/* ── 1280px — ajustements légers ── */
@media (max-width: 1280px) {
  .hero-h1 { font-size: clamp(5rem, 13vw, 12rem); }
  .offer-h2 { font-size: clamp(1.6rem, 2.2vw, 2.2rem); }
}

/* ── 1024px — tablette paysage ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 20px 32px; }
  .why-intro { grid-template-columns: 1fr; gap: 20px; }

  /* Hero */
  .hero-content { padding: 140px 32px 68px; max-width: 62%; }
  .hero-foot    { grid-template-columns: 1fr; gap: 28px; }
  .hero-links   { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 16px; }

  /* About */
  .about-layout { grid-template-columns: 240px 1fr; gap: 40px; }
  .about-headline { font-size: clamp(2.8rem, 5vw, 5rem); margin-bottom: 40px; }

  /* Offerings */
  .offer-cols { grid-template-columns: 1fr; gap: 0; }
  .offer-cols > div:first-child { border-bottom: 1px solid var(--line); margin-bottom: 28px; padding-bottom: 28px; }

  /* Why */
  .why-nums { grid-template-columns: 1fr 1fr; }
  .why-num:nth-child(2) { border-right: none; }
  .why-num:last-child   { grid-column: span 2; border-right: none; border-top: 1px solid var(--line); }

  /* Process */
  .process-item { padding: 36px 0; }
  .process-item:hover { padding-left: 10px; }

  /* FAQ */
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; }

  /* CTA */
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

/* ── 768px — tablette portrait / mobile ── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .sect      { padding: 56px 0; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .burger    { display: flex; }
  .nav-inner { padding: 16px 20px; }
  .mobile-menu { padding: 14px 20px 20px; }

  /* Hero */
  .hero-content { padding: 112px 20px 52px; max-width: 100%; }
  .hero-h1      { font-size: clamp(3rem, 12.5vw, 5.5rem); letter-spacing: -.04em; margin-bottom: 40px; }
  .hero-tag     { margin-bottom: 28px; font-size: .7rem; }
  .hero-sub     { font-size: .88rem; line-height: 1.8; }
  .hero-links   { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-link    { font-size: .84rem; }
  .hero-foot    { gap: 22px; }
  .marquee-bar  { padding: 12px 20px; }
  .marquee-inner { gap: 16px; }
  .marquee-inner span { font-size: .62rem; letter-spacing: .1em; }

  /* About */
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-identity { position: static; }
  .about-layout { grid-template-columns: 1fr; }
  .abt-pillars { flex-direction: column; }
  .about-headline { font-size: clamp(2.4rem, 9vw, 3.5rem); margin-bottom: 32px; }
  .stats-row    { margin-top: 28px; }
  .stat              { padding: 16px 0; flex-direction: row; align-items: baseline; justify-content: space-between; }
  .stat strong       { font-size: clamp(2rem, 9vw, 3.5rem); }
  .stat span         { font-size: .6rem; max-width: 130px; text-align: right; }

  /* Sect head */
  .sect-head  { margin-bottom: 32px; }
  .sect-label { font-size: .6rem; }

  /* Offerings */
  .offer-solo-top { flex-direction: column; align-items: flex-start; }
  .offer-h2       { font-size: clamp(1.5rem, 7vw, 2rem); }
  .offer-list li  { font-size: .82rem; padding: 10px 0; gap: 12px; }
  .offer-solo-foot { flex-direction: column; gap: 16px; }

  /* Why */
  .why-intro  { grid-template-columns: 1fr; gap: 16px; padding-top: 28px; }
  .why-title  { font-size: clamp(1.7rem, 7.5vw, 2.6rem); margin-bottom: 14px; }
  .why-text   { font-size: .88rem; }
  .why-num    { padding: 14px 0; }
  .why-num strong { font-size: clamp(2.5rem, 9vw, 5rem); }
  .why-num span   { font-size: .6rem; max-width: 110px; }

  /* Process */
  .process-item  { grid-template-columns: 48px 1fr; gap: 18px; padding: 28px 0; }
  .pi-num        { font-size: 1.1rem; }
  .pi-body h3    { font-size: 1.05rem; }
  .pi-body p     { font-size: .85rem; }

  /* Testimonials */
  .ti        { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; transition: none; }
  .ti:hover  { padding-left: 0; }
  .ti p      { font-size: .86rem; line-height: 1.78; }
  .ti cite   { white-space: normal; font-size: .68rem; }

  /* FAQ */
  .faq-wrap    { gap: 24px; }
  .faq-left h2 { font-size: clamp(1.5rem, 7vw, 2rem); margin-bottom: 10px; }
  .faq-left p  { font-size: .84rem; margin-bottom: 18px; }
  .fq          { font-size: .84rem; padding: 16px 0; }
  .faq-a p     { font-size: .82rem; }

  /* CTA */
  .cta-title { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  .cta-left p { font-size: .86rem; }
  .trust span { font-size: .72rem; }
  .form-row  { grid-template-columns: 1fr; }
  .fg label  { font-size: .65rem; }
  .fg input, .fg select, .fg textarea { font-size: .88rem; padding: 10px 0; }
  .btn-send  { padding: 14px; font-size: .88rem; }

  /* Footer */
  .footer        { padding: 36px 0 18px; }
  .footer-top    { padding-bottom: 24px; margin-bottom: 24px; }
  .f-cols        { grid-template-columns: 1fr 1fr; gap: 20px; }
  .f-cols strong { font-size: .65rem; }
  .f-cols a      { font-size: .78rem; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .f-socials     { justify-content: center; }

  /* Programme — prix mobile */
  .prog-head-row { flex-direction: column; gap: 28px; }
  .prog-pay-block {
    align-items: flex-start; width: 100%;
    padding: 24px 20px;
    background: rgba(108,71,255,.06);
    border: 1px solid rgba(108,71,255,.2);
    border-radius: 8px;
  }
  .pay-note { text-align: left; }
  .offer-price-num { font-size: 2.8rem; }

  /* About card */
  .abt-card { padding: 24px 20px; }

  /* Impact strip */
  .impact-inner { gap: 20px; }
  .impact-inner span { font-size: clamp(1.2rem, 4.5vw, 2rem); }

  /* Process h2 dans programme */
  .process-h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); margin-bottom: 24px; }
}

/* ── 480px — petit téléphone ── */
@media (max-width: 480px) {
  .container     { padding: 0 16px; }
  .hero-content  { padding: 100px 16px 44px; }
  .hero-h1       { font-size: clamp(2.6rem, 13vw, 4rem); letter-spacing: -.035em; }
  .hero-tag      { font-size: .66rem; }
  .hero-sub      { font-size: .84rem; }
  .hero-links    { gap: 8px; }
  .offer-price-num { font-size: 2.2rem; }
  .prog-pay-block { padding: 20px 16px; }
  .prog-intro    { font-size: .58rem; letter-spacing: .06em; }

  .pull-quote    { font-size: clamp(1.2rem, 5.5vw, 1.6rem); }
  .pull-quote::before { display: none; }

  .stat strong   { font-size: clamp(1.8rem, 9vw, 3rem); }

  .offer-h2      { font-size: clamp(1.4rem, 7vw, 1.8rem); }

  .why-title      { font-size: clamp(1.5rem, 8vw, 2.2rem); }
  .why-num strong { font-size: clamp(2rem, 10vw, 3.2rem); }
  .pull-quote     { font-size: clamp(1.3rem, 6vw, 2rem); padding: 28px 0; }
  .pull-quote::before { display: none; }

  .cta-title     { font-size: clamp(1.5rem, 8vw, 2.2rem); }

  .f-cols        { grid-template-columns: 1fr; gap: 16px; }
  .mobile-menu   { padding: 12px 16px 18px; }
  .nav-inner     { padding: 14px 16px; }
  .marquee-bar   { padding: 10px 16px; }
}
