.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 56px;
}

.toggle-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color .2s;
}

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

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--primary);
    border-radius: 99px;
    position: relative;
    cursor: pointer;
    transition: background .3s;
    border: none;
}

.toggle-thumb {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform .3s;
}

.toggle-switch.annual .toggle-thumb {
    transform: translateX(24px);
}

.save-badge {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 99px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    position: relative;
    transition: all .4s;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
}

.pricing-card.featured {
    background: var(--navy);
    border-color: var(--primary);
    box-shadow: 0 0 48px rgba(29, 78, 216, .2);
}

.pricing-card.featured:hover {
    box-shadow: 0 0 72px rgba(29, 78, 216, .4);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 99px;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.plan-eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary);
    margin-bottom: 12px;
}

.pricing-card.featured .plan-eyebrow {
    color: var(--gold);
}

.plan-price {
    font-family: 'Sora', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin: 4px 0 8px;
}

.pricing-card.featured .plan-price {
    color: var(--white);
}

.plan-price sup {
    font-size: 24px;
    vertical-align: top;
    margin-top: 12px;
}

.plan-price sub {
    font-size: 17px;
    font-weight: 400;
    opacity: .55;
}

.plan-custom {
    font-family: 'Sora', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    margin: 12px 0 8px;
}

.plan-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

.pricing-card.featured .plan-desc {
    color: rgba(255, 255, 255, .5);
}

.plan-divider {
    height: 1px;
    background: var(--border);
    margin: 0 0 28px;
}

.pricing-card.featured .plan-divider {
    background: rgba(255, 255, 255, .1);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.plan-features li.na {
    opacity: .4;
}

.pricing-card.featured .plan-features li {
    color: rgba(255, 255, 255, .7);
}

.plan-features li .ck {
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-features li .xk {
    color: var(--text-muted);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all .3s;
    font-family: 'Inter', sans-serif;
}

.plan-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.plan-btn-outline:hover {
    background: rgba(29, 78, 216, .06);
}

.plan-btn-filled {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 0 24px rgba(29, 78, 216, .35);
}

.plan-btn-filled:hover {
    box-shadow: 0 0 40px rgba(29, 78, 216, .55);
    transform: translateY(-1px);
}

.plan-btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
}

.plan-btn-gold:hover {
    box-shadow: 0 0 32px rgba(212, 175, 55, .4);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 80px;
}

.compare-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 2px solid var(--border);
}

.compare-table th:not(:first-child) {
    text-align: center;
}

.compare-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.compare-table td:not(:first-child) {
    text-align: center;
    font-weight: 600;
}

.compare-table td:first-child {
    color: var(--text);
}

.compare-table tr:hover td {
    background: rgba(29, 78, 216, .02);
}

.compare-table .section-row td {
    background: var(--light-bg);
    font-weight: 700;
    color: var(--text);
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ck-green {
    color: var(--success);
}

.xk-red {
    color: #EF4444;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(29, 78, 216, .08);
}

.faq-q {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.faq-a {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

@media(max-width:1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto 80px;
    }

    .compare-table {
        display: none;
    }

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