/* ══════════════════════════════════════════
   PRICING PAGE — scoped styles
══════════════════════════════════════════ */

/* ---------- Hero (matches about-hero / features-hero pattern) ---------- */
.pricing-hero {
    padding: 180px 0 96px;
    background: #bae8f8;
    text-align: center;
}
.pricing-hero-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000;
    margin-bottom: 24px;
}
.pricing-hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    max-width: 780px;
    margin: 0 auto 24px;
    color: var(--text);
}
.pricing-hero-highlight {
    color: var(--text);
    background: #cff3ff;
    padding: 0 10px;
    border-radius: 8px;
    display: inline-block;
}
.pricing-hero-sub {
    font-size: clamp(16px, 1.8vw, 19px);
    color: #000;
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
    font-weight: 500;
}

/* ---------- Billing toggle (placeholder, ready for the pricing table build) ---------- */
.pricing-hero-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 5px;
}
.pricing-hero-toggle button {
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    color: var(--text-muted);
    transition: background 0.2s ease, color 0.2s ease;
}
.pricing-hero-toggle button.is-active {
    background: #111;
    color: #fff;
}
.pricing-hero-toggle .save-tag {
    font-size: 11px;
    font-weight: 700;
    color: #17a06a;
    background: #e4f8ee;
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: 6px;
}

/* ---------- Placeholder section for the pricing table (next step) ---------- */
.pricing-table-section {
    padding: var(--section-pad) 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .pricing-hero {
        padding: 140px 0 72px;
    }
}