﻿/* ============================================
   Moovalto - LANDING PAGE
   Styles spécifiques à la page d'accueil
   ============================================ */

/* ========== TAILWIND PREFLIGHT ANTIDOTE ========== */
/* globals.css loads @tailwind base which resets all default styles.
   We restore what the landing page needs. */
body {
    background: #0a0a0f !important;
    color: #0f172a !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tailwind Preflight strips heading sizes — restore them */
h1 { font-size: 2.5rem; font-weight: 800; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

/* Tailwind Preflight removes list styles */
ul, ol { list-style: revert; }

/* Tailwind Preflight makes images block — keep for landing */
img, svg { display: inline-block; }
img { max-width: 100%; height: auto; }

/* Tailwind Preflight removes link underlines */
a { text-decoration: none; color: inherit; }

/* Tailwind Preflight removes button styling */
button { cursor: pointer; }

/* ========== GLOBAL RESPONSIVE FIX ========== */
/* overflow-x: clip (not hidden) — clip ne crée pas de scroll container,
   donc position:fixed reste relatif au viewport (fix menu mobile iOS Safari) */
html, body {
    overflow-x: clip;
    max-width: 100vw;
}

/* ========== BASE OVERRIDES (03-typography / 04-layout conflicts) ========== */
/* Reset margins added by 03-typography.css that don't exist in Tort3 base */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

/* Container: match Tort3's 1200px / 20px padding */
.container {
    max-width: 1200px;
    padding: 0 20px;
}

/* Header container: restore grid layout (overrides 04-layout.css display:flex at same 0-2-0 specificity) */
.header .container {
    display: grid;
}

/* ========== GRADIENT TEXT UNIVERSAL ========== */
.gradient-text {
    background: linear-gradient(135deg, #28ccc4, #67e8f9, #28ccc4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

/* ========== HEADER LIQUID GLASS ========== */

.header {
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
    opacity: 0;
    transition: all 0.5s ease;
}

.header.header-scrolled {
    background: rgba(10, 20, 40, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* Logo — blanc sur fond transparent ET fond sombre */
.header .logo {
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease, transform 0.3s ease;
}

.header .logo:hover {
    transform: scale(1.02);
}

/* Navigation Links */
.header .nav-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #28ccc4, #0891b2);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header .nav-link:hover::after {
    width: 100%;
}

/* nav-link reste blanc sur fond sombre scrollé — pas de override couleur */

/* Dropdown styling */
.header .nav-item.dropdown {
    border-bottom: none;
    padding-bottom: 0;
}

.header .nav-item.dropdown:hover {
    border-bottom: none;
}

.header .dropdown-content {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow:
        0 24px 64px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 8px;
    margin-top: 12px;
    overflow: hidden;
    min-width: 300px;
}

/* Rich dropdown items with icon + text */
.dropdown-content a.dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-content a.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.04);
}

.dropdown-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(40, 204, 196, 0.08);
    color: #0891b2;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-content a.dropdown-item:hover .dropdown-item-icon {
    background: rgba(40, 204, 196, 0.15);
    color: #0e7490;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a2e;
    letter-spacing: -0.01em;
}

.dropdown-item-desc {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.45);
    font-weight: 400;
    line-height: 1.3;
}

.dropdown-content a.dropdown-item:hover .dropdown-item-title {
    color: #0e7490;
}

.dropdown-content a.dropdown-item:hover .dropdown-item-desc {
    color: rgba(0, 0, 0, 0.55);
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 4px 8px;
}

.dropdown-item--accent .dropdown-item-icon {
    background: rgba(40, 204, 196, 0.12);
    color: #0891b2;
}

.dropdown-content a.dropdown-item--accent:hover .dropdown-item-icon {
    background: rgba(40, 204, 196, 0.2);
}

/* Chevron animation */
.header .chevron {
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.header .nav-item.dropdown:hover .chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Show dropdown content on hover (desktop primary UX) */
.header .nav-item.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* CTA Button - Glassmorphism style */
.header .btn-primary {
    background: linear-gradient(135deg, #28ccc4 0%, #0891b2 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    box-shadow:
        0 4px 15px rgba(40, 204, 196, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.header .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.header .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 25px rgba(40, 204, 196, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header .btn-primary:hover::before {
    left: 100%;
}

.header.header-scrolled .btn-primary {
    background: linear-gradient(135deg, #28ccc4 0%, #0891b2 100%);
    border: none;
    color: #fff;
}

.header.header-scrolled .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 25px rgba(40, 204, 196, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Mobile menu toggle */
.header .mobile-menu-toggle span {
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.header.header-scrolled .mobile-menu-toggle span {
    background: rgba(255, 255, 255, 0.95);
}

/* ========== HEADER GRID LAYOUT ========== */
.header-grid {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 24px;
}

/* Navigation centrale - liens pilule */
.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.nav-pill.active {
    background: rgba(40, 204, 196, 0.25);
    color: #fff;
    font-weight: 400;
}

/* Scrolled state */
.header.header-scrolled .nav-pill {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
}

.header.header-scrolled .nav-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.header.header-scrolled .nav-pill.active {
    background: rgba(40, 204, 196, 0.25);
    color: #fff;
    font-weight: 400;
}

/* Dropdown à droite */
.nav-right {
    display: flex;
    align-items: center;
}

.nav-right .dropdown-content {
    left: auto;
    right: 0;
}

.dropdown-trigger {
    cursor: pointer;
}

/* Hide old nav-menu on landing */
.header .nav-menu {
    display: none;
}

/* Header responsive - intermediate */
@media (max-width: 1200px) {
    .nav-pill {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .header-grid {
        gap: 16px;
    }
}

/* Mobile menu toggle button - minimal (no container) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    margin: 2.5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header.header-scrolled .mobile-menu-toggle span {
    background: rgba(255, 255, 255, 0.95);
}

/* Header responsive - tablet */
@media (max-width: 1024px) {
    .nav-center {
        display: none;
    }

    .nav-right {
        display: none;
    }

    /* .header .container a spécificité (0,2,0) → il faut matcher au même niveau */
    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 56px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

/* ========== MOBILE MENU - STRIPE INSPIRED ========== */

/* ========== MOBILE MENU — Dark premium ========== */

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    z-index: 9998;
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s linear 0s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: #000;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-tap-highlight-color: transparent;
}
@media (max-width: 480px) {
    .mobile-menu { max-width: 100%; }
}
.mobile-menu.active {
    transform: translateX(0);
}

/* --- Kill global reset color shifts (02-reset: a:hover, button:focus) --- */
.mobile-menu-link,
.mobile-menu-link:hover,
.mobile-menu-link:focus,
.mobile-menu-link:active,
.mobile-menu-link:visited {
    color: #fff !important;
    outline: none !important;
}
.mobile-menu-sub,
.mobile-menu-sub:hover,
.mobile-menu-sub:focus,
.mobile-menu-sub:active,
.mobile-menu-sub:visited {
    color: rgba(255, 255, 255, 0.55) !important;
    outline: none !important;
}
.mobile-social-link,
.mobile-social-link:hover,
.mobile-social-link:focus,
.mobile-social-link:active,
.mobile-social-link:visited {
    color: rgba(255, 255, 255, 0.35) !important;
    outline: none !important;
}
.mobile-menu .mobile-menu-close,
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus,
.mobile-menu .mobile-menu-close:active {
    color: rgba(255, 255, 255, 0.5) !important;
    outline: none !important;
}
.mobile-menu-cta,
.mobile-menu-cta:hover,
.mobile-menu-cta:focus,
.mobile-menu-cta:active {
    color: #0c0e18 !important;
    outline: none !important;
}

/* --- Stagger animation for links --- */
.mobile-menu-link,
.mobile-menu-sub,
.mobile-menu-cta {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.15s ease, background 0.15s ease;
}
.mobile-menu.active .mobile-menu-link,
.mobile-menu.active .mobile-menu-sub,
.mobile-menu.active .mobile-menu-cta {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(0.08s + var(--i, 0) * 0.04s);
}

/* --- Header --- */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 28px;
    height: 56px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: #000;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu .mobile-menu-logo {
    height: 26px;
    width: auto;
    display: block;
    flex-shrink: 0;
}

/* Close — minimal X, no background */
.mobile-menu .mobile-menu-close {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
    font-size: inherit;
}
.mobile-menu .mobile-menu-close:active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.mobile-menu .mobile-menu-close svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    display: block;
}

/* --- Body --- */
.mobile-menu-body {
    flex: 1;
    padding: 28px 28px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* --- Primary links --- */
.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
    -webkit-tap-highlight-color: transparent;
}

/* Link icons — teal Moovalto */
.mm-icon {
    width: 20px;
    height: 20px;
    color: #28ccc4;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.mobile-menu-link:active .mm-icon {
    color: #2ee0d7;
}

/* Accent sub-link (For Movers) */
.mobile-menu-sub--accent {
    color: rgba(40, 204, 196, 0.7) !important;
}

/* --- Discover section --- */
.mobile-menu-discover {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-bottom: 28px;
}

.mobile-menu-section-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.mobile-menu-sub {
    display: block;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

/* --- CTA button --- */
.mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: -0.01em;
    color: #000;
    background: #28ccc4;
    cursor: pointer;
    margin-top: auto;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.15s ease;
}
.mobile-menu-cta:active {
    background: #2ee0d7;
}
.mobile-menu-cta svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-cta:hover svg,
.mobile-menu-cta:active svg {
    transform: translateX(3px);
}

/* --- Footer social — icon row --- */
.mobile-menu-footer {
    padding: 20px 28px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0;
}

.mobile-menu-social {
    display: flex;
    flex-direction: row;
    gap: 6px;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.mobile-social-link:active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.mobile-social-link svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* --- Toggle active states --- */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ========== HERO SECTION ========== */

.hero {
    min-height: 100svh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 80px;
    background: #000;
}

/* Organic curve transition to next section — disabled */
.hero-fade-bottom {
    display: none;
}

/* ---- Video background layer ---- */
.hero-video-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    /* Fallback gradient if videos fail to load (iOS cellular, low-power) */
    background: linear-gradient(135deg, #0a1628 0%, #0f2035 40%, #0a1a2e 100%);
}

.hero-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: none;
    /* NO transform/filter here — iOS Safari won't render <video> with CSS filter */
}

.hero-vid.active {
    opacity: 1;
    /* Darkening handled by .hero-overlay gradient, not filter on <video> */
}

/* Desktop scrim — handles ALL video darkening (no filter on <video> for iOS compat) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.52) 30%,
            rgba(0, 0, 0, 0.52) 55%,
            rgba(0, 0, 0, 0.80) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Remove old gradient overlays */
.hero::before,
.hero::after {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 3;
}

/* Desktop: centered */
.hero-content {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    color: var(--color-text-inverse);
    text-align: center;
}

/* ---- Hero headline — "Scan. Compare. Move." ---- */
.hero-headline {
    margin-bottom: 48px;
}

.hero-title {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    margin: 0;
    text-transform: none;
}

.hero-line-1 { display: contents; }

.hero-word {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.40);
    cursor: pointer;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                text-shadow 0.5s ease;
    text-shadow: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.hero-word.active {
    color: #28ccc4;
    text-shadow: none;
}

/* Desktop hover */
@media (hover: hover) {
    .hero-word:not(.active):hover {
        color: rgba(255, 255, 255, 0.50);
    }
}

.hero-tagline {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 500;
    color: #fff;
    margin: 12px 0 0;
    letter-spacing: -0.01em;
    text-shadow: none;
}


/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Premium mobile hero animations ---- */
@keyframes heroStepReveal {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes heroFormSlideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes numBadgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(40, 204, 196, 0.35);
    }
    50% {
        box-shadow: 0 0 28px rgba(40, 204, 196, 0.55),
                    0 0 8px rgba(40, 204, 196, 0.25);
    }
}

@keyframes ctaPulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(40, 204, 196, 0.30),
                    inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
    50% {
        box-shadow: 0 4px 28px rgba(40, 204, 196, 0.50),
                    0 0 12px rgba(40, 204, 196, 0.20),
                    inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
}

/* ========== SCROLL REVEAL SYSTEM ========== */
/* Base hidden state — everything starts invisible */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Visible state — triggered by IntersectionObserver */
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for cards within sections */
.reveal.reveal-delay-1 { transition-delay: 0.08s; }
.reveal.reveal-delay-2 { transition-delay: 0.16s; }
.reveal.reveal-delay-3 { transition-delay: 0.24s; }
.reveal.reveal-delay-4 { transition-delay: 0.32s; }
.reveal.reveal-delay-5 { transition-delay: 0.40s; }
.reveal.reveal-delay-6 { transition-delay: 0.48s; }

/* Section-level reveal for headers — faster, subtler */
.hiw-header,
.faq-header,
.final-cta-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.hiw-header.revealed,
.faq-header.revealed,
.final-cta-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Cards that aren't .reveal — add reveal behavior */
.hiw-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hiw-card.revealed {
    opacity: 1;
    transform: translateY(0);
}
.hiw-card:nth-child(1) { transition-delay: 0.0s; }
.hiw-card:nth-child(2) { transition-delay: 0.1s; }
.hiw-card:nth-child(3) { transition-delay: 0.2s; }

/* FAQ items stagger */
.faq-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.faq-item.revealed {
    opacity: 1;
    transform: translateY(0);
}
.faq-item:nth-child(1) { transition-delay: 0.0s; }
.faq-item:nth-child(2) { transition-delay: 0.06s; }
.faq-item:nth-child(3) { transition-delay: 0.12s; }
.faq-item:nth-child(4) { transition-delay: 0.18s; }
.faq-item:nth-child(5) { transition-delay: 0.24s; }
.faq-item:nth-child(6) { transition-delay: 0.30s; }

/* Coverage map — fade in */
.usa-map {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.usa-map.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .hiw-header,
    .faq-header,
    .final-cta-content,
    .hiw-card,
    .faq-item,
    .usa-map {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Skip animations when navigating back to page */
.skip-hero-animations .hero-badge,
.skip-hero-animations .hero-headline,
.skip-hero-animations .hero-form-container {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Highlights — teal color accent on key value props */
.hero-highlight {
    color: rgba(40, 204, 196, 0.95);
    font-weight: 700;
    text-decoration: none;
}

/* ============================================================
   TABLET — centered layout (hero content needs more width at 768-1024)
   ============================================================ */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
        text-align: left;
    }

    /* Centered scrim — handles all darkening (no filter on video) */
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.50) 40%,
            rgba(0, 0, 0, 0.56) 70%,
            rgba(0, 0, 0, 0.82) 100%
        ) !important;
    }
}

/* ============================================================
   MOBILE HERO — 100svh, all sizes proportional (svh/vw/clamp)
   Layout: 8% header | 25% steps | 30% video | 32% form | 5% safe
   ============================================================ */
@media (max-width: 768px) {
    .hero {
        padding: 0;
        height: 100svh;
        min-height: 0;
        max-height: 100svh;
    }

    .hero .container {
        height: 100%;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: 100%;
        margin: 0;
        min-height: 0; /* allow flex children to shrink below content size */
    }

    /* Video: pushes subjects to mid-screen, frees top for steps */
    .hero-vid {
        object-position: center 45% !important;
    }

    /* Video 2 (compare): nudge right so the guy's head stays visible on mobile crop */
    .hero-vid[data-phase="compare"] {
        object-position: 58% 45% !important;
    }

    /* Video 3 (move): center on the woman */
    .hero-vid[data-phase="move"] {
        object-position: 62% 40% !important;
    }

    /* Hourglass scrim — handles all darkening (no filter on video for iOS) */
    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.52) 22%,
            rgba(0, 0, 0, 0.42) 38%,
            rgba(0, 0, 0, 0.42) 55%,
            rgba(0, 0, 0, 0.58) 70%,
            rgba(0, 0, 0, 0.78) 100%
        ) !important;
    }

    /* ---- HEADLINE: centered, bold — one word per line (Apple-style) ---- */
    .hero-headline {
        flex: 0 0 auto;
        padding: clamp(72px, 13svh, 130px) 5vw 0;
        margin-bottom: 0;
        text-align: center;
        animation: heroStepReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    /* Break hero-line-1 so each word stacks individually */
    .hero-line-1 {
        display: contents;
    }

    .hero-title {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .hero-word {
        font-size: clamp(2.8rem, 13vw, 4.5rem) !important;
        text-shadow: none !important;
        line-height: 1.05 !important;
    }

    .hero-tagline {
        font-size: clamp(0.92rem, 3.8vw, 1.1rem) !important;
        text-align: center;
        margin-top: 16px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ---- SPACER: push form to bottom ---- */
    .hero-headline + .hero-form-container {
        margin-top: auto;
    }

    /* ---- FORM: docked at bottom, shrinks on tight screens ---- */
    .hero-form-container {
        flex-shrink: 1;
        padding: 0 4vw max(clamp(10px, 1.5svh, 18px), env(safe-area-inset-bottom));
        padding-bottom: clamp(18px, 3.5svh, 32px);
        margin: 0;
        /* Slide-up entry animation */
        animation: heroFormSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.40s both;
    }
}

@media (max-width: 375px) {
    .hero-word {
        letter-spacing: -0.04em !important;
    }

    .hero-form-v4 {
        padding: 14px;
    }
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* Form Container */
.hero-form-container {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* SVG Icons in form */
.address-icon svg,
.calendar-icon svg {
    display: block;
    color: #64748b;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero .form-button {
    background: linear-gradient(135deg, #28ccc4 0%, #0891b2 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(40, 204, 196, 0.25);
    transition: all 0.3s ease;
}

.hero .form-button svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .form-button:hover {
    background: linear-gradient(135deg, #2ee0d7 0%, #0aa5cc 100%) !important;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 204, 196, 0.35);
}

.hero .form-button:hover svg {
    transform: translateX(3px);
}

/* ========== HERO FORM ========== */

.hero-form-container {
    max-width: 1150px;
    margin: 0 auto;
    width: 100%;
}

/* Offset for fixed header when anchor-scrolling to the form */
#from-address {
    scroll-margin-top: 90px;
}

#hero-form {
    scroll-margin-top: 90px;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* Ligne 1: Adresses */
.form-line-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Ligne 2 */
.form-line-2 {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 15px;
    align-items: stretch;
}

/* V4: Transparent wrapper — each field is its own glass pill */
.hero-form-v4 {
    max-width: 680px;
    gap: 0 !important;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.hero-form-v4 .form-line-1 {
    gap: 10px;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
}

.hero-form-v4 .form-line-2 {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    justify-content: normal;
}

/* Each field wrapper — light frosted glass pill (Seedance-style) */
.hero-form-v4 .form-input-with-icon {
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(24px) saturate(130%);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    box-shadow: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    overflow: hidden;
}

.hero-form-v4 .form-input-with-icon:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

/* Glass inputs — transparent inside the pill */
.hero-form-v4 .form-input {
    height: 48px;
    font-size: 0.9rem;
    padding: 0 14px;
    margin: 0 !important;
    color: #fff;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: background 0.2s ease;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.hero-form-v4 .form-input::placeholder {
    color: rgba(255, 255, 255, 0.85);
}

.hero-form-v4 .form-input:focus {
    background: rgba(255, 255, 255, 0.04);
    border: none;
    box-shadow: none;
    outline: none;
}

.hero-form-v4 .form-button {
    height: 48px;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0 1.5rem;
    margin: 0 !important;
    border-radius: 999px;
    text-transform: none;
    letter-spacing: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 20px rgba(40, 204, 196, 0.3);
}

.hero-form-v4 .form-button svg {
    flex-shrink: 0;
}

/* Date field — transparent inside pill */
.hero-form-v4 .date-display-field {
    color: #fff;
    background: transparent;
    border: none;
    border-radius: 0;
}

.hero-form-v4 .date-display-field #selected-date {
    color: #fff;
}

/* White icons — clean on light glass */
.hero-form-v4 .address-icon,
.hero-form-v4 .calendar-icon {
    font-size: var(--font-size-base);
    left: 14px;
    opacity: 1;
}

.hero-form-v4 .address-icon svg,
.hero-form-v4 .calendar-icon svg {
    color: rgba(255, 255, 255, 0.55);
}

.hero-form-v4 .form-address-1,
.hero-form-v4 .form-address-2 {
    padding-left: 40px !important;
}

.form-line-2-right {
    display: contents;
}

/* ============================================================
   MOBILE HERO FORM — Individual liquid glass pills per field
   ============================================================ */
@media (max-width: 768px) {

    /* ---- Wrapper: transparent, stacked pills with gaps ---- */
    .hero-form-v4 {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        gap: clamp(6px, 1svh, 10px) !important;
        box-shadow: none !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
        max-width: min(400px, 92vw) !important;
        margin: 0 auto !important;
    }

    /* Kill row wrappers — fields stack flat */
    .hero-form-v4 .form-line-1,
    .hero-form-v4 .form-line-2 {
        display: contents !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* ---- Each field = its own glass pill ---- */
    /* ---- Each field = light frosted glass pill (Seedance-style) ---- */
    .hero-form-v4 .form-input-with-icon {
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
        background: rgba(255, 255, 255, 0.10) !important;
        backdrop-filter: blur(24px) saturate(130%) !important;
        -webkit-backdrop-filter: blur(24px) saturate(130%) !important;
        border: 1px solid rgba(255, 255, 255, 0.85) !important;
        border-radius: 999px !important;
        box-shadow: none !important;
        overflow: hidden !important;
        transition: border-color 0.25s ease, background 0.25s ease !important;
    }

    .hero-form-v4 .form-input-with-icon:focus-within {
        background: rgba(255, 255, 255, 0.15) !important;
        border-color: #fff !important;
    }

    /* No more hairline separators — pills are separated by gap */
    .hero-form-v4 .form-input-with-icon::after {
        display: none !important;
    }

    /* ---- Inputs: transparent inside pill ---- */
    .hero-form-v4 .form-input {
        height: clamp(44px, 6svh, 52px) !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        color: #fff !important;
        font-size: clamp(0.88rem, 2.2svh, 0.95rem) !important;
        font-weight: 400 !important;
        padding: 0 16px 0 44px !important;
        transition: background 0.2s ease !important;
    }

    .hero-form-v4 .form-input::placeholder {
        color: rgba(255, 255, 255, 0.85) !important;
        font-weight: 400 !important;
    }

    .hero-form-v4 .form-input:focus {
        background: rgba(255, 255, 255, 0.04) !important;
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    /* Date field */
    .hero-form-v4 .date-display-field {
        height: clamp(44px, 6svh, 52px) !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        color: rgba(255, 255, 255, 0.45) !important;
        font-size: clamp(0.88rem, 2.2svh, 0.95rem) !important;
        padding: 0 16px 0 44px !important;
    }

    .hero-form-v4 .date-display-field #selected-date {
        color: #fff !important;
        margin-left: 0 !important;
    }

    /* White icons — clean on light glass */
    .hero-form-v4 .address-icon,
    .hero-form-v4 .calendar-icon {
        left: 16px !important;
    }

    .hero-form-v4 .address-icon svg,
    .hero-form-v4 .calendar-icon svg {
        color: rgba(255, 255, 255, 0.55) !important;
    }

    /* ---- CTA: standalone, same as before ---- */
    .hero-form-v4 .form-button {
        height: clamp(48px, 7svh, 56px) !important;
        width: 100% !important;
        margin: clamp(4px, 0.6svh, 8px) 0 0 !important;
        border-radius: clamp(14px, 2.2svh, 18px) !important;
        font-size: clamp(0.9rem, 2.3svh, 1rem) !important;
        font-weight: 600 !important;
        letter-spacing: -0.01em !important;
        background: linear-gradient(135deg, #28ccc4 0%, #0ea5b8 100%) !important;
        box-shadow:
            0 4px 20px rgba(40, 204, 196, 0.30),
            0 1px 3px rgba(0, 0, 0, 0.15) !important;
        animation: ctaPulseGlow 3.5s ease-in-out infinite !important;
        transition: transform 0.15s ease, filter 0.15s ease !important;
    }

    .hero-form-v4 .form-button:active {
        transform: scale(0.975) !important;
        filter: brightness(1.1) !important;
    }
}

/* Form Input - Hero form fields */
.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-alpha-20);
}

/* Button (CTA) */
.form-button {
    height: 56px;
    background: var(--color-secondary);
    color: var(--color-text-inverse);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition-slow);
}

.form-button:hover {
    background: var(--color-secondary-dark);
}

/* ========== CUSTOM ALERT POPUP ========== */
.custom-alert {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.custom-alert.visible {
    display: flex;
}

.alert-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 24px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.alert-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.alert-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.alert-message {
    font-size: 15px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
}

.alert-button {
    background: linear-gradient(135deg, #28ccc4 0%, #0891b2 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.alert-button:hover {
    opacity: 0.9;
}

/* ========== SECTIONS ========== */

.section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

.section-title p {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== WHY CHOOSE SECTION - LIGHT YC STYLE ========== */

/* ===== WHY CHOOSE — Dark section ===== */
.why-choose {
    position: relative;
    padding: 80px 0 150px;
    background: #0a0a0f;
    overflow: visible;
}

/* Subtle hairline separator from pain-points above */
.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.08) 30%,
        rgba(255, 255, 255, 0.08) 70%,
        transparent);
    z-index: 1;
}

/* Bottom organic curve: going to light articles */
.why-choose::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #e8edf3;
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 1;
}

.why-choose-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.why-choose-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 700px;
    background: radial-gradient(
        ellipse,
        rgba(40, 204, 196, 0.1) 0%,
        rgba(13, 148, 136, 0.04) 40%,
        transparent 65%
    );
}

.why-choose-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Header */
.why-choose-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
}

.why-choose-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-choose-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.why-choose-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards Grid */
.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Card — Dark glass */
.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(40, 204, 196, 0.07) 0%,
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

@media (hover: hover) {
    .why-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(40, 204, 196, 0.25);
        transform: translateY(-4px);
        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(40, 204, 196, 0.15);
    }

    .why-card:hover::before {
        opacity: 1;
    }
}

/* Card Icon */
.why-card-icon {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(13, 148, 136, 0.08));
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 14px;
    color: #28ccc4;
    z-index: 1;
}


.why-card-icon svg {
    position: relative;
    z-index: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
    width: 26px;
    height: 26px;
}

/* Card Content */
.why-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.why-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.why-card-content p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.55);
}

/* Card Number */
.why-card-number {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 56px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

.why-card:hover .why-card-number {
    color: rgba(40, 204, 196, 0.12);
}

/* Responsive */
@media (max-width: 900px) {
    .why-choose-cards {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 60px 0 100px;
    }
    .why-choose::after { height: 40px; }
    .why-choose-header { margin-bottom: 40px; }
    .why-choose-header p { font-size: 16px; }
    .why-card { padding: 24px; }
    .why-card-content h3 { font-size: 17px; }
    .why-card-number { font-size: 48px; }
}

@media (max-width: 480px) {
    .why-choose { padding: 50px 0 90px; }
    .why-choose-header { margin-bottom: 36px; }
    .why-card { padding: 20px; }
    .why-card-icon { width: 46px; height: 46px; }
    .why-card-icon svg { width: 22px; height: 22px; }
}

/* ========================================
   ARTICLES SECTION — EDITORIAL PREMIUM
   ======================================== */

.articles {
    background: #e8edf3;
    padding: 80px 0;
    position: relative;
}

.articles h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 56px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Asymmetric grid: featured card spans 2 cols */
.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.article-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.article-featured .article-img-wrap {
    border-radius: 16px 0 0 16px;
}

.article-featured .article-image {
    height: 100%;
    min-height: 280px;
}

.article-featured .article-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px;
}

.article-featured .article-content h3 {
    font-size: 22px;
}

.article-featured .article-content p {
    font-size: 15px;
}

/* Card base */
.article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(13, 148, 136, 0.08);
}

/* Image wrapper with overlay */
.article-img-wrap {
    position: relative;
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .article-image {
    transform: scale(1.04);
}

.article-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.06) 100%);
    pointer-events: none;
    transition: opacity 0.3s;
}

/* Category tag on image */
.article-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.03em;
    z-index: 1;
}

/* Content */
.article-content {
    padding: 24px 28px 28px;
    text-align: left;
}

.article-read {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.article-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.35;
    letter-spacing: -0.015em;
}

.article-content p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    color: #0d9488;
    text-decoration: none;
    transition: gap 0.25s ease;
}

.article-link span {
    transition: transform 0.25s ease;
    display: inline-block;
}

.article-card:hover .article-link span {
    transform: translateX(3px);
}

/* Articles Responsive */
@media (max-width: 900px) {
    .article-featured {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
    }
    .article-featured .article-img-wrap {
        border-radius: 16px 16px 0 0;
    }
    .article-featured .article-image {
        min-height: 200px;
        height: 200px;
    }
    .article-featured .article-content {
        padding: 24px 28px 28px;
    }
}

@media (max-width: 640px) {
    .articles-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
    .articles {
        padding: 60px 0;
    }
    .articles h2 {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .articles {
        padding: 50px 0;
    }
    .article-image {
        height: 160px;
    }
    .article-content {
        padding: 20px;
    }
    .article-featured .article-content h3 {
        font-size: 18px;
    }
}

/* ========================================
   COVERAGE SECTION - YC STYLE
   ======================================== */

.coverage {
    background: #e8edf3;
    padding: 80px 0 80px;
    position: relative;
}

.coverage h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.usa-map {
    position: relative;
}

.map-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.06));
}

.map-svg #usa-outline {
    fill: #fff;
    stroke: #0d9488;
    stroke-width: 2;
    transition: all 0.3s ease;
}

.location-dot {
    fill: #28ccc4;
    opacity: 0.8;
    animation: dotPulse 3s ease-in-out infinite;
}

.location-dot:nth-child(odd) {
    animation-delay: 0.5s;
}

.location-dot:nth-child(even) {
    animation-delay: 1s;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.coverage-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 4px 12px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coverage-card:hover {
    transform: translateY(-4px);
    border-color: rgba(40, 204, 196, 0.25);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(40, 204, 196, 0.1);
}

.coverage-card .card-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.coverage-card .card-icon svg {
    width: 44px;
    height: 44px;
}

.coverage-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.coverage-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Coverage Responsive */
@media (max-width: 900px) {
    .coverage-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .usa-map {
        max-width: 500px;
        margin: 0 auto;
    }

    .coverage-grid {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .coverage {
        padding: 60px 0 60px;
    }

    .coverage h2 {
        margin-bottom: 30px;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .coverage-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .coverage {
        padding: 50px 0;
    }

    .coverage h2 {
        margin-bottom: 24px;
    }

    .coverage-card {
        padding: 16px;
    }

    .coverage-card h3 {
        font-size: 15px;
    }

    .coverage-card p {
        font-size: 13px;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq {
    background: #e8edf3;
    padding: 80px 0 80px;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.faq-header p {
    font-size: 18px;
    color: #64748b;
    margin: 0;
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Question trigger — reset accordion.css */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 22px 0;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
}

.faq-question:hover {
    background: none;
}

.faq-item.active .faq-question {
    background: none;
    border-radius: 0;
    margin-bottom: 0;
}

.faq-question:focus {
    outline: none;
}

.faq-question span:first-child {
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
    flex: 1;
    padding-right: 24px;
    line-height: 1.4;
}

/* Icon: + when closed, − when open — reset accordion.css */
.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    margin-right: 0;
    color: inherit;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: #94a3b8;
    border-radius: 1px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.2s;
}

.faq-icon::before {
    width: 14px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
    opacity: 0;
}

/* Answer — reset accordion.css */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    margin-bottom: 0;
}

.faq-answer p {
    margin: 0;
    padding: 0 48px 24px 0;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0 60px;
    }

    .faq-header {
        margin-bottom: 32px;
    }

    .faq-header p {
        font-size: 16px;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question span:first-child {
        font-size: 16px;
        padding-right: 20px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 32px 20px 0;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 50px 0;
    }

    .faq-header p {
        font-size: 15px;
    }

    .faq-question {
        padding: 18px 0;
    }

    .faq-question span:first-child {
        font-size: 15px;
        padding-right: 16px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 0 18px 0;
    }
}

/* ========================================
   FOOTER - YC STYLE
   ======================================== */

.footer {
    background: #0a0a0f;
    color: rgba(255, 255, 255, 0.9);
    padding: 150px 0 40px;
    position: relative;
    overflow: visible;
}

/* Organic curve divider at top */
.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #e8edf3;
    clip-path: ellipse(60% 100% at 50% 0%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Main footer layout */
.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand section */
.footer-brand {
    max-width: 240px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
    filter: none;
}

/* Text alternative to logo — hidden on desktop, shown on mobile */
.footer-logo-text {
    display: none;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0 0 24px 0;
}

/* Social links */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Links columns */
.footer-links {
    display: flex;
    gap: 64px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

/* Bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        gap: 48px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px 48px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 100px 0 32px;
    }

    .footer::before {
        height: 40px;
    }

    /* Hide logo SVG on mobile — header already has it */
    .footer-logo {
        display: none;
    }
    .footer-logo-text {
        display: block;
        font-size: 1.25rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        color: #fff;
        margin-bottom: 12px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 70px 0 24px;
    }

    .footer-main {
        gap: 36px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

    .footer-column h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-column a {
        font-size: 13px;
        padding: 8px 0;
    }
}

/* ========================================
   PAIN POINTS SECTION
   ======================================== */

.pain-points {
    background: #0a0a0f;
    padding: 150px 0 80px;
    position: relative;
    overflow: visible;
}

/* Ambient orbs — pain-points dark section */
.pain-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(20px, -20px) scale(1.1); opacity: 0.7; }
    50% { transform: translate(-10px, 10px) scale(0.9); opacity: 0.6; }
    75% { transform: translate(15px, 15px) scale(1.05); opacity: 0.5; }
}

.pain-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.pain-orb-1 {
    top: 10%;
    right: 10%;
    width: 320px;
    height: 320px;
    background: rgba(40, 204, 196, 0.08);
    animation: orbFloat 10s ease-in-out infinite;
}

.pain-orb-2 {
    bottom: 15%;
    left: 8%;
    width: 220px;
    height: 220px;
    background: rgba(0, 112, 173, 0.07);
    animation: orbFloat 8s ease-in-out infinite reverse 1s;
}

/* Top organic curve: coming from light HIW */
.pain-points::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #e8edf3;
    clip-path: ellipse(60% 100% at 50% 0%);
    z-index: 1;
}

.pain-header {
    text-align: center;
    margin-bottom: 56px;
}

.pain-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.pain-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pain-gradient {
    background: linear-gradient(135deg, #f87171, #fca5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.pain-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

/* Subtle red top accent */
.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f87171, rgba(248, 113, 113, 0.15));
}

@media (hover: hover) {
    .pain-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
}

.pain-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f87171;
    margin: 0 auto 20px;
}

.pain-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
}

.pain-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pain-points { padding: 100px 0 60px; }
    .pain-points::before { height: 40px; }
    .pain-header { margin-bottom: 40px; }
    .pain-cards { grid-template-columns: 1fr; max-width: 400px; }
    .pain-card { padding: 24px; }
}

@media (max-width: 480px) {
    .pain-points { padding: 90px 0 50px; }
    .pain-card { padding: 20px; }
}

/* ========== INTERMEDIATE DESKTOP (1024-1200px / zoom 125-150%) ========== */
@media (min-width: 769px) and (max-width: 1100px) {
    /* Light sections: visual target 60px */
    .articles,
    .coverage,
    .faq {
        padding: 60px 0;
    }

    /* Dark sections: extra padding on curve side for breathing room */
    .why-choose { padding: 60px 0 130px; }
    .pain-points { padding: 130px 0 60px; }
    .footer { padding: 130px 0 32px; }

    /* Section heading margins */
    .why-choose-header {
        margin-bottom: 44px;
    }

    .articles h2 {
        margin-bottom: 40px;
    }

    .coverage h2 {
        margin-bottom: 40px;
    }

    /* Coverage: réduire le gap entre carte et map */
    .coverage-content {
        gap: 36px;
    }

    /* Footer links: réduire le gap entre colonnes */
    .footer-links {
        gap: 40px;
    }
}

/* ========================================
   STICKY BOTTOM FORM - FLOATING ISLAND
   ======================================== */

.sticky-form-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(calc(100% + 40px));
    z-index: 1000;
    width: min(880px, calc(100vw - 80px));
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 60px;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.10),
        0 16px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.sticky-form-bar.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Teal shimmer — toujours légèrement visible, intense au hover */
.sticky-form-bar::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 61px;
    background: linear-gradient(
        135deg,
        rgba(40, 204, 196, 0.3) 0%,
        transparent 35%,
        transparent 65%,
        rgba(8, 145, 178, 0.2) 100%
    );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sticky-form-bar:hover::before {
    opacity: 1;
}

.sticky-form {
    display: flex;
    align-items: center;
    gap: 0;
}

.sticky-form-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    background: transparent;
    border: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    padding: 0 14px;
    height: 52px;
    transition: background 0.2s ease, border-right-color 0.2s ease, border-radius 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none;
}

.sticky-form-field:hover {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 40px;
    border-right-color: transparent;
}

.sticky-form-field:focus-within {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 40px;
    border-right-color: transparent;
    box-shadow: none;
}

/* Masque le séparateur du champ précédent quand le suivant est survolé/actif */
.sticky-form-field:has(+ .sticky-form-field:hover),
.sticky-form-field:has(+ .sticky-form-field:focus-within) {
    border-right-color: transparent;
}

.sticky-field-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #717171;
}

.sticky-field-icon svg {
    display: block;
}

.sticky-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    outline: none;
}

.sticky-input::placeholder {
    color: #0f172a;
    font-weight: 400;
}

.sticky-date-field {
    flex: 1;
    min-width: 0;
    max-width: 200px;
    border-right: none;
    cursor: pointer;
}

/* Airbnb effect : au hover du champ date, le fond s'étend pour englober le bouton flèche */
.sticky-date-field:hover {
    box-shadow: 50px 0 0 0 rgba(0, 0, 0, 0.04);
}

.sticky-date-field .sticky-input {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-right: 4px;
    padding: 0;
    background: linear-gradient(135deg, #28ccc4 0%, #0891b2 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 16px rgba(40, 204, 196, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Cacher le texte, garder seulement la flèche */
.sticky-submit-btn span {
    display: none;
}

.sticky-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.sticky-submit-btn:hover {
    filter: brightness(1.08);
    box-shadow:
        0 6px 24px rgba(40, 204, 196, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.sticky-submit-btn:hover::before {
    left: 100%;
}

.sticky-submit-btn svg {
    transition: transform 0.3s ease;
}

.sticky-submit-btn:hover svg {
    transform: translateX(3px);
}

/* Responsive - Tablet : pilule compacte sans la date */
@media (max-width: 900px) {
    .sticky-form-bar {
        bottom: 16px;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(calc(100% + 40px));
        width: calc(100vw - 64px);
        padding: 0;
    }

    .sticky-form-bar.visible {
        transform: translateX(-50%) translateY(0);
    }

    /* Cacher le champ date en tablet : From + To + bouton = plus compact */
    .sticky-date-field {
        display: none;
    }

    /* Hauteur réduite sur tablet */
    .sticky-form-field {
        height: 48px;
        padding: 0 12px;
    }

    /* Le dernier champ visible (To) n'a plus de séparateur */
    .sticky-form-field:nth-child(2) {
        border-right: none;
    }

    .sticky-input {
        font-size: 13px;
    }

    .sticky-submit-btn {
        width: 40px;
        height: 40px;
        margin-right: 4px;
    }
}

/* Responsive - Mobile: Hide sticky form */
@media (max-width: 768px) {
    .sticky-form-bar {
        display: none;
    }
}

/* ========== HERO RESPONSIVE ========== */

@media (max-width: 1024px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 100svh;
    }
}

@media (max-width: 1000px) {
    .hero-form-v4 {
        max-width: 480px;
        padding: 14px;
    }

    .hero-form-v4 .form-line-1 {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 0 0 10px 0 !important;
    }

    .hero-form-v4 .form-line-2 {
        grid-template-columns: 1fr;
        justify-content: normal;
        gap: 10px;
        margin: 0 !important;
    }

    .hero-form-v4 .form-input {
        height: 50px;
        font-size: 1rem;
    }

    .hero-form-v4 .form-button {
        height: 52px;
        font-size: 1rem;
        font-weight: 700;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .form-line-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .form-line-2 .form-button {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 0;
        align-items: flex-start;
    }

    .hero-form {
        padding: 0 4px;
    }

    .form-line-1,
    .form-line-2,
    .form-line-single {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-button {
        width: 100%;
    }

    /* Video hero: keep glass container, adapt for mobile bottom-sheet */
    .hero-form-v4 {
        max-width: 100%;
        padding: 16px;
        background: rgba(10, 12, 20, 0.7);
        backdrop-filter: blur(20px) saturate(140%);
        -webkit-backdrop-filter: blur(20px) saturate(140%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 18px;
    }

    .hero-form-v4 .form-line-1 {
        gap: 12px;
        margin: 0 0 12px 0 !important;
    }

    .hero-form-v4 .form-line-2 {
        grid-template-columns: 1fr;
        justify-content: normal;
        gap: 12px;
        margin: 0 !important;
    }

    /* 16px minimum prevents iOS Safari auto-zoom on focus */
    .hero-form-v4 .form-input {
        height: 52px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.09);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        border-radius: 14px;
    }

    .hero-form-v4 .date-display-field {
        background: rgba(255, 255, 255, 0.09);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        border-radius: 14px;
    }

    .hero-form-v4 .form-button {
        height: 56px;
        font-size: 1rem;
        font-weight: 700;
        padding: 0 2rem;
        border-radius: 14px;
        box-shadow: 0 4px 20px rgba(40, 204, 196, 0.3);
    }

    .hero-form-v4 .address-icon,
    .hero-form-v4 .calendar-icon {
        left: 14px;
    }

    .hero-form-v4 .form-address-1,
    .hero-form-v4 .form-address-2 {
        padding-left: 42px !important;
    }

    .hero-trust-badges {
        flex-wrap: wrap;
        gap: 12px 20px;
        justify-content: center;
    }

    .trust-badge {
        font-size: 0.8rem;
    }

    .trust-icon {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-form-v4 .form-line-1 {
        gap: 10px;
        margin: 0 0 10px 0 !important;
    }

    .hero-form-v4 .form-line-2 {
        gap: 10px;
    }

    .hero-form-v4 .form-input {
        height: 50px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .hero-form-v4 .date-display-field {
        border-radius: 12px;
    }

    .hero-form-v4 .form-button {
        height: 54px;
        font-size: 1rem;
        border-radius: 12px;
    }
}

/* ========== MOBILE STICKY CTA ========== */
/* Pill flottant visible sur mobile quand le hero form est hors écran */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    z-index: 998;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #28ccc4 0%, #0891b2 100%);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 100px;
    white-space: nowrap;
    opacity: 0;
    box-shadow:
        0 4px 20px rgba(40, 204, 196, 0.45),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }
}

.mobile-sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.mobile-sticky-cta svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-cta:hover {
    filter: brightness(1.08);
}

.mobile-sticky-cta:hover svg {
    transform: translateX(3px);
}

/* ========== SMALL MOBILE (375px) ========== */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .hero-form-v4 .form-input {
        height: 48px;
        font-size: 1rem;
        border-radius: 10px;
    }

    .hero-form-v4 .date-display-field {
        border-radius: 10px;
    }

    .hero-form-v4 .form-button {
        height: 52px;
        border-radius: 10px;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 8px;
    }

    .pain-points {
        padding: 80px 0 40px;
    }

    .why-choose {
        padding: 40px 0 80px;
    }

    .why-card {
        padding: 16px;
    }

    .articles {
        padding: 40px 0;
    }

    .coverage {
        padding: 40px 0;
    }

    .faq {
        padding: 40px 0;
    }

    .footer {
        padding: 80px 0 24px;
    }

}

/* ========== VERY SMALL MOBILE (320px) ========== */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }

    .hero-form-v4 .form-input {
        height: 46px;
        border-radius: 8px;
    }

    .hero-form-v4 .date-display-field {
        border-radius: 8px;
    }

    .hero-form-v4 .form-button {
        height: 50px;
        border-radius: 8px;
    }
}

/* ========================================
   SCROLL REVEAL
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== PREFERS-REDUCED-MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================================
   INLINED FROM ai-demo.css — AI Demo section
   ======================================================== */

.ai-demo {
    background: #0a0a0f;
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.ai-demo::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #000;
    clip-path: ellipse(60% 100% at 50% 0%);
    z-index: 1;
}

.ai-demo::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: #e8edf3;
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 1;
}

.ai-demo-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.ai-demo-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.ai-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.ai-glow-1 {
    top: 20%; left: 10%;
    width: 300px; height: 300px;
    background: rgba(40, 204, 196, 0.3);
    animation: glowPulse 4s ease-in-out infinite;
}

.ai-glow-2 {
    bottom: 20%; right: 10%;
    width: 250px; height: 250px;
    background: rgba(0, 112, 173, 0.3);
    animation: glowPulse 4s ease-in-out infinite 2s;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

.ai-demo-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(40, 204, 196, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 204, 196, 0.3);
    border-radius: 50px;
    color: #28ccc4;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.ai-badge-pulse {
    width: 8px; height: 8px;
    background: #28ccc4;
    border-radius: 50%;
    animation: aiBadgePulse 2s ease-in-out infinite;
}

@keyframes aiBadgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(40, 204, 196, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(40, 204, 196, 0); }
}

.ai-demo-header h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
}

.ai-gradient-text {
    background: linear-gradient(135deg, #28ccc4, #67e8f9, #28ccc4);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

.ai-demo-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.ai-demo-showcase {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 60px;
}

.scan-visualization { flex: 1; max-width: 450px; }

.room-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #1a1a24, #12121a);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.scan-grid {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        linear-gradient(rgba(40, 204, 196, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(40, 204, 196, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
}

.scan-line {
    position: absolute; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, rgba(40, 204, 196, 0.3), rgba(40, 204, 196, 0.8), rgba(40, 204, 196, 0.3), transparent);
    box-shadow: 0 0 20px rgba(40, 204, 196, 0.5);
    animation: scanMove 3s ease-in-out infinite;
}

@keyframes scanMove {
    0%, 100% { top: 10%; }
    50% { top: 85%; }
}

.detected-item {
    position: absolute;
    animation: detectCycle 6s ease-in-out infinite;
    opacity: 0;
}

.item-1 { top: 55%; left: 10%; animation-delay: 0s; }
.item-2 { top: 30%; left: 55%; animation-delay: 0.8s; }
.item-3 { top: 60%; left: 65%; animation-delay: 1.6s; }
.item-4 { top: 25%; left: 20%; animation-delay: 2.4s; }

@keyframes detectCycle {
    0%       { opacity: 0; transform: scale(0.8); }
    6%       { opacity: 1; transform: scale(1.05); }
    12%, 72% { opacity: 1; transform: scale(1); }
    84%, 100%{ opacity: 0; transform: scale(0.85); }
}

.detection-box {
    width: 80px; height: 60px;
    border: 2px solid rgba(40, 204, 196, 0.6);
    border-radius: 8px;
    background: rgba(40, 204, 196, 0.05);
    animation: boxPulse 2s ease-in-out infinite;
}

.item-1 .detection-box { width: 120px; height: 70px; }
.item-2 .detection-box { width: 90px; height: 50px; }
.item-3 .detection-box { width: 50px; height: 50px; }
.item-4 .detection-box { width: 30px; height: 60px; }

@keyframes boxPulse {
    0%, 100% { border-color: rgba(40, 204, 196, 0.6); }
    50% { border-color: rgba(40, 204, 196, 1); }
}

.detection-label {
    position: absolute; top: -30px; left: 0;
    background: rgba(40, 204, 196, 0.9);
    color: #fff;
    font-size: 11px; font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(40, 204, 196, 0.3);
}

.detection-label span { opacity: 0.8; margin-left: 4px; font-weight: 400; }

.ai-panel {
    width: 280px;
    background: linear-gradient(145deg, rgba(26, 26, 36, 0.95), rgba(18, 18, 26, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.panel-header {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.panel-status {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; color: #fff;
}

.ai-demo .status-dot {
    width: 8px; height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.panel-confidence { font-size: 11px; color: #28ccc4; font-weight: 600; }

.panel-feed { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }

.feed-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: feedItemReveal 6s ease-in-out infinite;
    opacity: 0;
}

.feed-item:nth-child(1) { animation-delay: 0.4s; }
.feed-item:nth-child(2) { animation-delay: 1.2s; }
.feed-item:nth-child(3) { animation-delay: 2.0s; }
.feed-item:nth-child(4) { animation-delay: 2.8s; }

@keyframes feedItemReveal {
    0%       { opacity: 0; transform: translateX(-12px); }
    6%       { opacity: 1; transform: translateX(0); }
    78%      { opacity: 1; transform: translateX(0); }
    90%, 100%{ opacity: 0; transform: translateX(0); }
}

.feed-item.new { background: rgba(40, 204, 196, 0.1); border-color: rgba(40, 204, 196, 0.3); }
.feed-icon { font-size: 18px; }
.feed-name { flex: 1; font-size: 13px; font-weight: 500; color: #fff; }
.feed-volume { font-size: 12px; font-weight: 600; color: #28ccc4; }

.panel-total {
    background: linear-gradient(145deg, rgba(40, 204, 196, 0.15), rgba(40, 204, 196, 0.05));
    border: 1px solid rgba(40, 204, 196, 0.3);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
}

.total-label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255, 255, 255, 0.5); margin-bottom: 5px; }
.total-value { font-size: 32px; font-weight: 800; color: #28ccc4; }
.total-value span { font-size: 16px; font-weight: 600; opacity: 0.8; }

.ai-stats-bar {
    display: flex; justify-content: center; align-items: center; gap: 0;
    background: linear-gradient(145deg, rgba(26, 26, 36, 0.8), rgba(18, 18, 26, 0.9));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.ai-stat { text-align: center; padding: 0 30px; }
.ai-stat-value { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.ai-stat-label { font-size: 12px; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.ai-stat-divider { width: 1px; height: 40px; background: linear-gradient(180deg, transparent, rgba(40, 204, 196, 0.4), transparent); }

@media (max-width: 900px) {
    .ai-demo-showcase { flex-direction: column; align-items: center; }
    .scan-visualization { max-width: 100%; }
    .ai-panel { width: 100%; max-width: 350px; }
}

@media (max-width: 768px) {
    .ai-demo { padding: 100px 0; }
    .ai-demo::before, .ai-demo::after { height: 50px; }
    .ai-demo-header h2 { font-size: 28px; }
    .ai-stats-bar { flex-wrap: wrap; gap: 20px; padding: 20px; }
    .ai-stat { padding: 0 15px; min-width: 120px; }
    .ai-stat-divider { display: none; }
    .ai-stat-value { font-size: 24px; }
    .detection-label { font-size: 9px; padding: 3px 8px; }
}

@media (max-width: 480px) {
    .ai-demo { padding: 70px 0; }
    .ai-demo-header h2 { font-size: 24px; }
    .ai-badge { font-size: 10px; padding: 6px 12px; }
    .ai-stats-bar { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px; }
    .ai-stat { min-width: unset; padding: 0 8px; text-align: center; }
    .ai-stat-value { font-size: 20px; }
    .detected-item { display: none; }
    .detected-item.item-1, .detected-item.item-2 { display: block; }
}

/* ========================================================
   INLINED FROM final-cta.css — Final CTA section
   ======================================================== */

.final-cta {
    background: #0a0a0f;
    padding: 150px 0;
    position: relative;
    overflow: visible;
}

.final-cta::before {
    content: '';
    position: absolute; top: -1px; left: 0; right: 0;
    height: 60px;
    background: #e8edf3;
    clip-path: ellipse(60% 100% at 50% 0%);
    z-index: 1;
}

.final-cta::after {
    content: '';
    position: absolute; bottom: -1px; left: 0; right: 0;
    height: 60px;
    background: #e8edf3;
    clip-path: ellipse(60% 100% at 50% 100%);
    z-index: 1;
}

.final-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.final-cta-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-orb-1,.cta-orb-2,.cta-orb-3 { display: none; }

.final-cta-content { text-align: center; position: relative; z-index: 1; }

.final-cta-content h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-highlight {
    background: linear-gradient(135deg, #28ccc4, #67e8f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 40px;
    max-width: 500px;
}

.final-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #28ccc4 0%, #0891b2 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: none;
    cursor: pointer;
}

.cta-btn-primary::before { display: none; }

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.cta-btn-primary:hover::before { left: 100%; }
.cta-btn-primary svg { transition: transform 0.3s ease; }
.cta-btn-primary:hover svg { transform: translateX(4px); }

.cta-guarantee { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.6); }
.guarantee-icon { font-size: 18px; }

@media (max-width: 768px) {
    .final-cta { padding: 100px 0; }
    .final-cta::before, .final-cta::after { height: 40px; }
    .final-cta-content p { font-size: 16px; }
    .cta-btn-primary { padding: 16px 32px; font-size: 16px; }
}

@media (max-width: 480px) {
    .final-cta { padding: 90px 0; }
    .final-cta-content p { font-size: 15px; }
    .cta-btn-primary { padding: 14px 28px; font-size: 15px; }
    .cta-guarantee { flex-direction: column; text-align: center; gap: 6px; }
}

@media (max-width: 375px) {
    .final-cta { padding: 60px 0; }
    .final-cta-container { padding: 0 12px; }
    .cta-btn-primary { padding: 14px 24px; font-size: 15px; }
}
