:root {
    --green-dark: #e90000;
    --green-pale: #faeaea;
    --navy: #0d1b2a;
    --navy2: #1a2f45;
    --text: #0d1b2a;
    --text2: #3d4f61;
    --muted: #7b8fa3;
    --white: #ffffff;
    --bg: #f7f9fc;
    --border: #e3eaf2;
    --shadow-sm: 0 2px 8px rgba(13,27,42,0.07);
    --shadow-md: 0 6px 24px rgba(13,27,42,0.10);
    --shadow-lg: 0 16px 48px rgba(13,27,42,0.13);
    --radius: 16px;
}

/* ─── HERO BAND ──────────────────────────────────────── */
.hero-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    padding: 80px 20px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero-band::before {
        content: '';
        position: absolute;
        top: -80px;
        left: -80px;
        width: 360px;
        height: 360px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(45,190,108,0.18) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero-band::after {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -60px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(45,190,108,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-badge {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: fadeUp .5s ease both;
}

.hero-band h1 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.18;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    animation: fadeUp .55s .08s ease both;
}

    .hero-band h1 em {
        font-style: normal;
    }

.hero-band p {
    color: rgba(255,255,255,0.62);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 36px;
    animation: fadeUp .6s .16s ease both;
}

/* billing toggle */
.toggle-row {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 100px;
    padding: 8px 20px;
    animation: fadeUp .65s .24s ease both;
}

.toggle-lbl {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.50);
    cursor: pointer;
}

    .toggle-lbl.on {
        color: var(--white);
        font-weight: 600;
    }

.pill-toggle {
    width: 46px;
    height: 25px;
    background: rgba(255,255,255,0.2);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background .3s;
}

    .pill-toggle.active {
        background: var(--bs-red);
    }

    .pill-toggle::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 19px;
        height: 19px;
        background: var(--white);
        border-radius: 50%;
        transition: left .3s;
    }

    .pill-toggle.active::after {
        left: 24px;
    }

.save-chip {
    background: var(--bs-red);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 3px 10px;
    opacity: 0;
    transition: opacity .3s;
}

    .save-chip.visible {
        opacity: 1;
    }

/* ─── PLANS SECTION ──────────────────────────────────── */
.plans-wrap {
    background: var(--bg);
    padding: 70px 40px 90px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.plan-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 36px;
    position: relative;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    box-shadow: var(--shadow-sm);
}

    .plan-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
    }

    .plan-card.popular {
        border-color: var(--bs-red);
        box-shadow: 0 0 0 3px rgba(190,45,45,0.12), var(--shadow-md);
    }

        .plan-card.popular:hover {
            box-shadow: 0 0 0 3px rgba(45,190,108,0.22), var(--shadow-lg);
        }

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bs-red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(190,45,45,0.35);
}

.plan-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

    .plan-icon-wrap.navy-bg {
        background: rgba(13,27,42,0.07);
    }

    .plan-icon-wrap .material-symbols-rounded {
        font-size: 1.5rem;
    }

.green-bg .material-symbols-rounded {
    color: var(--bs-red);
}

.navy-bg .material-symbols-rounded {
    color: var(--navy);
}

.plan-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.plan-card.popular .plan-tag {
    color: var(--bs-red);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 0.83rem;
    color: var(--text2);
    font-weight: 400;
    line-height: 1.65;
    margin-bottom: 26px;
    min-height: 52px;
}

.price-row {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 4px;
}

.price-sym {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    padding-bottom: 6px;
}

.price-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -2px;
}

.price-per {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
    padding-bottom: 8px;
}

.price-note {
    font-size: 0.76rem;
    color: var(--muted);
    margin-bottom: 28px;
    margin-top: 2px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.feat-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.feat-list {
    list-style: none;
    margin-bottom: 32px;
}

    .feat-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.845rem;
        color: var(--text2);
        padding: 5px 0;
        line-height: 1.5;
    }

        .feat-list li .ic-check {
            font-family: 'Material Symbols Rounded';
            font-size: 1rem;
            color: var(--bs-red);
            flex-shrink: 0;
            margin-top: 1px;
        }

        .feat-list li .ic-minus {
            font-family: 'Material Symbols Rounded';
            font-size: 1rem;
            color: #c8d4e0;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .feat-list li.faded {
            color: #b0bec8;
        }

.btn-green {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--bs-red);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(45,190,108,0.30);
}

    .btn-green:hover {
        background: var(--green-dark);
        transform: translateY(-1px);
        box-shadow: 0 7px 20px rgba(45,190,108,0.40);
    }

.btn-outline-navy {
    display: block;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 13px 20px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid var(--navy);
    cursor: pointer;
    transition: all .2s;
}

    .btn-outline-navy:hover {
        background: var(--navy);
        color: var(--white);
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(13,27,42,0.18);
    }

/* ─── STATS STRIP ────────────────────────────────────── */
.stats-strip {
    background: var(--navy);
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 32px;
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
}

/* ─── FEATURE COMPARISON ────────────────────────────── */
.compare-section {
    background: var(--white);
    padding: 70px 40px 90px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bs-red);
    margin-bottom: 10px;
}

.section-heading {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 44px;
}

.compare-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.855rem;
}

    .compare-table thead th {
        padding: 14px 20px;
        font-weight: 700;
        font-family: 'Poppins', sans-serif;
        text-align: left;
    }

        .compare-table thead th:not(:first-child) {
            text-align: center;
        }

        .compare-table thead th.col-basic {
            background: var(--bg);
            color: var(--text);
            border-radius: 10px 10px 0 0;
            border-top: 2px solid var(--border);
        }

        .compare-table thead th.col-ent {
            background: var(--green-pale);
            color: var(--green-dark);
            border-radius: 10px 10px 0 0;
            border-top: 2px solid var(--bs-red);
        }

    .compare-table tbody td {
        padding: 13px 20px;
        border-bottom: 1px solid #f0f4f8;
        color: var(--text);
    }

        .compare-table tbody td:not(:first-child) {
            text-align: center;
        }

        .compare-table tbody td.col-basic {
            background: rgba(247,249,252,0.5);
        }

        .compare-table tbody td.col-ent {
            background: rgba(250,234,234,0.4);
        }

    .compare-table tr:hover td {
        background: #f7f9fc !important;
    }

        .compare-table tr:hover td.col-ent {
            background: rgba(234,250,241,0.7) !important;
        }

.cat-row td {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 26px !important;
    border-bottom: none !important;
    background: transparent !important;
}

.ic-yes {
    font-family: 'Material Symbols Rounded';
    color: var(--bs-red);
    font-size: 1.1rem;
}

.ic-no {
    font-family: 'Material Symbols Rounded';
    color: #d0dce8;
    font-size: 1.1rem;
}

/* ─── ADD-ONS ────────────────────────────────────────── */
.addons-section {
    background: var(--bg);
    padding: 70px 40px 90px;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1260px;
    margin: 0 auto;
}

.addon-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px 20px;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    box-shadow: var(--shadow-sm);
}

    .addon-card:hover {
        border-color: var(--bs-red);
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

.addon-icon {
    font-family: 'Material Symbols Rounded';
    font-size: 1.6rem;
    color: var(--bs-red);
    margin-bottom: 12px;
}

.addon-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.addon-desc {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.addon-price {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bs-red);
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section {
    background: var(--white);
    padding: 70px 40px 90px;
}

.faq-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 20px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    user-select: none;
}

    .faq-q .arr {
        font-family: 'Material Symbols Rounded';
        font-size: 1.25rem;
        color: var(--muted);
        transition: transform .3s, color .2s;
        flex-shrink: 0;
    }

.faq-item.open .arr {
    transform: rotate(180deg);
    color: var(--bs-red);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: 0.855rem;
    color: var(--text2);
    line-height: 1.75;
}

.faq-item.open .faq-a {
    max-height: 180px;
    padding-bottom: 18px;
}

/* ─── CTA BAND ───────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-band h2 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--white);
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .cta-band p {
        color: rgba(255,255,255,0.60);
        font-size: 0.92rem;
        margin-bottom: 36px;
    }

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

    .cta-btns .btn-green {
        width: auto;
        padding: 14px 32px;
    }

    .cta-btns .btn-ghost {
        padding: 13px 32px;
        border-radius: 10px;
        border: 1.5px solid rgba(255,255,255,0.28);
        color: var(--white);
        font-size: 0.9rem;
        font-weight: 600;
        text-decoration: none;
        transition: all .2s;
        font-family: 'Poppins', sans-serif;
    }

        .cta-btns .btn-ghost:hover {
            border-color: rgba(255,255,255,0.55);
            background: rgba(255,255,255,0.07);
        }


/* ─── ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp .55s ease both;
}

.d1 {
    animation-delay: .05s
}

.d2 {
    animation-delay: .15s
}

.d3 {
    animation-delay: .25s
}

.d4 {
    animation-delay: .35s
}

.d5 {
    animation-delay: .45s
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 860px) {
    nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .addons-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-strip {
        flex-direction: column;
        gap: 28px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0 0 28px;
    }

        .stat-item:last-child {
            border-bottom: none;
        }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
    }

    .cta-band, .plans-wrap, .compare-section, .addons-section, .faq-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}
