.pricing-section {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem 4rem;
    position: relative; z-index: 1;
}

/* Billing toggle */
.billing-toggle {
    display: flex; align-items: center; justify-content: center; gap: 1rem;
    margin-bottom: 2.5rem;
}
.billing-toggle .billing-toggle-label {
    font-size: 0.9rem; color: var(--text2); cursor: pointer; transition: color 0.2s;
    border: none; background: transparent; padding: 0;
    font-family: 'Syne', system-ui, sans-serif;
}
.billing-toggle .billing-toggle-label.active { color: var(--text); font-weight: 600; }
.billing-toggle .toggle-track {
    width: 48px; height: 26px; border-radius: 13px; background: var(--border);
    cursor: pointer; position: relative; transition: background 0.2s;
    border: none; padding: 0; appearance: none;
}
.billing-toggle .toggle-track.annual { background: var(--accent); }
.billing-toggle .toggle-track .toggle-knob {
    width: 20px; height: 20px; border-radius: 50%; background: var(--white);
    position: absolute; top: 3px; left: 3px; transition: transform 0.2s;
}
.billing-toggle .toggle-track.annual .toggle-knob { transform: translateX(22px); }
.billing-save { font-size: 0.75rem; color: var(--green); font-weight: 600; margin-left: 0.25rem; }
.billing-toggle .billing-toggle-label:focus-visible,
.billing-toggle .toggle-track:focus-visible,
.topup-pill:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* 4-column grid */
.pricing-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.price-card {
    background: var(--bg3); border: 1px solid var(--border); border-radius: 12px;
    padding: 2rem 1.5rem; position: relative; transition: all 0.3s;
    display: flex; flex-direction: column;
}
.price-card:hover { border-color: var(--text2); transform: translateY(-2px); }
.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(232,168,38,0.1);
}
.price-card.featured::before {
    content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%); padding: 0.3rem 1rem; border-radius: 100px;
    background: var(--accent); color: var(--black); font-size: 0.65rem;
    font-weight: 700; letter-spacing: 0.1em;
}
.price-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.price-amount {
    font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 0.15rem;
    line-height: 1.1;
}
.price-suffix { font-size: 0.9rem; font-weight: 500; color: var(--text2); }
.price-annual-equiv { font-size: 0.75rem; color: var(--green); min-height: 1.2em; margin-bottom: 0.5rem; }
.price-desc { color: var(--text2); font-size: 0.82rem; margin-bottom: 1.25rem; }

/* Features list */
.price-features { list-style: none; margin-bottom: auto; padding-bottom: 1.5rem; }
.price-features li {
    padding: 0.35rem 0; font-size: 0.82rem; color: var(--text2);
    display: flex; align-items: flex-start; gap: 0.5rem;
}
.price-features .check { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-features .x { color: var(--muted-800); flex-shrink: 0; margin-top: 1px; }
.price-features strong { color: var(--text); }
.price-features .new-badge {
    font-size: 0.6rem; background: rgba(232,168,38,0.15); color: var(--accent);
    padding: 0.1rem 0.4rem; border-radius: 3px; font-weight: 700;
    letter-spacing: 0.05em; margin-left: 0.25rem;
}

/* Included note */
.price-included {
    font-size: 0.78rem; color: var(--text2); padding: 0.6rem 0.75rem;
    background: rgba(255,255,255,0.02); border-radius: 6px;
    margin-bottom: 1.25rem; border: 1px solid rgba(255,255,255,0.04);
}
.price-included strong { color: var(--text); }

/* CTA buttons */
.price-btn {
    display: block; width: 100%; text-align: center;
    padding: 0.75rem; border-radius: 8px; font-family: 'Syne', system-ui;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    text-decoration: none; transition: all 0.2s;
}
.price-btn-primary { background: var(--accent); color: var(--black); border: none; }
.price-btn-primary:hover { background: var(--accent2); }
.price-btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.price-btn-ghost:hover { border-color: var(--text2); }

/* BYOK callout */
.byok-callout {
    max-width: 800px; margin: 3rem auto 0; padding: 2rem;
    background: rgba(52,211,153,0.04); border: 1px solid rgba(52,211,153,0.15);
    border-radius: 12px; text-align: center; position: relative; z-index: 1;
}
.byok-callout h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--green); }
.byok-callout p { font-size: 0.88rem; color: var(--text2); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Top-up section */
.topup-section {
    max-width: 700px; margin: 2.5rem auto 0; position: relative; z-index: 1;
    text-align: center;
}
.topup-section p {
    font-size: 0.85rem; color: var(--text2); margin-bottom: 1rem;
}
.topup-pills {
    display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap;
}
.topup-pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.82rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    color: var(--text2); cursor: pointer; transition: all 0.2s;
    font-family: 'Syne', system-ui, sans-serif;
    appearance: none;
}
.topup-pill:hover { border-color: var(--accent); color: var(--text); }
.topup-pill .bonus { color: var(--green); font-weight: 600; font-size: 0.72rem; }

/* Comparison table */
.compare-section {
    max-width: 900px; margin: 3rem auto 0; position: relative; z-index: 1;
}
.compare-section h2 { text-align: center; font-size: 1.4rem; margin-bottom: 1.5rem; }
.compare-table-wrap { overflow-x: auto; }
.compare-table {
    width: 100%; border-collapse: collapse; font-size: 0.82rem;
}
.compare-table th {
    text-align: left; padding: 0.6rem 0.75rem; font-weight: 600;
    border-bottom: 1px solid var(--border); color: var(--text);
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
    padding: 0.5rem 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text2);
}
.compare-table td:not(:first-child) { text-align: center; }
.compare-table .cg { color: var(--green); }
.compare-table .cx { color: var(--muted-800); }
.pricing-final-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-toast {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 9999;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    border: 1px solid var(--toast-info-border);
    background: var(--toast-info-bg);
    color: var(--toast-info-text);
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
    opacity: 1;
    transition: opacity 0.3s;
}

.pricing-toast--error {
    border-color: var(--toast-error-border);
    background: var(--toast-error-bg);
    color: var(--toast-error-text);
}

/* FAQ */
.pricing-faq {
    max-width: 800px; margin: 3rem auto 0; padding: 0 2rem;
    position: relative; z-index: 1;
}
.pricing-faq h2 {
    font-size: 1.6rem; font-weight: 700; text-align: center;
    margin-bottom: 2rem; letter-spacing: -0.02em;
}

/* Responsive */
@media (max-width: 960px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .compare-table { font-size: 0.75rem; }
    .compare-table th, .compare-table td { padding: 0.4rem 0.5rem; }
}
