/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
    --navy: #0d1b2a;
    --navy-mid: #1e2a3a;
    --navy-lite: #2d3f54;
    --blue: #2563eb;
    --blue-lite: #3b82f6;
    --teal: #0ea5e9;
    --accent: #00d4ff;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-500: #64748b;
    --gray-700: #334155;
    --text: #0f172a;
    --font: 'DM Sans', sans-serif;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    background: var(--navy);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a {
    color: var(--blue);
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ── Site wrapper — white background for content sections ──────────────────── */
.site-wrapper {
    background: var(--navy);
}

main {
    background: var(--white);
}

/* ── Layout ────────────────────────────────────────────────────────────────── */
.section-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.header-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

    .main-nav a {
        padding: 8px 14px;
        color: var(--gray-700);
        font-size: 14px;
        font-weight: 500;
        border-radius: 8px;
        transition: color 0.2s, background 0.2s;
        text-decoration: none;
    }

        .main-nav a:hover {
            color: var(--blue);
            background: rgba(37,99,235,0.06);
        }

        .main-nav a.active {
            color: var(--blue);
            background: rgba(37,99,235,0.08);
            font-weight: 600;
        }

        .main-nav a.nav-cta {
            margin-left: auto;
            background: var(--blue);
            color: white;
            padding: 9px 20px;
            font-weight: 600;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(37,99,235,0.25);
        }

            .main-nav a.nav-cta:hover {
                background: var(--blue-lite);
                color: white;
            }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gray-700);
    font-size: 22px;
    cursor: pointer;
    margin-left: auto;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
    border-top: 1px solid var(--gray-200);
    background: white;
}

    .mobile-nav a {
        color: var(--gray-700);
        padding: 10px 0;
        font-size: 15px;
        text-decoration: none;
        border-bottom: 1px solid var(--gray-100);
    }

        .mobile-nav a:hover {
            color: var(--blue);
        }

    .mobile-nav.open {
        display: flex;
    }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 13px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    font-family: var(--font);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

    .btn-primary:hover {
        background: var(--blue-lite);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(37,99,235,0.45);
        color: white;
        text-decoration: none;
    }

    .btn-primary:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    .btn-primary.btn-large {
        padding: 16px 36px;
        font-size: 16px;
    }

    .btn-primary.btn-full {
        width: 100%;
        text-align: center;
    }

.btn-ghost {
    display: inline-block;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 10px;
    transition: color 0.2s, background 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}

    .btn-ghost:hover {
        color: white;
        background: rgba(255,255,255,0.08);
        text-decoration: none;
    }

.btn-outline {
    display: inline-block;
    color: var(--blue);
    border: 2px solid var(--blue);
    padding: 11px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

    .btn-outline:hover {
        background: var(--blue);
        color: white;
        text-decoration: none;
    }

/* ── Section labels & titles ───────────────────────────────────────────────── */
.section-label {
    display: inline-block;
    background: rgba(37,99,235,0.1);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 16px;
}

.section-sub {
    color: var(--gray-500);
    font-size: 17px;
    max-width: 580px;
    line-height: 1.65;
}

/* ── HERO — full bleed dark background ─────────────────────────────────────── */
.hero-outer {
    background: var(--navy);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: 0;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14,165,233,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero {
    max-width: 1160px;
    margin: 0 auto;
    padding: 90px 32px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(14,165,233,0.12);
    border: 1px solid rgba(14,165,233,0.25);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-title {
    font-size: clamp(44px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.08;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-accent {
    background: linear-gradient(90deg, var(--blue-lite), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    color: rgba(255,255,255,0.65);
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-size: 30px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.stat-div {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
}

/* ── Map Mockup ────────────────────────────────────────────────────────────── */
.hero-visual {
    position: relative;
    z-index: 1;
}

.map-mockup {
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
}

.map-bar {
    background: rgba(255,255,255,0.04);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.map-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

    .map-dot.red {
        background: #ff5f57;
    }

    .map-dot.yellow {
        background: #febc2e;
    }

    .map-dot.green {
        background: #28c840;
    }

.map-url {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-left: 8px;
}

.map-body {
    padding: 16px;
}

.map-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.08);
}

    .filter-chip.active {
        background: rgba(37,99,235,0.2);
        color: #93c5fd;
        border-color: rgba(37,99,235,0.3);
    }

.map-surface {
    background: #1a3a5c;
    border-radius: 10px;
    height: 260px;
    position: relative;
    overflow: hidden;
}

.map-grid-lines {
    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: 32px 32px;
}

.map-pin {
    position: absolute;
    font-size: 22px;
    animation: pin-bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

.pin-1 {
    top: 30%;
    left: 25%;
    animation-delay: 0s;
}

.pin-2 {
    top: 20%;
    left: 55%;
    animation-delay: 0.4s;
}

.pin-3 {
    top: 55%;
    left: 40%;
    animation-delay: 0.8s;
}

.pin-4 {
    top: 45%;
    left: 70%;
    animation-delay: 1.2s;
}

@keyframes pin-bounce {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.map-info-card {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: white;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
    color: var(--text);
    z-index: 2;
}

    .map-info-card strong {
        font-size: 13px;
        font-weight: 600;
    }

.info-tag {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 100px;
    margin-top: 4px;
}

/* ── Value band ────────────────────────────────────────────────────────────── */
.value-band {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 32px 0;
}

.value-band-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 40px;
    flex: 1;
    min-width: 220px;
}

.value-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.value-item strong {
    display: block;
    color: white;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.value-item span {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.4;
}

.value-div {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
}

/* ── Video section ─────────────────────────────────────────────────────────── */
.video-section {
    padding: 96px 0;
    background: var(--gray-100);
    text-align: center;
}

    .video-section .section-sub {
        margin: 0 auto 40px;
    }

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: var(--navy-mid);
    border-radius: 16px;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: border-color 0.2s;
}

    .video-placeholder:hover {
        border-color: rgba(37,99,235,0.4);
    }

    .video-placeholder p {
        color: rgba(255,255,255,0.4);
        font-size: 14px;
    }

.play-btn {
    width: 64px;
    height: 64px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    box-shadow: 0 0 0 12px rgba(37,99,235,0.15);
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-placeholder:hover .play-btn {
    transform: scale(1.08);
    box-shadow: 0 0 0 16px rgba(37,99,235,0.12);
}

/* ── Features strip ────────────────────────────────────────────────────────── */
.features-strip {
    padding: 96px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0 40px;
}

.feature-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

    .feature-card:hover {
        border-color: rgba(37,99,235,0.25);
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

.feature-icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.strip-cta {
    text-align: center;
}

/* ── Cost section ──────────────────────────────────────────────────────────── */
.cost-section {
    padding: 96px 0;
    background: var(--navy);
}

    .cost-section .section-label {
        background: rgba(14,165,233,0.12);
        color: var(--accent);
    }

    .cost-section .section-title {
        color: white;
    }

    .cost-section .section-sub {
        color: rgba(255,255,255,0.55);
        margin-bottom: 48px;
    }

.cost-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.cost-card {
    border-radius: 16px;
    padding: 36px;
    border: 1px solid transparent;
}

.cost-bad {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.cost-good {
    background: linear-gradient(160deg, rgba(37,99,235,0.15), rgba(14,165,233,0.08));
    border-color: rgba(37,99,235,0.35);
    box-shadow: 0 0 40px rgba(37,99,235,0.1);
}

.cost-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

    .cost-card-head h3 {
        font-size: 18px;
        font-weight: 700;
        color: white;
    }

.cost-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

.cost-tag-bad {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
}

.cost-tag-good {
    background: rgba(37,99,235,0.25);
    color: #93c5fd;
}

.cost-figure {
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 4px;
}

.cost-figure-text {
    font-size: 28px;
}

.cost-sublabel {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
}

.cost-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

    .cost-list li {
        font-size: 14px;
        color: rgba(255,255,255,0.7);
        line-height: 1.5;
    }

/* ── Industries ────────────────────────────────────────────────────────────── */
.industries-section {
    padding: 96px 0;
    background: white;
    text-align: center;
}

.industry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 40px 0 0;
}

.industry-tile {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    color: var(--gray-700);
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

    .industry-tile:hover {
        background: rgba(37,99,235,0.08);
        border-color: rgba(37,99,235,0.2);
        color: var(--blue);
    }

/* ── CTA Band ──────────────────────────────────────────────────────────────── */
.cta-band {
    background: var(--navy-mid);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.cta-band p {
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    margin-bottom: 32px;
}

/* ── Page hero ─────────────────────────────────────────────────────────────── */
.page-hero {
    background: var(--navy);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
        background-size: 48px 48px;
    }

    .page-hero .section-inner {
        position: relative;
        z-index: 1;
    }

.page-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-sub {
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    max-width: 560px;
    line-height: 1.6;
}

/* ── Capabilities page ─────────────────────────────────────────────────────── */
.capabilities-section {
    padding: 80px 0;
    background: white;
}

.cap-group {
    margin-bottom: 64px;
}

.cap-group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.cap-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.cap-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .cap-item:hover {
        border-color: rgba(37,99,235,0.25);
        box-shadow: var(--shadow);
    }

.cap-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.cap-item h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cap-item p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ── How It Works steps ────────────────────────────────────────────────────── */
.steps-section {
    padding: 80px 0;
    background: white;
}

.steps-timeline {
    display: flex;
    flex-direction: column;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

    .step:last-child {
        border-bottom: none;
    }

.step-num {
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    padding-top: 4px;
    transition: color 0.2s;
}

.step:hover .step-num {
    color: var(--blue);
}

.step-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-body p {
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 16px;
}

.step-note {
    background: var(--gray-100);
    border-left: 3px solid var(--blue);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ── Comparison ────────────────────────────────────────────────────────────── */
.comparison-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.compare-col {
    padding: 32px;
    border-radius: var(--radius);
    border: 2px solid transparent;
}

.compare-bad {
    background: white;
    border-color: var(--gray-200);
}

.compare-good {
    background: linear-gradient(135deg, #eff6ff, #f0f9ff);
    border-color: rgba(37,99,235,0.25);
}

.compare-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.compare-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.compare-col li {
    font-size: 14px;
    color: var(--gray-700);
}

/* ── Use Cases page ────────────────────────────────────────────────────────── */
.use-cases-section {
    padding: 80px 0;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.use-case-card {
    padding: 28px;
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

    .use-case-card:hover {
        border-color: rgba(37,99,235,0.25);
        box-shadow: var(--shadow);
        transform: translateY(-2px);
    }

.use-case-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.use-case-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.use-case-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}

.use-case-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

    .use-case-filters span {
        background: rgba(37,99,235,0.08);
        color: var(--blue);
        font-size: 11px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 100px;
        border: 1px solid rgba(37,99,235,0.15);
    }

/* ── Contact page ──────────────────────────────────────────────────────────── */
.contact-section {
    padding: 64px 0 96px;
    background: white;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.form-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

    .form-card h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
    }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--off-white);
    outline: none;
    width: 100%;
}

    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
        background: white;
    }

.form-group textarea {
    resize: vertical;
}

.form-note {
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
    margin-top: 12px;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 18px;
}

.contact-success {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-success p {
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 24px;
}

.contact-info-card {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
}

    .contact-info-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-info-card h4 {
        font-weight: 700;
        margin-bottom: 8px;
    }

.expect-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    align-items: flex-start;
}

    .expect-item:last-child {
        margin-bottom: 0;
    }

.expect-num {
    width: 28px;
    height: 28px;
    background: var(--blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.expect-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.expect-item p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
    margin: 0;
}

.contact-info-plain {
    background: white;
}

    .contact-info-plain p {
        font-size: 14px;
        color: var(--gray-500);
        margin-bottom: 10px;
    }

.contact-email {
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}

.site-footer {
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 64px 0 0;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 32px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
}

.footer-brand p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 4px;
    max-width: 280px;
}

.footer-tagline {
    color: var(--navy) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin-top: 12px !important;
    letter-spacing: 0.01em;
}

.footer-desc {
    margin-top: 6px !important;
}

.footer-links {
    display: flex;
    gap: 48px;
}

    .footer-links > div {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links h4 {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--gray-500);
        margin-bottom: 4px;
    }

    .footer-links a {
        font-size: 14px;
        color: var(--gray-700);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--blue);
        }

.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding: 20px 32px;
    max-width: 1160px;
    margin: 0 auto;
}

    .footer-bottom p {
        font-size: 13px;
        color: var(--gray-500);
    }

/* ── Not found ─────────────────────────────────────────────────────────────── */
.not-found {
    text-align: center;
    padding: 96px 32px;
}

    .not-found h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .not-found a {
        color: var(--blue);
        font-weight: 600;
    }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 32px;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cap-list {
        grid-template-columns: 1fr;
    }

    .comparison-grid, .cost-grid {
        grid-template-columns: 1fr;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .value-band-inner {
        flex-direction: column;
    }

    .value-div {
        width: 80%;
        height: 1px;
        margin: 0 auto;
    }

    .value-item {
        padding: 16px 24px;
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-inner {
        padding: 0 20px;
    }

    .hero {
        padding: 48px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .step-num {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   INSIGHTS ADD-ON — analytics page, home add-on section, packages
══════════════════════════════════════════════════════════════════════════ */

/* ── Page hero actions / add-on note ──────────────────────────────────────── */
.page-hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.addon-note {
    font-size: 14px;
    color: var(--gray-500);
}

/* ── Analytics intro (text + dashboard mockup) ────────────────────────────── */
.analytics-intro {
    background: var(--white);
    padding: 88px 0;
}

.analytics-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.analytics-bullets {
    list-style: none;
    margin-top: 24px;
}

    .analytics-bullets li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
        color: var(--gray-700);
        font-size: 16px;
    }

        .analytics-bullets li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--blue);
            font-weight: 700;
        }

/* ── Dashboard mockup ─────────────────────────────────────────────────────── */
.dash-mockup {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.dash-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

    .dash-bar .map-url {
        margin-left: 12px;
        font-size: 13px;
        color: var(--gray-500);
    }

.dash-body {
    padding: 24px;
}

.dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.dash-metric {
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 16px;
}

.dash-metric-num {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.1;
}

.dash-metric-label {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: var(--gray-500);
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 96px;
    padding: 0 4px;
}

    .dash-chart span {
        flex: 1;
        background: linear-gradient(180deg, var(--blue-lite), var(--blue));
        border-radius: 4px 4px 0 0;
        min-height: 6px;
    }

.dash-chart-label {
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
}

/* ── Why-it-matters grid (reuses cost-section wrapper) ────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
}

.why-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 10px;
}

.why-card p {
    color: var(--gray-700);
    font-size: 15px;
}

/* ── Home: Insights add-on section ────────────────────────────────────────── */
.addon-section {
    background: var(--off-white);
    padding: 88px 0;
    border-top: 1px solid var(--gray-200);
}

.addon-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.addon-list {
    list-style: none;
    margin: 24px 0;
}

    .addon-list li {
        position: relative;
        padding: 10px 0 10px 32px;
        border-bottom: 1px solid var(--gray-200);
        color: var(--gray-700);
        font-size: 16px;
    }

        .addon-list li:last-child {
            border-bottom: none;
        }

        .addon-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            line-height: 22px;
            text-align: center;
            border-radius: 6px;
            background: var(--blue);
            color: var(--white);
            font-size: 13px;
            font-weight: 700;
        }

/* ── Home: comparison matrix (MAPXER vs MAPXER + Insights) ────────────────── */
.packages-section {
    background: var(--white);
    padding: 88px 0;
}

.compare-matrix {
    margin-top: 48px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cm-row {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    align-items: center;
    border-top: 1px solid var(--gray-100);
}

.cm-head {
    border-top: none;
    background: var(--navy);
}

    .cm-head .cm-col,
    .cm-head .cm-feature {
        color: var(--white);
        font-weight: 700;
        font-size: 15px;
        padding: 18px 20px;
        text-align: center;
    }

    .cm-head .cm-col-accent {
        background: var(--blue);
    }

.cm-feature {
    padding: 14px 24px;
    color: var(--gray-700);
    font-size: 15px;
}

.cm-col {
    padding: 14px 20px;
    text-align: center;
    border-left: 1px solid var(--gray-100);
}

.cm-col-accent {
    background: rgba(37, 99, 235, 0.04);
}

.cm-group-row {
    background: var(--gray-100);
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--navy);
    border-top: 1px solid var(--gray-200);
}

.cm-group-tag {
    margin-left: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    color: var(--blue);
    background: rgba(37, 99, 235, 0.1);
    padding: 2px 8px;
    border-radius: 999px;
}

.cm-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.cm-no {
    color: var(--gray-200);
    font-size: 18px;
}

.compare-cta {
    text-align: center;
    margin-top: 36px;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .analytics-intro-inner,
    .addon-inner,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid {
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .cm-row {
        grid-template-columns: 1fr 84px 84px;
    }

    .cm-head .cm-col,
    .cm-feature {
        padding-left: 14px;
        padding-right: 10px;
        font-size: 13px;
    }

    .cm-head .cm-col {
        font-size: 12px;
        padding: 14px 6px;
    }

    .cm-col {
        padding: 12px 6px;
    }
}

@media (max-width: 480px) {
    .dash-metrics {
        grid-template-columns: 1fr 1fr;
    }
}
