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

:root{
  --navy:#0C1023;
  --navy-mid:#111530;
  --navy-surface:#161B41;
  --gold:#B8923E;
  --gold-dim:rgba(184,146,62,.15);
  --gold-glow:rgba(184,146,62,.06);
  --cream:#F5F0E8;
  --cream-dark:#EBE4D6;
  --white:#fff;
  --text-light:rgba(255,255,255,.55);
  --text-light-strong:rgba(255,255,255,.8);
  --text-dark:#1a1a2e;
  --text-dark-muted:#5a5a72;
  --heading:'Montserrat',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --heading-sans:'Montserrat',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --sans:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --ease:cubic-bezier(.22,1,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
}

html{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}

body{
  font-family:var(--sans);
  font-weight:400;
  color:var(--white);
  background:var(--navy);
  overflow-x:hidden;
  line-height:1.6;
  font-size:16px;
}

::selection{background:var(--gold);color:var(--navy)}

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

/* smooth scroll handled by JS */

/* ===== REVEAL ===== */
[data-reveal]{
  opacity:0;
  transform:translateY(40px);
  transition:opacity 1s var(--ease),transform 1s var(--ease);
}
[data-reveal].is-visible{opacity:1;transform:none}
[data-reveal="delayed"]{transition-delay:.15s}
[data-reveal="delayed-2"]{transition-delay:.3s}
[data-reveal="delayed-3"]{transition-delay:.45s}

/* split line reveal */
.line-reveal{
  overflow:hidden;
  display:block;
}
.line-reveal span{
  display:block;
  transform:translateY(110%);
  transition:transform 1.1s var(--ease-out);
}
.line-reveal.is-visible span{transform:none}
.line-reveal:nth-child(2) span{transition-delay:.08s}
.line-reveal:nth-child(3) span{transition-delay:.16s}

/* ===== NAV ===== */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:0 clamp(32px,6vw,100px);
  height:68px;
  display:flex;align-items:center;justify-content:space-between;
  transition:background .4s,backdrop-filter .4s;
}
.nav.scrolled{
  background:rgba(12,16,35,.82);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
}
.nav__logo{
  font-family:var(--sans);
  font-size:13px;font-weight:500;
  letter-spacing:.28em;
  color:var(--white);text-decoration:none;
  display:flex;align-items:center;gap:10px;
}
.nav__logo-circle{
  width:28px;height:28px;
  border:1.5px solid var(--gold);
  border-radius:50%;
  position:relative;
}
.nav__logo-circle::after{
  content:'';position:absolute;
  inset:3px;border:1px solid rgba(184,146,62,.3);
  border-radius:50%;
}
.nav__logo .gold{color:var(--gold)}

.nav__links{
  display:flex;align-items:center;gap:28px;
}
.nav__link{
  font-family:var(--sans);font-size:12px;font-weight:400;
  color:var(--text-light-strong);text-decoration:none;
  transition:color .3s;
}
.nav__link:hover{color:var(--gold)}
.nav__cta{
  font-family:var(--sans);font-size:11px;font-weight:500;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold);
  padding:10px 28px;
  border:1px solid rgba(184,146,62,.35);
  border-radius:6px;
  background:none;cursor:pointer;text-decoration:none;
  transition:all .35s var(--ease);
}
.nav__cta:hover{
  background:var(--gold);color:var(--navy);
  box-shadow:0 0 32px rgba(184,146,62,.25);
}

/* ===== HERO ===== */
.hero{
  position:relative;
  display:flex;align-items:flex-start;
  padding:clamp(120px,14vh,160px) 0 clamp(60px,8vh,100px);
  overflow:hidden;
}
.hero__bg{
  position:absolute;inset:0;
  background:url('img/seminaire-3.jpeg') center 30%/cover no-repeat;
  opacity:.07;
  filter:grayscale(.3);
}

/* Animated gold circle */
.hero__orb{
  position:absolute;
  right:-8vw;top:50%;
  transform:translateY(-55%);
  width:min(65vw,700px);height:min(65vw,700px);
  border-radius:50%;
  border:1px solid rgba(184,146,62,.1);
  animation:orb-rotate 60s linear infinite;
}
.hero__orb::before{
  content:'';position:absolute;inset:-60px;
  border-radius:50%;
  border:1px solid rgba(184,146,62,.05);
}
.hero__orb::after{
  content:'';position:absolute;
  inset:40px;
  border-radius:50%;
  border:1px solid rgba(184,146,62,.08);
  animation:orb-rotate 45s linear infinite reverse;
}
@keyframes orb-rotate{to{transform:translateY(-55%) rotate(360deg)}}

.hero__glow{
  position:absolute;
  right:5vw;top:35%;
  width:400px;height:400px;
  background:radial-gradient(circle,rgba(184,146,62,.06) 0%,transparent 70%);
  pointer-events:none;
}

.hero__container{
  max-width:1540px;margin:0 auto;
  padding:0 clamp(32px,6vw,100px);
  position:relative;z-index:2;
  display:grid;
  grid-template-columns:1fr min(400px,38vw);
  gap:80px;align-items:center;
  width:100%;
}

.hero__left{max-width:760px}

.hero__eyebrow{
  font-size:11px;font-weight:500;
  letter-spacing:.3em;text-transform:uppercase;
  color:var(--gold);
  margin-bottom:28px;
  display:flex;align-items:center;gap:12px;
}
.hero__eyebrow::before{
  content:'';width:24px;height:1px;
  background:var(--gold);
}

.hero__title{
  font-family:var(--heading);
  font-size:clamp(40px,5.8vw,72px);
  font-weight:700;
  line-height:1.08;
  margin-bottom:36px;
  letter-spacing:-.025em;
}
.hero__title em{
  font-style:italic;
  font-weight:700;
  color:var(--gold);
}

.hero__desc{
  font-size:clamp(15px,1.6vw,17px);
  font-weight:300;
  color:var(--text-light);
  line-height:1.8;
  margin-bottom:28px;
  max-width:520px;
}

.hero__bullets{
  list-style:none;
  margin-bottom:48px;
  display:grid;grid-template-columns:1fr 1fr;
  gap:8px 28px;
}
.hero__bullets li{
  font-size:14px;font-weight:400;
  color:var(--text-light-strong);
  padding-left:20px;position:relative;
}
.hero__bullets li::before{
  content:'';position:absolute;left:0;top:9px;
  width:8px;height:8px;
  border:1px solid var(--gold);
  border-radius:50%;
}

.hero__ctas{
  display:flex;flex-wrap:wrap;gap:16px;
  align-items:center;
}
.hero__ctas .btn{white-space:nowrap}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--sans);font-size:12px;font-weight:500;
  letter-spacing:.14em;text-transform:uppercase;
  padding:16px 36px;cursor:pointer;text-decoration:none;
  transition:all .4s var(--ease);
  position:relative;
  border-radius:8px;
}
.btn--gold{
  background:linear-gradient(135deg,#C9A24E 0%,var(--gold) 50%,#A07A2E 100%);
  color:var(--navy);border:none;
  box-shadow:0 2px 8px rgba(184,146,62,.2);
}
.btn--gold:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 48px rgba(184,146,62,.35);
}
.btn--ghost{
  background:rgba(184,146,62,.06);color:var(--gold);
  border:1px solid rgba(184,146,62,.4);
}
.btn--ghost:hover{
  border-color:var(--gold);
  background:rgba(184,146,62,.06);
}

.btn__sub{
  display:block;font-size:11px;font-weight:400;
  letter-spacing:.03em;text-transform:none;
  opacity:.8;margin-top:6px;text-align:center;
}

/* Hero stats on the right */
.hero__stats{
  display:flex;flex-direction:column;gap:0;
  border-left:1px solid rgba(184,146,62,.15);
  padding-left:40px;
}
.hero__stat{
  padding:24px 0;
  border-bottom:1px solid rgba(184,146,62,.08);
}
.hero__stat:last-child{border-bottom:none}
.hero__stat-value{
  font-family:var(--heading-sans);
  font-size:clamp(32px,3.5vw,48px);
  font-weight:700;
  color:var(--white);
  line-height:1;margin-bottom:4px;
}
.hero__stat-value span{color:var(--gold)}
.hero__stat-label{
  font-size:12px;font-weight:400;
  color:var(--text-light);
  line-height:1.4;
}
.hero__stat-note{
  font-size:10px;color:var(--gold);
  opacity:.7;margin-top:2px;
}
.hero__stat-above{
  font-size:10px;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:12px;
}

.hero__footnote{
  font-size:13px;font-weight:300;
  color:var(--text-light);
  font-style:italic;
  margin-top:4px;
}

/* ===== MARQUEE DIVIDER ===== */
.marquee{
  padding:20px 0;
  border-top:1px solid rgba(184,146,62,.08);
  border-bottom:1px solid rgba(184,146,62,.08);
  overflow:hidden;
  white-space:nowrap;
}
.marquee__track{
  display:inline-flex;
  animation:marquee 30s linear infinite;
}
.marquee__item{
  font-family:var(--heading);
  font-size:14px;font-weight:400;
  color:var(--text-light);
  letter-spacing:.1em;
  padding:0 32px;
}
.marquee__item .dot{color:var(--gold);margin-right:0}
@keyframes marquee{to{transform:translateX(-50%)}}

/* ===== SECTIONS ===== */
.s{padding:clamp(64px,8vw,120px) clamp(32px,6vw,100px);position:relative;overflow:hidden}
.s--cream{background:var(--cream);color:var(--text-dark)}
.s--navy{background:var(--navy);color:var(--white)}
.s--deep{background:var(--navy-mid);color:var(--white)}
.s__inner{max-width:1440px;margin:0 auto}

.s__eyebrow{
  font-size:11px;font-weight:500;
  letter-spacing:.28em;text-transform:uppercase;
  color:var(--gold);margin-bottom:16px;
}

.s__title{
  font-family:var(--heading);
  font-size:clamp(26px,3.5vw,48px);
  font-weight:700;line-height:1.15;
  margin-bottom:20px;letter-spacing:-.02em;
}
.s--cream .s__title{color:var(--text-dark)}

.s__subtitle{
  font-size:clamp(15px,1.6vw,17px);
  font-weight:300;line-height:1.8;
  max-width:560px;
}
.s--cream .s__subtitle{color:var(--text-dark-muted)}
.s--navy .s__subtitle,.s--deep .s__subtitle{color:var(--text-light)}

/* ===== PROBLEM ===== */
.problem__intro{max-width:600px;margin-bottom:80px}

.problem__body{
  font-size:16px;font-weight:300;
  color:var(--text-dark-muted);line-height:1.8;
  margin-bottom:16px;
}

.problem__factors{
  list-style:none;display:flex;flex-wrap:wrap;gap:6px 20px;
  margin:12px 0 20px;
}
.problem__factors li{
  font-size:14px;font-weight:500;color:var(--text-dark);
  padding-left:16px;position:relative;
}
.problem__factors li::before{
  content:'';position:absolute;left:0;top:9px;
  width:6px;height:1px;background:var(--gold);
}

.problem__coda{
  font-size:15px;font-weight:400;color:var(--text-dark);
  padding-top:16px;border-top:1px solid rgba(0,0,0,.06);
}
.problem__coda strong{color:var(--gold);font-weight:600}

.problem__grid-title{
  font-family:var(--heading);
  font-size:clamp(22px,2.5vw,32px);
  font-weight:600;color:var(--text-dark);
  text-align:center;margin-bottom:48px;
}

.problem__grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.problem__card{
  background:var(--white);
  padding:44px 36px;
  position:relative;
  border-radius:12px;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
  transition:transform .4s var(--ease),box-shadow .4s;
}
.problem__card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 40px rgba(0,0,0,.08);
}
.problem__card::after{
  content:'';position:absolute;top:0;left:36px;right:36px;
  height:2px;background:linear-gradient(90deg,var(--gold),transparent);
  border-radius:2px;
  opacity:.6;transition:opacity .4s;
}
.problem__card:hover::after{opacity:1}

.problem__card-num{
  font-family:var(--heading);font-size:56px;font-weight:700;
  color:rgba(184,146,62,.25);line-height:1;margin-bottom:16px;
}
.problem__card-title{
  font-family:var(--heading);font-size:20px;font-weight:700;
  color:var(--text-dark);margin-bottom:12px;line-height:1.3;
}
.problem__card-body{
  font-size:13px;font-weight:300;
  color:var(--text-dark-muted);line-height:1.7;margin-bottom:12px;
}
.problem__card-list{list-style:none;margin-bottom:14px}
.problem__card-list li{
  font-size:13px;font-weight:400;
  color:var(--text-dark-muted);
  padding:3px 0 3px 14px;position:relative;
}
.problem__card-list li::before{
  content:'';position:absolute;left:0;top:11px;
  width:5px;height:1px;background:var(--gold);
}
.problem__card-coda{
  font-size:13px;font-weight:500;font-style:italic;
  color:var(--text-dark);
  padding-top:12px;border-top:1px solid rgba(0,0,0,.04);
}

/* ===== SOLUTION ===== */
.solution__header{text-align:center;max-width:700px;margin:0 auto 72px}

.solution__brand{
  font-family:var(--heading-sans);
  font-size:clamp(36px,5vw,56px);
  font-weight:700;letter-spacing:.02em;
  margin-bottom:16px;
}
.solution__brand em{font-style:italic;font-weight:700;color:var(--gold)}

.solution__pillars{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:1px;max-width:1100px;margin:0 auto 56px;
  background:rgba(184,146,62,.08);
}
.solution__pillars--3{grid-template-columns:repeat(3,1fr)}
.solution__pillar{
  background:var(--navy-mid);
  padding:36px 20px;text-align:center;
  transition:background .3s;
}
.solution__pillar--detailed{padding:44px 32px;text-align:left}
.solution__pillar:hover{background:var(--navy-surface)}
.solution__pillar-icon{
  margin-bottom:14px;
}
.solution__pillar-icon svg{
  width:28px;height:28px;stroke:var(--gold);fill:none;stroke-width:1.2;
}
.solution__pillar-label{
  font-family:var(--heading-sans);font-size:18px;font-weight:700;
  color:var(--white);margin-bottom:16px;
}
.solution__pillar-list{
  list-style:none;
}
.solution__pillar-list li{
  font-size:13px;font-weight:400;color:var(--text-light);
  padding:5px 0 5px 14px;position:relative;
}
.solution__pillar-list li::before{
  content:'';position:absolute;left:0;top:13px;
  width:5px;height:1px;background:var(--gold);
}
.solution__pillar-text{
  font-size:13px;font-weight:400;color:var(--text-light);
  line-height:1.5;
}

.solution__objective{
  text-align:center;
  font-size:17px;font-weight:300;
  color:var(--text-light);max-width:520px;margin:0 auto;
}
.solution__objective strong{font-weight:500;color:var(--white)}

/* ===== OFFER GRID ===== */
.offer__grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-bottom:80px;
}
.offer__card{
  background:var(--navy-surface);
  border:1px solid rgba(184,146,62,.06);
  border-radius:16px;
  padding:48px 36px;
  transition:border-color .4s,transform .4s var(--ease);
  position:relative;
  overflow:hidden;
}
.offer__card:hover{
  border-color:rgba(184,146,62,.2);
  transform:translateY(-4px);
}
.offer__card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity:0;transition:opacity .4s;
}
.offer__card:hover::before{opacity:1}
.offer__icon{
  margin-bottom:20px;
  width:48px;height:48px;
  border-radius:12px;
  background:rgba(184,146,62,.1);
  display:flex;align-items:center;justify-content:center;
}
.s--cream .offer__icon{background:rgba(184,146,62,.08);border:1px solid rgba(184,146,62,.15)}
.offer__icon svg{
  width:22px;height:22px;stroke:var(--gold);fill:none;stroke-width:1.5;
}
.offer__title{
  font-family:var(--heading);font-size:20px;font-weight:700;
  color:var(--white);margin-bottom:12px;line-height:1.3;
}
.s--cream .offer__title{color:var(--text-dark)}
.offer__desc{
  font-size:14px;font-weight:300;
  color:var(--text-light);line-height:1.7;
  margin-bottom:20px;
}
.s--cream .offer__desc{color:var(--text-dark-muted)}
.s--cream .offer__card{background:var(--white);border-color:rgba(0,0,0,.06)}
.s--cream .offer__card:hover{border-color:rgba(184,146,62,.3)}
.s--cream .offer__card::before{background:linear-gradient(90deg,transparent,var(--gold),transparent)}
.offer__highlight{
  font-size:13px;font-weight:500;color:var(--gold);
  padding-top:16px;border-top:1px solid rgba(184,146,62,.08);
  display:flex;align-items:center;gap:8px;
}
.offer__highlight::before{
  content:'';width:6px;height:6px;background:var(--gold);border-radius:50%;
}

/* ===== TIMELINE ===== */
.timeline__header{text-align:center;margin-bottom:80px}

.timeline{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:0;max-width:1200px;margin:0 auto;
  position:relative;
}
.timeline--3{grid-template-columns:repeat(3,1fr)}
.timeline::before{
  content:'';position:absolute;top:16px;left:0;right:0;
  height:1px;background:linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity:.25;
}
.timeline__step{
  text-align:center;
  padding:0 20px;position:relative;
}
.timeline__dot{
  width:10px;height:10px;
  border:1.5px solid var(--gold);border-radius:50%;
  background:var(--navy);
  margin:11px auto 24px;position:relative;z-index:2;
  transition:background .3s;
}
.timeline__step:hover .timeline__dot{background:var(--gold)}
.timeline__phase{
  font-size:10px;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:8px;
}
.timeline__name{
  font-family:var(--heading);font-size:18px;font-weight:700;
  color:var(--white);margin-bottom:8px;
}
.timeline__desc{
  font-size:12px;font-weight:300;
  color:var(--text-light);line-height:1.6;
}

/* ===== CASE STUDY ===== */
.case{
  max-width:1100px;margin:0 auto;
  display:grid;grid-template-columns:1fr 1fr;
  border:1px solid rgba(184,146,62,.1);
  border-radius:16px;
  overflow:hidden;
}
.case__left{
  padding:48px;
  border-right:1px solid rgba(184,146,62,.1);
}
.case__right{
  padding:48px;
  display:flex;flex-direction:column;justify-content:center;
  align-items:center;text-align:center;
}
.case__tag{
  font-size:10px;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:12px;
}
.case__name{
  font-family:var(--heading);font-size:28px;font-weight:700;
  color:var(--white);margin-bottom:8px;
}
.case__desc{
  font-size:14px;font-weight:300;
  color:var(--text-light);margin-bottom:28px;line-height:1.6;
}
.case__work-title{
  font-size:11px;font-weight:500;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--text-light);margin-bottom:12px;
}
.case__work-list{list-style:none}
.case__work-list li{
  font-size:13px;font-weight:400;color:var(--text-light);
  padding:4px 0 4px 14px;position:relative;
}
.case__work-list li::before{
  content:'';position:absolute;left:0;top:12px;
  width:5px;height:1px;background:var(--gold);
}
.case__arrow-row{
  display:flex;align-items:center;gap:24px;
  margin-bottom:28px;
}
.case__num{text-align:center}
.case__num-label{
  font-size:10px;font-weight:500;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--text-light);margin-bottom:4px;
}
.case__num-val{
  font-family:var(--heading);font-size:36px;font-weight:700;
  color:var(--text-light);line-height:1;
}
.case__num--gold .case__num-val{color:var(--gold);font-size:44px}
.case__arrow{color:var(--gold);font-size:24px}
.case__roi{
  padding-top:20px;border-top:1px solid rgba(184,146,62,.1);
  width:100%;
}
.case__roi-label{
  font-size:10px;font-weight:500;
  letter-spacing:.15em;text-transform:uppercase;
  color:var(--text-light);margin-bottom:6px;
}
.case__roi-val{
  font-family:var(--heading);font-size:36px;font-weight:700;
  color:var(--gold);
}

/* ===== PRICING ===== */
.pricing__header{text-align:center;margin-bottom:64px}
.pricing__grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:24px;max-width:1000px;margin:0 auto 40px;
}
.pricing__card{
  background:var(--white);
  padding:52px 40px;text-align:center;
  position:relative;
  border-radius:16px;
  box-shadow:0 2px 8px rgba(0,0,0,.04);
  transition:transform .4s var(--ease),box-shadow .4s;
}
.pricing__card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 48px rgba(0,0,0,.08);
}
.pricing__card--featured{
  border:2px solid var(--gold);
  box-shadow:0 4px 24px rgba(184,146,62,.12);
}
.pricing__card--featured:hover{
  box-shadow:0 16px 48px rgba(184,146,62,.2);
}
.pricing__badge{
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  font-size:11px;font-weight:600;
  color:var(--navy);background:var(--gold);
  padding:6px 20px;border-radius:100px;
  letter-spacing:.05em;white-space:nowrap;
}
.pricing__label{
  font-size:10px;font-weight:500;
  letter-spacing:.25em;text-transform:uppercase;
  color:var(--gold);margin-bottom:20px;
}
.pricing__amount{
  font-family:var(--heading);
  font-size:clamp(32px,4vw,48px);font-weight:700;
  color:var(--text-dark);line-height:1;margin-bottom:4px;
}
.pricing__amount small{font-size:.45em;font-weight:400;opacity:.5}
.pricing__period{
  font-size:13px;font-weight:300;
  color:var(--text-dark-muted);margin-bottom:20px;
}
.pricing__desc{
  font-size:13px;font-weight:300;
  color:var(--text-dark-muted);line-height:1.7;
}
.pricing__note{
  font-size:12px;font-weight:500;font-style:italic;
  color:var(--gold);margin-top:16px;
}
.pricing__roi{
  max-width:1000px;margin:0 auto;
  text-align:center;
  padding:32px;
  background:rgba(184,146,62,.04);
  border:1px solid rgba(184,146,62,.1);
  border-radius:12px;
}
.pricing__roi-text{
  font-family:var(--heading);font-size:18px;font-weight:600;
  color:var(--text-dark);
}
.pricing__roi-text em{font-style:italic;color:var(--gold)}

/* ===== MDB SCORE ===== */
.score{
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;align-items:center;
}
.score__visual{display:flex;justify-content:center}
.score__ring{position:relative;width:220px;height:220px}
.score__ring svg{width:100%;height:100%}
.score__ring-label{
  position:absolute;inset:0;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
}
.score__ring-label span:first-child{
  font-size:10px;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);
}
.score__ring-label span:last-child{
  font-family:var(--heading);font-size:32px;font-weight:700;
  color:var(--white);margin-top:2px;
}
.score__skills{list-style:none;margin:20px 0 32px}
.score__skills li{
  font-size:14px;font-weight:400;color:var(--text-light);
  padding:10px 0;
  border-bottom:1px solid rgba(184,146,62,.06);
  display:flex;align-items:center;gap:12px;
}
.score__skills li::before{
  content:'';width:16px;height:1px;
  background:var(--gold);flex-shrink:0;
}

/* ===== CERCLE IA ===== */
.cia{
  max-width:800px;margin:0 auto;
  border:1px solid rgba(0,0,0,.06);
  background:var(--white);
  padding:56px 52px;
  display:grid;grid-template-columns:1fr auto;
  gap:40px;align-items:center;
}
.cia__title{
  font-family:var(--heading);font-size:24px;font-weight:700;
  color:var(--text-dark);margin-bottom:8px;
}
.cia__desc{
  font-size:14px;font-weight:300;color:var(--text-dark-muted);
  line-height:1.7;margin-bottom:16px;
}
.cia__list{list-style:none}
.cia__list li{
  font-size:13px;font-weight:400;color:var(--text-dark-muted);
  padding:4px 0 4px 14px;position:relative;
}
.cia__list li::before{
  content:'';position:absolute;left:0;top:12px;
  width:5px;height:1px;background:var(--gold);
}
.btn--outline-gold{
  font-family:var(--sans);font-size:11px;font-weight:500;
  letter-spacing:.15em;text-transform:uppercase;
  color:var(--gold);border:1px solid var(--gold);
  background:none;padding:14px 28px;cursor:pointer;
  text-decoration:none;transition:all .35s var(--ease);
}
.btn--outline-gold:hover{
  background:var(--gold);color:var(--navy);
}

/* ===== SELECTION ===== */
.selection__header{text-align:center;margin-bottom:64px}
.selection__grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:20px;max-width:1000px;margin:0 auto;
}
.selection__item{
  background:var(--navy-surface);
  border:1px solid rgba(184,146,62,.06);
  border-radius:16px;
  padding:48px 28px;text-align:center;
  transition:border-color .4s,transform .4s var(--ease);
}
.selection__item:hover{
  border-color:rgba(184,146,62,.2);
  transform:translateY(-4px);
}
.selection__icon{
  width:44px;height:44px;
  margin:0 auto 16px;
  border:1px solid rgba(184,146,62,.2);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:border-color .3s;
}
.selection__item:hover .selection__icon{border-color:var(--gold)}
.selection__icon svg{
  width:18px;height:18px;stroke:var(--gold);fill:none;stroke-width:1.5;
}
.selection__name{
  font-family:var(--heading-sans);font-size:16px;font-weight:600;
  color:var(--white);margin-bottom:6px;
}
.selection__desc{
  font-family:var(--sans);font-size:13px;color:rgba(255,255,255,.5);
  line-height:1.5;font-weight:300;
}

/* ===== FAQ ===== */
.faq__header{text-align:center;margin-bottom:64px}
.faq__grid{
  max-width:1000px;margin:0 auto;
  display:flex;flex-direction:column;gap:0;
}
.faq__item{
  border-bottom:1px solid rgba(0,0,0,.06);
}
.faq__item summary{
  font-family:var(--heading);font-size:17px;font-weight:600;
  color:var(--text-dark);
  padding:24px 48px 24px 0;
  cursor:pointer;list-style:none;
  position:relative;
  transition:color .3s;
  line-height:1.4;
}
.faq__item summary:hover{color:var(--gold)}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item summary::after{
  content:'+';position:absolute;right:0;top:24px;
  font-family:var(--sans);font-size:24px;font-weight:300;
  color:var(--gold);
  transition:transform .3s var(--ease);
}
.faq__item[open] summary::after{transform:rotate(45deg)}
.faq__item .faq__answer{
  font-size:14px;font-weight:300;
  color:var(--text-dark-muted);line-height:1.8;
  padding:0 48px 24px 0;
  max-width:680px;
  animation:faq-open .3s var(--ease);
}
@keyframes faq-open{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:none}}
.faq__answer strong{font-weight:500;color:var(--text-dark)}

/* ===== PROCESS ===== */
.process__header{text-align:center;margin-bottom:72px}

/* ===== FINAL CTA ===== */
.final{
  text-align:center;
  padding:clamp(100px,14vw,180px) clamp(28px,5vw,64px);
  position:relative;overflow:clip;
}
.final__circle{
  position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:min(500px,80vw);height:min(500px,80vw);
  border-radius:50%;
  border:1px solid rgba(184,146,62,.06);
  pointer-events:none;
}
.final__circle::before{
  content:'';position:absolute;inset:-80px;
  border-radius:50%;
  border:1px solid rgba(184,146,62,.04);
}
.final__content{position:relative;z-index:2}
.final__title{
  font-family:var(--heading);
  font-size:clamp(28px,4vw,48px);
  font-weight:700;margin-bottom:16px;
  max-width:700px;margin-left:auto;margin-right:auto;
}
.final__title em{font-style:italic;font-weight:700;color:var(--gold)}
.final__desc{
  font-size:15px;font-weight:300;
  color:var(--text-light);
  max-width:480px;margin:0 auto 8px;line-height:1.7;
}
.final__note{
  font-size:13px;font-weight:300;font-style:italic;
  color:var(--text-light);margin-bottom:36px;
}

/* ===== TESTIMONIALS ===== */
.testimonials__header{text-align:center;margin-bottom:72px}
.testimonials__track{
  display:flex;gap:24px;
  overflow-x:auto;scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding-bottom:24px;
  scrollbar-width:none;
}
.testimonials__track::-webkit-scrollbar{display:none}
.testimonial{
  flex:0 0 min(480px,85vw);
  scroll-snap-align:start;
  background:var(--navy-surface);
  border:1px solid rgba(184,146,62,.08);
  padding:48px 44px;
  display:flex;flex-direction:column;
  transition:border-color .4s;
  position:relative;
}
.testimonial:hover{border-color:rgba(184,146,62,.25)}
.testimonial__stars{
  display:flex;gap:4px;margin-bottom:20px;
}
.testimonial__stars svg{width:16px;height:16px;fill:var(--gold)}
.testimonial__quote{
  font-family:var(--heading);
  font-size:18px;font-weight:500;
  color:var(--white);
  line-height:1.65;flex:1;
  margin-bottom:32px;
}
.testimonial__quote em{
  font-style:normal;
  color:var(--gold);font-weight:600;
}
.testimonial__author{
  display:flex;align-items:center;gap:16px;
  border-top:1px solid rgba(184,146,62,.08);
  padding-top:24px;
}
.testimonial__avatar{
  width:48px;height:48px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),#d4a74e);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--heading);font-size:17px;font-weight:700;
  color:var(--navy);flex-shrink:0;
}
.testimonial__name{
  font-family:var(--heading-sans);font-size:15px;font-weight:600;
  color:var(--white);
}
.testimonial__role{
  font-size:13px;font-weight:300;color:var(--text-light);
}
.testimonial__metric{
  margin-left:auto;text-align:right;
}
.testimonial__metric-val{
  font-family:var(--heading-sans);font-size:22px;font-weight:700;
  color:var(--gold);line-height:1;
}
.testimonial__metric-label{
  font-size:11px;font-weight:300;color:var(--text-light);
  margin-top:2px;
}
.testimonials__dots{
  display:flex;gap:8px;justify-content:center;
  margin-top:32px;
}
.testimonials__dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(184,146,62,.2);
  cursor:pointer;transition:all .3s;
  border:none;padding:0;
}
.testimonials__dot.active{background:var(--gold);transform:scale(1.2)}

/* ===== OPERATION TRACKER ===== */
.tracker{
  max-width:520px;margin:0 auto;
  position:relative;
}
.tracker__card{
  background:var(--navy-surface);
  border:1px solid rgba(184,146,62,.08);
  border-radius:16px;
  padding:44px 40px;
  overflow:hidden;
}
.tracker__header{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:8px;
}
.tracker__title{
  font-family:var(--heading-sans);font-size:18px;font-weight:600;
  color:var(--white);
}
.tracker__badge{
  font-size:11px;font-weight:500;
  color:var(--gold);
  background:var(--gold-dim);
  padding:4px 12px;border-radius:100px;
  display:flex;align-items:center;gap:6px;
}
.tracker__badge::before{
  content:'';width:6px;height:6px;
  background:var(--gold);border-radius:50%;
}
.tracker__progress{
  height:4px;background:rgba(184,146,62,.1);
  border-radius:2px;margin-bottom:32px;
}
.tracker__progress-fill{
  height:100%;background:linear-gradient(90deg,var(--gold),#d4a74e);
  border-radius:2px;width:60%;
  transition:width 1.5s var(--ease);
}
.tracker__steps{list-style:none;position:relative}
.tracker__step{
  display:flex;align-items:flex-start;gap:16px;
  padding:12px 0;position:relative;
}
.tracker__step:not(:last-child)::after{
  content:'';position:absolute;
  left:15px;top:40px;bottom:-4px;
  width:1px;
  background:rgba(184,146,62,.12);
}
.tracker__step-icon{
  width:32px;height:32px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;position:relative;z-index:2;
}
.tracker__step--done .tracker__step-icon{
  background:var(--gold);
}
.tracker__step--done .tracker__step-icon svg{stroke:var(--navy)}
.tracker__step--current .tracker__step-icon{
  background:var(--gold-dim);
  border:1.5px solid var(--gold);
}
.tracker__step--current .tracker__step-icon svg{stroke:var(--gold)}
.tracker__step--pending .tracker__step-icon{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
}
.tracker__step--pending .tracker__step-icon svg{stroke:rgba(255,255,255,.25)}
.tracker__step-icon svg{width:14px;height:14px;fill:none;stroke-width:2}
.tracker__step-content{flex:1;padding-top:4px}
.tracker__step-name{
  font-family:var(--heading-sans);font-size:15px;font-weight:600;
  color:var(--white);margin-bottom:2px;
}
.tracker__step--pending .tracker__step-name{color:rgba(255,255,255,.35)}
.tracker__step-detail{
  font-size:12px;font-weight:300;color:var(--text-light);
}
.tracker__step--pending .tracker__step-detail{color:rgba(255,255,255,.2)}

/* ===== TOOLS BENTO ===== */
.tools__header{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:56px;
}
.tools__header .s__title{margin-bottom:0}
.tools__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:minmax(280px,auto);
  gap:16px;
}
.tools__card{
  background:var(--navy-surface);
  border:1px solid rgba(184,146,62,.06);
  border-radius:16px;
  padding:36px 32px;
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;
  transition:border-color .4s,transform .4s var(--ease);
}
.tools__card:hover{
  border-color:rgba(184,146,62,.2);
  transform:translateY(-4px);
}
.tools__card--wide{grid-column:span 2}
.tools__card--tall{grid-row:span 2}
.tools__card-tag{
  font-size:10px;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:12px;
}
.tools__card-title{
  font-family:var(--heading);font-size:20px;font-weight:600;
  color:var(--white);margin-bottom:8px;line-height:1.3;
}
.tools__card-desc{
  font-size:13px;font-weight:300;
  color:var(--text-light);line-height:1.7;
  margin-bottom:24px;
}
.tools__card-screenshot{
  flex:1;
  background:linear-gradient(145deg,rgba(184,146,62,.03) 0%,rgba(12,16,35,.4) 100%);
  border:1px solid rgba(184,146,62,.1);
  border-radius:10px;
  display:flex;flex-direction:column;align-items:stretch;
  min-height:140px;
  position:relative;
  overflow:hidden;
  padding:12px;
}
.tools__card-screenshot .mock-bar{
  display:flex;gap:5px;margin-bottom:10px;padding:6px 0;
}
.tools__card-screenshot .mock-dot{
  width:7px;height:7px;border-radius:50%;
  background:rgba(184,146,62,.15);
}
.tools__card-screenshot .mock-line{
  height:8px;border-radius:4px;
  background:rgba(184,146,62,.06);
  margin-bottom:6px;
}
.tools__card-screenshot .mock-line--short{width:60%}
.tools__card-screenshot .mock-line--medium{width:80%}
.tools__card-screenshot .mock-block{
  flex:1;border-radius:6px;
  background:rgba(184,146,62,.04);
  border:1px solid rgba(184,146,62,.06);
}
.tools__card-screenshot img{
  width:100%;height:100%;object-fit:cover;
  border-radius:10px;
}

/* ===== CERCLEIA FEATURED ===== */
.cia-featured{
  grid-column:1/-1;
  display:grid;grid-template-columns:1fr 1fr;
  gap:48px;align-items:center;
  background:var(--navy-surface);
  border:1px solid rgba(184,146,62,.1);
  border-radius:20px;
  padding:44px 44px;
  margin-bottom:16px;
  overflow:hidden;
  position:relative;
}
.cia-featured::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(184,146,62,.04) 0%,transparent 60%);
  pointer-events:none;
}
.cia-featured__content{position:relative;z-index:1}
.cia-featured__tag{
  font-size:10px;font-weight:500;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:14px;
}
.cia-featured__title{
  font-family:var(--heading);
  font-size:clamp(24px,2.5vw,32px);
  font-weight:700;color:var(--white);
  margin-bottom:12px;line-height:1.2;
}
.cia-featured__desc{
  font-size:15px;font-weight:300;
  color:var(--text-light);line-height:1.7;
  margin-bottom:24px;
}
.cia-featured__checks{list-style:none;margin-bottom:32px}
.cia-featured__checks li{
  font-size:15px;font-weight:400;
  color:var(--text-light-strong);
  padding:8px 0 8px 32px;
  position:relative;
}
.cia-featured__checks li::before{
  content:'✓';position:absolute;left:0;top:8px;
  width:20px;height:20px;
  background:rgba(184,146,62,.15);
  color:var(--gold);font-size:12px;font-weight:700;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  line-height:1;
}
.cia-featured__visual{
  position:relative;z-index:1;
  perspective:1000px;
}
.cia-featured__img{
  width:100%;border-radius:12px;
  box-shadow:0 20px 60px rgba(0,0,0,.3),0 0 0 1px rgba(184,146,62,.1);
  transform:rotateY(-6deg) rotateX(2deg);
  transition:transform .6s var(--ease);
}
.cia-featured:hover .cia-featured__img{
  transform:rotateY(-2deg) rotateX(1deg);
}
@media(max-width:768px){
  .cia-featured{grid-template-columns:1fr;padding:36px 28px;gap:32px}
  .cia-featured__img{transform:none}
  .cia-featured:hover .cia-featured__img{transform:none}
}

/* ===== SERVICES BENTO (Qonto-style dark) ===== */
.services__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  grid-auto-rows:minmax(240px,auto);
  gap:16px;
}
.services__card{
  background:var(--navy-surface);
  border:1px solid rgba(184,146,62,.06);
  border-radius:16px;
  padding:36px 32px;
  display:flex;flex-direction:column;
  transition:border-color .4s,transform .4s var(--ease);
  overflow:hidden;position:relative;
}
.services__card:hover{
  border-color:rgba(184,146,62,.2);
  transform:translateY(-4px);
}
.services__card--accent{
  background:linear-gradient(135deg,rgba(184,146,62,.12) 0%,var(--navy-surface) 100%);
  border-color:rgba(184,146,62,.15);
}
.services__card--wide{grid-column:span 2}
.services__card-title{
  font-family:var(--heading);font-size:20px;font-weight:600;
  color:var(--white);margin-bottom:8px;line-height:1.3;
}
.services__card-desc{
  font-size:14px;font-weight:300;
  color:var(--text-light);line-height:1.7;
}
.services__card-visual{
  flex:1;margin-top:24px;
  display:flex;align-items:flex-end;justify-content:center;
}

/* ===== FOOTER ===== */
.footer{
  padding:64px clamp(28px,5vw,80px) 32px;
  border-top:1px solid rgba(184,146,62,.08);
  max-width:1540px;margin:0 auto;
}
.footer__top{
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px;margin-bottom:48px;
}
.footer__brand{
  font-family:var(--sans);font-size:13px;font-weight:500;
  letter-spacing:.25em;color:var(--white);margin-bottom:16px;
}
.footer__brand-desc{
  font-size:13px;font-weight:300;color:var(--text-light);
  line-height:1.7;max-width:280px;
}
.footer__col-title{
  font-family:var(--heading-sans);font-size:12px;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;
  color:var(--gold);margin-bottom:16px;
}
.footer__links{list-style:none}
.footer__links li{margin-bottom:10px}
.footer__links a{
  font-size:13px;font-weight:300;color:var(--text-light);
  text-decoration:none;transition:color .3s;
}
.footer__links a:hover{color:var(--gold)}
.footer__bottom{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:24px;border-top:1px solid rgba(184,146,62,.06);
}
.footer__copy{
  font-size:11px;font-weight:300;
  color:rgba(255,255,255,.25);
}

/* ===== MOBILE NAV ===== */
.nav__burger{
  display:none;
  background:none;border:none;cursor:pointer;
  width:32px;height:32px;
  position:relative;z-index:101;
  padding:0;
}
.nav__burger span{
  display:block;width:20px;height:1.5px;
  background:var(--white);
  margin:5px auto;
  transition:all .3s var(--ease);
}
.nav__burger.active span:nth-child(1){transform:rotate(45deg) translate(4px,4px)}
.nav__burger.active span:nth-child(2){opacity:0}
.nav__burger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

.nav__mobile-overlay{
  position:fixed;inset:0;z-index:99;
  background:rgba(12,16,35,.96);
  backdrop-filter:blur(24px);-webkit-backdrop-filter:blur(24px);
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:32px;
  opacity:0;pointer-events:none;
  transition:opacity .4s var(--ease);
}
.nav__mobile-overlay.active{opacity:1;pointer-events:all}
.nav__mobile-overlay a{
  font-family:var(--heading);font-size:24px;font-weight:500;
  color:var(--white);text-decoration:none;
  transition:color .3s;
}
.nav__mobile-overlay a:hover{color:var(--gold)}
.nav__mobile-overlay .btn{font-size:14px;margin-top:16px}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta{
  display:none;
  position:fixed;bottom:0;left:0;right:0;z-index:90;
  background:rgba(12,16,35,.95);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-top:1px solid rgba(184,146,62,.15);
  padding:12px 20px;
  text-align:center;
  transform:translateY(100%);
  transition:transform .4s var(--ease);
}
.sticky-cta.visible{transform:none}
.sticky-cta .btn{width:100%;padding:14px 24px;font-size:13px}
.sticky-cta__sub{
  font-size:11px;color:var(--text-light);margin-top:4px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .hero__container{grid-template-columns:1fr;gap:48px}
  .hero__stats{
    flex-direction:row;flex-wrap:wrap;
    border-left:none;padding-left:0;
    border-top:1px solid rgba(184,146,62,.15);
    padding-top:32px;gap:0;
  }
  .hero__stat{flex:1;min-width:140px;text-align:center;border-bottom:none;padding:16px}
}

@media(max-width:768px){
  .nav__links{display:none}
  .nav__burger{display:block}
  .sticky-cta{display:block}
  .tools__grid{grid-template-columns:1fr}
  .tools__card--wide{grid-column:span 1}
  .tools__grid > div[style*="repeat(3"]{grid-template-columns:1fr !important}
  .tools__header{flex-direction:column;align-items:flex-start;gap:16px}
  .services__grid{grid-template-columns:1fr}
  .services__card--wide{grid-column:span 1}
  .testimonials__track{gap:16px}
  .testimonial{flex:0 0 min(340px,85vw)}
  .tracker__card{padding:32px 24px}
  #progression .s__inner > div[style]{grid-template-columns:1fr !important;gap:48px !important}
  .problem__grid{grid-template-columns:1fr}
  .solution__pillars{grid-template-columns:1fr 1fr}
  .offer__grid{grid-template-columns:1fr 1fr}
  .timeline{grid-template-columns:1fr 1fr;gap:32px}
  .timeline::before{display:none}
  .timeline__dot{display:none}
  .timeline__step{text-align:left;padding:0 0 0 16px;border-left:1px solid rgba(184,146,62,.2)}
  .case{grid-template-columns:1fr}
  .case__left{border-right:none;border-bottom:1px solid rgba(184,146,62,.1)}
  .pricing__grid{grid-template-columns:1fr}
  .score{grid-template-columns:1fr;gap:48px}
  .score__visual{order:-1}
  .cia{grid-template-columns:1fr;text-align:center}
  .cia__list{display:inline-block;text-align:left}
  .selection__grid{grid-template-columns:1fr}
  .hero__bullets{grid-template-columns:1fr}
  .hero__ctas{flex-direction:column;align-items:stretch}
  .btn{text-align:center;justify-content:center}
  .footer__top{grid-template-columns:1fr 1fr;gap:32px}
  .footer__bottom{flex-direction:column;gap:8px;text-align:center}
}

@media(max-width:600px){
  .offer__grid{grid-template-columns:1fr !important}
}

@media(max-width:480px){
  .solution__pillars{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr}
  .case__arrow-row{flex-direction:column;gap:12px}
  .case__arrow{transform:rotate(90deg)}
  .footer__top{grid-template-columns:1fr;gap:24px}
}
/* ===== LEGAL PAGES (mentions légales, politique de confidentialité) ===== */
.legal-page { padding: 140px 0 120px; background: var(--navy); }
.legal-page__container { max-width: 780px; margin: 0 auto; padding: 0 24px; color: var(--text-light-strong); }
.legal-page__header { margin-bottom: 48px; }
.legal-page__header h1 { font-family: var(--heading); font-size: 48px; font-weight: 700; color: var(--white); }
.legal-page__content { font-size: 16px; line-height: 1.7; }
.legal-page__content h2 { font-family: var(--heading); font-size: 28px; margin-top: 40px; margin-bottom: 16px; color: var(--white); }
.legal-page__content h3 { font-family: var(--heading); font-size: 20px; margin-top: 28px; margin-bottom: 12px; color: var(--white); }
.legal-page__content p, .legal-page__content ul { margin-bottom: 16px; }
.legal-page__content a { color: var(--gold); text-decoration: underline; }
