﻿:root {
    --container: 1200px;
    --bg: #f5f7fb;
    --alt: #f8fafc;
    --card: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: rgba(15,23,42,.10);
    --chip: rgba(15,23,42,.05);
    --shadow: 0 14px 40px rgba(15,23,42,.08);
    --shadow-soft: 0 10px 24px rgba(2,8,23,.10);
    --primary: #2563eb;
    --primary-600: #1d4ed8;
    --primary-50: #eff6ff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --warning-light: rgba(245, 158, 11, 0.10);
    --radius: 14px;
    --radius-lg: 20px;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #070b13;
        --alt: rgba(255,255,255,.03);
        --card: rgba(255,255,255,.06);
        --text: rgba(255,255,255,.92);
        --muted: rgba(148,163,184,.95);
        --border: rgba(255,255,255,.10);
        --chip: rgba(255,255,255,.06);
        --shadow: 0 18px 44px rgba(0,0,0,.35);
        --shadow-soft: 0 12px 26px rgba(0,0,0,.25);
        --primary-50: rgba(37, 99, 235, 0.16);
        --warning-light: rgba(245, 158, 11, 0.14);
    }
}

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

html, body {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(var(--container),92%);
    margin-inline: auto;
}

.section {
    padding: 60px 0;
}

    .section.alt {
        background: var(--alt);
    }

.section-head {
    text-align: center;
    margin: 0 0 25px;
}

    .section-head h2 {
        font-size: clamp(26px, 3.2vw, 38px);
        letter-spacing: -0.02em;
        margin: 0 0 8px;
    }

.section-sub {
    color: var(--muted);
    max-width: 70ch;
    margin: 0 auto;
}

/* HERO */
.hero {
    background: radial-gradient(900px 420px at 20% 10%, rgba(96,165,250,.25), transparent 60%), radial-gradient(900px 420px at 80% 25%, rgba(37,99,235,.30), transparent 60%), linear-gradient(135deg, #0b1220 0%, #0f172a 55%, #101a33 100%);
    color: #fff;
    padding: 86px 0 46px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .hero:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.55)), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 600'%3E%3Cg fill='none' stroke='white' stroke-opacity='.09'%3E%3Cpath d='M0 120h900M0 240h900M0 360h900M0 480h900'/%3E%3Cpath d='M150 0v600M300 0v600M450 0v600M600 0v600M750 0v600'/%3E%3C/g%3E%3C/svg%3E");
        mix-blend-mode: overlay;
    }

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: rgba(226,232,240,.95);
    margin-bottom: 12px;
}

    .kicker .dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--primary), #60a5fa);
        box-shadow: 0 0 0 6px rgba(37,99,235,.18);
    }

.hero h1 {
    font-size: clamp(34px, 4.6vw, 56px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin: 0 0 12px;
}

.grad {
    background: linear-gradient(90deg, #60a5fa, #93c5fd, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    color: rgba(203,213,225,.95);
    max-width: 80ch;
    margin: 0 auto;
    font-size: 1.05rem;
}

.hero-ctas {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-row {
    margin: 18px auto 0;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: rgba(226,232,240,.95);
    font-weight: 800;
    font-size: .85rem;
    backdrop-filter: blur(8px);
}

.hero-cards {
    margin: 22px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    max-width: 900px;
}

.mini-card {
    text-align: left;
    border-radius: 18px;
    padding: 14px 14px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.mini-ic {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: rgba(255,255,255,.92);
    flex: 0 0 auto;
}

.mini-card h3 {
    margin: 0 0 2px;
    font-size: 1rem;
    font-weight: 950;
}

.mini-card p {
    margin: 0;
    color: rgba(226,232,240,.88);
    font-size: .92rem;
    line-height: 1.35;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    padding: 12px 16px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
    user-select: none;
    white-space: nowrap;
}

    .btn:hover {
        transform: translateY(-2px);
    }

    .btn:active {
        transform: translateY(0) scale(.99);
    }

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-600));
    color: #fff;
    box-shadow: var(--shadow-soft);
}

    .btn-primary:hover {
        box-shadow: var(--shadow);
    }

.btn-ghost {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    color: #fff;
}

    .btn-ghost:hover {
        background: rgba(255,255,255,.12);
    }

.btn[disabled] {
    opacity: .6;
    cursor: not-allowed;
    transform: none !important;
}

/* EARLY DEV BANNER */
.ed-banner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    align-items: center;
}

.ed-left {
    flex: 1 1 300px;
    min-width: 240px;
}

.ed-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary-50);
    color: var(--primary-600);
    border: 1px solid color-mix(in oklab, var(--primary), transparent 70%);
    font-weight: 950;
    font-size: .85rem;
    margin-bottom: 8px;
}

@media (prefers-color-scheme: dark) {
    .ed-pill {
        background: rgba(37,99,235,.16);
        border-color: rgba(37,99,235,.28);
        color: #bfdbfe;
    }
}

.ed-title {
    margin: 0 0 6px;
    font-weight: 950;
    font-size: 1.25rem;
}

.ed-text {
    color: var(--muted);
    margin: 0 0 8px;
    font-weight: 700;
}

.ed-note {
    color: var(--muted);
    font-size: .85rem;
    font-weight: 700;
}

.ed-right {
    flex: 0 1 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.ed-timer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    background: var(--chip);
    border: 1px solid var(--border);
}

.ed-seg {
    min-width: 52px;
    text-align: center;
}

.ed-num {
    font-variant-numeric: tabular-nums;
    font-weight: 950;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.ed-lbl {
    font-size: .65rem;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 900;
    margin-top: 3px;
}

.ed-sep {
    color: color-mix(in oklab, var(--muted), transparent 40%);
    font-weight: 950;
    font-size: 1rem;
    margin-top: -6px;
}

.ed-progress {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.ed-progress-bar {
    width: 220px;
    height: 6px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--chip), #fff 35%);
}

.ed-progress-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), #60a5fa);
    border-radius: 999px;
    transition: width .5s ease;
}

.ed-progress-text {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 900;
}

.ed-banner.expired {
    opacity: .85;
}

    .ed-banner.expired .ed-progress-fill {
        width: 0% !important;
    }

.proof-strip {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    color: var(--muted);
    font-weight: 900;
}

.proof-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

    .proof-item i {
        color: var(--success);
    }

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.plan {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 20px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

    .plan:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
        border-color: color-mix(in oklab, var(--primary), transparent 55%);
    }

    .plan:focus-visible {
        box-shadow: 0 0 0 3px rgba(37,99,235,.22), var(--shadow-soft);
        border-color: rgba(37,99,235,.65);
    }

    .plan.selected {
        border-color: color-mix(in oklab, var(--primary), #fff 18%);
        box-shadow: 0 0 0 2px rgba(37,99,235,.14), var(--shadow);
        transform: translateY(-2px);
    }

    .plan.featured {
        border-width: 2px;
        border-color: var(--warning);
        background: linear-gradient(135deg, var(--card) 0%, var(--warning-light) 100%);
    }

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--warning), #d97706);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 950;
    font-size: .75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.plan-top {
    display: flex;
    justify-content: flex-end;
    min-height: 34px;
    margin-bottom: 4px;
}

.plan-selected-mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: color-mix(in oklab, var(--success), transparent 82%);
    border: 1px solid color-mix(in oklab, var(--success), transparent 55%);
    color: var(--success);
    box-shadow: 0 12px 22px rgba(0,0,0,.08);
    opacity: 0;
    transform: scale(.92);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
}

.plan.selected .plan-selected-mark {
    opacity: 1;
    transform: scale(1);
}

.plan-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.plan-name h3 {
    margin: 0 0 2px;
    font-size: 1.45rem;
    font-weight: 950;
    letter-spacing: -0.01em;
}

.plan-small {
    margin: 0;
    color: var(--muted);
    font-weight: 750;
    font-size: .9rem;
}

.plan-price {
    text-align: right;
    min-width: 140px;
}

.price-main .price {
    font-weight: 950;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
}

.price-period {
    display: block;
    color: var(--muted);
    font-weight: 850;
    font-size: .82rem;
}

.price-old {
    font-size: .82rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-top: 2px;
}

.plan-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 950;
    font-size: .82rem;
    border: 1px solid var(--border);
    background: var(--primary-50);
    color: var(--primary-600);
    width: fit-content;
    margin-bottom: 12px;
}

.featured-tag {
    background: var(--warning-light);
    color: var(--warning);
    border-color: rgba(245, 158, 11, 0.3);
}

.plan-list {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    flex: 1;
}

    .plan-list li {
        position: relative;
        padding-left: 26px;
        margin-bottom: 10px;
        font-weight: 800;
        font-size: .9rem;
        line-height: 1.25;
    }

        .plan-list li i {
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--success);
        }

.btn-plan-select {
    width: 100%;
    padding: 14px 12px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--primary-600));
    font-weight: 950;
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .16s ease, box-shadow .16s ease;
}

    .btn-plan-select:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-soft);
    }

.btn-featured {
    background: linear-gradient(90deg, var(--warning), #d97706);
}

    .btn-featured:hover {
        background: linear-gradient(90deg, #d97706, #b45309);
    }

.btn-plan-select.is-selected {
    background: color-mix(in oklab, var(--success), #0b1220 12%);
    box-shadow: 0 10px 20px rgba(16,185,129,.20);
    cursor: default;
}

    .btn-plan-select.is-selected:hover {
        transform: none;
    }

/* COMPARISON */
.comparison-section {
    margin-top: 34px;
}

.comparison-title {
    text-align: center;
    margin: 0 0 14px;
    font-size: 1.2rem;
    font-weight: 950;
}

.compare2 {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.compare2-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: linear-gradient(135deg, #0b1220, #0f172a);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

    .compare2-head .c2-col {
        color: rgba(255,255,255,.90);
        font-weight: 950;
        letter-spacing: .10em;
        text-transform: uppercase;
        font-size: .82rem;
        min-height: 54px;
        display: flex;
        align-items: center;
        padding: 14px 16px;
    }

.c2-expert-head {
    color: rgba(246, 196, 83, 1) !important;
}

.compare2-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
}

    .compare2-row:last-child {
        border-bottom: none;
    }

.c2-col {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
}

.c2-feature {
    font-weight: 950;
    border-right: 1px solid var(--border);
}

.c2-pro {
    justify-content: center;
    border-right: 1px solid var(--border);
}

.c2-expert {
    justify-content: center;
    background: linear-gradient(135deg, rgba(245,158,11,.07), rgba(245,158,11,.02));
}

.compare2-row:nth-child(even) .c2-col {
    background: color-mix(in oklab, var(--chip), transparent 45%);
}

.compare2-row:nth-child(even) .c2-expert {
    background: linear-gradient(135deg, rgba(245,158,11,.09), rgba(245,158,11,.03));
}

.c2-ic {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--primary-50);
    border: 1px solid color-mix(in oklab, var(--primary), transparent 70%);
    color: var(--primary);
}

@media (prefers-color-scheme: dark) {
    .c2-ic {
        background: rgba(37,99,235,.16);
        border-color: rgba(37,99,235,.28);
        color: #bfdbfe;
    }
}

.c2-name {
    font-weight: 950;
}

.c2-pill {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 950;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--chip), transparent 20%);
}

.c2-pill-strong {
    background: color-mix(in oklab, var(--warning), transparent 86%);
    border-color: color-mix(in oklab, var(--warning), transparent 60%);
}

.c2-only-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    font-size: .95rem;
}

.c2-check {
    background: color-mix(in oklab, var(--success), transparent 88%);
    border-color: color-mix(in oklab, var(--success), transparent 60%);
    color: color-mix(in oklab, var(--success), #0b1220 12%);
}

.c2-x {
    background: color-mix(in oklab, var(--danger), transparent 90%);
    border-color: color-mix(in oklab, var(--danger), transparent 65%);
    color: color-mix(in oklab, var(--danger), #0b1220 12%);
}

/* CHECKOUT BAR */
.checkout-bar {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 16px 16px;
    border-radius: 18px;
    border: 1px solid color-mix(in oklab, var(--primary), transparent 72%);
    background: radial-gradient(700px 120px at 20% 30%, color-mix(in oklab, var(--primary), transparent 82%), transparent 60%), radial-gradient(600px 120px at 80% 30%, rgba(96,165,250,.18), transparent 60%), var(--card);
    box-shadow: var(--shadow-soft);
    position: sticky;
    bottom: 12px;
    z-index: 5;
}

@media (max-width: 768px) {
    .checkout-bar {
        position: static;
    }
}

.selected-info {
    flex: 1;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 950;
}

    .selected-info i {
        font-size: 1.2rem;
        opacity: .95;
    }

.sel-text .sel-main {
    font-size: 1rem;
    font-weight: 950;
}

.sel-text .sel-sub {
    margin-top: 2px;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 800;
}

.checkout-actions {
    text-align: center;
}

#checkout-btn {
    min-width: 280px;
}

.secure-note {
    margin-top: 6px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.fineprint {
    margin-top: 14px;
    text-align: center;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 700;
}

    .fineprint i {
        margin-right: 6px;
        opacity: .85;
    }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px;
    max-width: 980px;
    margin: 0 auto;
}

.faq {
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 16px;
    background: transparent;
    border: 0;
    cursor: pointer;
    font: inherit;
    color: var(--text);
    font-weight: 950;
}

    .faq-q i {
        color: var(--muted);
        transition: transform .16s ease;
    }

.faq[aria-open="true"] .faq-q i {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 16px 16px;
    color: var(--muted);
    font-weight: 750;
    line-height: 1.5;
}

/* SUPPORT CTA */
.support {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    margin-bottom: 18px;
}

    .support h2 {
        margin: 0 0 6px;
        font-size: 1.6rem;
        letter-spacing: -0.02em;
    }

.support-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
}

.support-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

    .support-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow);
        border-color: color-mix(in oklab, var(--primary), transparent 55%);
    }

.support-ic {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
    background: var(--primary-50);
    border: 1px solid color-mix(in oklab, var(--primary), transparent 70%);
    color: var(--primary);
    font-size: 1.2rem;
}

@media (prefers-color-scheme: dark) {
    .support-ic {
        background: rgba(37,99,235,.16);
        border-color: rgba(37,99,235,.28);
        color: #bfdbfe;
    }
}

.support-card h3 {
    margin: 0 0 8px;
    font-weight: 950;
}

.support-card p {
    margin: 0 0 10px;
    color: var(--muted);
    font-weight: 800;
}

.support-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 950;
}

    .support-card a:hover {
        text-decoration: underline;
    }

.support-muted {
    font-size: .85rem;
    opacity: .85;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-cards {
        grid-template-columns: 1fr;
        max-width: 640px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }

    .support-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin-inline: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 78px 0 42px;
    }

    .ed-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .ed-right {
        align-items: stretch;
    }

    .ed-progress {
        align-items: stretch;
    }

    .ed-progress-bar {
        width: 100%;
    }

    .ed-timer {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ed-sep {
        display: none;
    }

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

    .compare2-head {
        display: none;
    }

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

    .c2-feature {
        border-right: none;
        background: var(--chip);
        border-bottom: 1px solid var(--border);
    }

    .c2-pro, .c2-expert {
        border-right: none;
        justify-content: flex-start;
        text-align: left;
    }

        .c2-pro::before, .c2-expert::before {
            content: attr(data-label);
            display: block;
            width: 100%;
            font-size: .72rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: var(--muted);
            font-weight: 950;
            margin-bottom: 8px;
        }

    .c2-pro {
        border-bottom: 1px dashed var(--border);
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    #checkout-btn {
        width: 100%;
        min-width: unset;
    }

    .checkout-bar {
        text-align: center;
        flex-direction: column;
    }

    .selected-info {
        justify-content: center;
    }

    .plan-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-price {
        text-align: left;
    }
}
