/* ═══════════════════════════════════════════════════
   SIMPLIFI — Global Stylesheet
   Design System: Plus Jakarta Sans · Primary #1565C0
   ═══════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; overflow: hidden; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #F5F6FA;
  overscroll-behavior: none;
  -webkit-tap-highlight-color: transparent;
}
input, button, textarea, select { font-family: inherit; }
input::placeholder { color: #C2C9D8; }
input:focus, textarea:focus { outline: none; }
button { cursor: pointer; border: none; background: none; }
img { display: block; }
a { text-decoration: none; color: inherit; }

/* ── Design Tokens ── */
:root {
  /* Brand */
  --c-primary:        #1565C0;
  --c-primary-light:  #EEF3FB;
  --c-primary-mid:    #1E88E5;
  --c-navy:           #1A2B4A;
  --c-navy-mid:       #2C3E5D;

  /* Semantic */
  --c-success:        #1B8A4C;
  --c-success-light:  #E8F5E9;
  --c-warning:        #B45309;
  --c-warning-light:  #FFF8E1;
  --c-danger:         #C62828;
  --c-danger-light:   #FFEBEE;

  /* Neutral */
  --c-surface:        #F5F6FA;
  --c-card:           #FFFFFF;
  --c-border:         #EDF0F7;
  --c-muted:          #8A94A6;
  --c-hint:           #6e737e;
  --c-text-primary:   #1A2B4A;
  --c-text-secondary: #4B5670;

  /* Spacing */
  --sp-xs:  4px;
  --sp-sm:  8px;
  --sp-md:  12px;
  --sp-base:16px;
  --sp-lg:  20px;
  --sp-xl:  24px;
  --sp-2xl: 32px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   18px;
  --r-2xl:  22px;
  --r-full: 9999px;

  /* Elevation */
  --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-modal: 0 20px 60px rgba(0,0,0,.18);
}

/* ── App Shell ── */
#app {
  width: 100%;
  max-width: 430px;
  height: 100dvh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  position: relative;
  overflow: hidden;
}

/* ── Screen ── */
.screen {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  animation: screenIn .2s ease-out;
}
.screen.active { display: flex; }
@keyframes screenIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.screen.back-anim {
  animation: screenBack .2s ease-out;
}
@keyframes screenBack {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Scroll Areas ── */
.scroll-y {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
}
.scroll-y::-webkit-scrollbar { display: none; }

.hscroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--sp-base);
}
.hscroll::-webkit-scrollbar { display: none; }

/* ── Status Bar ── */
.status-bar {
  background: var(--c-card);
  padding: 48px 20px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.status-bar .time {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
}
.status-bar .icons {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--c-navy);
  font-size: 14px;
}

/* ── Top Header ── */
.top-header {
  background: var(--c-card);
  padding: 6px var(--sp-base) 12px;
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}
.top-header.with-back {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-header .header-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--c-navy);
  flex: 1;
}
.back-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--c-surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy);
  flex-shrink: 0;
}
.back-btn i { font-size: 18px; }
.icon-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--c-surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-navy);
  flex-shrink: 0;
}
.icon-btn i { font-size: 18px; }
.icon-btn.primary-tint { background: var(--c-primary-light); color: var(--c-primary); }

/* ── Bottom Nav ── */
.bottom-nav {
  background: var(--c-card);
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-shrink: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 2.5px solid transparent;
  transition: border-color .15s;
  cursor: pointer;
}
.nav-item.active { border-top-color: var(--c-primary); }
.nav-item i {
  font-size: 22px;
  color: var(--c-hint);
  line-height: 1;
  transition: color .15s;
}
.nav-item.active i { color: var(--c-primary); }
.nav-item .nav-lbl {
  font-size: 10px;
  font-weight: 600;
  color: var(--c-hint);
  line-height: 1;
  transition: color .15s;
}
.nav-item.active .nav-lbl { color: var(--c-primary); }
.nav-badge-wrap { position: relative; display: inline-flex; }
.nav-badge {
  position: absolute;
  top: -3px; right: -5px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--c-danger);
  border: 1.5px solid var(--c-card);
}

/* ── Section Header ── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--sp-base) 10px;
}
.section-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-navy);
}
.view-all-btn {
  display: flex; align-items: center; gap: 3px;
  font-size: 12px; font-weight: 600;
  color: var(--c-primary);
}
.view-all-btn i { font-size: 13px; }

/* ── Cards ── */
.card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
}
.card-sm { border-radius: var(--r-lg); }
.card-lg { border-radius: var(--r-2xl); }
.card-p { padding: var(--sp-base); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  font-weight: 700; font-size: 14px;
  border-radius: var(--r-lg);
  padding: 12px 20px;
  transition: opacity .15s, transform .1s;
  cursor: pointer;
  border: none;
}
.btn:active { opacity: .85; transform: scale(.98); }
.btn-primary { background: var(--c-primary); color: #fff; }
.btn-secondary { background: var(--c-surface); color: var(--c-text-secondary); border: 1px solid var(--c-border); }
.btn-ghost { background: transparent; border: 1.5px solid var(--c-primary); color: var(--c-primary); }
.btn-danger { background: var(--c-danger); color: #fff; }
.btn-success { background: var(--c-success-light); color: var(--c-success); }
.btn-whatsapp { background: #E8F5E9; color: #1B5E20; border: 1px solid #C8E6C9; }
.btn-sm { font-size: 12px; padding: 8px 14px; border-radius: var(--r-md); }
.btn-lg { font-size: 15px; padding: 14px 24px; border-radius: var(--r-xl); }
.btn-full { width: 100%; }
.btn i { font-size: 17px; }
.btn-sm i { font-size: 14px; }

/* ── Badges / Pills ── */
.badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: var(--r-full);
}
.badge-primary { background: var(--c-primary-light); color: var(--c-primary); }
.badge-success { background: var(--c-success-light); color: var(--c-success); }
.badge-warning { background: var(--c-warning-light); color: var(--c-warning); }
.badge-danger  { background: var(--c-danger-light);  color: var(--c-danger); }
.badge-navy    { background: #E0E7FF; color: #3730A3; }
.badge-purple  { background: #F3E8FF; color: #7C3AED; }
.badge-gray    { background: var(--c-surface); color: var(--c-text-secondary); border: 1px solid var(--c-border); }
.badge-live    { background: var(--c-primary); color: #fff; }
.badge-soon    { background: var(--c-warning-light); color: var(--c-warning); font-size: 8px; }

/* ── Filter Pill (toggle) ── */
.filter-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 13px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all .15s; white-space: nowrap; flex-shrink: 0;
}
.filter-pill.on  { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.filter-pill.off { background: var(--c-surface); color: var(--c-text-secondary); border-color: var(--c-border); }

/* ── Search Bar ── */
.search-bar {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.search-bar i.search-icon { font-size: 18px; color: var(--c-hint); flex-shrink: 0; }
.search-bar input {
  flex: 1; background: none; border: none;
  font-size: 13px; font-weight: 500; color: var(--c-navy);
}
.search-bar .filter-trigger {
  display: flex; align-items: center; gap: 4px;
  background: var(--c-primary-light);
  color: var(--c-primary);
  font-size: 11px; font-weight: 700;
  padding: 5px 10px; border-radius: var(--r-sm);
  border: none; cursor: pointer;
}
.search-bar .filter-trigger i { font-size: 13px; }

/* ── Inputs ── */
.input-group { display: flex; flex-direction: column; gap: 5px; }
.input-label { font-size: 12px; font-weight: 600; color: var(--c-text-secondary); }
.input-field {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-size: 14px; color: var(--c-navy);
  width: 100%;
  transition: border-color .15s;
}
.input-field:focus { border-color: var(--c-primary); }
.input-hint { font-size: 11px; margin-top: 3px; }
.input-hint.error { color: var(--c-danger); }
.input-hint.ok    { color: var(--c-success); }

/* ── Toggle Switch ── */
.toggle {
  width: 46px; height: 26px; border-radius: var(--r-full);
  background: var(--c-primary);
  display: flex; align-items: center;
  padding: 2px; transition: background .2s; cursor: pointer;
  flex-shrink: 0;
}
.toggle.off { background: #D1D5DB; }
.toggle-thumb {
  width: 22px; height: 22px;
  border-radius: 50%; background: #fff;
  margin-left: auto;
  transition: margin .2s;
}
.toggle.off .toggle-thumb { margin-left: 0; }

/* ── Avatar ── */
.avatar {
  border-radius: var(--r-lg);
  overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--c-primary-light);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-sm  { width: 36px; height: 36px; }
.avatar-md  { width: 44px; height: 44px; border-radius: var(--r-lg); }
.avatar-lg  { width: 56px; height: 56px; border-radius: 16px; }
.avatar-xl  { width: 72px; height: 72px; border-radius: 20px; }
.avatar-initials {
  border-radius: var(--r-lg); overflow: hidden; flex-shrink: 0;
  background: var(--c-primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
}

/* ── Feature Icon ── */
.feat-icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon i { font-size: 22px; }
.fi-blue   { background: #DBEAFE; color: #1D4ED8; border: 1px solid #1D4ED8 }
.fi-green  { background: #DCFCE7; color: #15803D; border: 1px solid #15803D }
.fi-indigo { background: #E0E7FF; color: #3730A3; border: 1px solid #3730A3}
.fi-purple { background: #F3E8FF; color: #7C3AED; border: 1px solid #7C3AED}
.fi-amber  { background: #FEF3C7; color: #B45309; border: 1px solid #B45309}
.fi-teal   { background: #CCFBF1; color: #0F766E; border: 1px solid #0F766E}
.fi-red    { background: #FEE2E2; color: #B91C1C; border: 1px solid #B91C1C}
.fi-pink   { background: #FCE7F3; color: #9D174D; border: 1px solid #9D174D}


/* ── Hero / Banner ── */
.hero-overlay {
  background: linear-gradient(110deg, rgba(18,60,140,.88) 0%, rgba(18,60,140,.55) 55%, rgba(18,60,140,.12) 100%);
}
.promo-overlay {
  background: linear-gradient(100deg, rgba(26,43,74,.93) 0%, rgba(26,43,74,.7) 55%, rgba(26,43,74,.2) 100%);
}
.dark-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.55) 100%);
}

/* ── Status Chips (consultations) ── */
.status-upcoming   { background: #DBEAFE; color: #1E40AF; }
.status-approval   { background: #FEF3C7; color: #92400E; }
.status-paid       { background: #DCFCE7; color: #14532D; }
.status-completed  { background: #F3E8FF; color: #5B21B6; }
.status-cancelled  { background: #FEE2E2; color: #991B1B; }
.status-unsuccessful{ background: #FEF3C7; color: #92400E; }
.status-expired    { background: #F5F6FA; color: #8A94A6; border: 1px solid #EDF0F7; }
.status-live       { background: var(--c-primary); color: #fff; }
.status-waiting    { background: #FEF9C3; color: #713F12; }

/* ── Alert / Toast ── */
.alert {
  border-radius: var(--r-md);
  padding: 11px 14px;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; font-weight: 500;
}
.alert i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.alert-info    { background: var(--c-primary-light); color: #0D3A7A; }
.alert-success { background: var(--c-success-light); color: #1B5E20; }
.alert-warning { background: var(--c-warning-light); color: #7B5800; }
.alert-danger  { background: var(--c-danger-light);  color: #B71C1C; }

/* ── Modal / Sheet Backdrop ── */
.sheet-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 100;
  display: none;
  align-items: flex-end;
  justify-content: center;
}
.sheet-backdrop.open { display: flex; animation: fadeIn .15s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.sheet-panel {
  background: var(--c-card);
  border-radius: 24px 24px 0 0;
  width: 100%; max-width: 430px;
  max-height: 90dvh;
  overflow-y: auto;
  animation: sheetUp .22s ease-out;
}
.sheet-panel::-webkit-scrollbar { display: none; }
@keyframes sheetUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.sheet-handle {
  width: 36px; height: 4px;
  background: #E5E7EB; border-radius: 2px;
  margin: 12px auto 0;
}

/* ── Modal (center) ── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 110;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fadeIn .15s ease-out; }
.modal-panel {
  background: var(--c-card);
  border-radius: 20px;
  padding: 24px 20px;
  width: 100%; max-width: 340px;
  animation: modalPop .2s ease-out;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(.93); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-title { font-size: 17px; font-weight: 800; color: var(--c-navy); text-align: center; }
.modal-body  { font-size: 13px; color: var(--c-muted); text-align: center; margin: 10px 0 20px; line-height: 1.6; }

/* ── Countdown / Timer ── */
.countdown {
  background: var(--c-primary);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  text-align: center; color: #fff;
}
.countdown.warning { background: var(--c-warning-light); }
.countdown .cd-label { font-size: 11px; font-weight: 600; opacity: .75; text-transform: uppercase; letter-spacing: .8px; }
.countdown .cd-digits { font-size: 36px; font-weight: 800; letter-spacing: 2px; font-variant-numeric: tabular-nums; margin: 4px 0; }
.countdown.warning .cd-label  { color: var(--c-warning); opacity: 1; }
.countdown.warning .cd-digits { color: var(--c-danger); }

/* ── Empty State ── */
.empty-state {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 48px 24px;
  gap: 10px;
}
.empty-state .empty-icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  background: var(--c-primary-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.empty-state .empty-icon i { font-size: 28px; color: var(--c-primary); opacity: .6; }
.empty-state .empty-title { font-size: 15px; font-weight: 700; color: var(--c-navy); }
.empty-state .empty-body  { font-size: 13px; color: var(--c-muted); max-width: 240px; line-height: 1.5; }

/* ── Divider ── */
.divider { height: 1px; background: var(--c-border); }

/* ── List Row ── */
.list-row {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-border);
}
.list-row:last-child { border-bottom: none; }
.list-row .row-icon {
  width: 34px; height: 34px;
  border-radius: var(--r-md);
  background: var(--c-primary-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.list-row .row-icon i { font-size: 17px; color: var(--c-primary); }
.list-row .row-icon.danger  { background: var(--c-danger-light); }
.list-row .row-icon.danger i { color: var(--c-danger); }
.list-row .row-label { font-size: 13px; font-weight: 600; color: var(--c-navy); flex: 1; }
.list-row .row-arr   { color: var(--c-hint); font-size: 16px; }

/* ── Progress Steps ── */
.steps { display: flex; align-items: center; }
.step-item { display: flex; flex-direction: column; align-items: center; flex: 1; }
.step-circle {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.step-circle.done   { background: var(--c-success); color: #fff; }
.step-circle.active { background: var(--c-primary); color: #fff; }
.step-circle.idle   { background: #E5E7EB; color: var(--c-muted); }
.step-label { font-size: 9px; font-weight: 600; margin-top: 5px; text-align: center; }
.step-label.done   { color: var(--c-success); }
.step-label.active { color: var(--c-primary); }
.step-label.idle   { color: var(--c-muted); }
.step-line { flex: 1; height: 2px; background: #E5E7EB; margin-bottom: 18px; }
.step-line.done { background: var(--c-success); }

/* ── Tabs ── */
.tab-bar {
  background: var(--c-surface);
  border-radius: var(--r-md);
  padding: 3px;
  display: flex; gap: 2px;
}
.tab-item {
  flex: 1; text-align: center;
  padding: 8px 4px; border-radius: 10px;
  font-size: 11px; font-weight: 600;
  color: var(--c-muted); cursor: pointer;
  white-space: nowrap;
  transition: all .15s;
}
.tab-item.active {
  background: var(--c-card);
  color: var(--c-primary);
}

/* ── Date Chip ── */
.date-chip {
  min-width: 48px; padding: 8px 6px;
  border-radius: var(--r-md); text-align: center;
  cursor: pointer; flex-shrink: 0;
  transition: background .15s;
}
.date-chip .day-name { font-size: 10px; font-weight: 600; color: var(--c-muted); text-transform: uppercase; }
.date-chip .day-num  { font-size: 17px; font-weight: 700; color: var(--c-navy); margin-top: 2px; }
.date-chip.active { background: var(--c-primary); }
.date-chip.active .day-name { color: rgba(255,255,255,.7); }
.date-chip.active .day-num  { color: #fff; }
.date-chip.idle { background: var(--c-surface); }

/* ── Time Slot ── */
.slot-chip {
  flex: 1; border-radius: var(--r-md);
  padding: 10px 6px; text-align: center; cursor: pointer;
  transition: all .15s;
}
.slot-chip .slot-time  { font-size: 12px; font-weight: 700; }
.slot-chip .slot-label { font-size: 10px; margin-top: 2px; }
.slot-chip.available  { background: var(--c-primary-light); }
.slot-chip.available .slot-time  { color: var(--c-primary); }
.slot-chip.available .slot-label { color: var(--c-primary); }
.slot-chip.selected   { background: var(--c-primary); }
.slot-chip.selected .slot-time  { color: #fff; }
.slot-chip.selected .slot-label { color: rgba(255,255,255,.75); }
.slot-chip.taken      { background: var(--c-surface); }
.slot-chip.taken .slot-time  { color: var(--c-hint); }
.slot-chip.taken .slot-label { color: var(--c-hint); }

/* ── Quotation Card ── */
.quot-card {
  background: var(--c-primary);
  border-radius: var(--r-xl);
  padding: 20px; color: #fff; text-align: center;
}
.quot-card.pending { background: var(--c-primary); }
.quot-card.warning-state { background: #92400E; }
.quot-status { font-size: 11px; font-weight: 600; opacity: .7; text-transform: uppercase; letter-spacing: .8px; }
.quot-amount { font-size: 30px; font-weight: 800; margin: 6px 0 2px; }
.quot-type   { font-size: 12px; opacity: .65; }

/* ── Notification Item ── */
.notif-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--c-border);
  cursor: pointer;
}
.notif-item:last-child { border-bottom: none; }
.notif-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-icon i { font-size: 18px; }
.ni-blue   { background: var(--c-primary-light); color: var(--c-primary); }
.ni-green  { background: var(--c-success-light); color: var(--c-success); }
.ni-amber  { background: var(--c-warning-light); color: var(--c-warning); }
.ni-red    { background: var(--c-danger-light);  color: var(--c-danger); }
.notif-title { font-size: 13px; font-weight: 700; color: var(--c-navy); }
.notif-body  { font-size: 11px; color: var(--c-muted); margin-top: 2px; line-height: 1.4; }
.notif-time  { font-size: 10px; color: var(--c-hint); }
.notif-unread { width: 7px; height: 7px; border-radius: 50%; background: var(--c-primary); flex-shrink: 0; margin-top: 6px; }

/* ── Lawyer Card (list) ── */
.lawyer-list-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 14px;
  cursor: pointer;
  transition: border-color .15s;
}
.lawyer-list-card:active { border-color: var(--c-primary-light); }

/* ── Utility ── */
.text-primary   { color: var(--c-primary); }
.text-navy      { color: var(--c-navy); }
.text-muted     { color: var(--c-muted); }
.text-hint      { color: var(--c-hint); }
.text-secondary { color: var(--c-text-secondary); }
.text-success   { color: var(--c-success); }
.text-danger    { color: var(--c-danger); }
.text-warning   { color: var(--c-warning); }
.font-xs  { font-size: 12px; }
.font-sm  { font-size: 13px; }
.font-md  { font-size: 14px; }
.font-base{ font-size: 15px; }
.font-lg  { font-size: 16px; }
.font-xl  { font-size: 17px; }
.fw-500   { font-weight: 500; }
.fw-600   { font-weight: 600; }
.fw-700   { font-weight: 700; }
.fw-800   { font-weight: 800; }
.px-page  { padding-left: var(--sp-base); padding-right: var(--sp-base); }
.gap-xs { gap: var(--sp-xs); }
.gap-sm { gap: var(--sp-sm); }
.gap-md { gap: var(--sp-md); }
.mt-section { margin-top: var(--sp-xl); }
.spacer-sm { height: 12px; }
.spacer-md { height: 20px; }
.spacer-lg { height: 32px; }
