
    /* ── PRICING HERO ──────────────────────────────────────── */
.pricing-hero { padding: 80px 32px 64px; background: var(--white); text-align: center; position: relative; overflow: hidden; }
.pricing-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px); background-size: 28px 28px; opacity: 0.45; pointer-events: none; }
.pricing-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to bottom, transparent, var(--white)); pointer-events: none; }
.pricing-hero-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.pricing-hero h1 { font-size: 3.75rem; font-weight: 700; line-height: 1.08; color: var(--dark); margin: 8px 0 20px; letter-spacing: -0.035em; }
.pricing-hero p { font-size: 1.125rem; color: var(--text-muted); line-height: 1.75; margin: 0 auto; }

/* ── BILLING TOGGLE ────────────────────────────────────── */
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 28px 0 0; }
.toggle-label { font-size: 0.9375rem; font-weight: 500; color: var(--text-muted); transition: color 0.15s; }
.toggle-label.active { color: var(--dark); font-weight: 600; }
.toggle-track { width: 48px; height: 26px; border-radius: 999px; background: var(--primary); position: relative; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.toggle-thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.15); }
.toggle-track.annual .toggle-thumb { transform: translateX(22px); }
.save-badge { font-size: 0.75rem; font-weight: 700; background: #dcfce7; color: #166534; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.02em; }

/* ── PRICING CARDS ─────────────────────────────────────── */
.pricing-section { padding: 64px 32px 96px; }
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 36px 32px; transition: box-shadow 0.2s, transform 0.2s; position: relative; }
.plan-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.plan-card.featured { background: var(--dark); border-color: transparent; transform: scale(1.02); box-shadow: 0 20px 48px rgba(0,0,0,0.18); }
.plan-card.featured:hover { transform: scale(1.02) translateY(-2px); }
.plan-popular { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 14px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.10em; color: var(--text-muted); margin-bottom: 8px; }
.plan-card.featured .plan-name { color: rgba(255,255,255,0.5); }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-price-val { font-size: 3rem; font-weight: 700; color: var(--dark); letter-spacing: -0.04em; line-height: 1; transition: opacity 0.15s; }
.plan-card.featured .plan-price-val { color: #fff; }
.plan-price-unit { font-size: 0.875rem; color: var(--text-muted); font-weight: 500; }
.plan-card.featured .plan-price-unit { color: rgba(255,255,255,0.45); }
.plan-desc { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 28px; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.55); }
.plan-cta { display: block; width: 100%; text-align: center; padding: 12px; border-radius: 8px; font-family: inherit; font-size: 0.9375rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: background 0.15s, transform 0.1s; border: none; margin-bottom: 28px; }
.plan-cta:hover { transform: translateY(-1px); }
.plan-cta-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.plan-cta-outline:hover { background: #eff6ff; }
.plan-cta-solid { background: var(--primary); color: #fff; }
.plan-cta-solid:hover { background: var(--primary-dark); color: #fff; }
.plan-cta-white { background: #fff; color: var(--primary); }
.plan-cta-white:hover { background: #f0f4ff; color: var(--primary); }
.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.plan-card.featured .plan-divider { border-color: rgba(255,255,255,0.1); }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--text); line-height: 1.5; }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.8); }
.plan-features li::before { content: ''; width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; background: var(--primary); border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg width='8' height='7' viewBox='0 0 8 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3 5.5L7 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.plan-card.featured .plan-features li::before { background-color: rgba(65,105,225,0.55); }
.plan-limit { font-size: 0.8125rem; color: var(--text-muted); margin-top: 16px; text-align: center; }
.plan-card.featured .plan-limit { color: rgba(255,255,255,0.35); }

/* ── COMPARE TABLE ─────────────────────────────────────── */
.compare { padding: 0 32px 96px; }
.compare-inner { max-width: 1200px; margin: 0 auto; }
.compare-head { text-align: center; margin-bottom: 48px; }
.compare-head h2 { font-size: 2.25rem; font-weight: 700; color: var(--dark); margin: 8px 0 0; letter-spacing: -0.025em; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding: 12px 16px; text-align: center; }
.compare-table th:first-child { text-align: left; }
.compare-table th.col-featured { background: #eff6ff; border-radius: 8px 8px 0 0; color: var(--primary); }
.compare-table td { padding: 14px 16px; border-top: 1px solid var(--border); font-size: 0.9375rem; color: var(--text); text-align: center; }
.compare-table td:first-child { text-align: left; font-weight: 500; color: var(--dark); }
.compare-table tr:hover td { background: var(--bg-light); }
.compare-table tr:hover td.col-featured { background: #e4eeff; }
.compare-table .section-row td { background: var(--bg-light); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); padding: 10px 16px; border-top: none; }
.compare-table .section-row td.col-featured { background: #dde8ff; }
.compare-table td.col-featured { background: #eff6ff; }
.check { color: var(--primary); font-size: 1.125rem; font-weight: 700; }
.dash { color: #d1d5db; }

/* ── PRICING FAQ ───────────────────────────────────────── */
.pricing-faq { padding: 0 32px 96px; background: var(--bg-light); border-top: 1px solid var(--border); padding-top: 80px; }
.pricing-faq-inner { max-width: 760px; margin: 0 auto; }
.pricing-faq-head { text-align: center; margin-bottom: 48px; }
.pricing-faq-head h2 { font-size: 2.25rem; font-weight: 700; color: var(--dark); margin: 8px 0 0; letter-spacing: -0.025em; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 960px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .plan-card.featured { transform: none; }
    .plan-card.featured:hover { transform: translateY(-2px); }
    .pricing-hero h1 { font-size: 2.75rem; }
    .compare-wrap { overflow-x: auto; }
}
@media (max-width: 640px) {
    .pricing-hero { padding: 56px 20px 48px; }
    .pricing-section, .compare, .pricing-faq { padding-left: 20px; padding-right: 20px; }
    .pricing-hero h1 { font-size: 2.25rem; }
}
