:root {
  --ink: #102621;
  --muted: #60706b;
  --paper: #f5f1e8;
  --paper-2: #ece6da;
  --green: #0c302a;
  --green-2: #174c41;
  --accent: #d8ff6a;
  --white: #fffdf8;
  --line: rgba(16, 38, 33, .14);
  --shadow: 0 30px 80px rgba(12, 48, 42, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 9999; background: #fff; padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(20px, 4vw, 64px);
  background: rgba(245, 241, 232, .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.topbar.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(16, 38, 33, .06); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 750; }
.brand-mark { display:grid; place-items:center; width:38px; height:38px; border-radius:50%; background:var(--green); color:var(--accent); font-size:.76rem; letter-spacing:.08em; }
.brand-name { font-size: .95rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: var(--green); box-shadow: 0 14px 30px rgba(216,255,106,.18); }
.button-primary:hover { box-shadow: 0 18px 40px rgba(216,255,106,.28); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.45); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .9rem; }
.button-full { width: 100%; }
.text-link { font-weight: 750; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

.hero {
  min-height: 100vh;
  padding: 150px clamp(20px, 5vw, 78px) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
  position: relative;
  isolation: isolate;
}
.hero-glow { position:absolute; z-index:-1; border-radius:50%; filter: blur(10px); pointer-events:none; }
.hero-glow-one { width:460px; height:460px; right:-120px; top:80px; background:radial-gradient(circle, rgba(216,255,106,.48), transparent 66%); }
.hero-glow-two { width:420px; height:420px; left:-180px; bottom:-100px; background:radial-gradient(circle, rgba(23,76,65,.12), transparent 70%); }
.eyebrow, .section-label { margin:0 0 18px; text-transform:uppercase; letter-spacing:.15em; font-weight:850; font-size:.73rem; }
.hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(3.1rem, 7.4vw, 7.8rem);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 850;
}
.hero-lead { max-width: 730px; margin: 32px 0 0; font-size: clamp(1.08rem, 1.5vw, 1.35rem); color: var(--muted); }
.hero-lead strong { color: var(--ink); }
.hero-actions { display:flex; gap:22px; align-items:center; flex-wrap:wrap; margin-top:38px; }
.hero-meta { display:grid; grid-template-columns:repeat(3,1fr); gap:0; margin-top:64px; border-top:1px solid var(--line); }
.hero-meta div { padding:18px 18px 0 0; display:flex; flex-direction:column; }
.hero-meta strong { font-size:1rem; }
.hero-meta span { color:var(--muted); font-size:.83rem; margin-top:2px; }

.visual-card {
  background: var(--green);
  color: var(--white);
  border-radius: 34px;
  padding: clamp(24px, 3vw, 38px);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
  position:relative;
  overflow:hidden;
}
.visual-card::after { content:""; position:absolute; width:260px; height:260px; border-radius:50%; right:-90px; top:-100px; background:rgba(216,255,106,.10); }
.visual-topline { display:flex; justify-content:space-between; align-items:center; font-size:.78rem; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.65); }
.status-dot { color:var(--accent); }
.status-dot::before { content:""; display:inline-block; width:7px; height:7px; border-radius:50%; background:var(--accent); margin-right:7px; box-shadow:0 0 0 5px rgba(216,255,106,.12); }
.metric { margin-top:52px; }
.metric-label { display:block; color:rgba(255,255,255,.55); font-size:.9rem; }
.metric strong { display:block; margin-top:6px; font-size:clamp(1.8rem,3vw,3.1rem); letter-spacing:-.05em; line-height:1; }
.chart { color: var(--accent); margin: 26px -6px 10px; }
.chart svg { width:100%; height:auto; overflow:visible; }
.chart-grid { fill:none; stroke:rgba(255,255,255,.10); stroke-width:1; }
.chart-area { fill:url(#area); }
.chart-line { fill:none; stroke:currentColor; stroke-width:5; stroke-linecap:round; }
.chart-point { fill:var(--accent); stroke:var(--green); stroke-width:5; }
.mini-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(255,255,255,.14); margin-top:20px; }
.mini-grid div { padding-top:18px; display:flex; flex-direction:column; }
.mini-grid span { font-size:.76rem; color:rgba(255,255,255,.5); }
.mini-grid strong { font-size:.92rem; margin-top:3px; }

.section-pad { padding: clamp(90px, 11vw, 160px) clamp(20px, 7vw, 110px); }
.statement h2, .section-heading h2, .offer h2 {
  margin:0;
  max-width:1100px;
  font-size:clamp(2.3rem,5vw,5.5rem);
  line-height:1;
  letter-spacing:-.055em;
}
.statement-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,7vw,120px); margin-top:68px; }
.statement-grid p { margin:0; max-width:600px; font-size:clamp(1.05rem,1.45vw,1.3rem); color:var(--muted); }

.dark-section { background:var(--green); color:var(--white); border-radius:44px 44px 0 0; }
.section-label.light { color:var(--accent); }
.section-heading { margin-bottom:70px; }
.steps { border-top:1px solid rgba(255,255,255,.18); }
.step { display:grid; grid-template-columns:140px 1fr; gap:30px; padding:48px 0; border-bottom:1px solid rgba(255,255,255,.18); }
.step-number { font-size:clamp(2.2rem,4vw,4.8rem); color:var(--accent); letter-spacing:-.05em; }
.step-kicker { margin:0 0 8px; color:var(--accent); font-weight:800; text-transform:uppercase; letter-spacing:.13em; font-size:.72rem; }
.step h3 { margin:0; font-size:clamp(1.7rem,3.2vw,3.4rem); letter-spacing:-.045em; }
.step p:last-child { max-width:720px; margin:18px 0 0; color:rgba(255,255,255,.68); font-size:1.05rem; }

.benefit-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.benefit-card { min-height:280px; padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:rgba(255,255,255,.28); display:flex; flex-direction:column; }
.benefit-card span { color:var(--green-2); font-weight:850; font-size:.78rem; }
.benefit-card h3 { margin:auto 0 12px; font-size:1.45rem; letter-spacing:-.035em; }
.benefit-card p { margin:0; color:var(--muted); }

.fit { display:grid; grid-template-columns:1fr 1fr; gap:18px; padding-top:0; }
.fit-panel { padding:clamp(30px,4vw,58px); border-radius:var(--radius); }
.fit-yes { background:var(--accent); }
.fit-no { background:var(--paper-2); }
.fit ul { list-style:none; padding:0; margin:32px 0 0; }
.fit li { position:relative; padding:14px 0 14px 34px; border-top:1px solid rgba(16,38,33,.13); }
.fit li::before { position:absolute; left:0; font-weight:900; }
.fit-yes li::before { content:"✓"; }
.fit-no li::before { content:"—"; }

.quote-section { text-align:center; background:var(--white); }
.quote-section blockquote { max-width:1100px; margin:0 auto; font-size:clamp(2.4rem,5.5vw,6.2rem); line-height:.98; letter-spacing:-.06em; font-weight:820; }
.quote-section p { margin-top:30px; color:var(--muted); }

.faq-list { max-width:1000px; }
details { border-top:1px solid var(--line); }
details:last-child { border-bottom:1px solid var(--line); }
summary { cursor:pointer; list-style:none; padding:26px 50px 26px 0; font-weight:780; font-size:clamp(1.05rem,1.4vw,1.22rem); position:relative; }
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; position:absolute; right:4px; top:50%; transform:translateY(-50%); font-size:1.8rem; font-weight:400; }
details[open] summary::after { content:"−"; }
details p { margin:0; padding:0 55px 28px 0; color:var(--muted); max-width:830px; }

.offer { background:var(--green); }
.offer-card { max-width:1250px; margin:0 auto; background:var(--white); border-radius:36px; padding:clamp(30px,5vw,70px); display:grid; grid-template-columns:1.3fr .7fr; gap:50px; align-items:end; }
.offer-copy > p:not(.eyebrow) { color:var(--muted); max-width:620px; font-size:1.08rem; }
.offer-details { display:flex; gap:30px; flex-wrap:wrap; margin-top:34px; color:var(--muted); }
.price-box { background:var(--paper); border-radius:26px; padding:30px; text-align:center; }
.old-price { text-decoration:line-through; color:var(--muted); font-size:1.1rem; }
.price { font-size:clamp(3.6rem,6vw,6rem); line-height:1; letter-spacing:-.07em; font-weight:880; margin:3px 0; }
.fcfa { font-weight:750; margin-bottom:22px; }
.price-box small { display:block; margin-top:12px; color:var(--muted); }

.medical-note { padding:30px clamp(20px,7vw,110px); background:#09231f; color:rgba(255,255,255,.68); font-size:.84rem; }
.medical-note p { max-width:1200px; margin:auto; }
footer { background:#061a17; color:white; padding:40px clamp(20px,7vw,110px) 110px; display:flex; justify-content:space-between; gap:30px; align-items:flex-end; }
footer div { display:flex; flex-direction:column; }
footer span, footer p { color:rgba(255,255,255,.5); font-size:.85rem; margin:0; }

.mobile-cta { display:none; }
.reveal { opacity:0; transform:translateY(26px); transition:opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .hero { grid-template-columns:1fr; min-height:auto; padding-top:130px; }
  .hero-copy { max-width:820px; }
  .hero-visual { max-width:680px; }
  .statement-grid, .fit, .offer-card { grid-template-columns:1fr; }
  .benefit-grid { grid-template-columns:repeat(2,1fr); }
  .offer-card { align-items:stretch; }
}

@media (max-width: 680px) {
  body { padding-bottom:76px; }
  .topbar { padding:12px 16px; }
  .brand-name { display:none; }
  .hero { padding:110px 18px 72px; gap:48px; }
  .hero h1 { font-size:clamp(3.2rem,15vw,5.2rem); }
  .hero-meta { grid-template-columns:1fr; margin-top:48px; }
  .hero-meta div { padding:12px 0; border-bottom:1px solid var(--line); }
  .hero-actions { align-items:flex-start; flex-direction:column; }
  .visual-card { transform:none; padding:24px; border-radius:26px; }
  .metric { margin-top:38px; }
  .mini-grid { gap:8px; }
  .mini-grid strong { font-size:.8rem; }
  .section-pad { padding:80px 18px; }
  .statement-grid { margin-top:40px; }
  .dark-section { border-radius:28px 28px 0 0; }
  .step { grid-template-columns:1fr; gap:12px; padding:34px 0; }
  .step-number { font-size:2rem; }
  .benefit-grid { grid-template-columns:1fr; }
  .benefit-card { min-height:230px; }
  .quote-section blockquote { font-size:clamp(2.4rem,12vw,4rem); }
  .offer-card { border-radius:26px; padding:24px; gap:30px; }
  footer { padding:36px 18px 96px; flex-direction:column; align-items:flex-start; }
  .mobile-cta { position:fixed; left:10px; right:10px; bottom:10px; z-index:120; display:flex; justify-content:space-between; align-items:center; gap:12px; padding:10px 10px 10px 16px; border-radius:20px; background:rgba(12,48,42,.94); color:white; box-shadow:0 16px 50px rgba(0,0,0,.28); backdrop-filter:blur(15px); }
  .mobile-cta div { display:flex; flex-direction:column; line-height:1.1; }
  .mobile-cta span { font-size:.72rem; color:rgba(255,255,255,.65); }
  .mobile-cta strong { font-size:.88rem; margin-top:3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  .reveal { opacity:1; transform:none; }
}


/* Éléments ajoutés pour la version finale */
.launch-price {
  margin-top: 30px;
  max-width: 760px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.48);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.launch-label { display:block; font-size:.76rem; font-weight:850; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); }
.launch-numbers { display:flex; align-items:baseline; gap:12px; flex-wrap:wrap; margin-top:4px; }
.launch-numbers strong { font-size:2rem; letter-spacing:-.05em; }
.launch-numbers span { font-weight:800; }
.launch-old-price { color:var(--muted); }
.countdown { min-width:155px; padding-left:22px; border-left:1px solid var(--line); text-align:right; }
.countdown span { display:block; color:var(--muted); font-size:.76rem; }
.countdown strong { display:block; margin-top:3px; font-size:1rem; }
.after-payment { margin:14px 0 0; max-width:620px; color:var(--muted); font-size:.86rem; }

.medicine-section { padding-top:0; }
.medicine-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,7vw,120px); }
.medicine-grid p { margin:0; color:var(--muted); font-size:clamp(1.05rem,1.45vw,1.3rem); }

.about { display:grid; grid-template-columns:minmax(300px,.75fr) minmax(0,1.25fr); gap:clamp(42px,8vw,120px); align-items:center; background:var(--white); }
.portrait-frame { min-height:520px; padding:36px; border-radius:34px; background:var(--green); color:white; display:flex; flex-direction:column; justify-content:space-between; box-shadow:var(--shadow); }
.portrait-initials { font-size:clamp(5rem,10vw,9rem); font-weight:900; letter-spacing:-.08em; color:var(--accent); }
.portrait-frame p { max-width:300px; margin:0; color:rgba(255,255,255,.68); font-size:.9rem; }
.about-copy h2 { margin:0 0 30px; font-size:clamp(2.5rem,5vw,5.5rem); line-height:.98; letter-spacing:-.055em; }
.about-copy > p:not(.section-label) { max-width:720px; color:var(--muted); font-size:1.08rem; }

.limit-section { display:grid; grid-template-columns:1.2fr .8fr; gap:clamp(40px,8vw,120px); align-items:end; background:var(--accent); }
.limit-section h2 { margin:0; font-size:clamp(2.3rem,5vw,5.2rem); line-height:1; letter-spacing:-.055em; }
.limit-section > p { margin:0; font-size:1.12rem; }

.faq-intro { max-width:760px; margin:22px 0 0; color:var(--muted); }
.comparison { display:grid; grid-template-columns:1fr 1fr; gap:14px; padding:0 0 28px; }
.comparison div { padding:22px; border-radius:18px; background:var(--paper-2); display:flex; flex-direction:column; gap:8px; }
.comparison span { color:var(--muted); }

.not-section { background:var(--paper-2); }
.not-grid { display:grid; grid-template-columns:repeat(2,1fr); border-top:1px solid var(--line); border-left:1px solid var(--line); }
.not-grid span { padding:28px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); font-weight:750; }

.price-badge { display:inline-block; margin-bottom:10px; padding:8px 12px; border-radius:999px; background:var(--accent); font-size:.72rem; font-weight:850; text-transform:uppercase; letter-spacing:.08em; }
.offer-countdown { margin:-8px 0 18px; color:var(--green-2); font-weight:800; font-size:.9rem; }

@media (max-width: 980px) {
  .about, .limit-section { grid-template-columns:1fr; }
  .portrait-frame { min-height:420px; }
}

@media (max-width: 680px) {
  .launch-price { align-items:flex-start; flex-direction:column; }
  .countdown { width:100%; min-width:0; padding:14px 0 0; border-left:0; border-top:1px solid var(--line); text-align:left; }
  .medicine-grid, .comparison, .not-grid { grid-template-columns:1fr; }
  .about { padding-left:18px; padding-right:18px; }
  .portrait-frame { min-height:360px; }
  .limit-section { padding-left:18px; padding-right:18px; }
}
