/* ============================================
   FINAN LANDING — DESIGN SYSTEM v2
   Couleur principale : #0a6173
   ============================================ */

/* -----------------------------------------------
   1. VARIABLES
----------------------------------------------- */
:root {
    /* Brand */
    --primary:        #0a6173;
    --primary-light:  #0d8fa8;
    --primary-lighter:#11b4c6;
    --primary-dark:   #084d5e;
    --primary-darker: #063a48;
    --primary-50:     #f0f9fb;
    --primary-100:    #d9f0f5;
    --primary-200:    #a8dde8;

    /* Alias compatibilité */
    --primary-bg:       #e8f4f7;
    --primary-bg-light: #f0f9fb;
    --accent:           #0d8fa8;
    --accent-hover:     #0a6173;
    --page-bg:          #ffffff;

    /* Neutrals */
    --white:     #ffffff;
    --gray-50:   #f9fafb;
    --gray-100:  #f3f4f6;
    --gray-200:  #e5e7eb;
    --gray-300:  #d1d5db;
    --gray-400:  #9ca3af;
    --gray-500:  #6b7280;
    --gray-600:  #4b5563;
    --gray-700:  #374151;
    --gray-800:  #1f2937;
    --gray-900:  #0f1923;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.09), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 28px 56px rgba(0,0,0,0.1),  0 8px 20px rgba(0,0,0,0.05);
    --shadow-p:  0 8px 28px rgba(10,97,115,0.22);
    --shadow-pl: 0 16px 48px rgba(10,97,115,0.30);

    /* Radii */
    --r-sm:   0.375rem;
    --r:      0.625rem;
    --r-lg:   0.875rem;
    --r-xl:   1.25rem;
    --r-2xl:  1.75rem;
    --r-full: 9999px;

    /* Typography */
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --t:    0.22s;
    --t-md: 0.35s;
    --t-lg: 0.55s;

    /* Layout */
    --nav-h: 72px;
    --section-gap: 6rem;
}

/* -----------------------------------------------
   2. RESET & BASE
----------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--gray-900);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; transition: color var(--t) var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* -----------------------------------------------
   2b. DECORATIVE BACKGROUND
----------------------------------------------- */

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,97,115,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}
.cursor-glow.active { opacity: 1; }

/* Floating circles */
.floating-circles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.04;
    background: var(--primary);
    animation: floatCircle 22s ease-in-out infinite;
}
.floating-circle:nth-child(1) { width: 420px; height: 420px; top: -100px; left: -80px;  animation-delay: 0s; }
.floating-circle:nth-child(2) { width: 280px; height: 280px; top: 50%;    right: -60px; animation-delay: -6s; }
.floating-circle:nth-child(3) { width: 180px; height: 180px; bottom: 12%; left: 8%;    animation-delay: -12s; }
.floating-circle:nth-child(4) { width: 340px; height: 340px; top: 30%;    left: 42%;   animation-delay: -18s; opacity: 0.025; }
.floating-circle:nth-child(5) { width: 240px; height: 240px; bottom: -40px; right: 18%; animation-delay: -9s; }
@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(25px, -18px) scale(1.04); }
    66%       { transform: translate(-15px, 15px) scale(0.96); }
}

/* -----------------------------------------------
   3. NAVBAR
----------------------------------------------- */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: background var(--t-md) var(--ease),
                box-shadow var(--t-md) var(--ease),
                backdrop-filter var(--t-md) var(--ease);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

/* — Brand — */
.navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-logo { height: 34px; width: auto; display: block; }
.navbar-logo--dark  { display: none; }

/* — Links — */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.navbar-links a {
    position: relative;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    border-radius: var(--r-full);
    transition: color var(--t) var(--ease), background var(--t) var(--ease);
}

.navbar-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

/* — Actions — */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* — Scrolled state — */
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.05);
}

.navbar.scrolled .navbar-logo--light { display: none; }
.navbar.scrolled .navbar-logo--dark  { display: block; }

.navbar.scrolled .navbar-links a {
    color: var(--gray-600);
}
.navbar.scrolled .navbar-links a:hover {
    color: var(--primary);
    background: var(--primary-50);
}

/* — Mobile toggle — */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    background: none;
    border: none;
}
.navbar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--t) var(--ease);
}
.navbar.scrolled .navbar-toggle span { background: var(--gray-700); }
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* — Mobile menu — */
.navbar-mobile { display: none; }

/* -----------------------------------------------
   4. BUTTONS
----------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: var(--r-full);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all var(--t) var(--ease);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* Primary — fond sombre */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-p);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-pl);
    transform: translateY(-2px);
}

/* Primary sur fond hero (teal) — blanc */
.hero .btn-primary,
.cta-section .btn-primary,
.stats .btn-primary {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}
.hero .btn-primary:hover,
.cta-section .btn-primary:hover,
.stats .btn-primary:hover {
    background: var(--primary-50);
    color: var(--primary-dark);
    border-color: var(--primary-50);
    box-shadow: 0 10px 32px rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Outline — sur fond sombre */
.btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

/* Outline — sur fond clair */
.navbar.scrolled .btn-outline,
.section .btn-outline,
.contact-form-card .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}
.navbar.scrolled .btn-outline:hover,
.section .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* White button */
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--primary-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Sizes */
.btn-lg { padding: 0.9rem 2.1rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.85rem; }

/* Pulse */
.btn-pulse { animation: pulseBtn 2.2s ease-in-out infinite; }
@keyframes pulseBtn {
    0%, 100% { box-shadow: var(--shadow-p); }
    50%       { box-shadow: 0 0 0 8px rgba(10,97,115,0.12), var(--shadow-p); }
}
.hero .btn-pulse,
.cta-section .btn-pulse {
    animation: pulseBtnLight 2.2s ease-in-out infinite;
}
@keyframes pulseBtnLight {
    0%, 100% { box-shadow: 0 6px 20px rgba(255,255,255,0.2); }
    50%       { box-shadow: 0 0 0 8px rgba(255,255,255,0.1), 0 6px 20px rgba(255,255,255,0.2); }
}

/* Cookie banner overrides */
.cookie-banner .btn-outline {
    color: var(--gray-600);
    border-color: var(--gray-300);
}
.cookie-banner .btn-outline:hover {
    background: var(--gray-50);
    color: var(--gray-900);
    border-color: var(--gray-400);
}

/* -----------------------------------------------
   5. HERO
----------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h);
    background: #070d14;
}

/* Orbes lumineux */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 70% at 75% 40%, rgba(11,134,158,0.28) 0%, transparent 65%),
        radial-gradient(ellipse 40% 50% at 20% 20%, rgba(10,97,115,0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(6,58,72,0.6)    0%, transparent 55%);
    z-index: 0;
}

/* Grille de points */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 75%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.hero-content { color: var(--white); }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem 0.4rem 0.6rem;
    background: rgba(13,143,168,0.15);
    border: 1px solid rgba(13,143,168,0.35);
    border-radius: var(--r-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: #7ee8f5;
    margin-bottom: 1.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.hero-badge svg { width: 13px; height: 13px; opacity: 0.8; }

/* Titre */
.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.85rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    color: var(--white);
    letter-spacing: -0.025em;
}
.hero-title span {
    display: block;
    background: linear-gradient(110deg, #5fd8ea 0%, #a8f0f9 45%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.1em;
}

/* Description */
.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.25rem;
    max-width: 460px;
}

/* Boutons */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 2.75rem;
    flex-wrap: wrap;
}

/* Trust badges */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
}
.hero-trust-item svg { width: 14px; height: 14px; color: #5fd8ea; opacity: 0.9; }

/* ——— Zone visuelle droite ——— */
.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ============================================
   HERO SCENE — SVG animé
   ============================================ */
.hero-scene {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.hero-svg {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
    animation: heroFloat 7s ease-in-out infinite;
}

/* ——— Pièces & billets qui volent vers le téléphone ——— */
/* Le téléphone est centré à environ cx=210 cy=262 dans le viewBox 420x560 */

/* Chaque coin-fly part de sa position et se déplace vers le centre du téléphone */
.coin-fly {
    transform-origin: center;
}

/* Coin 1 : haut-gauche → centre-téléphone */
.coin-fly--1 {
    animation: flyIn1 3.2s ease-in-out infinite;
}
@keyframes flyIn1 {
    0%   { transform: translate(0, 0)     scale(1);   opacity: 1; }
    70%  { opacity: 0.9; }
    90%  { transform: translate(172px, 182px) scale(0.25); opacity: 0; }
    100% { transform: translate(0, 0)     scale(1);   opacity: 1; }
}

/* Coin 2 (billet) : haut-droite → centre */
.coin-fly--2 {
    animation: flyIn2 3.2s ease-in-out infinite;
    animation-delay: -1.1s;
}
@keyframes flyIn2 {
    0%   { transform: translate(0, 0)      scale(1);   opacity: 1; }
    70%  { opacity: 0.9; }
    90%  { transform: translate(-156px, 183px) scale(0.2); opacity: 0; }
    100% { transform: translate(0, 0)      scale(1);   opacity: 1; }
}

/* Coin 3 : gauche milieu → centre */
.coin-fly--3 {
    animation: flyIn3 3.2s ease-in-out infinite;
    animation-delay: -2.1s;
}
@keyframes flyIn3 {
    0%   { transform: translate(0, 0)    scale(1);   opacity: 1; }
    70%  { opacity: 0.9; }
    90%  { transform: translate(182px, 2px) scale(0.25); opacity: 0; }
    100% { transform: translate(0, 0)    scale(1);   opacity: 1; }
}

/* Coin 4 (billet) : bas-gauche → centre */
.coin-fly--4 {
    animation: flyIn4 3.2s ease-in-out infinite;
    animation-delay: -0.5s;
}
@keyframes flyIn4 {
    0%   { transform: translate(0, 0)       scale(1);   opacity: 1; }
    70%  { opacity: 0.9; }
    90%  { transform: translate(166px, -158px) scale(0.2); opacity: 0; }
    100% { transform: translate(0, 0)       scale(1);   opacity: 1; }
}

/* Coin 5 : bas-droite → centre */
.coin-fly--5 {
    animation: flyIn5 3.2s ease-in-out infinite;
    animation-delay: -1.7s;
}
@keyframes flyIn5 {
    0%   { transform: translate(0, 0)        scale(1);   opacity: 1; }
    70%  { opacity: 0.9; }
    90%  { transform: translate(-175px, -168px) scale(0.25); opacity: 0; }
    100% { transform: translate(0, 0)        scale(1);   opacity: 1; }
}

/* Coin 6 (billet) : droite milieu → centre */
.coin-fly--6 {
    animation: flyIn6 3.2s ease-in-out infinite;
    animation-delay: -2.6s;
}
@keyframes flyIn6 {
    0%   { transform: translate(0, 0)       scale(1);   opacity: 1; }
    70%  { opacity: 0.9; }
    90%  { transform: translate(-166px, 7px) scale(0.2); opacity: 0; }
    100% { transform: translate(0, 0)       scale(1);   opacity: 1; }
}

/* Trainées lumineuses — animation dashoffset */
.trail--1, .trail--2, .trail--3, .trail--4, .trail--5 {
    stroke-dasharray: 4 6;
    animation: trailAnim 3.2s linear infinite;
}
.trail--1 { animation-delay: -0.2s; }
.trail--2 { animation-delay: -1.3s; }
.trail--3 { animation-delay: -2.3s; }
.trail--4 { animation-delay: -0.7s; }
.trail--5 { animation-delay: -1.9s; }
@keyframes trailAnim {
    0%   { opacity: 0.4; stroke-dashoffset: 40; }
    50%  { opacity: 0.15; }
    100% { opacity: 0.4; stroke-dashoffset: 0; }
}

/* Anneau d'impact pulsant */
.impact-ring {
    animation: impactPulse 1.8s ease-out infinite;
}
@keyframes impactPulse {
    0%   { r: 8;  opacity: 0.5; }
    100% { r: 22; opacity: 0; }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

/* -----------------------------------------------
   6. PARTNERS
----------------------------------------------- */
.partners {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 2.75rem 0;
    position: relative;
    z-index: 1;
}
.partners-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 1.75rem;
}
.partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-500);
    opacity: 0.75;
    transition: all var(--t-md) var(--ease);
}
.partner-logo:hover { opacity: 1; transform: translateY(-2px); }
.partner-logo .partner-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.partner-logo .partner-icon svg { width: 20px; height: 20px; }
.partner-logo .partner-name { line-height: 1.1; }
.partner-logo .partner-name span {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Couleurs par opérateur */
.partner-logo--fedapay .partner-icon  { background: #eef7f9; color: #0a6173; }
.partner-logo--kkiapay .partner-icon  { background: #e8f5e9; color: #1b8c3e; }
.partner-logo--momo    .partner-icon  { background: #fff8e1; color: #e6a000; }
.partner-logo--mtn     .partner-icon  { background: #fff3e0; color: #f57c00; }
.partner-logo--moov    .partner-icon  { background: #e3f2fd; color: #1565c0; }

/* -----------------------------------------------
   7. SECTIONS — BASE
----------------------------------------------- */
.section {
    padding: var(--section-gap) 0;
    position: relative;
    z-index: 1;
}
.section-alt { background: var(--primary-50); }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.35rem 0.9rem;
    background: var(--primary-100);
    border-radius: var(--r-full);
}
.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-500);
    line-height: 1.75;
}

/* -----------------------------------------------
   8. FEATURES
----------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 2rem 2rem 2rem;
    border: 1px solid var(--gray-200);
    transition: all var(--t-md) var(--ease);
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-50) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--t-md) var(--ease);
    pointer-events: none;
    border-radius: inherit;
}
.feature-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.feature-card:hover::after { opacity: 1; }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg);
    background: var(--primary-100);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    transition: background var(--t) var(--ease), transform var(--t-md) var(--ease);
}
.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* -----------------------------------------------
   9. HOW IT WORKS
----------------------------------------------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.66% + 1.5rem);
    right: calc(16.66% + 1.5rem);
    height: 1px;
    background: linear-gradient(90deg, var(--primary-200), var(--primary-lighter), var(--primary-200));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1rem;
}
.step-number {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-200);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 0 0 6px var(--primary-50), var(--shadow-sm);
    transition: all var(--t-md) var(--ease);
}
.step-card:hover .step-number {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 6px rgba(10,97,115,0.12), var(--shadow-p);
    transform: scale(1.05);
}
.step-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 260px;
    margin: 0 auto;
}

/* -----------------------------------------------
   10. APP PREVIEW
----------------------------------------------- */
.app-preview {
    padding: var(--section-gap) 0;
    background: var(--primary-50);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.app-preview::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10,97,115,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.app-preview-image {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

/* Badges flottants sur le mockup */
.floating-element {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 999px;
    padding: 0.45rem 0.9rem 0.45rem 0.55rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    animation: feFloat 4s ease-in-out infinite;
}
.floating-element svg { flex-shrink: 0; }

.fe-top-left    { top: 12%;  left: -20px;  animation-delay: 0s; }
.fe-top-right   { top: 12%;  right: -20px; animation-delay: -1.2s; }
.fe-bottom-left { bottom: 18%; left: -20px;  animation-delay: -2.4s; }
.fe-bottom-right{ bottom: 18%; right: -20px; animation-delay: -0.8s; }

@keyframes feFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}
.app-preview-image img {
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 24px 60px rgba(10,97,115,0.18));
}
.app-preview-placeholder {
    width: 100%;
    height: 420px;
    background: var(--white);
    border-radius: var(--r-2xl);
    border: 2px dashed var(--primary-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-400);
}
.app-preview-placeholder svg { width: 56px; height: 56px; }
.app-preview-placeholder span { font-size: 0.875rem; }

/* -----------------------------------------------
   11. STATS
----------------------------------------------- */
.stats {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--primary-darker);
}
.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 100% at 0% 50%,   rgba(13,143,168,0.35) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80%  at 100% 50%, rgba(17,180,198,0.20) 0%, transparent 60%),
        linear-gradient(135deg, #063a48 0%, #0a6173 50%, #0d8fa8 100%);
}
.stats .container {
    position: relative;
    z-index: 1;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat-item { color: var(--white); }
.stat-item h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.4rem;
    letter-spacing: -0.02em;
}
.stat-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

/* Dividers between stat items */
.stat-item + .stat-item {
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* -----------------------------------------------
   12. TESTIMONIALS
----------------------------------------------- */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}
.testimonials-track {
    display: flex;
    transition: transform 0.5s var(--ease);
}
.testimonial-card { min-width: 100%; padding: 0 0.5rem; }
.testimonial-inner {
    background: var(--white);
    border-radius: var(--r-2xl);
    padding: 2.75rem 3rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}
.testimonial-stars svg { width: 18px; height: 18px; }

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-style: italic;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-text::before { content: '\201C'; font-size: 1.5em; opacity: 0.3; }
.testimonial-text::after  { content: '\201D'; font-size: 1.5em; opacity: 0.3; }

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-100);
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-200);
}
.testimonial-info h4 { font-size: 0.9375rem; font-weight: 700; text-align: left; }
.testimonial-info p  { font-size: 0.8125rem; color: var(--gray-400); text-align: left; }

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--t-md) var(--ease);
}
.testimonials-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* -----------------------------------------------
   13. CTA SECTION
----------------------------------------------- */
.cta-section {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    text-align: center;
    z-index: 1;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 0%, rgba(13,143,168,0.4) 0%, transparent 65%),
        linear-gradient(160deg, #063a48 0%, #0a6173 60%, #0d8fa8 100%);
}
.cta-section .container {
    position: relative;
    z-index: 1;
}
.cta-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.cta-section p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

/* -----------------------------------------------
   14. NEWSLETTER
----------------------------------------------- */
.newsletter {
    padding: 4rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    position: relative;
    z-index: 1;
}
.newsletter-inner {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}
.newsletter-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.newsletter-inner p {
    color: var(--gray-500);
    margin-bottom: 1.75rem;
    font-size: 0.9375rem;
}
.newsletter-form {
    display: flex;
    gap: 0.625rem;
    max-width: 420px;
    margin: 0 auto;
}
.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-full);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--t) var(--ease);
    min-width: 0;
    background: var(--gray-50);
}
.newsletter-form input:focus {
    border-color: var(--primary);
    background: var(--white);
}
.newsletter-form button { flex-shrink: 0; }

/* -----------------------------------------------
   15. FOOTER
----------------------------------------------- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4.5rem 0 0;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand { margin-bottom: 1.25rem; }
.footer-logo  { height: 30px; width: auto; display: block; }

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--gray-500);
    max-width: 280px;
}
.footer h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-200);
    margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a {
    font-size: 0.9rem;
    color: var(--gray-500);
    transition: color var(--t) var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-social {
    display: flex;
    gap: 0.625rem;
    margin-top: 1.5rem;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all var(--t) var(--ease);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.footer-social a svg { width: 16px; height: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--gray-600);
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a { color: var(--gray-600); transition: color var(--t) var(--ease); }
.footer-bottom-links a:hover { color: var(--gray-300); }

/* -----------------------------------------------
   16. CONTACT PAGE
----------------------------------------------- */
.page-header {
    position: relative;
    overflow: hidden;
    padding: 9rem 0 5rem;
    text-align: center;
    color: var(--white);
    z-index: 1;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(13,143,168,0.4) 0%, transparent 65%),
        linear-gradient(160deg, #063a48 0%, #0a6173 60%, #0d8fa8 100%);
    z-index: -1;
}
.page-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.page-header p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 0;
}

.contact-form-card,
.contact-info-card {
    background: var(--white);
    border-radius: var(--r-2xl);
    padding: 2.5rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 1.375rem; }
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-lg);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--gray-50);
    outline: none;
    transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(10,97,115,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 0.8125rem; color: #dc2626; margin-top: 0.375rem; }

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r-lg);
    background: var(--primary-100);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; }
.contact-info-text h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-info-text p  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.55; }

/* Flash messages */
.alert {
    padding: 0.875rem 1.25rem;
    border-radius: var(--r-lg);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #bbf7d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }

/* -----------------------------------------------
   17. LEGAL PAGES
----------------------------------------------- */
.legal-page { position: relative; z-index: 1; }
.legal-content {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 3.5rem;
    padding: 3rem 0 5rem;
    max-width: 980px;
    margin: 0 auto;
}
.legal-toc {
    position: sticky;
    top: calc(var(--nav-h) + 2rem);
    align-self: start;
}
.legal-toc h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 1rem;
}
.legal-toc ul li { margin-bottom: 0.4rem; }
.legal-toc ul a {
    font-size: 0.875rem;
    color: var(--gray-500);
    display: block;
    padding: 0.25rem 0 0.25rem 0.75rem;
    border-left: 2px solid transparent;
    transition: all var(--t) var(--ease);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.legal-toc ul a:hover,
.legal-toc ul a.active {
    color: var(--primary);
    border-left-color: var(--primary);
    background: var(--primary-50);
    padding-left: 1rem;
}
.legal-body { max-width: 680px; }
.legal-update { font-size: 0.875rem; color: var(--gray-400); margin-bottom: 2rem; }
.legal-body h2 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
    margin-bottom: 0.875rem;
    padding-top: 1rem;
    color: var(--gray-900);
}
.legal-body h3 { font-size: 1.0625rem; margin-top: 1.5rem; margin-bottom: 0.625rem; }
.legal-body p  { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.85; margin-bottom: 1rem; }
.legal-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-body ul li { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 0.5rem; }

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* -----------------------------------------------
   18. WAITLIST PAGE
----------------------------------------------- */
.hero--waitlist .container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 700px;
}
.hero--waitlist .hero-description { margin: 0 auto 2rem; max-width: 540px; }
.hero--waitlist .hero-buttons     { justify-content: center; }
.hero--waitlist .hero-trust       { justify-content: center; }

.waitlist-problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.waitlist-problems-grid .feature-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}
.waitlist-problems-grid .feature-icon { flex-shrink: 0; margin-bottom: 0; }
.waitlist-problems-grid .feature-card h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.waitlist-problems-grid .feature-card p  { font-size: 0.875rem; }

.waitlist-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 860px;
    margin: 0 auto;
}
.benefit-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 1.625rem;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: all var(--t-md) var(--ease);
}
.benefit-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r);
    background: var(--primary-100);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit-card h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; }
.benefit-card p  { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.6; }

/* Social proof */
.waitlist-social-proof {
    text-align: center;
    padding: 3.5rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}
.waitlist-social-proof h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.avatar-stack {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.avatar-stack .avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-100);
    border: 3px solid var(--white);
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
}
.avatar-stack .avatar:first-child { margin-left: 0; }
.avatar-stack .avatar:nth-child(even)  { background: #cceef5; color: #084d5e; }
.avatar-stack .avatar:nth-child(3n)    { background: #d1fae5; color: #065f46; }

/* Waitlist form */
.waitlist-form-section {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
    z-index: 1;
}
.waitlist-form-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(13,143,168,0.4) 0%, transparent 65%),
        linear-gradient(160deg, #063a48 0%, #0a6173 60%, #0d8fa8 100%);
}
.waitlist-form-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--r-2xl);
    padding: 3rem;
    max-width: 460px;
    margin: 0 auto;
    box-shadow: 0 32px 64px rgba(0,0,0,0.18);
}
.waitlist-form-card h2 { font-size: 1.625rem; text-align: center; margin-bottom: 0.5rem; }
.waitlist-form-card .subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}
.waitlist-form-card .form-group input { border-radius: var(--r-full); }
.waitlist-form-card .btn { width: 100%; padding: 1rem; font-size: 1rem; }
.waitlist-privacy-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}
.waitlist-privacy-note svg { width: 13px; height: 13px; flex-shrink: 0; }
.waitlist-privacy-note a { color: var(--primary); text-decoration: underline; }

/* -----------------------------------------------
   19. HOME PAGE — SPECIAL VARIANTS
----------------------------------------------- */
.hero--home .container {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 820px;
}
.hero--home .hero-description { margin: 0 auto 2.25rem; max-width: 580px; }
.hero--home .hero-buttons     { justify-content: center; }
.hero--home .hero-trust       { justify-content: center; }

/* Animated green dot */
.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: greenDot 2s ease-in-out infinite;
}
@keyframes greenDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
    50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

/* Inline email form in hero */
.hero-inline-form {
    display: flex;
    gap: 0.625rem;
    max-width: 520px;
    margin: 0 auto 1.5rem;
}
.hero-inline-form input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.4rem;
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: var(--r-full);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    background: rgba(255,255,255,0.12);
    color: var(--white);
    backdrop-filter: blur(8px);
    outline: none;
    transition: all var(--t) var(--ease);
    min-width: 0;
}
.hero-inline-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
.hero-inline-form input[type="email"]:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.18);
}
.hero-inline-form .btn { flex-shrink: 0; }
.hero-form-error {
    color: #fca5a5;
    font-size: 0.875rem;
    margin-top: -0.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Problems grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.problem-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 2rem;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all var(--t-md) var(--ease);
}
.problem-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--gray-300); }
.problem-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.problem-icon svg { width: 26px; height: 26px; }
.problem-icon--red    { background: #fef2f2; color: #dc2626; }
.problem-icon--orange { background: #fff7ed; color: #ea580c; }
.problem-icon--yellow { background: #fef9c3; color: #ca8a04; }
.problem-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.6rem; }
.problem-card p  { font-size: 0.9rem; color: var(--gray-500); line-height: 1.65; }

/* Solutions grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 860px;
    margin: 0 auto;
}
.solution-card {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all var(--t-md) var(--ease);
}
.solution-card:hover { border-color: var(--primary-200); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.solution-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--r-lg);
    background: var(--primary-100);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.solution-icon svg { width: 22px; height: 22px; }
.solution-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.solution-card p  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.65; }
.features-grid--2col { grid-template-columns: repeat(2, 1fr); }

/* Social proof banner */
.social-proof-banner {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0;
    text-align: center;
    color: var(--white);
    z-index: 1;
}
.social-proof-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 50%, var(--primary-light) 100%);
}
.social-proof-banner .container { position: relative; z-index: 1; }
.social-proof-banner h3 { font-size: 1.75rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.social-proof-banner p  { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 420px; margin: 0 auto; }
.social-proof-banner .avatar-stack { margin-bottom: 1.5rem; }
.social-proof-banner .avatar-stack .avatar {
    border-color: rgba(10,97,115,0.35);
    width: 48px;
    height: 48px;
    font-size: 0.875rem;
}

/* CTA final (with form) */
.cta-final {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
    z-index: 1;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #063a48 0%, #0a6173 60%, #0d8fa8 100%);
}
.cta-final-card {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: var(--r-2xl);
    padding: 3.5rem 3rem;
    max-width: 540px;
    margin: 0 auto;
    box-shadow: 0 28px 60px rgba(0,0,0,0.2);
    text-align: center;
}
.cta-final-card h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.75rem; line-height: 1.25; }
.cta-final-subtitle { color: var(--gray-500); margin-bottom: 2rem; font-size: 0.9375rem; }
.cta-final-form .cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.cta-final-form input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--r-full);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--t) var(--ease);
    background: var(--gray-50);
}
.cta-final-form input:focus { border-color: var(--primary); background: var(--white); }
.cta-final-form .btn { width: 100%; }
.cta-privacy-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--gray-400);
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}
.cta-privacy-note a { color: var(--primary); text-decoration: underline; }

/* Navbar waitlist / footer waitlist */
.navbar--waitlist .navbar-links,
.navbar--waitlist .navbar-toggle { display: none; }
.navbar--waitlist .container { display: flex; align-items: center; justify-content: space-between; }
.navbar--waitlist .navbar-actions { display: flex; }

.footer--waitlist {
    padding: 2.5rem 0;
    border-top: 1px solid var(--gray-100);
    background: var(--white);
}
.footer-waitlist-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.footer-waitlist-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.footer-waitlist-bottom p { font-size: 0.8125rem; color: var(--gray-400); margin: 0; }

/* -----------------------------------------------
   20. COOKIE BANNER
----------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1rem;
    pointer-events: none;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.cookie-banner.visible  { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner.hiding   { transform: translateY(100%); opacity: 0; pointer-events: none; }
.cookie-banner-inner {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.05);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cookie-banner-content {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    flex: 1;
    min-width: 0;
}
.cookie-banner-icon { flex-shrink: 0; color: var(--primary); margin-top: 0.125rem; }
.cookie-banner-text { font-size: 0.875rem; line-height: 1.5; color: var(--gray-600); margin: 0; }
.cookie-banner-text a { color: var(--primary); text-decoration: underline; font-weight: 500; }
.cookie-banner-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* -----------------------------------------------
   21. REVEAL ANIMATIONS
----------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--t-lg) var(--ease), transform var(--t-lg) var(--ease);
}
.reveal.fade-left  { transform: translateX(-24px); }
.reveal.fade-right { transform: translateX(24px); }
.reveal.zoom       { transform: scale(0.94); }
.reveal.visible    { opacity: 1; transform: translate(0,0) scale(1); }

.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.40s; }

/* -----------------------------------------------
   22. RESPONSIVE
----------------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
    :root { --section-gap: 5rem; }

    .hero .container          { grid-template-columns: 1fr; text-align: center; padding-top: 2rem; }
    .hero-content             { order: 1; }
    .hero-image               { order: 0; }
    .hero-title               { font-size: 2.6rem; }
    .hero-description         { margin: 0 auto 2rem; }
    .hero-buttons             { justify-content: center; }
    .hero-trust               { justify-content: center; border-top: none; padding-top: 0; }
    .hero-scene               { max-width: 340px; margin: 0 auto; }
    .coin-fly, .trail--1, .trail--2, .trail--3, .trail--4, .trail--5 { display: none; }

    .features-grid            { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before       { display: none; }
    .stats-grid               { grid-template-columns: repeat(2, 1fr); }
    .stat-item + .stat-item   { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
    .footer-grid              { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid             { grid-template-columns: 1fr; }
    .waitlist-problems-grid   { grid-template-columns: 1fr; }
    .waitlist-benefits-list   { grid-template-columns: 1fr; }
    .problems-grid            { grid-template-columns: 1fr; }
    .solutions-grid           { grid-template-columns: 1fr; }
    .features-grid--2col      { grid-template-columns: 1fr; }
    .cta-final-form .cta-form-row { grid-template-columns: 1fr; }
    .legal-content            { grid-template-columns: 1fr; }
    .legal-toc                { position: static; border-bottom: 1px solid var(--gray-200); padding-bottom: 1rem; margin-bottom: 1.5rem; }
}

/* Mobile */
@media (max-width: 768px) {
    :root { --nav-h: 68px; --section-gap: 4rem; }

    .navbar-links,
    .navbar-actions   { display: none; }
    .navbar-toggle    { display: flex; }

    /* Mobile menu */
    .navbar-mobile {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        padding: 1.25rem 1.5rem;
        z-index: 999;
    }
    .navbar-mobile.open     { display: block; }
    .navbar-mobile a {
        display: block;
        padding: 0.75rem 0;
        font-size: 0.9375rem;
        color: var(--gray-700);
        font-weight: 500;
        border-bottom: 1px solid var(--gray-100);
    }
    .navbar-mobile a:last-child { border-bottom: none; }
    .navbar-mobile .btn { width: 100%; margin-top: 1rem; }

    .hero                 { min-height: auto; padding: 5.5rem 0 3.5rem; }
    .hero-title           { font-size: 2.1rem; }
    .hero-buttons         { flex-direction: column; align-items: stretch; }
    .hero-trust           { flex-direction: column; gap: 0.625rem; border-top: none; padding-top: 0; }
    .hero-image           { display: none !important; }

    .features-grid        { grid-template-columns: 1fr; }
    .steps-grid           { grid-template-columns: 1fr; gap: 2.5rem; }
    .stats-grid           { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .stat-item + .stat-item { border-left: none; }

    .footer-grid          { grid-template-columns: 1fr; }
    .footer-bottom        { flex-direction: column; gap: 1rem; text-align: center; }

    .newsletter-form      { flex-direction: column; }
    .hero-inline-form     { flex-direction: column; max-width: 380px; }
    .hero-inline-form .btn { width: 100%; }

    .social-proof-banner  { padding: 3rem 0; }
    .cta-final            { padding: 3.5rem 0; }
    .cta-final-card       { padding: 2.25rem 1.75rem; margin: 0 1rem; }
    .cta-section h2       { font-size: 1.75rem; }
    .page-header          { padding: 7rem 0 3.5rem; }

    .waitlist-form-card   { padding: 2rem 1.5rem; margin: 0 1rem; }
    .waitlist-problems-grid .feature-card { flex-direction: column; }

    .mockup-notif         { display: none; }

    .footer-waitlist-top  { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-waitlist-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

    .cookie-banner        { padding: 0.75rem; }
    .cookie-banner-inner  { flex-direction: column; gap: 1rem; padding: 1.25rem; text-align: center; }
    .cookie-banner-content { flex-direction: column; align-items: center; gap: 0.5rem; }
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions .btn { flex: 1; }
}

/* Small mobile */
@media (max-width: 375px) {
    .container          { padding: 0 1rem; }
    .hero-title         { font-size: 1.85rem; }
    .section-title      { font-size: 1.5rem; }
    .stats-grid         { grid-template-columns: 1fr; }
}
