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

  :root {
    --green-950: #00152e;
    --green-900: #001f45;
    --green-800: #002d62;
    --green-700: #003f8a;
    --green-600: #0052a8;
    --green-500: #0065BD;
    --green-400: #2681d0;
    --green-300: #6aaee3;
    --green-200: #a8d0f0;
    --green-100: #d6eaf9;
    --green-50:  #edf5fc;

    --slate-900: #0a1628;
    --slate-800: #1a2640;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50:  #f8fafc;

    --white: #ffffff;
    --accent: #0065BD;
    --accent-light: #6aaee3;
    --accent-dark: #002d62;

    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 40px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: box-shadow .3s;
  }
  nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-logo .dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--slate-600);
    text-decoration: none;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500 !important;
    font-size: 14px;
    transition: background .2s, transform .15s !important;
  }
  .nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--green-100);
    opacity: 0.6;
  }
  .hero-bg-circle.c1 { width: 600px; height: 600px; top: -200px; right: -150px; }
  .hero-bg-circle.c2 { width: 300px; height: 300px; bottom: 80px; left: -80px; opacity: 0.35; }

  .hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(var(--green-100) 1px, transparent 1px),
      linear-gradient(90deg, var(--green-100) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.35;
  }

  .hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeeff;
    color: #0052a8;
    border: none;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .hero-badge .badge-dot {
    width: 6px; height: 6px;
    background: #0065BD;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 800;
    line-height: 1.12;
    color: #0a1628;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }
  .hero-title .highlight {
    color: var(--accent);
    position: relative;
  }

  .hero-tagline {
    font-size: 17px;
    color: #475569;
    margin-bottom: 16px;
    font-weight: 400;
    line-height: 1.75;
    max-width: 480px;
  }

  .hero-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .hero-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--slate-100);
    color: var(--slate-700);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    font-weight: 500;
  }
  .hero-pill svg { width: 14px; height: 14px; color: var(--accent); }

  .hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(0,101,189,0.25);
  }
  .btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,101,189,0.3); }
  .btn-primary svg { width: 18px; height: 18px; }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--slate-600);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    padding: 14px 4px;
    transition: color .2s;
  }
  .btn-ghost:hover { color: var(--accent); }
  .btn-ghost svg { width: 16px; height: 16px; }

  /* Hero card preview */
  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .preview-card {
    background: #0a1628;
    border: 0.5px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    width: 100%;
    max-width: 500px;
    box-shadow:
      0 0 0 1px rgba(0,101,189,0.15),
      0 32px 80px rgba(0,0,0,0.35),
      0 8px 24px rgba(0,101,189,0.12);
    animation: float 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
  }
  .preview-card::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,101,189,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  .preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
  }
  .preview-title-group {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .preview-live-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.25);
    animation: livePulse 2s infinite;
    flex-shrink: 0;
  }
  @keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }
  .preview-title {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .preview-scope-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(0,101,189,0.25);
    color: #7bbfef;
    border: 0.5px solid rgba(0,101,189,0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .preview-total {
    text-align: left;
    padding: 20px 0;
    border-top: 0.5px solid rgba(255,255,255,0.08);
    border-bottom: 0.5px solid rgba(255,255,255,0.08);
    margin-bottom: 24px;
  }
  .preview-total-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
  }
  .preview-total-value {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
  }
  .preview-total-unit { font-size: 14px; color: rgba(255,255,255,0.35); font-weight: 400; }

  .preview-scopes {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .preview-scope-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .preview-scope-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); min-width: 52px; letter-spacing: 0.04em; text-transform: uppercase; }
  .preview-scope-bar-wrap { flex: 1; height: 10px; background: rgba(255,255,255,0.06); border-radius: 100px; overflow: hidden; }
  .preview-scope-bar { height: 100%; border-radius: 100px; transition: width 1.2s cubic-bezier(.4,0,.2,1); }
  .bar-s1 { background: linear-gradient(90deg, #0065BD, #1a8aff); }
  .bar-s2 { background: linear-gradient(90deg, #0891b2, #22d3ee); }
  .bar-s3 { background: linear-gradient(90deg, #3b82f6, #93c5fd); }
  .preview-scope-val { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); min-width: 52px; text-align: right; }
  .preview-scope-pct { font-size: 11px; color: rgba(255,255,255,0.22); width: 32px; text-align: right; }
  .preview-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 0.5px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .preview-footer-label { font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.04em; }
  .preview-ademe-badge {
    font-size: 10px; font-weight: 600;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.06em; text-transform: uppercase;
    border: 0.5px solid rgba(255,255,255,0.12);
    padding: 3px 8px; border-radius: 3px;
  }
  .preview-total-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    margin-top: 4px;
  }

  /* ─── STATS BAND ─── */
  .stats-band {
    background: linear-gradient(135deg, #003f8a 0%, #0065BD 60%, #1a7fd4 100%);
    padding: 56px 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.12);
  }
  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
  .stat-item { text-align: center; }
  .stat-value {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 6px;
  }
  .stat-label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 400; }

  /* ─── SECTION COMMONS ─── */
  section { padding: 96px 40px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0065BD;
    background: #dbeeff;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
  }
  .section-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0065BD;
    flex-shrink: 0;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 800;
    color: #0a1628;
    line-height: 1.12;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
  .section-subtitle {
    font-size: 17px;
    color: #475569;
    font-weight: 400;
    max-width: 560px;
    line-height: 1.75;
  }

  /* ─── HOW IT WORKS ─── */
  .how-it-works { background: var(--slate-50); }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
    background: var(--slate-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .step-card {
    background: var(--white);
    padding: 36px 32px;
    position: relative;
    transition: background .2s;
  }
  .step-card:hover { background: #f8fbff; }

  .step-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 800;
    color: #c8d4e3;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -2px;
  }
  .step-icon {
    width: 44px; height: 44px;
    background: #0a1628;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .step-icon svg { width: 22px; height: 22px; color: #ffffff; }
  .step-icon .ti { font-size: 20px; color: #ffffff; }
  .step-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 10px;
  }
  .step-desc { font-size: 14px; color: #64748b; line-height: 1.75; font-weight: 400; }
  .step-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0065BD;
    margin-bottom: 8px;
    display: block;
  }
  .step-tag {
    display: inline-block;
    margin-top: 18px;
    font-size: 11px;
    font-weight: 600;
    color: #0065BD;
    background: #dbeeff;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 0.03em;
  }

  /* ─── FEATURES / PILLARS ─── */
  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
  }
  .pillar-card {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: box-shadow .2s, transform .2s, border-color .2s;
    background: var(--white);
    cursor: default;
  }
  .pillar-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
    transform: translateY(-4px);
    border-color: var(--green-200);
  }
  .pillar-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .pillar-icon.green { background: var(--green-100); }
  .pillar-icon.slate { background: var(--slate-100); }
  .pillar-icon svg { width: 26px; height: 26px; }
  .pillar-icon.green svg { color: var(--green-700); }
  .pillar-icon.slate svg { color: var(--slate-600); }

  .pillar-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
  }
  .pillar-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 12px;
  }
  .pillar-desc { font-size: 14px; color: var(--slate-500); line-height: 1.7; font-weight: 300; }
  .pillar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 20px;
    transition: gap .2s;
  }
  .pillar-link:hover { gap: 10px; }
  .pillar-link svg { width: 16px; height: 16px; }

  /* ─── METHODOLOGY ─── */
  .methodology { background: var(--slate-900); color: var(--white); }
  .methodology .section-title { color: #ffffff; }
  .methodology .section-subtitle { color: rgba(255,255,255,0.6); font-weight: 400; }
  .methodology .section-eyebrow {
    color: #7bbfef;
    background: rgba(0,101,189,0.25);
    border: 0.5px solid rgba(0,101,189,0.4);
  }
  .methodology .section-eyebrow::before { background: #7bbfef; }

  .scopes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 56px;
  }

  .scope-blocks { display: flex; flex-direction: column; gap: 16px; }
  .scope-block {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: border-color .2s, background .2s;
    cursor: default;
  }
  .scope-block:hover { border-color: var(--green-500); background: rgba(0,101,189,0.06); }
  .scope-block-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
  .scope-chip {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
  }
  .s1 { background: rgba(106,174,227,0.25); color: var(--green-300); }
  .s2 { background: rgba(106,174,227,0.15); color: var(--green-300); }
  .s3 { background: rgba(106,174,227,0.08); color: var(--green-300); }
  .scope-block-title { font-size: 15px; font-weight: 500; color: var(--white); }
  .scope-block-desc { font-size: 13px; color: var(--slate-400); line-height: 1.6; font-weight: 300; }

  .methodology-right { }
  .methodology-highlight {
    background: rgba(0,101,189,0.1);
    border: 1px solid rgba(0,101,189,0.25);
    border-radius: var(--radius-lg);
    padding: 32px;
  }
  .methodology-highlight h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }
  .methodology-highlight p { font-size: 14px; color: var(--slate-400); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }

  .db-list { display: flex; flex-direction: column; gap: 10px; }
  .db-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--slate-300);
  }
  .db-item svg { width: 16px; height: 16px; color: var(--green-400); flex-shrink: 0; }

  /* ─── FREE PROMISE ─── */
  .free-section { background: #f0f5fb; }
  .free-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .free-checklist { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
  .free-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--slate-700);
  }
  .check-icon {
    width: 22px; height: 22px;
    background: var(--green-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .check-icon svg { width: 12px; height: 12px; color: white; }

  .free-visual {
    background: var(--white);
    border: 0.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 40px rgba(0,101,189,0.08);
  }
  .free-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .free-grid-hero {
    grid-column: 1 / -1;
    background: #0a1628;
    border-radius: 10px;
    padding: 28px;
  }
  .free-grid-hero-label {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    margin-bottom: 10px;
  }
  .free-grid-hero-val {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: #4da3e8;
    letter-spacing: -1px;
    line-height: 1;
  }
  .free-grid-stat {
    background: #f8fafc;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .free-grid-stat-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #dbeeff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .free-grid-stat-icon i { font-size: 16px; color: #0065BD; }
  .free-grid-stat-text {
    font-size: 13px;
    font-weight: 600;
    color: #0a1628;
    line-height: 1.45;
  }
  .free-grid-stat-sub {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 2px;
  }
  .vs-list { display: flex; flex-direction: column; gap: 10px; }
  .vs-item { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
  .vs-name { color: var(--slate-500); }
  .vs-price { font-weight: 500; color: var(--slate-700); }
  .vs-price.free { color: var(--accent); font-weight: 700; }

  /* ─── CTA ─── */
  .cta-section {
    background: var(--accent-dark);
    padding: 96px 40px;
    text-align: center;
  }
  .cta-inner { max-width: 640px; margin: 0 auto; }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.1;
  }
  .cta-subtitle { font-size: 17px; color: rgba(255,255,255,0.65); margin-bottom: 40px; font-weight: 400; }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--accent-dark);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    font-family: var(--font-display);
  }
  .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
  .cta-btn svg { width: 18px; height: 18px; }

  /* ─── FOOTER ─── */
  footer {
    background: var(--slate-900);
    padding: 60px 40px 32px;
    color: var(--slate-400);
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
  }
  .footer-logo .dot { width: 7px; height: 7px; background: var(--green-400); border-radius: 50%; }
  .footer-tagline { font-size: 13px; line-height: 1.6; font-weight: 300; }
  .footer-col-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
  }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { color: var(--slate-400); text-decoration: none; font-size: 14px; transition: color .2s; }
  .footer-links a:hover { color: var(--green-300); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
  }
  .footer-bottom a { color: var(--slate-400); text-decoration: none; }
  .footer-bottom a:hover { color: var(--green-300); }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  .stagger-1 { transition-delay: .1s; }
  .stagger-2 { transition-delay: .2s; }
  .stagger-3 { transition-delay: .3s; }

  /* ─── Masquage temporaire section "How it works" — code conservé intact ─── */
  .is-hidden-temp {
    display: none;
  }
  .nav-item-hidden {
    display: none;
  }