/* ============================================================
   COACH KACOU — Design System v3
   Clair & chaleureux · Côte d'Ivoire (Orange / Vert / Blanc cassé)
   Reposant pour les yeux · calligraphie · à l'essentiel
   DM Sans + Caveat (calligraphie) + Fraunces (italic) + JetBrains Mono
   ============================================================ */

:root {
  /* — Fonds clairs chaleureux — */
  --bg: #FAF7F1;          /* crème doux (pas blanc pur) */
  --bg-2: #F2EDE2;        /* section alternée */
  --bg-3: #EAE3D5;
  --bg-card: #FFFFFF;
  --bg-deep: #0B3D29;     /* vert très profond (bandes) */

  /* — Encres (charbon, pas noir pur) — */
  --ink: #211F1B;
  --ink-2: #46423A;
  --ink-muted: #7C766B;
  --ink-faint: #ABA493;
  --cream: #FBF8F2;

  /* — Orange Côte d'Ivoire — */
  --orange: #ED7A00;
  --orange-2: #FF9A2E;
  --orange-strong: #C25E00;   /* petits textes sur clair */
  --orange-deep: #A84F00;
  --orange-wash: rgba(237,122,0,.10);
  --orange-line: rgba(237,122,0,.30);

  /* — Vert Côte d'Ivoire — */
  --green: #0E9E62;
  --green-2: #14B670;
  --green-soft: #5FCB97;
  --green-deep: #0A5C3A;
  --green-wash: rgba(14,158,98,.10);
  --green-line: rgba(14,158,98,.30);

  /* — WhatsApp — */
  --wa: #25D366;
  --wa-ink: #04210F;

  /* — Thème = orange — */
  --theme: #ED7A00;
  --theme-2: #C25E00;
  --theme-soft: #FFE6C7;
  --theme-glow: rgba(237,122,0,.28);

  /* Gradients signature (orange → vert) */
  --grad-ci: linear-gradient(100deg, #F08000 0%, #F59A2E 35%, #2BB079 72%, #0E9E62 100%);
  --grad-ci-soft: linear-gradient(100deg, #FFB45C, #5FCB97);
  --grad-green: linear-gradient(155deg, #12A467 0%, #0A4F34 100%);
  --grad-green-deep: linear-gradient(160deg, #0E7E50 0%, #093A26 100%);

  /* — Lignes & ombres douces — */
  --line: rgba(33,31,27,.10);
  --line-2: rgba(33,31,27,.06);
  --shadow-sm: 0 1px 2px rgba(40,30,12,.05), 0 8px 22px -14px rgba(40,30,12,.20);
  --shadow-card: 0 1px 2px rgba(40,30,12,.05), 0 16px 40px -22px rgba(40,30,12,.22);
  --shadow-card-hover: 0 2px 6px rgba(40,30,12,.07), 0 32px 60px -24px rgba(40,30,12,.30);

  /* — Typo — */
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, sans-serif;
  --font-display: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', 'Segoe Script', cursive;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --r-sm: 10px; --r-md: 16px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;
  --container: 1140px; --container-tight: 820px;
  --t-fast: 160ms cubic-bezier(.2,.6,.2,1);
  --t-base: 300ms cubic-bezier(.2,.6,.2,1);
  --t-slow: 600ms cubic-bezier(.2,.6,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }
body {
  margin: 0; font-family: var(--font-sans); font-size: 16px; line-height: 1.55;
  color: var(--ink); background: var(--bg);
  background-image:
    radial-gradient(680px circle at 6% -6%, rgba(237,122,0,.07), transparent 55%),
    radial-gradient(640px circle at 98% 3%, rgba(14,158,98,.07), transparent 55%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, p { margin: 0; }
:focus-visible { outline: 2px solid var(--theme); outline-offset: 3px; border-radius: 4px; }

/* ---------- Formes décoratives (douces) ---------- */
.shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.shape { position: absolute; border-radius: 46% 54% 55% 45% / 52% 45% 55% 48%; opacity: .5; filter: blur(2px); }
.shape-o { background: radial-gradient(circle at 35% 35%, rgba(237,122,0,.18), transparent 70%); }
.shape-g { background: radial-gradient(circle at 35% 35%, rgba(14,158,98,.16), transparent 70%); }
.shape-ring { border-radius: 50%; background: none; border: 1.5px solid rgba(33,31,27,.06); filter: none; }
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.shape-float { animation: float-y 9s ease-in-out infinite; }

/* ---------- Filet tricolore ---------- */
.flag-bar { display: inline-flex; height: 4px; width: 52px; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm); }
.flag-bar i { flex: 1; }
.flag-bar i:nth-child(1){background:#ED7A00} .flag-bar i:nth-child(2){background:#fff} .flag-bar i:nth-child(3){background:#0E9E62}

/* ============================================================ Typo */
.h-display { font-family: var(--font-display); font-weight: 800; font-size: clamp(46px, 7.6vw, 104px); line-height: .92; letter-spacing: -.04em; color: var(--ink); text-wrap: balance; }
.h-xl { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 4.4vw, 54px); line-height: 1; letter-spacing: -.03em; color: var(--ink); text-wrap: balance; }
.h-lg { font-family: var(--font-display); font-weight: 600; font-size: clamp(21px, 2.5vw, 30px); line-height: 1.14; letter-spacing: -.02em; color: var(--ink); }
.h-md { font-weight: 600; font-size: 18px; line-height: 1.3; letter-spacing: -.01em; color: var(--ink); }
.lead { font-size: clamp(16px, 1.25vw, 18.5px); line-height: 1.55; color: var(--ink-2); max-width: 48ch; }
.muted { color: var(--ink-muted); }
.tiny { font-size: 12.5px; color: var(--ink-muted); }
.mono { font-family: var(--font-mono); letter-spacing: -.01em; }

/* Calligraphie (accent signature) */
.script { font-family: var(--font-script); font-weight: 700; letter-spacing: 0; line-height: .9; }
.script-ci { background: var(--grad-ci); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

.accent { font-family: var(--font-serif); font-style: italic; font-weight: 500; letter-spacing: -.02em; }
.accent-orange { background: linear-gradient(95deg,#F08000,#C25E00); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.accent-green { background: linear-gradient(95deg,#14B670,#0A5C3A); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

.eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--theme-2); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--theme); }

/* ============================================================ Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.container-tight { max-width: var(--container-tight); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
section { padding: clamp(54px, 6.5vw, 92px) 0; position: relative; }
section.compact { padding: clamp(40px, 4.5vw, 64px) 0; }
section.alt { background: var(--bg-2); }
.section-head { max-width: 600px; margin-bottom: clamp(30px, 3.5vw, 46px); }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head .lead { margin-top: 12px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.center .eyebrow { justify-content: center; }

/* Bande verte profonde */
.band-green { background: var(--grad-green); color: var(--cream); position: relative; overflow: hidden; }
.band-green .eyebrow { color: #BFE9D2; } .band-green .eyebrow::before { background: #BFE9D2; }
.band-green .h-display, .band-green .h-xl, .band-green .h-lg { color: var(--cream); }
.band-green .lead, .band-green .muted { color: rgba(255,255,255,.82); }

/* ============================================================ Header */
.site-header { position: sticky; top: 0; z-index: 60; background: color-mix(in srgb, var(--bg) 78%, transparent); backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px); border-bottom: 1px solid transparent; transition: border-color var(--t-base), background var(--t-base); }
.site-header.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 92%, transparent); box-shadow: 0 8px 30px -22px rgba(40,30,12,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--grad-ci); color: #fff; font-weight: 800; font-size: 17px; letter-spacing: -.04em; box-shadow: 0 6px 16px -6px var(--theme-glow); flex-shrink: 0; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.02em; line-height: 1; white-space: nowrap; }
.brand-name small { display: block; font-family: var(--font-mono); font-weight: 400; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink); opacity: .68; transition: opacity var(--t-fast), color var(--t-fast); position: relative; padding: 6px 0; }
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1; color: var(--theme-2); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; border-radius: 2px; background: var(--theme); }
.nav-cta { display: inline-flex; align-items: center; gap: 12px; }
.nav-burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: var(--bg-card); }
.nav-burger span { display: block; width: 18px; height: 2px; margin: 3px auto; background: var(--ink); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
@media (max-width: 1000px) {
  .nav-links { position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 2px; padding: 14px 24px 22px; background: color-mix(in srgb, var(--bg) 97%, transparent); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform var(--t-base), opacity var(--t-base); box-shadow: var(--shadow-card); }
  .nav-links a { font-size: 17px; padding: 12px 0; width: 100%; }
  body.menu-open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-burger { display: block; }
  .nav-cta .btn-ghost-text { display: none; }
}

/* ============================================================ Boutons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 48px; padding: 0 24px; border-radius: var(--r-pill); font-size: 14.5px; font-weight: 600; letter-spacing: -.005em; white-space: nowrap; border: 1px solid transparent; transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast); }
.btn:hover { transform: translateY(-1.5px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; }
.btn-wa { background: var(--wa); color: var(--wa-ink); box-shadow: 0 8px 20px -8px rgba(37,211,102,.6); }
.btn-wa:hover { background: #21c25e; box-shadow: 0 12px 28px -8px rgba(37,211,102,.7); }
.btn-ci { background: var(--grad-ci); color: #fff; box-shadow: 0 8px 22px -8px var(--theme-glow); }
.btn-ci:hover { box-shadow: 0 14px 32px -8px var(--theme-glow); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #000; }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { border-color: var(--theme); color: var(--theme-2); }
.btn-ghost-onband { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost-onband:hover { background: rgba(255,255,255,.2); }
.btn-lg { height: 54px; padding: 0 30px; font-size: 15.5px; }
.btn-sm { height: 40px; padding: 0 18px; font-size: 13.5px; }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; padding: 0; height: auto; color: var(--theme-2); font-weight: 600; }
.btn-ghost::after { content: '→'; margin-left: 7px; transition: transform var(--t-fast); }
.btn-ghost:hover { transform: none; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ============================================================ HERO */
.hero { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(48px, 6vw, 88px); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; height: 33px; padding: 0 14px 0 11px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); font-size: 12.5px; color: var(--ink-2); margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 4px rgba(37,211,102,.16); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(37,211,102,.16); } 50% { box-shadow: 0 0 0 7px rgba(37,211,102,.04); } }
.hero h1 { margin-bottom: 18px; }
.hero h1 .script { display: block; font-size: clamp(72px, 13vw, 168px); margin-top: -.06em; }
.hero .lead { margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--ink-muted); display: inline-flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--green); }

/* Photo — cadre éditorial clair */
.portrait-stage { position: relative; }
.portrait-stage::before { content: ''; position: absolute; inset: -14px 14px 14px -14px; border-radius: var(--r-xl); background: var(--grad-ci-soft); opacity: .35; z-index: 0; }
.portrait-blob { position: absolute; width: 130px; height: 130px; right: -18px; bottom: 30px; border-radius: 46% 54% 55% 45% / 52% 45% 55% 48%; background: var(--grad-green); opacity: .9; z-index: 0; box-shadow: var(--shadow-card); }
.portrait { position: relative; z-index: 1; aspect-ratio: 4/5; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-card-hover); border: 6px solid #fff; outline: 1px solid var(--line); }
.portrait-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; z-index: 2; }
.portrait-fallback { position: absolute; inset: 0; z-index: 1; display: grid; place-content: center; gap: 8px; text-align: center; background: linear-gradient(160deg, #FFF3E2 0%, #FDEFE0 40%, #E7F6EE 100%); }
.portrait-fallback .mono-logo { font-family: var(--font-display); font-weight: 800; font-size: 68px; letter-spacing: -.05em; background: var(--grad-ci); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.portrait-fallback small { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.portrait-tag { position: absolute; z-index: 4; left: 14px; bottom: 14px; right: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 15px; border-radius: var(--r-md); background: rgba(255,255,255,.86); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }
.portrait-tag b { font-size: 14px; } .portrait-tag .mono { font-size: 11px; color: var(--theme-2); }
.portrait-float { position: absolute; z-index: 4; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: var(--r-pill); background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 600; }
.portrait-float svg { width: 15px; height: 15px; color: var(--orange); }
@media (max-width: 880px) { .hero-grid { grid-template-columns: 1fr; } .hero-media { order: -1; max-width: 340px; } }

/* ============================================================ Value strip (preuves honnêtes) */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.value { display: flex; align-items: center; gap: 13px; padding: 18px 20px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.value .vic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; background: var(--orange-wash); color: var(--orange); }
.value:nth-child(even) .vic { background: var(--green-wash); color: var(--green); }
.value .vic svg { width: 21px; height: 21px; }
.value b { font-size: 14.5px; display: block; line-height: 1.15; }
.value span.muted { font-size: 12.5px; }
@media (max-width: 820px) { .values { grid-template-columns: 1fr 1fr; } }

/* ============================================================ Offres / prix (remontées, ultra claires) */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.offer { position: relative; display: flex; flex-direction: column; padding: 30px; border-radius: var(--r-xl); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-card); transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base); }
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.offer.featured { border-color: var(--orange-line); box-shadow: 0 2px 6px rgba(40,30,12,.06), 0 30px 60px -28px var(--theme-glow); }
.offer.featured::after { content: ''; position: absolute; inset: 0; border-radius: var(--r-xl); padding: 1.5px; background: var(--grad-ci); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.offer-flag { position: absolute; top: -12px; left: 30px; padding: 5px 13px; border-radius: var(--r-pill); background: var(--grad-ci); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: .02em; box-shadow: 0 8px 18px -6px var(--theme-glow); }
.offer-for { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.offer-name { font-size: 21px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.offer-price { font-family: var(--font-display); font-weight: 800; font-size: 38px; letter-spacing: -.04em; line-height: 1; color: var(--ink); }
.offer-price b { background: var(--grad-ci); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.offer-price small { font-size: 14px; font-weight: 500; color: var(--ink-muted); letter-spacing: 0; }
.offer-sub { color: var(--ink-muted); font-size: 13.5px; margin: 10px 0 20px; }
.offer ul { display: grid; gap: 10px; margin-bottom: 24px; }
.offer li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.offer li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--green); }
.offer .btn { margin-top: auto; }
.offer-price-eur { font-size: 13.5px; color: var(--ink-muted); font-weight: 500; margin-top: 2px; }
@media (max-width: 860px) { .offers { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* Bandeau moyens de paiement */
.pay-box { margin-top: 28px; display: grid; gap: 12px; justify-items: center; }
.pay-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
.pay-row .lbl { font-weight: 600; color: var(--ink-2); font-size: 13.5px; }
.pay-num { font-size: 13.5px; color: var(--ink-muted); }
.pay-num b { color: var(--ink); font-family: var(--font-mono); letter-spacing: -.01em; }
.pay { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: 13px; color: var(--ink); box-shadow: var(--shadow-sm); }
.pay .pdot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.pay-om .pdot { background: #FF6600; }       /* Orange Money */
.pay-wave .pdot { background: #1DC4FF; }      /* Wave */
.pay-cash .pdot { background: var(--green); }

/* ============================================================ Pour qui (EN/FR) */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.world { position: relative; padding: 32px; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-card); transition: transform var(--t-base), box-shadow var(--t-base); }
.world::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 5px; }
.world.en::before { background: var(--grad-ci); }
.world.fr::before { background: var(--grad-green); }
.world:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.world-flag { font-size: 28px; margin-bottom: 14px; }
.world h3 { margin-bottom: 10px; }
.world p { color: var(--ink-2); margin-bottom: 18px; font-size: 15px; }
.world ul { display: grid; gap: 9px; margin-bottom: 22px; }
.world li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink-2); }
.world li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.world.en li svg { color: var(--orange); } .world.fr li svg { color: var(--green); }
.world-badge { display: inline-block; vertical-align: middle; margin-left: 8px; padding: 3px 10px; border-radius: var(--r-pill); background: var(--green-wash); color: var(--green-deep); font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.world-badge.badge-us { background: var(--orange-wash); color: var(--orange-strong); }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; } }

/* ============================================================ Méthode */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { position: relative; padding: 26px 24px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform var(--t-base), box-shadow var(--t-base); }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.step-num { counter-increment: step; font-family: var(--font-mono); font-size: 13px; font-weight: 600; width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; color: #fff; background: var(--grad-ci); }
.step-num::before { content: '0' counter(step); }
.step h4 { font-size: 16.5px; font-weight: 600; margin-bottom: 7px; letter-spacing: -.01em; }
.step p { font-size: 13.5px; color: var(--ink-muted); }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================ Timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.timeline::before { content: ''; position: absolute; left: 6%; right: 6%; top: 27px; height: 2px; background: var(--grad-ci); opacity: .35; z-index: 0; }
.tl { position: relative; z-index: 1; }
.tl-dot { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: #fff; background: var(--grad-ci); box-shadow: 0 8px 18px -6px var(--theme-glow); border: 4px solid var(--bg); }
.band-green .timeline::before { background: rgba(255,255,255,.4); }
.band-green .tl-dot { border-color: transparent; background: #fff; color: var(--green-deep); }
.tl-when { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--theme-2); margin-bottom: 5px; }
.band-green .tl-when { color: #FFD9A8; }
.tl h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.tl p { font-size: 13px; color: var(--ink-muted); }
.band-green .tl p { color: rgba(255,255,255,.8); }
@media (max-width: 820px) { .timeline { grid-template-columns: 1fr 1fr; } .timeline::before { display: none; } }
@media (max-width: 440px) { .timeline { grid-template-columns: 1fr; } }

/* ============================================================ Ressources — liste linéaire */
.res-list { display: grid; gap: 12px; }
.res-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 20px 24px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base); }
.res-row:hover { transform: translateX(4px); box-shadow: var(--shadow-card); border-color: var(--orange-line); }
.res-ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0; background: var(--orange-wash); color: var(--orange); }
.res-ic svg { width: 24px; height: 24px; }
.res-main h4 { font-size: 17px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 3px; }
.res-main p { font-size: 13.5px; color: var(--ink-muted); }
.res-main .en { color: var(--orange-strong); font-style: italic; font-family: var(--font-serif); }
.res-tags { display: flex; gap: 7px; margin-top: 8px; flex-wrap: wrap; }
.res-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .05em; text-transform: uppercase; color: var(--green-deep); padding: 3px 8px; border-radius: var(--r-pill); background: var(--green-wash); }
.res-cta { display: flex; gap: 8px; flex-shrink: 0; }
@media (max-width: 720px) { .res-row { grid-template-columns: auto 1fr; } .res-cta { grid-column: 1 / -1; } .res-cta .btn { flex: 1; } }

/* Astuces / tips */
.tips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tip-card { padding: 22px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform var(--t-base), box-shadow var(--t-base); }
.tip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.tip-emoji { font-size: 24px; margin-bottom: 12px; display: block; }
.tip-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; letter-spacing: -.01em; }
.tip-card p { font-size: 13.5px; color: var(--ink-muted); line-height: 1.5; }
.tip-card .en { font-family: var(--font-serif); font-style: italic; color: var(--orange-strong); }
@media (max-width: 820px) { .tips-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .tips-grid { grid-template-columns: 1fr; } }

/* ============================================================ Vidéos */
.video-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(20px,4vw,44px); align-items: center; margin-bottom: 36px; }
.vf-player { position: relative; aspect-ratio: 16/10; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-card-hover); background: #fff; display: block; }
.vf-player video, .vf-player img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.vf-fallback { position: absolute; inset: 0; display: grid; place-content: center; gap: 10px; text-align: center; background: linear-gradient(150deg, #FFF1DF, #E9F6EF 70%); }
.vf-fallback .mono-logo { font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: -.05em; background: var(--grad-ci); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.vf-fallback small { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }
.vf-play { position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-ci); box-shadow: 0 12px 28px -6px var(--theme-glow); transition: transform var(--t-fast); }
.vf-player:hover .vf-play { transform: translate(-50%,-50%) scale(1.08); }
.vf-play svg { width: 26px; height: 26px; color: #fff; margin-left: 3px; }
.vf-tag { position: absolute; z-index: 2; left: 14px; bottom: 14px; font-size: 12.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border-radius: var(--r-pill); background: rgba(255,255,255,.92); box-shadow: var(--shadow-sm); }
@media (max-width: 820px) { .video-feature { grid-template-columns: 1fr; } }

.video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel { position: relative; aspect-ratio: 9/16; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); display: block; box-shadow: var(--shadow-sm); transition: transform var(--t-base), box-shadow var(--t-base); }
.reel:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.reel video, .reel img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.reel-poster { position: absolute; inset: 0; display: grid; place-items: center; padding: 16px; background: linear-gradient(155deg, #FFE9CF, #DDF1E6); }
.reel-poster b { font-family: var(--font-script); font-weight: 700; font-size: 30px; color: var(--green-deep); }
.reel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(20,40,20,.55) 100%); pointer-events: none; }
.reel-play { position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.9); box-shadow: var(--shadow-card); transition: transform var(--t-fast); }
.reel:hover .reel-play { transform: translate(-50%,-50%) scale(1.12); }
.reel-play svg { width: 20px; height: 20px; color: var(--green-deep); margin-left: 2px; }
.reel-meta { position: absolute; z-index: 2; left: 13px; right: 13px; bottom: 12px; display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #fff; }
.reel-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
@media (max-width: 860px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }

.socials-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.social-card { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform var(--t-base), box-shadow var(--t-base); }
.social-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.social-ic { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; flex-shrink: 0; }
.social-ic svg { width: 25px; height: 25px; }
.social-ic.tiktok { background: #000; color: #fff; }
.social-ic.ig { background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888); color: #fff; }
.social-card b { font-size: 15px; } .social-card .muted { font-size: 12.5px; }
.social-card .go { margin-left: auto; color: var(--ink-muted); transition: transform var(--t-fast), color var(--t-fast); }
.social-card:hover .go { transform: translateX(4px); color: var(--theme-2); }
@media (max-width: 620px) { .socials-row { grid-template-columns: 1fr; } }

/* ============================================================ YouTube */
.yt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.yt-card { display: flex; flex-direction: column; gap: 9px; padding: 20px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform var(--t-base), box-shadow var(--t-base); }
.yt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.yt-top { display: flex; align-items: center; gap: 11px; }
.yt-ic { width: 40px; height: 28px; border-radius: 7px; background: #FF0000; color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.yt-ic svg { width: 17px; height: 17px; }
.yt-card b { font-size: 14.5px; }
.yt-level { font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--green); }
.yt-card p { font-size: 13px; color: var(--ink-muted); flex: 1; }
.yt-card .go { font-size: 13px; color: var(--theme-2); font-weight: 600; }
@media (max-width: 820px) { .yt-grid { grid-template-columns: 1fr; } }

/* ============================================================ Articles */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-card { display: flex; flex-direction: column; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform var(--t-base), box-shadow var(--t-base); }
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.article-cover { aspect-ratio: 16/9; position: relative; display: grid; place-items: center; overflow: hidden; }
.article-cover.c1 { background: linear-gradient(135deg, #FFE3C2, #FFD0A0); }
.article-cover.c2 { background: linear-gradient(135deg, #CFEFDD, #A7E2C4); }
.article-cover.c3 { background: linear-gradient(135deg, #FFE0CE, #CFEFDD); }
.article-cover .em { font-size: 38px; }
.article-cover .flag-bar { position: absolute; bottom: 13px; left: 15px; }
.article-body-c { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.article-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--theme-2); margin-bottom: 9px; }
.article-card h4 { font-size: 17px; font-weight: 600; line-height: 1.25; letter-spacing: -.01em; margin-bottom: 8px; }
.article-card p { font-size: 13px; color: var(--ink-muted); margin-bottom: 14px; flex: 1; }
.article-card .go { font-size: 13px; font-weight: 600; color: var(--theme-2); }
@media (max-width: 860px) { .article-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* ============================================================ Témoignages */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi { padding: 26px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi .stars { color: var(--orange); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.testi p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin-bottom: 20px; }
.testi-who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0; }
.testi-who b { font-size: 14px; display: block; } .testi-who .muted { font-size: 12px; }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

/* ============================================================ À propos */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.about-media { position: relative; aspect-ratio: 1/1; border-radius: var(--r-xl); overflow: hidden; border: 6px solid #fff; outline: 1px solid var(--line); box-shadow: var(--shadow-card); }
.about-media .portrait-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 2; }
.about-list { display: grid; gap: 14px; margin-top: 24px; }
.about-list li { display: flex; gap: 13px; align-items: flex-start; }
.about-list .ic { width: 40px; height: 40px; border-radius: 11px; flex-shrink: 0; display: grid; place-items: center; background: var(--green-wash); color: var(--green); }
.about-list .ic svg { width: 20px; height: 20px; }
.about-list b { display: block; font-size: 14.5px; margin-bottom: 2px; } .about-list .muted { font-size: 13px; }
@media (max-width: 820px) { .about { grid-template-columns: 1fr; } .about-media { max-width: 320px; } }

/* ============================================================ FAQ */
.faq { max-width: 740px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color var(--t-base); }
.faq-item[open] { border-color: var(--orange-line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; cursor: pointer; font-weight: 600; font-size: 15.5px; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q .pm { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--theme); border-radius: 2px; }
.faq-q .pm::before { width: 12px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 12px; transition: transform var(--t-base); }
.faq-item[open] .faq-q .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { padding: 0 22px 20px; color: var(--ink-muted); font-size: 14.5px; line-height: 1.55; }

/* ============================================================ CTA final (bande verte) */
.cta-final { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 5vw, 68px); text-align: center; background: var(--grad-green); color: var(--cream); box-shadow: var(--shadow-card-hover); }
.cta-final::before { content: ''; position: absolute; width: 380px; height: 380px; right: -80px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(237,122,0,.4), transparent 70%); }
.cta-final > * { position: relative; z-index: 1; }
.cta-final .h-display, .cta-final .h-xl { color: var(--cream); }
.cta-final .lead { color: rgba(255,255,255,.85); margin: 16px auto 28px; }
.cta-final .eyebrow { color: #FFD9A8; justify-content: center; } .cta-final .eyebrow::before { background: #FFD9A8; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }
.cta-final .script-ci { -webkit-text-fill-color: initial; color: #FFC97A; background: none; }

/* ============================================================ Footer */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 52px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-grid p { color: var(--ink-muted); font-size: 13.5px; max-width: 32ch; margin-top: 14px; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; color: var(--ink-muted); font-size: 14px; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--theme-2); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; border: 1px solid var(--line); background: #fff; color: var(--ink-2); transition: transform var(--t-fast), color var(--t-fast), border-color var(--t-fast); }
.footer-social a:hover { transform: translateY(-2px); color: var(--theme-2); border-color: var(--theme); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.footer-bottom .tiny { color: var(--ink-faint); }
.legal-links a { color: var(--ink-muted); transition: color var(--t-fast); }
.legal-links a:hover { color: var(--theme-2); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================ WhatsApp flottant */
.wa-fab { position: fixed; right: 20px; bottom: 20px; z-index: 70; display: inline-flex; align-items: center; gap: 11px; height: 56px; padding: 0 22px 0 18px; border-radius: var(--r-pill); background: var(--wa); color: var(--wa-ink); font-weight: 700; font-size: 14.5px; box-shadow: 0 12px 28px -6px rgba(37,211,102,.5), 0 2px 6px rgba(0,0,0,.12); transition: transform var(--t-base), box-shadow var(--t-base), opacity var(--t-base); transform: translateY(20px); opacity: 0; pointer-events: none; }
.wa-fab.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -6px rgba(37,211,102,.6); }
.wa-fab svg { width: 26px; height: 26px; }
@media (max-width: 520px) { .wa-fab .wa-label { display: none; } .wa-fab { padding: 0; width: 58px; height: 58px; justify-content: center; right: 16px; bottom: 16px; } .nav-cta .btn-wa { display: none; } .brand-name small { display: none; } }

/* ============================================================ Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 70ms; } .reveal-d2 { transition-delay: 140ms; } .reveal-d3 { transition-delay: 210ms; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
