/* ═══════════════════════════════════════════════════════════════
   Pricing Page — Styles
   ═══════════════════════════════════════════════════════════════ */

.pricing-section {
    padding: 20px 0 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: all .3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.pricing-card.featured {
    border-color: var(--pri);
    background: linear-gradient(180deg, rgba(124, 58, 237, .06) 0%, var(--surface) 40%);
    box-shadow: 0 0 50px rgba(124, 58, 237, .12);
}

.pricing-card.featured:hover {
    box-shadow: 0 12px 50px rgba(124, 58, 237, .2);
}

.pc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 16px;
    background: var(--pri);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
}

.pc-header {
    margin-bottom: 20px;
}

.pc-plan-name {
    font-size: 1.3rem;
    font-weight: 800;
}

.pc-plan-for {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.pc-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.pc-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dim);
}

.pc-amount {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--pri-light), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pc-period {
    font-size: .85rem;
    color: var(--text-muted);
    margin-left: 2px;
}

.pc-range {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.pc-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

.pc-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .88rem;
    color: var(--text-dim);
}

.pc-features li i {
    font-size: .9rem;
    color: var(--green);
    flex-shrink: 0;
}

.pc-features li.highlight {
    color: var(--text);
    font-weight: 600;
}

.pc-features li.dimmed {
    color: var(--text-muted);
    opacity: .5;
}

.pc-features li.dimmed i {
    color: var(--text-muted);
}

.btn-block {
    width: 100%;
    justify-content: center;
    text-align: center;
    display: flex;
}

/* Early adopter banner */
.early-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, .06), rgba(124, 58, 237, .06));
    border: 1px solid rgba(16, 185, 129, .15);
    border-radius: var(--radius-lg);
}

.eb-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--green-dim);
    color: var(--green);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eb-text {
    flex: 1;
}

.eb-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.eb-text p {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .3s;
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, .15);
    transform: translateY(-2px);
}

.faq-item h4 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-item p {
    font-size: .85rem;
    color: var(--text-dim);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .early-banner {
        flex-direction: column;
        text-align: center;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Light theme overrides */
[data-theme="daylight"] .pricing-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

[data-theme="daylight"] .pricing-card.featured {
    box-shadow: 0 0 50px rgba(109, 40, 217, .08);
}

[data-theme="warm"] .pricing-card:hover {
    box-shadow: 0 12px 40px rgba(80, 50, 10, .08);
}

[data-theme="warm"] .pricing-card.featured {
    box-shadow: 0 0 50px rgba(180, 83, 9, .08);
}

[data-theme="frost"] .pricing-card:hover {
    box-shadow: 0 12px 40px rgba(30, 58, 95, .08);
}

[data-theme="frost"] .pricing-card.featured {
    box-shadow: 0 0 50px rgba(79, 70, 229, .08);
}