/* ── Pricing page — Hardmax Light Theme ── */

.pricing-body {
    background: #ffffff;
    color: #111111;
    min-height: 100vh;
}

/* ── Main ── */
.pricing-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

/* ── Hero ── */
.pricing-hero {
    text-align: center;
    padding: 80px 20px 56px;
}

.pricing-hero-title {
    font-size: clamp(52px, 8vw, 84px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 1.0;
    color: #111;
    margin-bottom: 20px;
}

.pricing-hero-sub {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* ── Billing toggle ── */
.billing-toggle {
    display: inline-flex;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 99px;
    padding: 4px;
    gap: 2px;
    margin-bottom: 16px;
}

.billing-btn {
    border: none;
    background: transparent;
    color: #666;
    font-size: 15px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 99px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.billing-btn.active {
    background: #ffffff;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.billing-save-note {
    font-size: 14px;
    color: #888;
}

.billing-save-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* ── Plans grid ── */
.plans-section {
    margin-bottom: 80px;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.plans-grid.single-plan {
    grid-template-columns: 1fr;
    max-width: 480px;
}

/* ── Plan card ── */
.plan-card {
    background: #ffffff;
    border: 1px solid #eef1ff;
    border-radius: 32px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 30px rgba(49, 67, 225, 0.04);
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(49, 67, 225, 0.08);
    border-color: #dbe1ff;
}

.plan-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.02em;
}

.plan-badge {
    background: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px;
    letter-spacing: 0.01em;
}

.plan-desc {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 12px;
}

.plan-price {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 1;
    color: #111;
}

.plan-price-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    line-height: 1.4;
}

.plan-billed {
    font-size: 12px;
    color: #999;
}

/* ── CTA buttons ── */
.plan-cta {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 24px;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.plan-cta--solid {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(49, 67, 225, 0.2);
}

.plan-cta--solid:hover {
    background: #2635c9;
    transform: scale(1.02);
}

.plan-cta--outline {
    background: #f5f7ff;
    color: var(--primary-color);
    border: 1px solid #dbe1ff;
}

.plan-cta--outline:hover {
    background: #eef1ff;
    transform: scale(1.02);
}

/* ── Feature list ── */
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #444;
    font-weight: 500;
    line-height: 1.3;
}

.feat-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* ── FAQ ── */
.pricing-faq {
    max-width: 720px;
    margin: 0 auto;
    padding-top: 20px;
}

.faq-heading {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111;
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #eef1ff;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(49, 67, 225, 0.04);
}

.faq-item {
    border-bottom: 1px solid #eef1ff;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
    list-style: none;
    transition: all 0.2s;
    user-select: none;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q:hover {
    background: #f9faff;
}

.faq-item[open] .faq-q {
    background: #f5f7ff;
}

.faq-arrow {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: #999;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
}

.faq-arrow svg { width: 16px; height: 16px; }

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-a {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* ── Responsive ── */
@media (max-width: 760px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-hero-title {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .plan-price {
        font-size: 52px;
    }

    .faq-heading {
        font-size: 28px;
    }
}

@media (max-width: 500px) {
    .pricing-hero {
        padding: 52px 12px 40px;
    }

    .pricing-hero-title {
        font-size: 42px;
    }

    .plan-card {
        padding: 32px 24px;
    }
}
