﻿body {
}
/* ============================================
   60S-AI Landing Page - Styles CSS
   ============================================ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #1e293b;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    transition: all 0.3s;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: #2563eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-icon svg {
        width: 20px;
        height: 20px;
        fill: #fff;
        color: #fff;
    }

.logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 32px;
}

    .nav-links a {
        color: #cbd5e1;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: #fff;
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 8px;
}

    .btn-lang:hover {
        background: #1e293b;
        color: #fff;
    }

    .btn-lang svg {
        width: 16px;
        height: 16px;
    }

.btn-connexion {
    color: #cbd5e1;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    padding: 8px;
}

    .btn-connexion:hover {
        color: #fff;
    }

.btn-inscription {
    background: #1d4ed8;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s;
}

    .btn-inscription:hover {
        background: #2563eb;
        box-shadow: 0 10px 15px -3px rgba(29,78,216,0.25);
    }

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: #020617;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-blur-1, .hero-bg-blur-2 {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(64px);
}

.hero-bg-blur-1 {
    top: 0;
    left: 25%;
    background: rgba(2,132,199,0.1);
}

.hero-bg-blur-2 {
    bottom: 0;
    right: 25%;
    background: rgba(37,99,235,0.08);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(148,163,184,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(148,163,184,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
}

.hero-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 128px 24px 96px;
    width: 100%;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(29,78,216,0.15);
    border: 1px solid rgba(37,99,235,0.25);
    color: #7dd3fc;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 32px;
}

    .badge svg {
        width: 16px;
        height: 16px;
    }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

    .hero-title .highlight {
        color: #7dd3fc;
    }

.hero-subtitle {
    font-size: 18px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1d4ed8;
    color: #fff;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.2s;
}

    .btn-primary:hover {
        background: #2563eb;
        transform: translateY(-2px);
        box-shadow: 0 25px 50px -12px rgba(29,78,216,0.3);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(30,41,59,0.6);
    color: #fff;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    border: 1px solid #334155;
    transition: all 0.2s;
}

    .btn-secondary:hover {
        background: rgba(51,65,85,0.6);
        border-color: #475569;
    }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

    .hero-trust svg {
        width: 16px;
        height: 16px;
        color: #10b981;
    }

/* Mockup tableau de bord */
.dashboard-mockup {
    background: #0f172a;
    border-radius: 16px;
    border: 1px solid #1e293b;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    position: relative;
}

.mockup-header {
    background: #1e293b;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .mockup-dot.red {
        background: rgba(239,68,68,0.7);
    }

    .mockup-dot.yellow {
        background: rgba(245,158,11,0.7);
    }

    .mockup-dot.green {
        background: rgba(16,185,129,0.7);
    }

.mockup-url {
    flex: 1;
    background: #334155;
    border-radius: 6px;
    height: 24px;
    margin: 0 16px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #94a3b8;
    font-size: 12px;
}

.mockup-body {
    padding: 24px;
}

    .mockup-body h3 {
        color: #fff;
        font-size: 14px;
        font-weight: 600;
    }

.mockup-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.tag-live {
    background: rgba(16,185,129,0.2);
    color: #34d399;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 9999px;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.kpi-card {
    background: rgba(30,41,59,0.8);
    border-radius: 12px;
    padding: 12px;
}

.kpi-label {
    color: #64748b;
    font-size: 12px;
    margin-bottom: 4px;
}

.kpi-value {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.kpi-trend {
    font-size: 12px;
    font-weight: 500;
}

    .kpi-trend.up {
        color: #34d399;
    }

    .kpi-trend.down {
        color: #fb7185;
    }

.ai-card {
    background: rgba(30,41,59,0.5);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.ai-label {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.ai-message {
    display: flex;
    gap: 12px;
}

.ai-avatar {
    width: 28px;
    height: 28px;
    background: #2563eb;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .ai-avatar svg {
        width: 14px;
        height: 14px;
        fill: #fff;
        color: #fff;
    }

.ai-bubble {
    background: rgba(51,65,85,0.6);
    border-radius: 12px;
    border-top-left-radius: 0;
    padding: 12px;
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.6;
}

.task-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #1e293b;
}

    .task-row:last-child {
        border-bottom: none;
    }

.task-label {
    color: #94a3b8;
    font-size: 12px;
}

.task-status {
    font-size: 12px;
    font-weight: 500;
}

    .task-status.done {
        color: #34d399;
    }

    .task-status.pending {
        color: #38bdf8;
    }

.live-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: #10b981;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(16,185,129,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@media (max-width: 1024px) {
    .hero-flex {
        flex-direction: column;
        gap: 64px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-trust {
        justify-content: center;
    }
}

/* ===== SECTIONS GÉNÉRALES ===== */
.section {
    padding: 96px 0;
}

.section-light {
    background: #fff;
}

.section-gray {
    background: #f8fafc;
}

.section-dark {
    background: #020617;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    max-width: 768px;
    margin: 0 auto 4px;
    text-align: center;
}

.badge-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.badge-rose {
    background: #fff1f2;
    border: 1px solid #ffe4e6;
    color: #e11d48;
}

.badge-sky {
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    color: #0284c7;
}

.badge-emerald {
    background: #ecfdf5;
    border: 1px solid #d1fae5;
    color: #059669;
}

.badge-light svg {
    width: 16px;
    height: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #020617;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

    .section-title .text-rose {
        color: #f43f5e;
    }

    .section-title .text-sky {
        color: #0284c7;
    }

    .section-title .text-emerald {
        color: #059669;
    }

.section-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.problem-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    transition: all 0.2s;
}

    .problem-card:hover {
        background: #f1f5f9;
        border-color: #e2e8f0;
    }

.problem-icon {
    width: 44px;
    height: 44px;
    background: #ffe4e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .problem-icon svg {
        width: 20px;
        height: 20px;
        color: #f43f5e;
    }

.problem-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
}

.problem-card p {
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
}

.result-banner {
    background: linear-gradient(to bottom right, #020617, #0f172a);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    color: #fff;
}

    .result-banner .label {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .result-banner p {
        font-size: 22px;
        color: #cbd5e1;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto;
    }

    .result-banner .text-amber {
        color: #fbbf24;
        font-weight: 600;
    }

    .result-banner .text-rose-400 {
        color: #fb7185;
        font-weight: 600;
    }

    .result-banner .text-emerald-400 {
        color: #34d399;
        font-weight: 600;
    }

.result-tagline {
    margin-top: 32px;
    display: inline-block;
    background: rgba(251,191,36,0.1);
    border: 1px solid rgba(251,191,36,0.2);
    color: #fcd34d;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SOLUTION SECTION ===== */
.solution-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

    .check-item svg {
        width: 20px;
        height: 20px;
        color: #10b981;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .check-item p {
        color: #334155;
        font-weight: 500;
    }

.compare-table {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(226,232,240,0.5);
}

.compare-header {
    background: #020617;
    padding: 16px 24px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    padding: 16px 20px;
    border-top: 1px solid #f1f5f9;
}

    .compare-row.head {
        background: #f8fafc;
    }

        .compare-row.head p {
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

            .compare-row.head p.amber {
                color: #d97706;
            }

    .compare-row .col-label {
        font-size: 14px;
        font-weight: 600;
        color: #1e293b;
    }

    .compare-row .col-other {
        font-size: 12px;
        color: #64748b;
        text-align: center;
        line-height: 1.6;
    }

    .compare-row .col-60s {
        font-size: 12px;
        color: #059669;
        font-weight: 500;
        text-align: center;
        line-height: 1.6;
    }

/* Cards de fonctionnalités IA */
.feature-cards-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card-light {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

    .feature-card-light:hover {
        border-color: #e2e8f0;
        transform: translateY(-4px);
        box-shadow: 0 10px 15px -3px rgba(241,245,249,0.8);
    }

.feature-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .feature-icon-circle svg {
        width: 24px;
        height: 24px;
    }

.icon-sky {
    background: #f0f9ff;
    color: #0284c7;
}

.icon-emerald {
    background: #ecfdf5;
    color: #059669;
}

.icon-amber {
    background: #fffbeb;
    color: #d97706;
}

.icon-slate {
    background: #f1f5f9;
    color: #334155;
}

.feature-card-light h3 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.feature-card-light p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .solution-flex {
        grid-template-columns: 1fr;
    }

    .feature-cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .feature-cards-4 {
        grid-template-columns: 1fr;
    }
}

/* ===== FEATURES SECTION ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    position: relative;
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}

    .feature-card:hover {
        background: #fff;
        border-color: #e2e8f0;
        transform: translateY(-4px);
        box-shadow: 0 20px 25px -5px rgba(241,245,249,0.8);
    }

.feature-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 9999px;
}

.tag-popular {
    background: #e0f2fe;
    color: #0369a1;
}

.tag-key {
    background: #d1fae5;
    color: #047857;
}

.tag-ai {
    background: #f1f5f9;
    color: #334155;
}

.tag-new {
    background: #dbeafe;
    color: #1e40af;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

    .feature-icon svg {
        width: 20px;
        height: 20px;
        color: #475569;
        transition: color 0.3s;
    }

.feature-card:hover .feature-icon {
    background: #020617;
}

    .feature-card:hover .feature-icon svg {
        color: #fff;
    }

.feature-cat {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.feature-card h3 {
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PLANS / PRICING ===== */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

    .plan-card.featured {
        background: #020617;
        border-color: rgba(14,165,233,0.4);
        color: #fff;
    }

    .plan-card.emerald-bordered {
        border-color: #a7f3d0;
    }

    .plan-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 25px -5px rgba(226,232,240,0.8);
    }

.plan-badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #0ea5e9;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(14,165,233,0.3);
    white-space: nowrap;
}

.plan-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.plan-icon-slate {
    background: #e2e8f0;
    color: #334155;
}

.plan-icon-sky {
    background: rgba(14,165,233,0.2);
    color: #7dd3fc;
}

.plan-icon-emerald {
    background: #d1fae5;
    color: #047857;
}

.plan-icon-circle svg {
    width: 24px;
    height: 24px;
}

.plan-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-tagline {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #64748b;
}

.plan-card.featured .plan-tagline {
    color: #7dd3fc;
}

.plan-pill {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.plan-card.featured .plan-pill {
    background: rgba(14,165,233,0.2);
    color: #7dd3fc;
}

.plan-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 24px;
}

.plan-card.featured .plan-desc {
    color: #cbd5e1;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

    .plan-price .amount {
        font-size: 30px;
        font-weight: 700;
    }

    .plan-price .period {
        font-size: 14px;
        font-weight: 500;
        color: #64748b;
    }

.plan-card.featured .plan-price .period {
    color: #94a3b8;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-bottom: 32px;
}

.plan-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

    .plan-feature svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        margin-top: 2px;
        color: #475569;
    }

.plan-card.featured .plan-feature svg {
    color: #38bdf8;
}

.plan-card.emerald-bordered .plan-feature svg {
    color: #059669;
}

.plan-feature span {
    color: #475569;
}

.plan-card.featured .plan-feature span {
    color: #cbd5e1;
}

.plan-button {
    width: 100%;
    text-align: center;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    background: #020617;
    color: #fff;
    transition: all 0.2s;
}

    .plan-button:hover {
        background: #1e293b;
    }

.plan-card.featured .plan-button {
    background: #0ea5e9;
}

    .plan-card.featured .plan-button:hover {
        background: #38bdf8;
        box-shadow: 0 10px 15px -3px rgba(14,165,233,0.3);
    }

.plans-note {
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

/* ===== MISSION SECTION ===== */
.section-dark .grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(148,163,184,0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(148,163,184,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
}

.mission-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
    position: relative;
}

.mission-title {
    color: #fff;
}

.mission-subtitle {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.mission-quote {
    background: linear-gradient(to right, rgba(29,78,216,0.15), transparent);
    border-left: 4px solid #3b82f6;
    padding: 16px 24px;
    border-radius: 0 12px 12px 0;
}

    .mission-quote h3 {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 4px;
    }

    .mission-quote p {
        color: #94a3b8;
    }

.mission-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mission-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(15,23,42,0.6);
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s;
}

    .mission-card:hover {
        background: rgba(30,41,59,0.6);
        border-color: #334155;
    }

.mission-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(29,78,216,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .mission-card-icon svg {
        width: 24px;
        height: 24px;
        color: #38bdf8;
    }

.mission-card h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.mission-card p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid #1e293b;
    text-align: center;
    position: relative;
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 12px;
    transition: transform 0.2s;
    display: inline-block;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-card .stat-label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 4px;
}

.stat-card .stat-source {
    color: #475569;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .mission-flex {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ===== CTA SECTION ===== */
.cta-box {
    position: relative;
    background: linear-gradient(to bottom right, #020617, #0f172a, #020617);
    border-radius: 24px;
    overflow: hidden;
    padding: 96px 64px;
    text-align: center;
}

    .cta-box .cta-grid-bg {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(to right, rgba(148,163,184,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(148,163,184,0.04) 1px, transparent 1px);
        background-size: 32px 32px;
    }

.cta-box-content {
    position: relative;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.cta-subtitle {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-form {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    color: #64748b;
    font-size: 14px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-trust-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .cta-box {
        padding: 64px 24px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #020617;
    border-top: 1px solid #1e293b;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 300px;
}

    .footer-brand p {
        color: #64748b;
        font-size: 14px;
        line-height: 1.7;
        margin: 20px 0 24px;
    }

.footer-socials {
    display: flex;
    gap: 12px;
}

    .footer-socials a {
        width: 36px;
        height: 36px;
        background: #1e293b;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        transition: all 0.2s;
    }

        .footer-socials a:hover {
            background: #334155;
            color: #fff;
        }

    .footer-socials svg {
        width: 16px;
        height: 16px;
    }

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #64748b;
    font-size: 14px;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: #cbd5e1;
    }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    color: #475569;
    font-size: 14px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(6,78,59,0.5);
    border: 1px solid rgba(6,95,70,0.5);
    color: #059669;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 9999px;
}

.footer-status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
