:root {
    --brand-navy: #0D2B6B;
    --brand-blue: #1565C0;
    --brand-cyan: #4fc3f7;
    --brand-white: #ffffff;
}

.hero {
    background: var(--brand-navy);
    padding: 6rem 2rem 5rem;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(79, 195, 247, 0.15);
    color: var(--brand-cyan);
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(79, 195, 247, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    color: white;
}

.hero h1 em {
    font-style: normal;
    color: var(--brand-cyan);
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--brand-blue);
    color: white;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #1976D2;
    color: white;
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: white;
}

.metrics-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--brand-blue);
}

.metric {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    color: white;
}

.metric:last-child { border-right: none; }

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-cyan);
    letter-spacing: -1px;
}

.metric-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.features-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    text-align: left;
}

.feature-card {
    background: white;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(13, 43, 107, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: var(--brand-navy);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .metrics-strip { grid-template-columns: 1fr; }
    .metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
}

:root {
    --brand-navy: #0D2B6B;
    --brand-blue: #1565C0;
    --brand-cyan: #4fc3f7;
    --brand-white: #ffffff;
}

.hero {
    background: var(--brand-navy);
    padding: 6rem 2rem 5rem;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(79, 195, 247, 0.15);
    color: var(--brand-cyan);
    font-size: 13px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(79, 195, 247, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    color: white;
}

    .hero h1 em {
        font-style: normal;
        color: var(--brand-cyan);
    }

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--brand-blue);
    color: white;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

    .btn-primary:hover {
        background: #1976D2;
        color: white;
    }

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s;
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.15);
        color: white;
    }

.metrics-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--brand-blue);
}

.metric {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.15);
    color: white;
}

    .metric:last-child {
        border-right: none;
    }

.metric-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-cyan);
    letter-spacing: -1px;
}

.metric-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.features-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-navy);
    letter-spacing: -0.5px;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    text-align: left;
}

.feature-card {
    background: white;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .feature-card:hover {
        box-shadow: 0 8px 24px rgba(13, 43, 107, 0.1);
        transform: translateY(-2px);
    }

.feature-icon {
    font-size: 24px;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    background: var(--brand-navy);
    padding: 5rem 2rem;
    text-align: center;
    color: white;
}

    .cta-section h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: white;
    }

    .cta-section p {
        font-size: 16px;
        color: rgba(255,255,255,0.7);
        margin-bottom: 2rem;
    }

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .metrics-strip {
        grid-template-columns: 1fr;
    }

    .metric {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content-wrapper {
    flex: 1;
}

.site-footer {
    background: var(--brand-navy);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 13px;
    margin-top: auto;
}

.site-footer a {
    color: var(--brand-cyan);
    text-decoration: none;
    margin-left: 1rem;
}

.site-footer a:hover {
    color: white;
}

.navbar .nav-link.text-dark,
.navbar a.text-dark {
    color: rgba(255,255,255,0.8) !important;
}

.navbar .navbar-text {
    color: rgba(255,255,255,0.7) !important;
}

.navbar .btn-link {
    color: rgba(255,255,255,0.8) !important;
}

/* ── NAVBAR ──────────────────────────────────────────── */
.navbar-custom {
    background: #0D2B6B !important;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .navbar-custom .nav-link {
        color: rgba(255,255,255,0.85) !important;
        font-size: 15px !important;
        font-weight: 500;
        padding: 0.5rem 1rem !important;
        transition: color 0.2s;
    }

        .navbar-custom .nav-link:hover {
            color: white !important;
        }

    .navbar-custom .btn-demo {
        background: #1565C0;
        color: white !important;
        font-size: 14px !important;
        font-weight: 600;
        padding: 8px 20px !important;
        border-radius: 8px;
        transition: background 0.2s;
    }

        .navbar-custom .btn-demo:hover {
            background: #1976D2;
        }

/* ── HERO ────────────────────────────────────────────── */
.hero-section {
    background: #0D2B6B;
    padding: 7rem 2rem 6rem;
    text-align: center;
}

    .hero-section h1 {
        font-size: clamp(42px, 6vw, 72px) !important;
        font-weight: 800 !important;
        line-height: 1.1 !important;
        letter-spacing: -2px !important;
        color: white !important;
        margin-bottom: 1.5rem;
    }

        .hero-section h1 .accent {
            color: #4fc3f7;
        }

    .hero-section .hero-sub {
        font-size: 18px;
        color: rgba(255,255,255,0.7);
        line-height: 1.7;
        max-width: 580px;
        margin: 0 auto 2.5rem;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,195,247,0.1);
    color: #4fc3f7;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(79,195,247,0.25);
    margin-bottom: 2rem;
}

    .hero-badge .dot {
        width: 7px;
        height: 7px;
        background: #4fc3f7;
        border-radius: 50%;
        animation: pulse-dot 2s infinite;
    }

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.hero-btn-primary {
    background: #1565C0;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    margin: 0 8px;
}

    .hero-btn-primary:hover {
        background: #1976D2;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(21,101,192,0.4);
    }

.hero-btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
    margin: 0 8px;
}

    .hero-btn-secondary:hover {
        background: rgba(255,255,255,0.2);
        color: white;
        transform: translateY(-2px);
    }

/* ── METRICS ─────────────────────────────────────────── */
.metrics-section {
    background: #1565C0;
    padding: 0;
}

    .metrics-section .metric-item {
        padding: 3rem 2rem;
        text-align: center;
        border-right: 1px solid rgba(255,255,255,0.15);
    }

        .metrics-section .metric-item:last-child {
            border-right: none;
        }

    .metrics-section .metric-value {
        font-size: 56px !important;
        font-weight: 800 !important;
        color: #4fc3f7 !important;
        letter-spacing: -2px;
        line-height: 1;
    }

    .metrics-section .metric-label {
        font-size: 12px;
        color: rgba(255,255,255,0.65);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-top: 8px;
    }

/* ── FEATURES ────────────────────────────────────────── */
.features-section {
    padding: 6rem 2rem;
    background: #f8fafc;
}

    .features-section .section-eyebrow {
        font-size: 12px;
        font-weight: 700;
        color: #1565C0;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin-bottom: 1rem;
    }

    .features-section h2 {
        font-size: 40px !important;
        font-weight: 800 !important;
        color: #0D2B6B !important;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }

    .features-section .section-sub {
        font-size: 16px;
        color: #64748b;
        max-width: 500px;
        margin: 0 auto 3.5rem;
        line-height: 1.7;
    }

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    height: 100%;
}

    .feature-card:hover {
        box-shadow: 0 20px 40px rgba(13,43,107,0.08);
        transform: translateY(-4px);
        border-color: #cbd5e1;
    }

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    background: #EFF6FF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.feature-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: #1565C0;
    fill: none;
}

.feature-card h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0D2B6B !important;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ── AI STRIP ────────────────────────────────────────── */
.ai-strip {
    background: #0D2B6B;
    padding: 5rem 2rem;
    text-align: center;
}

    .ai-strip h2 {
        font-size: 32px;
        font-weight: 800;
        color: white;
        letter-spacing: -0.5px;
        margin-bottom: 0.75rem;
    }

    .ai-strip p {
        color: rgba(255,255,255,0.55);
        font-size: 15px;
        margin-bottom: 2rem;
    }

.ai-tag {
    display: inline-block;
    background: rgba(21,101,192,0.3);
    color: #4fc3f7;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(21,101,192,0.4);
    margin: 4px;
}

/* ── CTA ─────────────────────────────────────────────── */
.cta-section {
    padding: 7rem 2rem;
    background: white;
    text-align: center;
}

    .cta-section h2 {
        font-size: 42px !important;
        font-weight: 800 !important;
        color: #0D2B6B !important;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 16px;
        color: #64748b;
        margin-bottom: 2.5rem;
    }

.cta-btn {
    background: #0D2B6B;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.cta-btn:hover {
    background: #1565C0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(13,43,107,0.2);
}

/* ── MOBILE RESPONSIVENESS ───────────────────────────── */
@media (max-width: 768px) {

    /* Stack all two-column hero grids */
    section > div[style*="grid-template-columns:1fr 1fr"],
    section > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    /* Stack stats strips on mobile */
    section > div[style*="grid-template-columns:repeat(4,1fr)"],
    section > div[style*="grid-template-columns: repeat(4,1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }

    /* Reduce hero heading sizes */
    h1[style*="font-size:52px"],
    h1[style*="font-size: 52px"] {
        font-size: 36px !important;
        letter-spacing: -1px !important;
    }

    h1[style*="font-size:48px"],
    h1[style*="font-size: 48px"] {
        font-size: 32px !important;
        letter-spacing: -1px !important;
    }

    h2[style*="font-size:38px"],
    h2[style*="font-size: 38px"] {
        font-size: 28px !important;
        letter-spacing: -0.5px !important;
    }

    /* Reduce hero section padding */
    section[style*="padding:6rem"] {
        padding: 3rem 1.25rem !important;
    }

    section[style*="padding:5rem"] {
        padding: 3rem 1.25rem !important;
    }

    /* Fix phone mockup centering */
    #mob-menu {
        display: none;
    }

    /* Stack proof items */
    .hero-proof {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    /* Full width buttons on mobile */
    .hero-actions {
        flex-direction: column !important;
    }

        .hero-actions a,
        .hero-actions button {
            width: 100% !important;
            text-align: center !important;
        }

    /* Fix metrics strip on mobile */
    .metrics-section > div {
        grid-template-columns: 1fr !important;
    }

    .metric-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    }

    /* Fix feature cards grid */
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    /* Fix pain point cards */
    div[style*="grid-template-columns:repeat(auto-fit, minmax(300px"] {
        grid-template-columns: 1fr !important;
    }

    /* Fix about page timeline */
    div[style*="padding-left:3rem"] {
        padding-left: 2rem !important;
    }

    /* Fix contact form two-column grid */
    div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Prevent horizontal overflow */
    body, section, div {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Fix globe container height on mobile */
    #globe-container {
        height: 280px !important;
    }

    /* Fix share section buttons */
    div[style*="display:flex; gap:12px; justify-content:center"] {
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    h1[style*="font-size:52px"],
    h1[style*="font-size: 52px"] {
        font-size: 28px !important;
    }

    .metric-value {
        font-size: 40px !important;
    }

    /* Stats strips become single column */
    section > div[style*="grid-template-columns:repeat(4,1fr)"] {
        grid-template-columns: 1fr !important;
    }
}