/* ═══════════════════════════════════════
   PRICING PAGE STYLES
   Scope: .pricing-page
   Responsive: 1440px → 1100px → 768px → 480px
═══════════════════════════════════════ */

/* ── Hero ────────────────────────────── */
.pricing-page .pricing-hero {
    padding: 140px 0 56px;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    animation: grid-fade 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes grid-fade {
    0% { opacity: 0.4; }
    100% { opacity: 1; }
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: glow-pulse 6s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

.pricing-page .pricing-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0 0 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #10B981 0%, #34D399 40%, #6EE7B7 70%, #10B981 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 4s ease-in-out infinite alternate;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

.pricing-page .pricing-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: #94a3b8;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10B981;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 32px;
}

.live-dot {
    width: 6px; height: 6px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10B981;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* User status banner */
.pricing-page #user-status-banner {
    margin: 0 auto 28px;
    max-width: 480px;
}

.status-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
}

.status-banner.pro {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #d1fae5;
}

.status-banner.trial {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fef3c7;
}

.status-banner.expired {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fecaca;
}

.status-banner .status-icon { font-size: 18px; flex-shrink: 0; }
.status-banner .status-text { flex: 1; line-height: 1.4; }
.status-banner .status-action {
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
}

.status-banner.pro .status-action {
    background: rgba(16, 185, 129, 0.2);
    color: #a7f3d9;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.status-banner.pro .status-action:hover { background: rgba(16, 185, 129, 0.35); }

.status-banner.trial .status-action {
    background: rgba(245, 158, 11, 0.2);
    color: #fde68a;
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.status-banner.trial .status-action:hover { background: rgba(245, 158, 11, 0.35); }

.status-banner.expired .status-action {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.status-banner.expired .status-action:hover { background: rgba(239, 68, 68, 0.35); }

/* Billing toggle */
.pricing-page .billing-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #0B1120;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-page .billing-label {
    font-size: 14px;
    color: #8b949e;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
    user-select: none;
}
.pricing-page .billing-label.active { color: #fff; }

.pricing-page .save-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 6px;
    font-weight: 600;
}

.pricing-page .billing-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
    cursor: pointer;
}
.pricing-page .billing-switch input { opacity: 0; width: 0; height: 0; }
.pricing-page .billing-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .3s;
    border-radius: 24px;
}
.pricing-page .billing-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left:3px; bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}
.pricing-page input:checked + .billing-slider { background-color: #10B981; }
.pricing-page input:checked + .billing-slider:before { transform: translateX(22px); }

/* ── Scroll Reveal Animations ────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* ── Pricing Cards ───────────────────── */
.pricing-page .pricing-section { padding-bottom: 56px; }

.pricing-page .pricing-grid.two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-page .pricing-card {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

/* Pro card */
.pricing-page .pro-card {
    background: #0B1120;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08), 0 0 0 1px rgba(16, 185, 129, 0.05);
}

.pricing-page .pro-card:hover {
    border-color: #10B981;
    box-shadow: 0 24px 56px rgba(16, 185, 129, 0.12), 0 0 32px rgba(16, 185, 129, 0.06);
}

.pricing-page .pro-badge {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10B981, #059669);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 14px;
    border-radius: 12px;
}

/* Card internals */
.pricing-page .card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pricing-page .tier-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}
.pricing-page .tier-icon.free { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); }
.pricing-page .tier-icon.pro { background: rgba(16, 185, 129, 0.08); border: 1px solid rgba(16, 185, 129, 0.3); color: #10B981; }

.pricing-card:hover .tier-icon.pro {
    background: rgba(16, 185, 129, 0.14);
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.12);
}

.pricing-page .plan-title-wrapper { display: flex; flex-direction: column; gap: 4px; }
.pricing-page .plan-name { font-size: 22px; color: #f8fafc; margin: 0; font-weight: 700; letter-spacing: -0.02em; }
.pricing-page .plan-desc { font-size: 13px; color: #94a3b8; margin: 0; line-height: 1.5; }

/* Price display */
.pricing-page .card-price { margin-bottom: 4px; display: flex; align-items: baseline; }
.pricing-page .card-price .currency { font-size: 22px; color: #94a3b8; font-weight: 600; margin-right: 2px; }
.pricing-page .card-price .amount { font-size: 52px; color: #ffffff; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.pricing-page .card-price .period { font-size: 14px; color: #8b949e; margin-left: 4px; }

.pricing-page .billed-text { font-size: 12px; color: #64748b; margin-bottom: 20px; height: 16px; }

/* Divider */
.pricing-page .plan-divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin: 16px 0; }

/* Feature list */
.pricing-page .feature-title { font-size: 13px; color: #fff; font-weight: 600; margin-bottom: 14px; }
.pricing-page .plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.pricing-page .plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: #cbd5e1; line-height: 1.5;
}
.pricing-page .plan-features li svg { width: 16px; height: 16px; color: #10B981; flex-shrink: 0; margin-top: 2px; }

/* Buttons */
.pricing-page .plan-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    height: 44px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

.pricing-page .plan-btn.neutral {
    background: transparent;
    color: #c9d1d9;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.pricing-page .plan-btn.neutral:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.pricing-page .plan-btn.primary {
    background: #10B981;
    color: #05080c;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}
.pricing-page .plan-btn.primary:hover {
    background: #34D399;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.pricing-page .plan-btn.glow {
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.pricing-page .plan-btn.glow:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.2), 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Current Plan — disabled state */
.pricing-page .plan-btn-disabled {
    background: #1a2230 !important;
    color: #64748b !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
    cursor: default !important;
    pointer-events: none;
}
.pricing-page .plan-btn-disabled .current-plan-icon {
    color: #10B981;
    margin-right: 6px;
}

.plan-btn .switch-icon {
    margin-right: 6px;
    display: inline-block;
}

/* ── Comparison Table ────────────────── */
.pricing-page .compare-section { padding: 56px 0; }
.pricing-page .compare-title {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 12px;
    letter-spacing: -0.03em;
}
.pricing-page .compare-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: #94a3b8;
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.pricing-page .table-container {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.pricing-page .table-container:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.pricing-page .compare-table { width: 100%; border-collapse: collapse; text-align: left; }
.pricing-page .compare-table th {
    background: rgba(255, 255, 255, 0.02);
    padding: 14px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #8b949e;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pricing-page .compare-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: #c9d1d9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.pricing-page .compare-table tr:last-child td { border-bottom: none; }

.pricing-page .highlight-row {
    background: rgba(16, 185, 129, 0.05);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}
.pricing-page .highlight-row td {
    font-weight: 600;
    color: #fff;
    border-bottom: none;
}

.pricing-page .brand-cell { display: flex; align-items: center; gap: 8px; }
.pricing-page .price-cell .subtext { font-size: 12px; color: #64748b; font-weight: 400; }

.pricing-page .focus-pill {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 12px;
    color: #a0adb8;
}
.pricing-page .focus-pill.crypto { border-color: rgba(245, 158, 11, 0.3); color: #F59E0B; }

.pricing-page .compare-footer-note {
    font-size: 12px;
    color: #64748b;
    margin-top: 16px;
}

/* ── Value Proposition Banner ──────── */
.pricing-page .value-prop-wrap { max-width: 860px; margin: 32px auto 0; }

.pricing-page .value-prop-banner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 24px;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(11, 17, 32, 0.94) 0%, rgba(13, 17, 23, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    transition: all 0.3s;
}

.pricing-page .value-prop-banner:hover {
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
    transform: translateY(-2px);
}

.pricing-page .value-prop-copy { display: flex; flex-direction: column; justify-content: center; }

.pricing-page .value-prop-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-page .value-prop-title {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: #f8fafc;
}

.pricing-page .value-prop-text {
    margin: 0;
    max-width: 460px;
    font-size: 14px;
    line-height: 1.65;
    color: #94a3b8;
}

/* Comparison math */
.pricing-page .value-prop-compare {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
}

.pricing-page .value-prop-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pricing-page .value-pill {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 72px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s;
}

.pricing-page .value-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-page .value-pill-label { font-size: 12px; color: #94a3b8; line-height: 1.3; }
.pricing-page .value-pill-price { margin-top: 8px; font-size: 18px; font-weight: 700; color: #f8fafc; }

.pricing-page .value-stack-total {
    grid-column: 1 / -1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(148, 163, 184, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.14);
}
.pricing-page .value-stack-total-label { font-size: 12px; color: #94a3b8; font-weight: 600; }
.pricing-page .value-stack-total-price { font-size: 20px; font-weight: 800; color: #f8fafc; }

/* Divider */
.pricing-page .value-prop-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 24px;
}
.pricing-page .value-divider-line { width: 1px; flex: 1; min-height: 30px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.14), transparent); }
.pricing-page .value-divider-text { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #64748b; }

/* Result column */
.pricing-page .value-prop-result {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 24px rgba(16, 185, 129, 0.04);
}

.pricing-page .value-result-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.pricing-page .brand-text-vp { font-size: 14px; font-weight: 800; letter-spacing: 0.05em; color: #ffffff; }

.pricing-page .value-result-price { font-size: 36px; line-height: 1; font-weight: 800; color: #ffffff; margin-bottom: 8px; }
.pricing-page .value-result-price span { font-size: 14px; font-weight: 600; color: #a7f3d0; margin-left: 4px; }

.pricing-page .value-result-text { font-size: 13px; line-height: 1.55; color: #d1fae5; margin: 0 0 12px; }

.pricing-page .value-prop-result .plan-btn { margin-top: auto; height: 40px; font-size: 13px; }

/* ── FAQ Section ─────────────────────── */
.faq-section { padding: 56px 0; }
.pricing-page .faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-page .faq-item {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-page .faq-item:hover {
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.04);
    transform: translateY(-2px);
}

.pricing-page .faq-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: #f8fafc;
    margin: 0 0 10px;
    line-height: 1.4;
}

.pricing-page .faq-item p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* ── CTA Section ─────────────────────── */
.landing-cta {
    padding: 80px 0 100px;
    background: radial-gradient(ellipse at center top, rgba(16, 185, 129, 0.04) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
}

.cta-glow-bg {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    pointer-events: none;
    animation: cta-glow-pulse 5s ease-in-out infinite alternate;
}

@keyframes cta-glow-pulse {
    0% { opacity: 0.4; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* ── Responsive: 1100px (Tablets) ──── */
@media (max-width: 1100px) {
    .pricing-page .pricing-grid.two-cols { gap: 20px; }
    .pricing-page .value-prop-banner { padding: 20px; gap: 20px; }
}

/* ── Responsive: 768px (Tablets / Small) ── */
@media (max-width: 768px) {
    /* Cards stack */
    .pricing-page .pricing-grid.two-cols { grid-template-columns: 1fr; max-width: 440px; }
    .pricing-page .pro-card { box-shadow: none; border-width: 1px; }

    /* Comparison table */
    .pricing-page .table-container { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .pricing-page .compare-table { min-width: 500px; }
    .pricing-page .compare-table th,
    .pricing-page .compare-table td { padding: 12px 14px; font-size: 13px; }

    /* Value prop */
    .pricing-page .value-prop-banner { grid-template-columns: 1fr; }
    .pricing-page .value-prop-copy { text-align: center; align-items: center; }
    .pricing-page .value-prop-text { max-width: 100%; }

    .pricing-page .value-prop-compare { grid-template-columns: 1fr; gap: 14px; }
    .pricing-page .value-prop-divider { flex-direction: row; min-width: auto; }
    .pricing-page .value-divider-line { width: 100%; height: 1px; min-height: 1px; }

    /* FAQ */
    .pricing-page .faq-grid { grid-template-columns: 1fr; max-width: 480px; }

    /* CTA */
    .landing-cta { padding: 56px 0 72px; }
}

/* ── Responsive: 480px (Mobile) ────── */
@media (max-width: 480px) {
    .pricing-page .pricing-hero { padding: 100px 0 36px; }
    .pricing-page .pricing-subtitle { margin-bottom: 28px; }

    /* Billing toggle on small screens */
    .pricing-page .billing-toggle-wrapper { flex-wrap: wrap; justify-content: center; }

    /* Cards */
    .pricing-page .pricing-card { padding: 22px; }
    .pricing-page .card-price .amount { font-size: 44px; }

    /* Table */
    .pricing-page .compare-table th,
    .pricing-page .compare-table td { padding: 10px 12px; font-size: 12px; }
    .pricing-page .focus-pill { font-size: 11px; padding: 2px 6px; }

    /* Value prop */
    .pricing-page .value-prop-banner { padding: 16px; gap: 16px; }
    .pricing-page .value-prop-title { font-size: 20px; }
    .pricing-page .value-prop-stack { grid-template-columns: 1fr; }
    .pricing-page .value-stack-total { flex-direction: column; align-items: flex-start; gap: 4px; }

    /* FAQ */
    .pricing-page .faq-item { padding: 18px; }
    .pricing-page .faq-item h3 { font-size: 14px; }

    /* CTA */
    .landing-cta { padding: 40px 0 56px; }

    /* Status banner */
    .pricing-page #user-status-banner { max-width: 100%; }
    .status-banner { flex-direction: column; text-align: center; gap: 8px; }
}
