.pricing-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 20px 20px 56px;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 28px;
}

.pricing-eyebrow {
    color: #4169e1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.pricing-hero p {
    color: var(--text-muted);
    max-width: 640px;
    margin: 10px auto 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
}

.pricing-card h2 {
    margin: 0 0 12px;
}

.pricing-price {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.pricing-price span,
.pricing-card h2 span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-subtext {
    color: var(--text-muted);
    min-height: 10px 0 18px;
}

.pricing-card-featured {
    border: 2px solid #4169e1;
    box-shadow: 0 8px 26px rgba(65, 105, 225, 0.14);
}

.featured-label {
    margin: 0 0 10px;
    color: #4169e1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trust-bullets {
    margin: 0 0 18px;
    padding-left: 18px;
    color: var(--text-muted);
    display: grid;
    gap: 8px;
}

.pricing-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    width: 100%;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
}

.pricing-action-primary {
    background: #4169e1;
    border-color: #4169e1;
    color: #fff;
}

.pricing-action-disabled {
    pointer-events: none;
    opacity: 0.7;
}

.pricing-card-current {
    position: relative;
}

.faq-block {
    margin-top: 22px;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 20px;
}

.faq-block h2 {
    margin-top: 0;
}

.faq-block details + details {
    margin-top: 10px;
}

.faq-block summary {
    cursor: pointer;
    font-weight: 600;
}

.faq-block p {
    margin: 8px 0 0;
    color: var(--text-muted);
}

@media (max-width: 860px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}