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

:root {
    --bg: #080d14;
    --bg2: #0d1521;
    --card: #0f1a27;
    --border: rgba(255,255,255,.08);
    --text: #e8f0fe;
    --muted: #7b90a8;
    --primary: #00d4ff;
    --secondary: #8b5cf6;
    --cyan: #00d4ff;
    --purple: #8b5cf6;
    --emerald: #10b981;
    --orange: #f97316;
    --red: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── UTILITIES ── */
.container {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 24px;
}

.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--muted);
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,212,255,.35), transparent);
    margin: 0 24px;
}

/* ── NAVIGATION ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8,13,20,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background .3s, border-color .3s;
}
    /* homepage transparent-until-scroll variant */
    header.transparent {
        background: transparent;
        border-color: transparent;
    }

    header.scrolled {
        background: rgba(8,13,20,.85);
        border-color: var(--border);
    }

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -.02em;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s;
}

.logo:hover .logo-icon {
    border-color: rgba(0,212,255,.6);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        color: var(--muted);
        font-size: .9rem;
        font-weight: 500;
        text-decoration: none;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--text);
        }

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    transition: color .2s;
}

    .dropdown-toggle:hover {
        color: var(--text);
    }

    .dropdown-toggle svg {
        transition: transform .2s;
    }

.dropdown.open .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 8px;
    min-width: 260px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--muted);
    transition: background .15s, color .15s;
}

    .dropdown-menu a:hover {
        background: rgba(0,212,255,.1);
        color: var(--primary);
    }

    .dropdown-menu a.active {
        background: rgba(0,212,255,.08);
        color: var(--primary);
    }

/* Mobile nav */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    padding: 6px;
}

    .hamburger:hover {
        color: var(--text);
    }

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 16px 24px 24px;
    border-top: 1px solid var(--border);
    background: rgba(8,13,20,.97);
}

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

    .mobile-nav a {
        color: var(--text);
        text-decoration: none;
        padding: 12px 0;
        font-size: 1.05rem;
        font-weight: 500;
        border-bottom: 1px solid var(--border);
    }

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

    .mobile-nav .section-label {
        color: var(--muted);
        font-size: .75rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        padding: 16px 0 8px;
    }

    .mobile-nav .sub-link {
        padding-left: 16px;
        border-left: 2px solid rgba(0,212,255,.2);
        border-bottom: none;
        color: var(--muted);
        font-size: .95rem;
    }

        .mobile-nav .sub-link:hover,
        .mobile-nav .sub-link.active {
            border-color: var(--primary);
            color: var(--primary);
        }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all .2s;
    font-family: 'Inter', sans-serif;
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #000;
    font-weight: 700;
    box-shadow: 0 0 25px rgba(0,212,255,.25);
}

    .btn-glow:hover {
        box-shadow: 0 0 40px rgba(0,212,255,.45);
        transform: translateY(-1px);
    }

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .95rem;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    box-shadow: 0 0 24px rgba(0,212,255,.35);
    transition: all .2s;
}

    .btn-primary:hover {
        box-shadow: 0 0 40px rgba(0,212,255,.5);
        transform: translateY(-2px);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .95rem;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    transition: all .2s;
}

    .btn-outline:hover {
        border-color: rgba(255,255,255,.5);
        background: rgba(255,255,255,.05);
    }

.btn-gradient {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(0,212,255,.3);
    transition: all .2s;
}

    .btn-gradient:hover {
        box-shadow: 0 0 50px rgba(0,212,255,.5);
        transform: translateY(-2px);
    }

.btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 12px;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ── HERO COMMON ── */
#hero {
    position: relative;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0,212,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black, transparent);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 32px;
    font-size: .85rem;
    color: var(--muted);
}

    .breadcrumb a {
        color: var(--muted);
        text-decoration: none;
        transition: color .2s;
    }

        .breadcrumb a:hover {
            color: var(--primary);
        }

    .breadcrumb .active {
        color: var(--primary);
    }

    .breadcrumb .sep {
        opacity: .4;
    }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.25);
    color: var(--primary);
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 24px;
}

    .hero-tag svg {
        width: 14px;
        height: 14px;
    }

    .hero-tag.purple {
        background: rgba(139,92,246,.1);
        border-color: rgba(139,92,246,.3);
        color: var(--secondary);
    }

.product-badge {
    display: inline-block;
    padding: 4px 20px;
    border-radius: 100px;
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.3);
    color: var(--primary);
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 24px;
}

    .product-badge.purple {
        background: rgba(139,92,246,.12);
        border-color: rgba(139,92,246,.3);
        color: var(--secondary);
    }

/* ── SECTION HEADERS ── */
.section-header {
    text-align: center;
    margin-bottom: 72px;
}

    .section-header h2 {
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 800;
        letter-spacing: -.03em;
        margin-bottom: 16px;
    }

    .section-header p {
        color: var(--muted);
        font-size: 1.05rem;
        max-width: 580px;
        margin: 0 auto;
        line-height: 1.7;
    }

.eyebrow {
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

    .eyebrow.cyan {
        color: var(--primary);
    }

    .eyebrow.purple {
        color: var(--secondary);
    }

    .eyebrow.red {
        color: var(--red);
    }

/* ── FEATURE CARDS (cyan / purple variants) ── */
.feat-card {
    background: var(--card);
    border-radius: 20px;
    padding: 28px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

    .feat-card.cyan {
        border: 1px solid rgba(0,212,255,.2);
    }

    .feat-card.purple {
        border: 1px solid rgba(139,92,246,.2);
    }

    .feat-card.cyan:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,212,255,.12);
    }

    .feat-card.purple:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(139,92,246,.12);
    }

.feat-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.feat-card.cyan .feat-bar {
    background: linear-gradient(90deg, var(--primary), transparent);
}

.feat-card.purple .feat-bar {
    background: linear-gradient(90deg, var(--secondary), transparent);
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feat-card.cyan .feat-icon {
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.2);
    color: var(--primary);
}

.feat-card.purple .feat-icon {
    background: rgba(139,92,246,.1);
    border: 1px solid rgba(139,92,246,.2);
    color: var(--secondary);
}

.feat-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feat-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

/* ── INFO CARDS (two-col panels) ── */
.info-card {
    background: var(--card);
    border-radius: 24px;
    padding: 40px 40px 44px;
    position: relative;
    overflow: hidden;
}

    .info-card.cyan {
        border: 1px solid rgba(0,212,255,.2);
    }

    .info-card.purple {
        border: 1px solid rgba(139,92,246,.2);
    }

.card-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
}

.info-card.cyan .card-bar {
    background: linear-gradient(90deg, var(--primary), transparent);
}

.info-card.purple .card-bar {
    background: linear-gradient(90deg, var(--secondary), transparent);
}

.card-eyebrow {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.info-card.cyan .card-eyebrow {
    color: var(--primary);
}

.info-card.purple .card-eyebrow {
    color: var(--secondary);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 28px;
    line-height: 1.25;
}

/* ── CHECK LISTS ── */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .check-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: .95rem;
        color: rgba(232,240,254,.85);
        line-height: 1.5;
    }

    .check-list .check-icon {
        flex-shrink: 0;
        margin-top: 2px;
        color: var(--primary);
    }

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

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

.outcome-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(139,92,246,.1);
    border: 1px solid rgba(139,92,246,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--secondary);
}

    .outcome-icon svg {
        width: 18px;
        height: 18px;
    }

.outcome-text {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── MODULE CARDS ── */
.module-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.module-card {
    background: var(--card);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

    .module-card.cyan {
        border: 1px solid rgba(0,212,255,.2);
    }

    .module-card.purple {
        border: 1px solid rgba(139,92,246,.2);
    }

.mod-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-card.cyan .mod-icon {
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.2);
    color: var(--primary);
}

.module-card.purple .mod-icon {
    background: rgba(139,92,246,.1);
    border: 1px solid rgba(139,92,246,.2);
    color: var(--secondary);
}

.mod-icon svg {
    width: 20px;
    height: 20px;
}

.module-card h3 {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 6px;
}

.module-card p {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.6;
}

/* ── ADVANTAGE CARDS ── */
.adv-card {
    background: var(--card);
    border-radius: 20px;
    padding: 28px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

    .adv-card.cyan {
        border: 1px solid rgba(0,212,255,.2);
    }

    .adv-card.purple {
        border: 1px solid rgba(139,92,246,.2);
    }

    .adv-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
    }

    .adv-card.cyan::before {
        background: linear-gradient(90deg, var(--primary), transparent);
    }

    .adv-card.purple::before {
        background: linear-gradient(90deg, var(--secondary), transparent);
    }

    .adv-card:hover {
        transform: translateY(-4px);
    }

    .adv-card.cyan:hover {
        box-shadow: 0 16px 40px rgba(0,212,255,.12);
    }

    .adv-card.purple:hover {
        box-shadow: 0 16px 40px rgba(139,92,246,.12);
    }

.adv-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.adv-card.cyan .adv-icon {
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.2);
    color: var(--primary);
}

.adv-card.purple .adv-icon {
    background: rgba(139,92,246,.1);
    border: 1px solid rgba(139,92,246,.2);
    color: var(--secondary);
}

.adv-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.adv-card p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.7;
}

/* ── PROBLEM CARDS (compliance page) ── */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.problem-card {
    background: var(--card);
    border: 1px solid rgba(239,68,68,.2);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

    .problem-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--red), transparent);
    }

.prob-stat {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.prob-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.prob-desc {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}

/* ── PROBLEM/SOLUTION TABLE (data integrity page) ── */
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--card);
    border: 1px solid rgba(139,92,246,.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(139,92,246,.06);
}

.problem-cell {
    padding: 36px 40px;
    border-right: 1px solid rgba(139,92,246,.15);
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.solution-cell {
    padding: 36px 40px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.cell-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .cell-icon.problem {
        background: rgba(239,68,68,.1);
        border: 1px solid rgba(239,68,68,.2);
        color: var(--red);
    }

    .cell-icon.solution {
        background: rgba(139,92,246,.1);
        border: 1px solid rgba(139,92,246,.2);
        color: var(--secondary);
    }

.cell-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

    .cell-label.problem {
        color: var(--red);
    }

    .cell-label.solution {
        color: var(--secondary);
    }

.cell-body {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text);
}

    .cell-body.muted {
        font-weight: 400;
        color: var(--muted);
        font-size: .95rem;
    }

/* ── SERVICE PANEL (data integrity page) ── */
.service-panel {
    background: linear-gradient(135deg, rgba(139,92,246,.08), rgba(0,212,255,.06));
    border: 1px solid rgba(139,92,246,.2);
    border-radius: 24px;
    padding: 56px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .service-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: .95rem;
        color: rgba(232,240,254,.9);
        line-height: 1.5;
    }

    .service-list .check {
        color: var(--secondary);
        flex-shrink: 0;
        margin-top: 2px;
    }

/* ── COMPETITIVE COMPARISON ── */
.comp-panel {
    background: linear-gradient(135deg, rgba(0,212,255,.06), rgba(139,92,246,.06));
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 56px 60px;
}

.comp-row {
    display: grid;
    grid-template-columns: 220px 1fr 1fr;
    gap: 0;
    background: var(--card);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

    .comp-row:last-child {
        margin-bottom: 0;
    }

.comp-cell {
    padding: 20px 22px;
}

    .comp-cell.cat {
        border-right: 1px solid rgba(255,255,255,.07);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .comp-cell.gap {
        border-right: 1px solid rgba(255,255,255,.07);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .comp-cell.win {
        display: flex;
        align-items: center;
        gap: 10px;
    }

.cat-name {
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: 4px;
}

.cat-ex {
    font-size: .78rem;
    color: var(--muted);
}

.comp-cell p {
    font-size: .88rem;
    line-height: 1.5;
}

.comp-cell.gap p {
    color: var(--muted);
}

.comp-cell.win p {
    color: rgba(232,240,254,.85);
    font-weight: 500;
}

/* ── STATS BAR ── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.06);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
}

.stat-cell {
    padding: 24px 28px;
    background: var(--bg2);
    text-align: center;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: .85rem;
    color: var(--muted);
}

/* ── CTA SECTIONS ── */
#cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg), var(--bg2) 50%, var(--bg));
    border-top: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 350px;
    border-radius: 50%;
    background: rgba(0,212,255,.1);
    filter: blur(100px);
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    border-radius: 100px;
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.25);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

#cta h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -.03em;
    margin-bottom: 16px;
    line-height: 1.15;
}

#cta p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Check item (solution section) */
.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    background: rgba(0,212,255,.07);
    border: 1px solid rgba(0,212,255,.2);
    margin-bottom: 12px;
}

    .check-item p {
        font-size: .92rem;
        color: rgba(232,240,254,.85);
    }

.check-icon {
    color: var(--primary);
    flex-shrink: 0;
}

/* ── SIMPLE FOOTER (solution pages) ── */
footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-copy {
    color: var(--muted);
    font-size: .875rem;
}

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

    .footer-links a {
        color: var(--muted);
        text-decoration: none;
        font-size: .875rem;
        transition: color .2s;
    }

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

/* ── ANIMATIONS ── */
@keyframes pulse {
    0%, 100% {
        opacity: .6;
        transform: scale(1);
    }

    50% {
        opacity: .9;
        transform: scale(1.15);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .problem-row {
        grid-template-columns: 1fr;
    }

    .problem-cell {
        border-right: none;
        border-bottom: 1px solid rgba(139,92,246,.15);
    }

    .service-panel {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }

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

    .comp-cell.cat,
    .comp-cell.gap {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .comp-panel {
        padding: 32px 24px;
    }

    .stats-bar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .desktop-cta, .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.7;
    margin: 16px 0;
    max-width: 340px;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    transition: color .2s;
}

    .footer-email:hover {
        color: var(--primary);
    }

    .footer-email svg {
        width: 16px;
        height: 16px;
    }

.footer-col h4 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

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

.footer-col a {
    color: var(--muted);
    text-decoration: none;
    font-size: .9rem;
    transition: color .2s;
}

    .footer-col a:hover {
        color: var(--primary);
    }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

    .footer-bottom span {
        color: var(--muted);
        font-size: .85rem;
    }

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

    .footer-bottom-links span {
        color: var(--muted);
        font-size: .85rem;
        cursor: default;
    }

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .hero-visual {
        display: none;
    }

    .solution-row, .solution-row.reverse {
        grid-template-columns: 1fr;
    }

        .solution-row.reverse .sol-text {
            order: 1;
        }

        .solution-row.reverse .sol-visual {
            order: 2;
        }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-links, .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

    h1 {
        font-size: 2.4rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

        .hero-ctas .btn {
            width: 100%;
            justify-content: center;
        }
}