/* ══════════════════════════════════════════════════
   Vi Connect Pro — Design System
   Font: Inter | Palette: Slate + Red accent
══════════════════════════════════════════════════ */

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

:root {
    --red:        #dc2626;
    --red-dk:     #b91c1c;
    --red-lt:     #fef2f2;
    --red-glow:   rgba(220, 38, 38, 0.12);

    --blue:       #2563eb;
    --blue-lt:    #eff6ff;
    --green:      #16a34a;
    --green-lt:   #f0fdf4;
    --amber:      #d97706;
    --amber-lt:   #fffbeb;

    --bg:         #f1f5f9;
    --surface:    #ffffff;
    --border:     #e2e8f0;
    --border-dk:  #cbd5e1;

    --text:       #0f172a;
    --text-2:     #475569;
    --text-3:     #94a3b8;

    --radius-sm:  8px;
    --radius:     12px;
    --radius-lg:  18px;
    --radius-xl:  24px;

    --shadow-sm:  0 1px 3px rgba(15,23,42,0.06);
    --shadow:     0 4px 12px rgba(15,23,42,0.08);
    --shadow-md:  0 8px 24px rgba(15,23,42,0.10);

    --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { -webkit-tap-highlight-color: transparent; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    font-size: 14px;
    line-height: 1.5;
}

/* ── CELEBRATION ── */
.celebration-pop {
    position: fixed; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 72px; z-index: 9999;
    pointer-events: none; opacity: 0;
    transition: opacity 0.25s;
}
.celebration-pop.show { opacity: 1; }

/* ═══════════════════════════════════════
   LOGIN
═══════════════════════════════════════ */
.login-wrap {
    display: flex; min-height: 100vh;
}

.login-panel {
    flex: 1;
    display: flex; align-items: center; justify-content: center;
    padding: 40px 32px;
}

.login-panel--left {
    background: linear-gradient(150deg, #0f172a 0%, #1e1b4b 60%, #1e293b 100%);
    position: relative; overflow: hidden;
}
.login-panel--left::before {
    content: '';
    position: absolute; top: -120px; right: -120px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(220,38,38,0.18) 0%, transparent 70%);
}
.login-panel--left::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
}

.lp-inner { position: relative; z-index: 1; max-width: 420px; }

.lp-logo {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 56px;
}
.logo-badge {
    width: 48px; height: 48px;
    background: var(--red);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: white;
    letter-spacing: -0.5px;
    box-shadow: 0 8px 20px rgba(220,38,38,0.4);
}
.logo-text strong { display: block; font-size: 18px; font-weight: 700; color: white; }
.logo-text span   { font-size: 12px; color: rgba(255,255,255,0.5); }

.lp-headline h1 {
    font-size: 36px; font-weight: 800; line-height: 1.15;
    color: white; letter-spacing: -0.8px;
    margin-bottom: 16px;
}
.lp-headline h1 em { color: var(--red); font-style: normal; }
.lp-headline p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.lp-metrics {
    display: flex; align-items: center; gap: 20px;
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.lpm { display: flex; flex-direction: column; gap: 2px; }
.lpm-val { font-size: 14px; font-weight: 700; color: white; }
.lpm-key { font-size: 11px; color: rgba(255,255,255,0.4); }
.lpm-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.1); }

/* Right panel */
.login-panel--right { background: var(--bg); }

.login-form-card {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    width: 100%; max-width: 400px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    animation: fadeUp 0.4s cubic-bezier(0.16,1,0.3,1);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lfc-head { margin-bottom: 28px; }
.lfc-head h2 { font-size: 24px; font-weight: 800; color: var(--text); letter-spacing: -0.4px; }
.lfc-head p  { font-size: 14px; color: var(--text-3); margin-top: 4px; }

.inp-group { margin-bottom: 18px; }
.inp-group label {
    display: block; margin-bottom: 7px;
    font-size: 12px; font-weight: 600;
    color: var(--text-2); text-transform: uppercase; letter-spacing: 0.4px;
}
.inp-wrap {
    position: relative; display: flex; align-items: center;
}
.inp-ico {
    position: absolute; left: 12px; width: 16px; height: 16px;
    color: var(--text-3); pointer-events: none; flex-shrink: 0;
}
.inp-wrap input {
    width: 100%;
    padding: 12px 14px 12px 38px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px; font-family: var(--font);
    color: var(--text); background: #fafbfc;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.inp-wrap input:focus {
    outline: none; border-color: var(--red);
    background: white; box-shadow: 0 0 0 3px var(--red-glow);
}
.pwd-eye {
    position: absolute; right: 10px;
    background: none; border: none; cursor: pointer;
    padding: 4px; color: var(--text-3);
    display: flex; align-items: center;
}
.pwd-eye svg { width: 16px; height: 16px; }
.pwd-eye:hover { color: var(--text-2); }

.inp-check { margin-bottom: 24px; }
.chk-label {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer; font-size: 13px; color: var(--text-2);
}
.chk-label input[type="checkbox"] { display: none; }
.chk-box {
    width: 17px; height: 17px; flex-shrink: 0;
    border: 1.5px solid var(--border); border-radius: 4px;
    background: white; display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.chk-label input:checked + .chk-box {
    background: var(--red); border-color: var(--red);
}
.chk-box svg { width: 10px; height: 10px; opacity: 0; transition: opacity 0.1s; }
.chk-label input:checked + .chk-box svg { opacity: 1; }

.btn-primary {
    background: var(--red); color: white;
    border: none; border-radius: var(--radius-sm);
    font-family: var(--font); font-weight: 600; font-size: 14px;
    cursor: pointer; transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-primary:hover  { background: var(--red-dk); box-shadow: 0 6px 16px rgba(220,38,38,0.3); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary svg { width: 16px; height: 16px; }

.btn-login {
    width: 100%; padding: 13px 20px;
    box-shadow: 0 4px 12px rgba(220,38,38,0.25);
}

/* ═══════════════════════════════════════
   APP SHELL
═══════════════════════════════════════ */
.app-wrap {
    display: none;
    min-height: 100vh;
    padding-bottom: 32px;
}
.app-wrap.active { display: block; }

.page { display: none; padding: 0 16px; }
.page.active { display: block; }

/* ── TOP BAR ── */
.topbar {
    background: var(--surface);
    padding: 10px 16px;
    display: flex; align-items: center; gap: 8px;
    position: sticky; top: 0; z-index: 200;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.tb-back {
    display: none; align-items: center; gap: 5px;
    background: var(--red-lt); color: var(--red);
    border: none; border-radius: var(--radius-sm);
    padding: 7px 12px; font-size: 13px; font-weight: 600;
    font-family: var(--font); cursor: pointer;
}
.tb-back.show { display: flex; }
.tb-back svg { width: 14px; height: 14px; }
.tb-back:active { opacity: 0.75; }

.tb-brand {
    flex: 1; display: flex; align-items: center;
    justify-content: center; gap: 8px;
}
.tb-badge {
    width: 28px; height: 28px;
    background: var(--red); border-radius: 6px;
    color: white; font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.tb-brand span { font-size: 14px; font-weight: 700; color: var(--text); }

.tb-logout {
    display: flex; align-items: center; gap: 5px;
    background: #f8fafc; color: var(--text-2);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 7px 12px; font-size: 13px; font-weight: 600;
    font-family: var(--font); cursor: pointer; transition: all 0.15s;
}
.tb-logout svg { width: 14px; height: 14px; }
.tb-logout:hover { background: #f1f5f9; color: var(--text); }
.tb-logout:active { opacity: 0.75; }

/* ── HERO STRIP ── */
.dash-hero {
    background: linear-gradient(135deg, var(--red) 0%, #b91c1c 100%);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    margin: 16px 0 0;
    display: flex; align-items: center;
    justify-content: space-between;
    position: relative; overflow: hidden;
    box-shadow: 0 6px 20px rgba(220,38,38,0.25);
}
.dash-hero::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
}
.dash-hero::after {
    content: '';
    position: absolute; bottom: -30px; left: 20px;
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.dash-hero--admin {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    box-shadow: 0 6px 20px rgba(15,23,42,0.3);
}

.dash-hero-text { position: relative; z-index: 1; }
.dash-welcome  { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 500; margin-bottom: 4px; }
.dash-hero-text h2 { font-size: 22px; font-weight: 800; color: white; letter-spacing: -0.4px; margin-bottom: 4px; }
.dash-date     { font-size: 12px; color: rgba(255,255,255,0.6); }

.dash-avatar {
    width: 50px; height: 50px; border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: white; font-size: 18px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
}
.dash-avatar--admin { background: rgba(255,255,255,0.1); }

/* ── KPI STATS ── */
.stats-row {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 10px; margin: 14px 0 0;
}
.stat-tile {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-sm);
}
.st-icon {
    width: 38px; height: 38px; border-radius: 9px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.st-icon svg { width: 18px; height: 18px; }
.st-blue  { background: var(--blue-lt);  color: var(--blue); }
.st-green { background: var(--green-lt); color: var(--green); }
.st-amber { background: var(--amber-lt); color: var(--amber); }
.st-red   { background: var(--red-lt);   color: var(--red); }

.st-body { display: flex; flex-direction: column; gap: 2px; }
.st-body strong { font-size: 26px; font-weight: 800; color: var(--text); line-height: 1; letter-spacing: -0.5px; }
.st-body span   { font-size: 11px; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }

/* ── SECTION TITLE ── */
.sec-title {
    font-size: 13px; font-weight: 700;
    color: var(--text-2); text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 10px;
}

/* ── ACTION GRID ── */
.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}
.act {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 8px;
    cursor: pointer; text-align: center;
    font-family: var(--font); font-size: 11px;
    font-weight: 600; color: var(--text-2);
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.1s, background 0.15s;
}
.act:active { transform: scale(0.96); }
.act:hover  { border-color: var(--red); box-shadow: 0 4px 14px var(--red-glow); background: var(--red-lt); color: var(--red); }
.act:hover .act-icon { color: var(--red); }

.act--accent {
    background: var(--red); border-color: var(--red);
    color: white;
    box-shadow: 0 4px 12px rgba(220,38,38,0.25);
}
.act--accent .act-icon { color: white; }
.act--accent:hover { background: var(--red-dk); border-color: var(--red-dk); color: white; box-shadow: 0 6px 18px rgba(220,38,38,0.35); }

.act-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; color: var(--text-2); }
.act-icon svg { width: 18px; height: 18px; }
.act--accent .act-icon { background: rgba(255,255,255,0.15); }
.act span { text-transform: uppercase; letter-spacing: 0.3px; }

/* ── PAGE HEADER ── */
.page-head {
    padding: 18px 0 10px;
}
.page-head h2 {
    font-size: 20px; font-weight: 800;
    color: var(--text); letter-spacing: -0.4px;
}

/* ── SEARCH BAR ── */
.searchbar {
    display: flex; align-items: center; gap: 10px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    margin-bottom: 10px;
    transition: border-color 0.15s;
}
.searchbar:focus-within { border-color: var(--red); }
.searchbar svg { width: 16px; height: 16px; color: var(--text-3); flex-shrink: 0; }
.searchbar input {
    flex: 1; border: none; background: transparent;
    font-size: 14px; font-family: var(--font); color: var(--text);
    outline: none;
}
.searchbar input::placeholder { color: var(--text-3); }

.list-count {
    font-size: 12px; color: var(--text-3);
    font-weight: 600; margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 0.3px;
}

/* ── CARDS ── */
.lead-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--red);
    transition: box-shadow 0.15s;
}
.lead-card.status-complete {
    border-left-color: var(--green);
    background: #fdfffe;
}
.lead-card.status-followup {
    border-left-color: var(--amber);
}
.lead-card.status-notreachable {
    border-left-color: var(--amber);
    background: #fffdf5;
}

.lc-head {
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 10px; margin-bottom: 10px;
}
.lc-name {
    font-size: 15px; font-weight: 700; color: var(--text);
    letter-spacing: -0.2px;
}
.lc-phone {
    font-size: 12px; color: var(--text-3);
    margin-top: 2px; font-weight: 500;
}

.status-pill {
    display: inline-flex; align-items: center;
    padding: 3px 9px; border-radius: 20px;
    font-size: 11px; font-weight: 700;
    white-space: nowrap; flex-shrink: 0;
}
.pill-red    { background: var(--red-lt);   color: var(--red);   }
.pill-green  { background: var(--green-lt); color: var(--green); }
.pill-blue   { background: var(--blue-lt);  color: var(--blue);  }
.pill-amber  { background: var(--amber-lt); color: var(--amber); }
.pill-slate  { background: #f1f5f9; color: var(--text-2); }

.lc-meta {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 12px;
}
.meta-chip {
    display: flex; align-items: center; gap: 5px;
    background: #f8fafc; border: 1px solid var(--border);
    border-radius: 6px; padding: 3px 8px;
    font-size: 12px; color: var(--text-2); font-weight: 500;
}
.meta-chip svg { width: 12px; height: 12px; color: var(--text-3); }

.lc-notes {
    font-size: 13px; color: var(--text-2);
    font-style: italic; background: #f8fafc;
    border-radius: 6px; padding: 8px 10px;
    margin-bottom: 12px;
    border-left: 2px solid var(--border);
}

.lc-actions {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.lc-actions.three { grid-template-columns: repeat(3, 1fr); }

.lc-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 5px; padding: 9px 6px;
    border: none; border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 12px; font-weight: 700;
    cursor: pointer; transition: all 0.15s;
    text-transform: uppercase; letter-spacing: 0.2px;
}
.lc-btn:active { transform: scale(0.96); }
.lc-btn svg { width: 13px; height: 13px; }

.btn-call   { background: var(--green-lt); color: var(--green); }
.btn-call:hover { background: #dcfce7; }
.btn-edit   { background: var(--blue-lt);  color: var(--blue); }
.btn-edit:hover { background: #dbeafe; }
.btn-share  { background: #f0fdf4; color: #15803d; }
.btn-share:hover { background: #dcfce7; }

/* ── ACTIVITY ITEMS ── */
.act-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 8px;
    box-shadow: var(--shadow-sm);
}
.act-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green); flex-shrink: 0; margin-top: 4px;
}
.act-text { font-size: 13px; color: var(--text); line-height: 1.4; }
.act-time { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* ── REPORT TABLE ── */
.report-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.rb-head {
    background: linear-gradient(135deg, var(--red), #b91c1c);
    color: white; padding: 14px 20px;
    font-size: 14px; font-weight: 700;
    letter-spacing: -0.2px;
}
.rb-row {
    display: flex; justify-content: space-between;
    align-items: center; padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px; color: var(--text-2);
}
.rb-last { border-bottom: none; }
.rb-row b { font-size: 18px; font-weight: 800; color: var(--text); }
.val-green { color: var(--green) !important; }
.val-amber { color: var(--amber) !important; }
.val-blue  { color: var(--blue)  !important; }
.val-red   { color: var(--red)   !important; }

/* ── NO DATA ── */
.no-data {
    text-align: center; padding: 48px 16px;
    color: var(--text-3);
}
.nd-icon {
    width: 48px; height: 48px;
    background: #f1f5f9; border-radius: 12px;
    margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-3);
}
.nd-icon svg { width: 24px; height: 24px; }
.nd-text { font-size: 14px; font-weight: 600; }

/* ═══════════════════════════════════════
   MODAL (BOTTOM SHEET)
═══════════════════════════════════════ */
.modal-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
    z-index: 1000;
    align-items: flex-end;
    justify-content: center;
}
.modal-backdrop.active { display: flex; }

.modal-sheet {
    background: var(--surface);
    border-radius: 20px 20px 0 0;
    padding: 6px 24px 36px;
    width: 100%; max-width: 520px;
    max-height: 90vh; overflow-y: auto;
    text-align: center;
    animation: sheetRise 0.3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes sheetRise {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}

.sheet-handle {
    width: 36px; height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.modal-icon-wrap {
    font-size: 36px; line-height: 1;
    margin-bottom: 12px;
    min-height: 36px;
}
.modal-title {
    font-size: 20px; font-weight: 800;
    color: var(--text); letter-spacing: -0.3px;
    margin-bottom: 8px;
}
.modal-desc {
    font-size: 14px; color: var(--text-2);
    margin-bottom: 20px; line-height: 1.5;
    white-space: pre-line;
}

.modal-btns {
    display: flex; gap: 10px; margin-top: 20px;
}
.modal-btn {
    flex: 1; padding: 12px 16px;
    border: none; border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 14px; font-weight: 700;
    cursor: pointer; transition: all 0.15s;
}
.modal-btn:active { transform: scale(0.97); }
.modal-btn.primary {
    background: var(--red); color: white;
    box-shadow: 0 4px 12px rgba(220,38,38,0.3);
}
.modal-btn.primary:hover { background: var(--red-dk); }
.modal-btn.secondary {
    background: #f1f5f9; color: var(--text-2);
    border: 1px solid var(--border);
}
.modal-btn.secondary:hover { background: var(--border); }

/* Modal form */
.modal-form { text-align: left; margin-bottom: 4px; }
.modal-form-group { margin-bottom: 14px; }
.modal-form-group label {
    display: block; margin-bottom: 6px;
    font-size: 11px; font-weight: 700; color: var(--text-2);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px; font-family: var(--font); color: var(--text);
    background: #fafbfc;
    transition: border-color 0.15s, background 0.15s;
}
.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
    outline: none; border-color: var(--red); background: white;
}
.modal-form-group textarea { min-height: 72px; resize: vertical; }

/* Detail section in modal */
.customer-detail-section {
    text-align: left;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    margin-bottom: 16px;
}
.customer-detail-row {
    display: flex; justify-content: space-between;
    align-items: center; gap: 8px;
    padding: 8px 0;
    font-size: 13px; color: var(--text);
    border-bottom: 1px solid var(--border);
}
.customer-detail-row:last-child { border-bottom: none; }
.customer-detail-row strong {
    font-size: 11px; color: var(--text-3);
    font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.3px; white-space: nowrap;
}

/* Full-width call button in modal */
.modal-call-btn {
    width: 100%; padding: 12px;
    background: var(--green-lt); color: var(--green);
    border: none; border-radius: var(--radius-sm);
    font-family: var(--font); font-size: 14px; font-weight: 700;
    cursor: pointer; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.15s;
}
.modal-call-btn:hover { background: #dcfce7; }
.modal-call-btn:active { transform: scale(0.98); }
.modal-call-btn svg { width: 16px; height: 16px; }

/* Loader */
.loader {
    width: 32px; height: 32px;
    border: 3px solid var(--border);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 20px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-dk); border-radius: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 620px) {
    .login-panel--left { display: none; }
    .login-panel--right { flex: 1; padding: 24px 20px; }
    .login-form-card { padding: 32px 24px; }
}
@media (max-width: 360px) {
    .action-grid { grid-template-columns: repeat(2, 1fr); }
}
