@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── BASE TOKENS (dark — padrão) ─────────────────────────────────── */
:root {
    --bg:          #0d0f14;
    --surface:     #161920;
    --surface2:    #1c1f28;
    --border:      #252830;
    --border2:     #2e3240;
    --accent:      #6c63ff;
    --accent-h:    #8b85ff;
    --accent-dim:  rgba(108,99,255,.12);
    --success:     #22c55e;
    --success-dim: rgba(34,197,94,.12);
    --danger:      #ef4444;
    --danger-dim:  rgba(239,68,68,.12);
    --warning:     #f59e0b;
    --warning-dim: rgba(245,158,11,.12);
    --info:        #38bdf8;
    --info-dim:    rgba(56,189,248,.12);
    --text:        #e2e8f0;
    --text2:       #94a3b8;
    --muted:       #64748b;
    --sidebar-w:   240px;
    --header-h:    60px;
    --radius:      10px;
    --radius-sm:   6px;
    --theme-badge: '';
    --campaign-bar: transparent;
}

/* ── LIGHT ───────────────────────────────────────────────────────── */
[data-theme="light"] {
    --bg:        #f1f5f9;
    --surface:   #ffffff;
    --surface2:  #f8fafc;
    --border:    #e2e8f0;
    --border2:   #cbd5e1;
    --text:      #1e293b;
    --text2:     #475569;
    --muted:     #94a3b8;
    --accent:    #6c63ff;
    --accent-h:  #5b52e0;
    --accent-dim:rgba(108,99,255,.10);
    --success-dim:rgba(34,197,94,.10);
    --danger-dim: rgba(239,68,68,.10);
    --warning-dim:rgba(245,158,11,.10);
}

/* ── OUTUBRO ROSA ────────────────────────────────────────────────── */
[data-theme="outubro-rosa"] {
    --accent:      #e91e8c;
    --accent-h:    #f472b6;
    --accent-dim:  rgba(233,30,140,.14);
    --surface:     #1a0d14;
    --surface2:    #220d18;
    --border:      #3d1a2e;
    --campaign-bar:#e91e8c;
}
/* ── NOVEMBRO AZUL ───────────────────────────────────────────────── */
[data-theme="novembro-azul"] {
    --accent:      #1d6fa4;
    --accent-h:    #60a5fa;
    --accent-dim:  rgba(29,111,164,.14);
    --surface:     #0d1520;
    --surface2:    #0f1c2a;
    --border:      #1a3050;
    --campaign-bar:#1d6fa4;
}
/* ── MAIO AMARELO ────────────────────────────────────────────────── */
[data-theme="maio-amarelo"] {
    --accent:      #d97706;
    --accent-h:    #fbbf24;
    --accent-dim:  rgba(217,119,6,.14);
    --surface:     #14110a;
    --surface2:    #1c1708;
    --border:      #3a2e00;
    --campaign-bar:#d97706;
}
/* ── SETEMBRO AMARELO ────────────────────────────────────────────── */
[data-theme="setembro-amarelo"] {
    --accent:      #ca8a04;
    --accent-h:    #facc15;
    --accent-dim:  rgba(202,138,4,.14);
    --surface:     #14110a;
    --surface2:    #1c1708;
    --border:      #3a2e00;
    --campaign-bar:#ca8a04;
}
/* ── AGOSTO DOURADO ──────────────────────────────────────────────── */
[data-theme="agosto-dourado"] {
    --accent:      #b45309;
    --accent-h:    #f59e0b;
    --accent-dim:  rgba(180,83,9,.14);
    --surface:     #141008;
    --surface2:    #1c150a;
    --border:      #3a2800;
    --campaign-bar:#b45309;
}
/* ── JANEIRO BRANCO ──────────────────────────────────────────────── */
[data-theme="janeiro-branco"] {
    --accent:      #94a3b8;
    --accent-h:    #cbd5e1;
    --accent-dim:  rgba(148,163,184,.12);
    --campaign-bar:#94a3b8;
}
/* ── ABRIL VERDE (Autismo) ───────────────────────────────────────── */
[data-theme="abril-verde"] {
    --accent:      #059669;
    --accent-h:    #34d399;
    --accent-dim:  rgba(5,150,105,.14);
    --surface:     #0a1410;
    --surface2:    #0d1c14;
    --border:      #143020;
    --campaign-bar:#059669;
}
/* ── DEZEMBRO NATAL ──────────────────────────────────────────────── */
[data-theme="dezembro"] {
    --accent:      #dc2626;
    --accent-h:    #f87171;
    --accent-dim:  rgba(220,38,38,.14);
    --surface:     #140808;
    --surface2:    #1c0a0a;
    --border:      #3a0f0f;
    --campaign-bar:#dc2626;
}

html, body { height: 100%; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

/* ── Layout ─────────────────────────────────────────────── */

.app-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-w);
    background: var(--surface);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 100;
    overflow-y: auto;
}

.sidebar-brand {
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--border);
}

.sidebar-brand h1 {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-h));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.5px;
}

.sidebar-brand span {
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
    display: block;
    margin-top: 2px;
}

.sidebar-nav {
    padding: 16px 12px;
    flex: 1;
}

.nav-group-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .8px;
    color: var(--muted);
    text-transform: uppercase;
    padding: 0 8px;
    margin: 16px 0 6px;
}

.nav-group-label:first-child { margin-top: 0; }

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    color: var(--text2);
    font-size: 13.5px;
    font-weight: 500;
    transition: all .15s;
    cursor: pointer;
    margin-bottom: 2px;
}

.nav-item:hover {
    background: var(--surface2);
    color: var(--text);
}

.nav-item.active {
    background: var(--accent-dim);
    color: var(--accent-h);
}

.nav-item .icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.nav-badge {
    margin-left: auto;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 10px;
}

.sidebar-footer {
    padding: 12px;
    border-top: 1px solid var(--border);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background .15s;
}

.sidebar-user:hover { background: var(--surface2); }

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-h));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
}

.user-info { flex: 1; min-width: 0; }
.user-name  { font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-role  { font-size: 11px; color: var(--muted); }

/* Main content */
.main {
    margin-left: var(--sidebar-w);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.topbar {
    height: var(--header-h);
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 50;
}

.topbar-title {
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.topbar-subtitle {
    font-size: 12px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 1px;
}

.page-content {
    padding: 28px 28px;
    flex: 1;
}

/* ── Cards ──────────────────────────────────────────────── */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-title {
    font-size: 15px;
    font-weight: 600;
}

.card-subtitle {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* ── Stats ──────────────────────────────────────────────── */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color .2s;
}

.stat-card:hover { border-color: var(--border2); }

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-icon.purple  { background: var(--accent-dim);  }
.stat-icon.green   { background: var(--success-dim); }
.stat-icon.red     { background: var(--danger-dim);  }
.stat-icon.yellow  { background: var(--warning-dim); }
.stat-icon.blue    { background: var(--info-dim);    }

.stat-info {}
.stat-value { font-size: 24px; font-weight: 700; line-height: 1.1; }
.stat-label { font-size: 12px; color: var(--muted); margin-top: 3px; }

/* ── Table ──────────────────────────────────────────────── */

.table-wrap { overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    padding: 10px 16px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
    vertical-align: middle;
}

tbody tr:last-child td { border-bottom: none; }

tbody tr:hover td { background: rgba(255,255,255,.02); }

.td-muted { color: var(--muted); font-size: 12px; }

/* ── Badges ─────────────────────────────────────────────── */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.badge-success { background: var(--success-dim); color: var(--success); }
.badge-danger  { background: var(--danger-dim);  color: var(--danger);  }
.badge-warning { background: var(--warning-dim); color: var(--warning); }
.badge-info    { background: var(--info-dim);    color: var(--info);    }
.badge-accent  { background: var(--accent-dim);  color: var(--accent-h);}
.badge-muted   { background: rgba(100,116,139,.15); color: var(--muted); }

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: all .15s;
    line-height: 1;
    white-space: nowrap;
}

.btn-primary   { background: linear-gradient(135deg, var(--accent), var(--accent-h)); color: #fff; }
.btn-secondary { background: var(--surface2); color: var(--text); border: 1px solid var(--border2); }
.btn-danger    { background: var(--danger-dim); color: var(--danger); border: 1px solid rgba(239,68,68,.25); }
.btn-warning   { background: rgba(217,119,6,.15); color: #d97706; border: 1px solid rgba(217,119,6,.25); }
.btn-success   { background: var(--success-dim); color: var(--success); border: 1px solid rgba(34,197,94,.25); }
.btn-ghost     { background: transparent; color: var(--text2); }
.btn-sm        { padding: 6px 12px; font-size: 12px; }

.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; }

/* ── Forms ──────────────────────────────────────────────── */

.form-grid   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group label .hint {
    color: var(--muted);
    font-weight: 400;
    font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 13px;
    font-size: 13.5px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(108,99,255,.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group select option { background: var(--surface); }

.form-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ── Alerts ─────────────────────────────────────────────── */

.alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    margin-bottom: 16px;
}

.alert-danger  { background: var(--danger-dim);  border: 1px solid rgba(239,68,68,.25);  color: #fca5a5; }
.alert-success { background: var(--success-dim); border: 1px solid rgba(34,197,94,.25);  color: #86efac; }
.alert-warning { background: var(--warning-dim); border: 1px solid rgba(245,158,11,.25); color: #fcd34d; }
.alert-info    { background: var(--info-dim);    border: 1px solid rgba(56,189,248,.25); color: #7dd3fc; }

/* ── Empty state ─────────────────────────────────────────── */

.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--muted);
}

.empty-state .icon { font-size: 40px; margin-bottom: 12px; opacity: .4; }
.empty-state h3    { font-size: 15px; color: var(--text2); margin-bottom: 6px; }
.empty-state p     { font-size: 13px; }

/* ── Misc ────────────────────────────────────────────────── */

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.page-header h2 { font-size: 20px; font-weight: 600; }
.page-header p  { font-size: 13px; color: var(--muted); margin-top: 3px; }

.divider { height: 1px; background: var(--border); margin: 20px 0; }

.text-muted   { color: var(--muted); }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger); }
.text-accent  { color: var(--accent-h); }
.text-right   { text-align: right; }
.fw-600       { font-weight: 600; }

.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.gap-8 { gap: 8px; }

.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── Login ──────────────────────────────────────────────── */

.login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: var(--bg);
}

.login-box {
    width: 100%;
    max-width: 400px;
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo h1 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-h));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-logo p { color: var(--muted); font-size: 13px; margin-top: 4px; }

.login-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.login-card h2 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.login-card .sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }

/* ── Wizard ─────────────────────────────────────────────────────────────────── */

.wizard-wrap { max-width: 860px; margin: 0 auto; }

.wizard-header { margin-bottom: 28px; }
.wizard-header h2 { font-size: 20px; font-weight: 600; }
.wizard-header p  { font-size: 13px; color: var(--muted); margin-top: 4px; }

.wizard-steps {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
    overflow-x: auto;
    padding-bottom: 4px;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0; right: 0;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.wz-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
    min-width: 80px;
}

.wz-step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600;
    color: var(--muted);
    transition: all .2s;
    position: relative;
    z-index: 1;
}

.wz-step.done .wz-step-num  { background: var(--accent); border-color: var(--accent); color: #fff; }
.wz-step.active .wz-step-num {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 0 5px rgba(108,99,255,.15);
}

.wz-step-label {
    font-size: 11px; font-weight: 500;
    color: var(--muted);
    margin-top: 8px;
    text-align: center;
    white-space: nowrap;
}
.wz-step.done .wz-step-label   { color: var(--text); }
.wz-step.active .wz-step-label { color: var(--accent); }

/* Step connector line */
.wz-step::after {
    content: '';
    position: absolute;
    top: 17px;
    left: 50%; right: -50%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}
.wz-step:last-child::after { display: none; }
.wz-step.done::after { background: var(--accent); }

/* Wizard step panels */
/* Wizard panels: visibility handled by PHP conditionals, not CSS */
.wz-panel { display: block; }

/* Campaign awareness bar (top of page, shown when theme has one) */
.campaign-bar {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .3px;
    background: var(--campaign-bar);
    color: #fff;
    text-align: center;
}
[data-theme]:not([data-theme="dark"]):not([data-theme="light"]) .campaign-bar { display: flex; }

/* Theme switcher */
.theme-switcher {
    padding: 10px 16px;
    border-top: 1px solid var(--border);
}
.theme-switcher-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--muted);
    margin-bottom: 8px;
}
.theme-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.swatch {
    width: 22px; height: 22px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .15s, border-color .15s;
    position: relative;
}
.swatch:hover { transform: scale(1.2); }
.swatch.active { border-color: var(--text); }
.swatch[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 28px; left: 50%;
    transform: translateX(-50%);
    background: var(--surface2);
    border: 1px solid var(--border2);
    color: var(--text);
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 100;
}

/* CNPJ search */
.cnpj-box {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.cnpj-result {
    background: var(--success-dim);
    border: 1px solid rgba(34,197,94,.25);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 16px;
    display: none;
}
.cnpj-result.show { display: block; }
.cnpj-result h4 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--success); }
.cnpj-result p  { font-size: 13px; color: var(--text2); margin: 2px 0; }

/* Plan cards */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }

.plan-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
}
.plan-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.plan-card.selected { border-color: var(--accent); background: var(--accent-dim); }

.plan-card input[type=radio] { position: absolute; opacity: 0; }
.plan-name  { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.plan-price { font-size: 28px; font-weight: 700; color: var(--accent-h); margin: 12px 0; }
.plan-price small { font-size: 13px; color: var(--muted); font-weight: 400; }
.plan-features { font-size: 12px; color: var(--muted); line-height: 1.8; }
.plan-features li { list-style: none; padding: 2px 0; }
.plan-features li::before { content: '✓ '; color: var(--success); }

/* Checklist inspeção */
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    cursor: pointer;
    transition: all .15s;
}
.check-item:hover { border-color: var(--border2); }
.check-item.ok    { border-color: var(--success); background: var(--success-dim); }
.check-item.nok   { border-color: var(--danger);  background: var(--danger-dim); }
.check-item.na    { border-color: var(--muted);   background: rgba(100,116,139,.08); }
.check-item input { display: none; }
.check-label { font-size: 13px; flex: 1; }
.check-btns  { display: flex; gap: 4px; }
.check-btn   {
    font-size: 10px; font-weight: 600;
    padding: 3px 7px; border-radius: 4px;
    border: 1px solid var(--border);
    background: var(--surface); color: var(--muted);
    cursor: pointer; transition: all .15s;
}
.check-btn.active-ok  { background: var(--success); border-color: var(--success); color: #fff; }
.check-btn.active-nok { background: var(--danger);  border-color: var(--danger);  color: #fff; }
.check-btn.active-na  { background: var(--muted);   border-color: var(--muted);   color: #fff; }

/* Summary box */
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.summary-item { }
.summary-item .s-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 3px; }
.summary-item .s-value { font-size: 14px; }

/* Wizard confirmation summary */
.summary-section { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; }
.summary-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--accent-h); margin-bottom: 12px; }
.summary-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.summary-row:last-child { border-bottom: none; }
.summary-row span { color: var(--muted); flex-shrink: 0; }
.summary-row strong { color: var(--text); text-align: right; }

/* Misc helpers */
.plan-desc { font-size: 12px; color: var(--muted); margin: 8px 0 4px; line-height: 1.5; }
.divider { height: 1px; background: var(--border); margin: 20px 0; }
.wz-connector { display: none; }

/* Wizard nav */
.wz-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 28px; padding-top: 20px;
    border-top: 1px solid var(--border);
}
