/* ============================================================
   GSM.CX — Main Stylesheet
   Bootstrap 5.3 base, custom components on top
   ============================================================ */

/* ---------- Theme tokens ----------
   Light is the default. `prefers-color-scheme: dark` auto-switches when
   the user hasn't picked anything. Explicit [data-theme] attributes on
   <html> (set by theme-toggle.js) override the system preference.
   Brand-dark surfaces (topbar, sidebar, footer, hero, CTA, auth-page
   gradient) intentionally stay dark in both themes — they're a design
   choice, not a surface that flips. */
:root {
  --bg:          #f8fafc;
  --surface:     #ffffff;
  --surface-alt: #f1f5f9;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --primary:     #6366f1;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg:          #0a0e1a;
    --surface:     #151b2e;
    --surface-alt: #1e2538;
    --text:        #f1f5f9;
    --text-muted:  #94a3b8;
    --border:      #2d3548;
    /* Bootstrap var remap — makes modals, dropdowns, forms, borders
       inherit our dark palette without per-component overrides. */
    --bs-body-bg:                  var(--bg);
    --bs-body-color:               var(--text);
    --bs-body-color-rgb:           241, 245, 249;
    --bs-secondary-color:          var(--text-muted);
    --bs-secondary-color-rgb:      148, 163, 184;
    --bs-tertiary-color:           var(--text-muted);
    --bs-border-color:             var(--border);
    --bs-border-color-translucent: var(--border);
    --bs-secondary-bg:             var(--surface-alt);
    --bs-tertiary-bg:              var(--surface-alt);
    --bs-modal-bg:                 var(--surface);
    --bs-modal-color:              var(--text);
    --bs-modal-border-color:       var(--border);
    --bs-dropdown-bg:              var(--surface);
    --bs-dropdown-color:           var(--text);
    --bs-dropdown-border-color:    var(--border);
    --bs-dropdown-link-color:      var(--text);
    --bs-dropdown-link-hover-bg:   var(--surface-alt);
    --bs-dropdown-link-hover-color:var(--text);
    --bs-emphasis-color:           var(--text);
    --bs-emphasis-color-rgb:       241, 245, 249;
    --bs-table-color:              var(--text);
    --bs-table-bg:                 transparent;
    --bs-table-border-color:       var(--border);
    --bs-table-striped-color:      var(--text);
    --bs-table-striped-bg:         var(--surface-alt);
    --bs-table-hover-color:        var(--text);
    --bs-table-hover-bg:           var(--surface-alt);
  }
}
[data-theme="light"] {
  --bg:          #f8fafc;
  --surface:     #ffffff;
  --surface-alt: #f1f5f9;
  --text:        #1e293b;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
}
[data-theme="dark"] {
  --bg:          #0a0e1a;
  --surface:     #151b2e;
  --surface-alt: #1e2538;
  --text:        #f1f5f9;
  --text-muted:  #94a3b8;
  --border:      #2d3548;
  --bs-body-bg:                  var(--bg);
  --bs-body-color:               var(--text);
  --bs-body-color-rgb:           241, 245, 249;
  --bs-secondary-color:          var(--text-muted);
  --bs-secondary-color-rgb:      148, 163, 184;
  --bs-tertiary-color:           var(--text-muted);
  --bs-border-color:             var(--border);
  --bs-border-color-translucent: var(--border);
  --bs-secondary-bg:             var(--surface-alt);
  --bs-tertiary-bg:              var(--surface-alt);
  --bs-modal-bg:                 var(--surface);
  --bs-modal-color:              var(--text);
  --bs-modal-border-color:       var(--border);
  --bs-dropdown-bg:              var(--surface);
  --bs-dropdown-color:           var(--text);
  --bs-dropdown-border-color:    var(--border);
  --bs-dropdown-link-color:      var(--text);
  --bs-dropdown-link-hover-bg:   var(--surface-alt);
  --bs-dropdown-link-hover-color:var(--text);
  --bs-emphasis-color:           var(--text);
  --bs-emphasis-color-rgb:       241, 245, 249;
  --bs-table-color:              var(--text);
  --bs-table-bg:                 transparent;
  --bs-table-border-color:       var(--border);
  --bs-table-striped-color:      var(--text);
  --bs-table-striped-bg:         var(--surface-alt);
  --bs-table-hover-color:        var(--text);
  --bs-table-hover-bg:           var(--surface-alt);
}

/* ---------- Bootstrap utility overrides for dark theme ----------
   Pages use `.bg-light`, `.bg-white`, `.text-dark` (mostly on badges and
   info boxes) — these hardcode near-white/near-black and ignore the theme.
   Remap them to theme vars so every table badge and panel stays legible. */
[data-theme="dark"] .bg-light,
[data-theme="dark"] .bg-white { background-color: var(--surface-alt) !important; color: var(--text) !important; }
[data-theme="dark"] .text-dark { color: var(--text) !important; }
[data-theme="dark"] .navbar.bg-white { background-color: var(--surface) !important; border-bottom: 1px solid var(--border); }
[data-theme="dark"] .navbar-light .navbar-brand,
[data-theme="dark"] .navbar-light .nav-link { color: var(--text); }
[data-theme="dark"] .navbar-light .nav-link:hover { color: var(--primary); }

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .bg-light,
  :root:not([data-theme="light"]) .bg-white { background-color: var(--surface-alt) !important; color: var(--text) !important; }
  :root:not([data-theme="light"]) .text-dark { color: var(--text) !important; }
  :root:not([data-theme="light"]) .navbar.bg-white { background-color: var(--surface) !important; border-bottom: 1px solid var(--border); }
  :root:not([data-theme="light"]) .navbar-light .navbar-brand,
  :root:not([data-theme="light"]) .navbar-light .nav-link { color: var(--text); }
  :root:not([data-theme="light"]) .navbar-light .nav-link:hover { color: var(--primary); }
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: background-color .2s, color .2s;
}
a { text-decoration: none; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.font-mono { font-family: 'Courier New', monospace; }

/* ---------- Topbar ---------- */
.topbar {
  background: #0f172a;
  color: #94a3b8;
  font-size: .78rem;
  padding: .4rem 0;
  position: relative;
  z-index: 1030; /* above .navbar.sticky-top (1020) so currency/lang dropdowns render over it */
}
.topbar a, .topbar-link {
  color: #94a3b8;
  transition: color .2s;
}
.topbar a:hover, .topbar-link:hover { color: #fff; }
.topbar .dropdown-menu { font-size: .82rem; min-width: 100px; z-index: 1031; }

/* ---------- Navbar ---------- */
.navbar-brand .brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar { border-bottom: 1px solid var(--border); transition: background-color .2s, border-color .2s; }
.navbar-light.bg-white { background: var(--surface) !important; }
.nav-link { font-weight: 500; color: var(--text-muted) !important; font-size: .9rem; }
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,.2) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.4);
  color: #a5b4fc;
  font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 1.2rem;
}
/* Hero is a brand-dark zone (purple gradient, both themes) — force light text. */
.hero, .hero * { color: #f8fafc; }
.hero h1,
.hero .hero-title { color: #ffffff; font-weight: 800; line-height: 1.15; }
.hero h1 span,
.hero .hero-accent { background: linear-gradient(135deg,#818cf8,#c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; color: transparent; }
.hero .lead,
.hero .hero-subtitle { color: #cbd5e1; font-size: 1.1rem; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
.hero-stat-num,
.hero .stat-num { font-size: 1.6rem; font-weight: 800; color: #ffffff; line-height: 1.1; display: block; }
.hero-stat-label,
.hero .stat-label { font-size: .78rem; color: #94a3b8; display: block; }
.hero-illustration { font-size: 10rem; color: rgba(255,255,255,.15); }

/* Hero buttons — always on dark background */
.btn-hero-primary { background: #ffffff; color: #1e1b4b; border: 1px solid #ffffff; font-weight: 600; }
.btn-hero-primary:hover, .btn-hero-primary:focus { background: #e0e7ff; color: #1e1b4b; border-color: #e0e7ff; }
.btn-hero-outline { background: transparent; color: #ffffff; border: 1px solid rgba(255,255,255,.5); font-weight: 600; }
.btn-hero-outline:hover, .btn-hero-outline:focus { background: rgba(255,255,255,.1); color: #ffffff; border-color: #ffffff; }
.hero-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 2rem;
}
.hero-card h5 { color: #e2e8f0; font-weight: 600; }
.hero-card .table { color: #cbd5e1; font-size: .88rem; }
.hero-card .table thead th { color: #94a3b8; border-color: rgba(255,255,255,.08); }
.hero-card .table td { border-color: rgba(255,255,255,.06); }

/* ---------- Section ---------- */
.section-title { font-size: 1.75rem; font-weight: 800; color: var(--text); }
.section-subtitle { color: var(--text-muted); font-size: 1rem; }

/* ---------- Feature Cards ---------- */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s, background-color .2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(99,102,241,.1);
  border-color: #a5b4fc;
}
.feature-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg,#ede9fe,#e0e7ff);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #6366f1;
  margin-bottom: 1rem;
}
.feature-card h6 { font-weight: 700; font-size: .95rem; color: var(--text); }
.feature-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg,#6366f1,#8b5cf6);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: #fff;
}
.cta-section h2 { font-weight: 800; }
.cta-section p { opacity: .85; }

/* ---------- Footer ---------- */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}
.footer-brand { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.footer h6 { color: #e2e8f0; font-weight: 600; font-size: .85rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: #64748b; font-size: .87rem; display: block; margin-bottom: .4rem; transition: color .2s; }
.footer a:hover { color: #a5b4fc; }
.footer-divider { border-color: #1e293b; margin: 2rem 0 1rem; }
.footer-bottom { font-size: .82rem; color: #475569; }
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-link {
  width: 34px; height: 34px;
  background: #1e293b; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #64748b; font-size: .85rem;
  transition: background .2s, color .2s;
}
.social-link:hover { background: #6366f1; color: #fff !important; }

/* ---------- Auth Pages ---------- */
.auth-page {
  min-height: 100vh;
  background: linear-gradient(135deg,#0f172a,#1e1b4b);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.auth-card {
  background: var(--surface);
  color: var(--text);
  border-radius: 18px;
  padding: 2.5rem;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 60px rgba(0,0,0,.3);
  transition: background-color .2s, color .2s;
}
.auth-card-wide { max-width: 720px; }
.auth-logo { font-size: 1.4rem; font-weight: 800; text-align: center; margin-bottom: 1.5rem; }
.auth-logo span { background: linear-gradient(135deg,#6366f1,#8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.auth-title { font-size: 1.3rem; font-weight: 700; text-align: center; margin-bottom: .35rem; color: var(--text); }
.auth-sub { text-align: center; color: var(--text-muted); font-size: .88rem; margin-bottom: 1.75rem; }

/* Step indicators */
.step-indicators { display: flex; justify-content: center; gap: 0; margin-bottom: 2rem; }
.step-ind {
  display: flex; align-items: center;
}
.step-ind-dot {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: #94a3b8;
  background: #fff;
  transition: all .3s;
  position: relative; z-index: 1;
}
.step-ind-dot.active { border-color: #6366f1; color: #6366f1; background: #ede9fe; }
.step-ind-dot.done { border-color: #6366f1; background: #6366f1; color: #fff; }
.step-ind-line { width: 50px; height: 2px; background: #e2e8f0; }
.step-ind-line.done { background: #6366f1; }
.step-label { font-size: .7rem; color: #94a3b8; text-align: center; margin-top: .25rem; }
.step-label.active { color: #6366f1; font-weight: 600; }

.step-pane { display: none; }
.step-pane.active { display: block; }

/* ---------- Panel Layout ---------- */
.panel-body { background: var(--surface-alt); overflow-x: hidden; transition: background-color .2s; }
.panel-wrapper { display: flex; min-height: 100vh; }

/* Sidebar */
.sidebar {
  width: 240px;
  min-width: 240px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  transition: transform .3s;
  z-index: 100;
}
.sidebar-brand {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #1e293b;
}
/* Sidebar is always brand-dark in both themes. Force muted-on-dark colors
   so .text-muted / .small labels inside don't inherit Bootstrap's light-theme
   near-black (which would be invisible against the dark sidebar bg). */
.sidebar .text-muted,
.sidebar small,
.sidebar .small { color: #94a3b8 !important; }
.sidebar i { color: inherit; }
.sidebar-brand a {
  font-size: 1.1rem; font-weight: 800;
  background: linear-gradient(135deg,#818cf8,#c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sidebar-user {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #1e293b;
  margin-bottom: .5rem;
}
.sidebar-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg,#6366f1,#8b5cf6);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .85rem;
  flex-shrink: 0;
}
.sidebar-username { font-size: .85rem; font-weight: 600; color: #e2e8f0; }
.sidebar-balance { font-size: .75rem; color: #4ade80; }
.sidebar-nav { padding: .5rem 0; flex: 1; }
.sidebar-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 1.5rem;
  color: #64748b;
  font-size: .86rem; font-weight: 500;
  transition: background .2s, color .2s;
  border-left: 3px solid transparent;
}
.sidebar-link i { width: 18px; text-align: center; font-size: .9rem; }
.sidebar-link:hover { background: rgba(255,255,255,.04); color: #e2e8f0; }
.sidebar-link.active { background: rgba(99,102,241,.12); color: #a5b4fc; border-left-color: #6366f1; }
.sidebar-divider { border-color: #1e293b; margin: .5rem 1rem; }
.sidebar-section {
  padding: .6rem 1.5rem .25rem;
  font-size: .68rem; font-weight: 700; color: #64748b;
  letter-spacing: .08em; text-transform: uppercase;
}

/* Panel main */
.panel-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.panel-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: .875rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background-color .2s, border-color .2s;
}
.panel-header-title { font-weight: 700; font-size: 1rem; flex: 1; color: var(--text); }
.panel-header-right { display: flex; align-items: center; gap: .75rem; }
.panel-content { padding: 1.5rem; flex: 1; }
.sidebar-toggle { background: none; border: none; font-size: 1.1rem; color: var(--text-muted); cursor: pointer; }

/* ---------- Dashboard Stat Cards ---------- */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: box-shadow .2s, background-color .2s, border-color .2s;
}
.stat-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.stat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.stat-icon.purple { background: #ede9fe; color: #7c3aed; }
.stat-icon.blue   { background: #dbeafe; color: #2563eb; }
.stat-icon.green  { background: #dcfce7; color: #16a34a; }
.stat-icon.orange { background: #ffedd5; color: #ea580c; }
.stat-icon.red    { background: #fee2e2; color: #dc2626; }
.stat-icon.cyan   { background: #cffafe; color: #0891b2; }
.stat-label { font-size: .8rem; color: var(--text-muted); margin-bottom: .2rem; }
.stat-value { font-size: 1.5rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.stat-change { font-size: .75rem; color: #16a34a; margin-top: .15rem; }
.stat-change.neg { color: #dc2626; }

/* ---------- Cards ---------- */
.card { border-radius: 12px !important; background-color: var(--surface); border-color: var(--border); color: var(--text); transition: background-color .2s, border-color .2s, color .2s; }
.card-header { background: var(--surface) !important; border-bottom: 1px solid var(--border) !important; padding: .875rem 1.25rem !important; color: var(--text); }

/* ---------- Tables ---------- */
.table { --bs-table-bg: transparent; color: var(--text); }
.table th { font-size: .78rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase; color: var(--text-muted); border-bottom-color: var(--border); }
.table td { font-size: .875rem; vertical-align: middle; border-bottom-color: var(--border); }
.table tbody tr { border-bottom: 1px solid var(--border); transition: background-color .15s ease; }
.table tbody tr:hover,
.table-hover tbody tr:hover { background: var(--surface-alt); color: var(--text); }

/* ---------- Badges ---------- */
.badge { font-weight: 600; font-size: .72rem; }
.bg-indigo-soft { background: #ede9fe !important; }
.text-indigo { color: #6366f1 !important; }
.btn-xs { font-size: .72rem; padding: .2rem .5rem; }

/* ---------- Payment Method Cards ---------- */
.payment-method-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: center;
  position: relative;
}
.payment-method-card:hover { border-color: var(--primary); background: var(--surface-alt); }
.payment-method-card.selected { border-color: var(--primary); background: #ede9fe; }
.payment-method-card .check {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #6366f1; color: #fff;
  display: none; align-items: center; justify-content: center;
  font-size: .65rem;
}
.payment-method-card.selected .check { display: flex; }
.payment-icon { font-size: 1.75rem; margin-bottom: .5rem; }
.payment-name { font-size: .85rem; font-weight: 600; color: var(--text); }

/* ---------- User avatar (dashboard list rows) ---------- */
.user-avatar-sm {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--text-muted);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .82rem;
  flex: 0 0 32px;
}
.quick-amount {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .4rem .9rem;
  cursor: pointer;
  font-size: .85rem; font-weight: 600;
  transition: all .2s;
  background: var(--surface);
  color: var(--text);
}
.quick-amount:hover { border-color: var(--primary); color: var(--primary); background: var(--surface-alt); }

/* ---------- Tickets ---------- */
.ticket-item {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 1rem;
  transition: background .15s;
}
.ticket-item:hover { background: var(--surface-alt); }
.ticket-item:last-child { border-bottom: none; }

/* ---------- Misc ---------- */
.cursor-pointer { cursor: pointer; }
.copy-btn { cursor: pointer; }
code { background: var(--surface-alt); padding: .15rem .4rem; border-radius: 4px; font-size: .85rem; color: var(--primary); }

/* ---------- Theme Toggle Button ---------- */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: .25rem .55rem;
  border-radius: 8px;
  font-size: .85rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s;
}
.theme-toggle:hover { background: var(--surface-alt); color: var(--text); }
.theme-toggle i { pointer-events: none; }
/* Topbar variant — sits on brand-dark topbar, not on surface */
.topbar .theme-toggle { border-color: rgba(255,255,255,.15); color: #94a3b8; }
.topbar .theme-toggle:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.25); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .sidebar {
    position: fixed;
    left: 0; top: 0; bottom: 0;
    transform: translateX(-100%);
  }
  .sidebar.show { transform: translateX(0); box-shadow: 0 0 0 9999px rgba(0,0,0,.5); }
  .panel-wrapper { flex-direction: column; }
  .hero { padding: 60px 0; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
}
