/* ============================================
   NAAP LOST & FOUND — LANDING PAGE
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #0041C7;
    --blue-dark: #0033A0;
    --blue-light: #3ACBEB;
    --blue-glow: rgba(0,65,199,0.12);
    --purple: #7c3aed;
    --green: #059669;
    --orange: #d97706;
    --cyan: #0891b2;
    --red: #dc2626;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-900);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── NAVIGATION ── */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.landing-nav.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-brand-text {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
}

.nav-link {
    padding: 0.5rem 1rem;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-btn-ghost {
    color: var(--gray-600);
}
.nav-btn-ghost:hover {
    color: var(--gray-900);
    background: var(--gray-100);
}

.nav-btn-primary {
    background: var(--blue);
    color: white;
}
.nav-btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,65,199,0.3);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-800);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
}

.nav-mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    background: white;
    border-top: 1px solid var(--gray-200);
}

.nav-mobile-menu.show { display: flex; }

.nav-mobile-link {
    padding: 0.75rem 0;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
}

.nav-mobile-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.nav-mobile-actions .nav-btn { flex: 1; text-align: center; }

@media (max-width: 768px) {
    .nav-links, .nav-actions { display: none; }
    .nav-mobile-toggle { display: block; }
    .landing-nav.scrolled .nav-mobile-menu {
        border-top: 1px solid var(--gray-200);
    }
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8faff 0%, #eef4ff 30%, #f0f7ff 60%, #fafbff 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,65,199,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,65,199,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 { width: 500px; height: 500px; background: var(--blue-light); top: -100px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: #818cf8; bottom: -100px; left: -100px; animation-delay: 4s; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--blue); top: 50%; left: 50%; opacity: 0.15; animation-delay: 8s; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--blue-glow);
    color: var(--blue);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,65,199,0.15);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 14px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(0,65,199,0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(0,65,199,0.35);
}

.hero-btn-outline {
    background: white;
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
}

.hero-btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-1px);
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.hero-trust-avatars {
    display: flex;
}

.trust-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    margin-left: -8px;
}

.trust-avatar:first-child { margin-left: 0; background: #7c3aed; }
.trust-avatar:nth-child(2) { background: var(--green); }
.trust-avatar:nth-child(3) { background: var(--orange); }
.trust-avatar:nth-child(4) { background: var(--gray-400); }

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.hero-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}

.hero-metric-value {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.02em;
}

.hero-metric-label {
    font-size: 0.6875rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-metric-divider {
    width: 1px;
    height: 32px;
    background: var(--gray-200);
}

/* Hero Visual / Phone Mockup */
.hero-visual {
    display: none;
}

@media (min-width: 1024px) {
    .hero {
        flex-direction: row;
        gap: 4rem;
        text-align: left;
        padding: 8rem 3rem 4rem;
        max-width: 1300px;
        margin: 0 auto;
    }

    .hero-content {
        text-align: left;
        max-width: 560px;
        margin: 0;
    }

    .hero-cta { justify-content: flex-start; }
    .hero-metrics { justify-content: flex-start; }
    .hero-subtitle { margin-left: 0; }

    .hero-visual {
        display: block;
        position: relative;
        width: 340px;
        flex-shrink: 0;
    }

    .hero-phone {
        width: 280px;
        height: 560px;
        background: #1a1a2e;
        border-radius: 40px;
        padding: 12px;
        box-shadow:
            0 50px 100px rgba(0,0,0,0.15),
            0 20px 60px rgba(0,0,0,0.1),
            inset 0 0 0 2px rgba(255,255,255,0.1);
        position: relative;
        animation: phoneFloat 6s ease-in-out infinite;
        margin: 0 auto;
    }

    @keyframes phoneFloat {
        0%, 100% { transform: translateY(0) rotate(2deg); }
        50% { transform: translateY(-12px) rotate(2deg); }
    }

    .phone-notch {
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 24px;
        background: #1a1a2e;
        border-radius: 12px;
        z-index: 10;
    }

    .phone-screen {
        width: 100%;
        height: 100%;
        background: #f8fafc;
        border-radius: 30px;
        overflow: hidden;
        padding: 3rem 1rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .phone-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 0.25rem 0.75rem;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 0.25rem;
        font-size: 0.8125rem;
        font-weight: 700;
        color: var(--gray-900);
    }

    .phone-header-dot {
        width: 8px;
        height: 8px;
        background: var(--green);
        border-radius: 50%;
    }

    .phone-header i { color: var(--gray-400); }

    .phone-card {
        background: white;
        border-radius: 12px;
        padding: 0.875rem;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }

    .phone-card-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.625rem;
        font-weight: 700;
        padding: 0.2rem 0.5rem;
        border-radius: 6px;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .phone-badge-lost {
        background: #fef2f2;
        color: #dc2626;
    }

    .phone-badge-found {
        background: #ecfdf5;
        color: #059669;
    }

    .phone-card-body {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .phone-card-icon {
        width: 40px;
        height: 40px;
        background: var(--gray-100);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: var(--gray-600);
        flex-shrink: 0;
    }

    .phone-card-info {
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }

    .phone-card-info strong {
        font-size: 0.8125rem;
        color: var(--gray-900);
    }

    .phone-card-info span {
        font-size: 0.625rem;
        color: var(--gray-400);
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .phone-match-alert {
        background: linear-gradient(135deg, #059669 0%, #047857 100%);
        color: white;
        border-radius: 12px;
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
        gap: 0.625rem;
        position: relative;
        overflow: hidden;
        animation: alertGlow 3s ease-in-out infinite;
    }

    @keyframes alertGlow {
        0%, 100% { box-shadow: 0 4px 16px rgba(5,150,105,0.2); }
        50% { box-shadow: 0 4px 24px rgba(5,150,105,0.4); }
    }

    .match-pulse {
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.1);
        animation: matchPulse 2s ease-in-out infinite;
    }

    @keyframes matchPulse {
        0%, 100% { opacity: 0; }
        50% { opacity: 1; }
    }

    .phone-match-alert i {
        font-size: 1.125rem;
        position: relative;
        z-index: 1;
    }

    .match-alert-text {
        position: relative;
        z-index: 1;
    }

    .match-alert-text strong {
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
    }

    .match-alert-text span {
        font-size: 0.625rem;
        opacity: 0.8;
    }

    /* Floating badges */
    .hero-float-badge {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 0.375rem;
        padding: 0.5rem 0.875rem;
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 9999px;
        font-size: 0.6875rem;
        font-weight: 600;
        color: var(--gray-800);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        animation: floatBadge 4s ease-in-out infinite;
    }

    .hero-float-badge i {
        color: var(--blue);
    }

    .hero-float-1 {
        top: 40px;
        right: -20px;
        animation-delay: 0s;
    }

    .hero-float-2 {
        bottom: 80px;
        left: -30px;
        animation-delay: 2s;
    }

    .hero-float-2 i { color: var(--green); }

    @keyframes floatBadge {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
}

/* Hero mobile */
@media (max-width: 768px) {
    .hero { padding: 7rem 1.25rem 3rem; min-height: auto; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-btn { padding: 0.75rem 1.25rem; font-size: 0.875rem; width: 100%; justify-content: center; }
    .hero-cta { flex-direction: column; }
    .hero-metrics { flex-direction: row; gap: 1rem; padding: 1rem 1.25rem; }
    .hero-metric-value { font-size: 1.125rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-metrics { gap: 0.75rem; padding: 0.875rem 1rem; }
    .hero-metric-value { font-size: 1rem; }
    .hero-metric-label { font-size: 0.6rem; }
}

/* ── SECTIONS COMMON ── */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--blue-glow);
    color: var(--blue);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--gray-400);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.9375rem; }
    .section-header { margin-bottom: 2.5rem; }
}

/* ── FEATURES ── */
.features {
    padding: 6rem 0;
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.feature-icon-blue { background: rgba(0,65,199,0.1); color: var(--blue); }
.feature-icon-purple { background: rgba(124,58,237,0.1); color: var(--purple); }
.feature-icon-green { background: rgba(5,150,105,0.1); color: var(--green); }
.feature-icon-orange { background: rgba(217,119,6,0.1); color: var(--orange); }
.feature-icon-cyan { background: rgba(8,145,178,0.1); color: var(--cyan); }
.feature-icon-red { background: rgba(220,38,38,0.1); color: var(--red); }

.feature-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
    .features { padding: 4rem 0; }
}

/* ── HOW IT WORKS ── */
.how-it-works {
    padding: 6rem 0;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    flex: 1;
    max-width: 300px;
    position: relative;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.step-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 32px rgba(0,65,199,0.08);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-glow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--blue);
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 1.25rem;
    padding-top: 2rem;
}

@media (max-width: 768px) {
    .steps-grid { flex-direction: column; align-items: center; }
    .step-connector { transform: rotate(90deg); padding: 0; }
    .step-card { max-width: 100%; width: 100%; }
    .how-it-works { padding: 4rem 0; }
}

/* ── STATS ── */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #002060 0%, #0041C7 50%, #0D85D8 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.03em;
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    display: inline;
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .stat-number { font-size: 2.25rem; }
    .stats-section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── FAQ ── */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(10px);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover { border-color: var(--gray-300); }

.faq-item.open {
    border-color: var(--blue);
    box-shadow: 0 4px 16px rgba(0,65,199,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--blue); }

.faq-question i {
    font-size: 1rem;
    color: var(--gray-400);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--blue); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section { padding: 4rem 0; }
    .faq-question { padding: 1rem 1.25rem; font-size: 0.875rem; }
}

/* ── CTA ── */
.cta-section {
    padding: 4rem 0 6rem;
    background: var(--gray-50);
}

.cta-card {
    background: linear-gradient(135deg, #002060 0%, #0041C7 50%, #0D85D8 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-content { position: relative; z-index: 1; }

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 0.875rem 2rem;
    border-radius: 14px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-white {
    background: white;
    color: var(--blue);
}

.cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.cta-btn-ghost {
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

@media (max-width: 768px) {
    .cta-card { padding: 3rem 1.5rem; border-radius: 20px; }
    .cta-title { font-size: 1.5rem; }
    .cta-actions { flex-direction: column; }
    .cta-btn { width: 100%; justify-content: center; }
    .cta-section { padding: 2rem 0 4rem; }
}

/* ── FOOTER ── */
.landing-footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--gray-200);
    background: white;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.footer-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-brand-text strong {
    font-size: 0.9375rem;
    color: var(--gray-900);
}

.footer-brand-text span {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.footer-col a {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: none;
    padding: 0.375rem 0;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--blue); }

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .footer-grid { flex-direction: column; gap: 2rem; }
    .footer-links { gap: 2rem; }
    .landing-footer { padding: 2rem 0 1.5rem; }
}

/* ── SCROLL ANIMATIONS ── */
.feature-card,
.step-card,
.faq-item,
.stat-card {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }
.feature-card:nth-child(6) { transition-delay: 0.5s; }

.step-card:nth-child(1) { transition-delay: 0s; }
.step-card:nth-child(3) { transition-delay: 0.15s; }
.step-card:nth-child(5) { transition-delay: 0.3s; }

.stat-card:nth-child(2) { transition-delay: 0.1s; }
.stat-card:nth-child(3) { transition-delay: 0.2s; }
.stat-card:nth-child(4) { transition-delay: 0.3s; }

.faq-item:nth-child(2) { transition-delay: 0.05s; }
.faq-item:nth-child(3) { transition-delay: 0.1s; }
.faq-item:nth-child(4) { transition-delay: 0.15s; }
.faq-item:nth-child(5) { transition-delay: 0.2s; }
