/* ================================================
   TOODO+ | FORMULÁRIO DE ASSINATURA
   style.css
   ================================================ */

:root {
    --primary:            #0d3b6e;
    --primary-hover:      #0a2f58;
    --primary-light:      #1a5a9c;
    --primary-pale:       #e8f0f9;
    --secondary:          #7dbd4a;
    --secondary-hover:    #6aaa39;
    --secondary-pale:     #edf7e4;
    --orange:             #f4821f;
    --purple:             #8e4ea6;
    --teal:               #3ab5b0;
    --red:                #e8392b;
    --text-dark:          #1a2c42;
    --text-body:          #495057;
    --text-muted:         #6c757d;
    --border:             #dee2e6;
    --bg:                 #f0f4f8;
    --white:              #ffffff;
    --shadow-xs:          0 1px 4px rgba(13,59,110,.06);
    --shadow-sm:          0 2px 10px rgba(13,59,110,.09);
    --shadow:             0 4px 28px rgba(13,59,110,.12);
    --radius-sm:          8px;
    --radius:             16px;
    --radius-lg:          24px;
    --transition:         all .22s ease;
}

/* ─── RESET / BASE ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background-color: var(--bg);
    color: var(--text-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ─── HEADER ────────────────────────────────────── */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 200;
}

.site-header .container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 46px;
    width: auto;
}

/* ─── MAIN ──────────────────────────────────────── */
.site-main { flex: 1; padding: 36px 0 56px; }

/* ─── FORM WRAPPER ──────────────────────────────── */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

/* ─── STEPPER ───────────────────────────────────── */
.stepper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0 4px;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stepper-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.step-check { display: none; }

.stepper-step.active .stepper-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 0 0 5px rgba(13,59,110,.14);
    transform: scale(1.08);
}

.stepper-step.completed .stepper-circle {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.stepper-step.completed .step-number { display: none; }
.stepper-step.completed .step-check  { display: block; }

.stepper-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
}
.stepper-step.active    .stepper-label { color: var(--primary); }
.stepper-step.completed .stepper-label { color: var(--secondary); }

.stepper-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 20px 6px 0;
    min-width: 16px;
    transition: background .4s ease;
}
.stepper-line.done { background: var(--secondary); }

@media (max-width: 420px) {
    .stepper-label  { display: none; }
    .stepper-circle { width: 32px; height: 32px; font-size: 12px; }
    .stepper-line   { margin-top: 15px; min-width: 8px; }
}

/* ─── FORM CARD ─────────────────────────────────── */
.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 44px 52px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .form-card { padding: 28px 20px; border-radius: var(--radius); }
}

/* ─── STEP CONTENT ──────────────────────────────── */
.step-content { display: none; }

.step-content.active {
    display: block;
    animation: fadeUp .3s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ─── STEP INTRO ────────────────────────────────── */
.step-intro {
    text-align: center;
    margin-bottom: 32px;
}

.step-emoji {
    font-size: 52px;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
    animation: bounceIn .5s ease;
}

@keyframes bounceIn {
    0%   { transform: scale(.4); opacity: 0; }
    60%  { transform: scale(1.12); }
    80%  { transform: scale(.96); }
    100% { transform: scale(1); opacity: 1; }
}

.step-intro h2 {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.25;
}

.step-intro p {
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 0;
    max-width: 480px;
    margin-inline: auto;
}

.question-label {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
}

/* ─── CHOICE CARDS (Step 1) ─────────────────────── */
.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 8px;
}

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

.choice-card {
    cursor: pointer;
    display: block;
}

.choice-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-inner {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px 24px;
    text-align: center;
    transition: var(--transition);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    user-select: none;
}

.choice-inner:hover {
    border-color: var(--primary-light);
    background: var(--primary-pale);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.choice-card input:checked + .choice-inner {
    border-color: var(--primary);
    background: var(--primary-pale);
    box-shadow: 0 0 0 4px rgba(13,59,110,.13);
    transform: translateY(-3px);
}

.choice-check-badge {
    position: absolute;
    top: 10px; right: 10px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    display: none;
    align-items: center;
    justify-content: center;
}

.choice-card input:checked ~ .choice-check-badge,
.choice-card input:checked + .choice-inner .choice-check-badge {
    display: flex;
    animation: popIn .2s ease;
}

/* trick: badge is inside .choice-inner, so we target via checked + .choice-inner .badge */

@keyframes popIn {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}

.choice-emoji {
    font-size: 44px;
    margin-bottom: 4px;
    line-height: 1;
}

.choice-inner strong {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
}

.choice-inner span {
    font-size: .84rem;
    color: var(--text-muted);
}

/* ─── FORM CONTROLS ─────────────────────────────── */
.form-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-size: .94rem;
}

.form-label.required::after {
    content: " *";
    color: var(--red);
}

.form-control,
.form-select {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,59,110,.1);
    outline: none;
}

.form-control.invalid,
.form-select.invalid {
    border-color: var(--red);
}

/* ─── GENDER OPTIONS ────────────────────────────── */
.gender-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gender-opt {
    flex: 1;
    min-width: 130px;
    cursor: pointer;
}

.gender-opt input { display: none; }

.gender-opt span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .9rem;
    color: var(--text-body);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.gender-opt span:hover {
    border-color: var(--primary-light);
    background: var(--primary-pale);
    color: var(--primary);
}

.gender-opt input:checked + span {
    border-color: var(--primary);
    background: var(--primary-pale);
    color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,59,110,.12);
}

/* ─── LEAD SOURCE ───────────────────────────────── */
.lead-source-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.lead-source-option {
    cursor: pointer;
    display: block;
}

.lead-source-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.lead-source-option span {
    min-height: 52px;
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    padding: 12px 14px;
    font-weight: 800;
    color: var(--text-body);
    transition: var(--transition);
}

.lead-source-option span:hover {
    border-color: var(--primary-light);
    background: var(--primary-pale);
    color: var(--primary);
}

.lead-source-option input:checked + span {
    border-color: var(--primary);
    background: var(--primary-pale);
    color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,59,110,.12);
}

.lead-source-other {
    display: none;
    margin-top: 10px;
}

.lead-source-other.show { display: block; }

@media (max-width: 575px) {
    .lead-source-options { grid-template-columns: 1fr; }
}

/* ─── PAYMENT METHOD ────────────────────────────── */
.payment-method-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.payment-method-option {
    cursor: pointer;
    display: block;
}

.payment-method-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-option span {
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    padding: 12px 14px;
    color: var(--text-body);
    transition: var(--transition);
}

.payment-method-option strong {
    font-size: .95rem;
    color: var(--text-dark);
}

.payment-method-option small {
    font-size: .78rem;
    line-height: 1.25;
    color: var(--text-muted);
    font-weight: 700;
}

.payment-method-option span:hover {
    border-color: var(--primary-light);
    background: var(--primary-pale);
}

.payment-method-option input:checked + span {
    border-color: var(--primary);
    background: var(--primary-pale);
    box-shadow: 0 0 0 3px rgba(13,59,110,.12);
}

.payment-method-option input:checked + span strong { color: var(--primary); }

@media (max-width: 575px) {
    .payment-method-options { grid-template-columns: 1fr; }
}

/* ─── INTERESTS ─────────────────────────────────── */
.interest-counter-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-pale);
    color: var(--primary);
    border-radius: 20px;
    padding: 7px 18px;
    font-size: .85rem;
    font-weight: 800;
    transition: var(--transition);
}

.interest-counter-badge.at-max {
    background: var(--secondary-pale);
    color: var(--secondary-hover);
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .interests-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 380px) {
    .interests-grid { grid-template-columns: repeat(2, 1fr); }
}

.interest-item {
    cursor: pointer;
}

.interest-inner {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 8px 14px;
    text-align: center;
    transition: var(--transition);
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    position: relative;
    min-height: 90px;
    justify-content: center;
    user-select: none;
}

.interest-inner:hover {
    border-color: var(--secondary);
    background: var(--secondary-pale);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xs);
}

.interest-item.selected .interest-inner {
    border-color: var(--secondary);
    background: var(--secondary-pale);
    box-shadow: 0 0 0 3px rgba(125,189,74,.22);
    transform: translateY(-2px);
}

.interest-item.disabled .interest-inner {
    opacity: .38;
    cursor: not-allowed;
    transform: none;
    pointer-events: none;
}

.interest-check-badge {
    position: absolute;
    top: 6px; right: 6px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    font-size: 9px;
    display: none;
    align-items: center;
    justify-content: center;
}

.interest-item.selected .interest-check-badge {
    display: flex;
    animation: popIn .2s ease;
}

.interest-icon  { font-size: 28px; line-height: 1; }
.interest-label { font-size: .78rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; }

.outros-field {
    display: none;
    margin-top: 4px;
    margin-bottom: 8px;
    animation: fadeUp .25s ease;
}

/* ─── CEP ───────────────────────────────────────── */
.cep-wrap { position: relative; }

.cep-spinner {
    display: none;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.cep-status-msg {
    font-size: .8rem;
    font-weight: 600;
    margin-top: 4px;
    display: block;
    min-height: 18px;
}

.link-cep {
    font-size: .8rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
}
.link-cep:hover { color: var(--primary); text-decoration: underline; }

/* ─── SECURITY NOTE ─────────────────────────────── */
.security-note {
    margin-top: 20px;
    background: var(--secondary-pale);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .84rem;
    font-weight: 700;
    color: var(--secondary-hover);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ─── FIELD ERRORS ──────────────────────────────── */
.legal-acceptance {
    margin-top: 18px;
    background: #fff;
    border: 1px solid rgba(93, 61, 143, .16);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
}

.legal-acceptance-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    color: var(--text-dark);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
}

.legal-acceptance-label input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.legal-acceptance-label a {
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
}

.legal-acceptance-label a:hover {
    color: var(--secondary-hover);
    text-decoration: underline;
}

.field-error {
    color: var(--red);
    font-size: .82rem;
    font-weight: 700;
    margin-top: 6px;
    display: none;
}

.field-error.show {
    display: flex;
    align-items: center;
    gap: 5px;
    animation: fadeUp .2s ease;
}

.field-error.show::before {
    content: "⚠";
    font-size: .9rem;
}

/* ─── NAVIGATION ────────────────────────────────── */
.form-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-spacer { flex: 1; }

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius-sm);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    white-space: nowrap;
}

.btn-back {
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--text-muted);
    display: none;
}
.btn-back:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-pale);
}

.btn-next {
    background: var(--primary);
    color: var(--white);
}
.btn-next:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-submit {
    display: none;
    background: var(--secondary);
    color: var(--white);
}
.btn-submit:hover {
    background: var(--secondary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 400px) {
    .form-nav    { flex-wrap: wrap; }
    .btn-nav     { flex: 1; justify-content: center; padding: 13px 14px; font-size: .88rem; }
    .nav-spacer  { display: none; }
}

/* ─── CONFIRMATION ──────────────────────────────── */
.confirmation-screen {
    text-align: center;
    padding: 10px 0 4px;
}

.confirm-icon {
    font-size: 70px;
    display: block;
    margin-bottom: 20px;
    animation: bounceIn .6s ease;
}

.confirmation-screen h2 {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 14px;
}

.confirmation-screen p {
    color: var(--text-body);
    font-size: 1rem;
    max-width: 440px;
    margin: 0 auto 12px;
}

.confirm-highlight {
    font-size: 1.1rem !important;
    font-weight: 900 !important;
    color: var(--secondary-hover) !important;
}

.redirect-box {
    background: var(--primary-pale);
    border-radius: var(--radius);
    padding: 24px 20px;
    margin-top: 28px;
}

.redirect-box p {
    margin: 0 !important;
    font-size: .95rem !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.whatsapp-validation-box {
    max-width: 380px;
    margin: 26px auto 0;
    padding: 24px;
    border-radius: var(--radius);
    background: var(--primary-pale);
}

.whatsapp-code-input {
    max-width: 190px;
    margin: 0 auto 16px;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: .5rem;
    color: var(--primary);
}

.whatsapp-confirm-btn {
    width: 100%;
    justify-content: center;
}

.whatsapp-resend-btn {
    display: block;
    margin: 18px auto 8px;
    border: 0;
    background: transparent;
    color: var(--primary-light);
    font-weight: 800;
}

.whatsapp-resend-btn:disabled {
    color: var(--text-muted);
}

#whatsappValidationStatus,
#registrationReference {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-weight: 700;
}

#whatsappValidationStatus.success {
    color: var(--secondary-hover);
}

/* ─── FOOTER ────────────────────────────────────── */
.site-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 24px 0 20px;
}

.footer-logo {
    height: 48px;
    width: auto;
    display: block;
    margin: 0 auto 10px;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.footer-legal-links a {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-legal-links a:hover { color: var(--secondary-hover); }

.site-footer p {
    margin: 0;
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ─── PLAN BANNER (vindo da landing) ─────────────── */
.plan-banner {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.plan-banner-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    flex-wrap: wrap;
}

.plan-banner-icon { font-size: 24px; line-height: 1; }

.plan-banner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.plan-banner-info strong {
    color: white;
    font-size: .95rem;
    font-weight: 900;
}

.plan-banner-info span {
    color: rgba(255,255,255,.8);
    font-size: .82rem;
    font-weight: 600;
}

.plan-banner-change {
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,.4);
    padding: 5px 12px;
    border-radius: 20px;
    transition: var(--transition);
}
.plan-banner-change:hover {
    background: rgba(255,255,255,.15);
    color: white;
}

/* ─── PLAN SELECT CARDS (step 6) ─────────────────── */
.plan-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .plan-select-grid { grid-template-columns: 1fr; }
}

.plan-select-card {
    cursor: pointer;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.plan-select-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.plan-select-card.featured {
    border-color: var(--secondary);
}

.plan-select-card.selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13,59,110,.14);
    transform: translateY(-3px);
}

.plan-select-card.featured.selected {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(125,189,74,.22);
}

.plan-select-popular {
    background: var(--secondary);
    color: white;
    text-align: center;
    font-size: .75rem;
    font-weight: 900;
    padding: 5px 10px;
}

.plan-select-inner {
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    position: relative;
}

.plan-select-check {
    position: absolute;
    top: 10px; right: 10px;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 10px;
    display: none;
    align-items: center;
    justify-content: center;
}

.plan-select-card.selected .plan-select-check { display: flex; animation: popIn .2s ease; }
.plan-select-card.featured.selected .plan-select-check { background: var(--secondary); }

@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }

.plan-select-icon  { font-size: 32px; }
.plan-select-name  { font-size: .8rem; font-weight: 700; color: var(--text-muted); line-height: 1.3; }
.plan-select-name strong { display: block; font-size: 1.2rem; font-weight: 900; color: var(--primary); }

.plan-select-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.plan-select-price strong { font-size: 1.6rem; }
.plan-select-price span   { font-size: .78rem; color: var(--text-muted); font-weight: 600; }

.plan-select-features {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.plan-select-features li {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-body);
}

.plan-select-features .feat-plus {
    color: var(--secondary-hover, #6aaa39);
    font-weight: 700;
}

/* ─── CONFIRMAÇÃO: plano tag ────────────────────── */
.confirm-plan-tag {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--secondary-pale);
    color: var(--secondary-hover, #6aaa39);
    border-radius: 30px;
    padding: 10px 24px;
    font-size: .92rem;
    font-weight: 700;
    margin: 0 auto 20px;
    width: fit-content;
}

/* ─── SCROLLBAR ─────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #c5d1df; border-radius: 3px; }
