/* ===================================================
   CREATORBASE — MAIN STYLESHEET
   =================================================== */
:root {
  --primary: #6C3BFF;
  --primary-dark: #4F22CC;
  --accent: #FF3CAC;
  --accent2: #FFB800;
  --bg: #0A0A0F;
  --bg2: #111118;
  --bg3: #1A1A26;
  --surface: #1E1E2E;
  --border: rgba(255,255,255,0.08);
  --text: #F0F0FF;
  --muted: #888899;
  --success: #22C55E;
  --danger: #EF4444;
  --warning: #F59E0B;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(108,59,255,0.15);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.nav-logo { font-family: var(--font-head); font-size: 22px; font-weight: 800; }
.nav-logo span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted); transition: all 0.2s; }
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-btn-outline { border: 1px solid var(--border) !important; color: var(--text) !important; }
.nav-btn-fill { background: var(--primary) !important; color: #fff !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; padding: 12px 24px 20px; border-top: 1px solid var(--border); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,59,255,0.25) 0%, transparent 70%);
}
.hero-bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.orb1 { width: 500px; height: 500px; background: rgba(108,59,255,0.3); top: -100px; left: -100px; }
.orb2 { width: 350px; height: 350px; background: rgba(255,60,172,0.2); top: 200px; right: -50px; }
.orb3 { width: 250px; height: 250px; background: rgba(255,184,0,0.15); bottom: 50px; left: 30%; }
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(108,59,255,0.15); border: 1px solid rgba(108,59,255,0.3);
  padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 500;
  margin-bottom: 32px; color: #b8a7ff;
}
.hero-h1 {
  font-family: var(--font-head); font-size: clamp(42px,7vw,80px);
  font-weight: 800; line-height: 1.1; margin-bottom: 24px;
}
.hero-accent { color: #b8a7ff; }
.hero-h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--muted); margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.hero-stats { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.stat-pill {
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 20px; border-radius: 100px; font-size: 14px; font-weight: 500;
}
.stat-num { color: var(--primary); font-weight: 700; margin-right: 4px; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.btn-primary {
  background: var(--primary); color: #fff;
  padding: 14px 32px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary {
  background: var(--surface); color: var(--text);
  padding: 14px 32px; border-radius: var(--radius); font-weight: 600; font-size: 15px;
  border: 1px solid var(--border); cursor: pointer; transition: all 0.2s;
}
.btn-secondary:hover { background: var(--bg3); transform: translateY(-2px); }
.hero-onboard { color: var(--muted); font-size: 13px; }
.hero-onboard a { color: var(--accent); font-weight: 500; }
.hero-onboard a:hover { text-decoration: underline; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.dark-section { background: var(--bg2); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.section-header h2 { font-family: var(--font-head); font-size: 32px; font-weight: 700; flex: 1; }
.section-header p { color: var(--muted); font-size: 14px; }
.section-header.light h2 { color: var(--text); }
.view-all { color: var(--primary); font-size: 14px; font-weight: 500; }
.view-all:hover { text-decoration: underline; }
.view-all.light { color: #b8a7ff; }

/* ---- CATEGORIES ---- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 12px; text-align: center;
  transition: all 0.2s; cursor: pointer;
}
.cat-card:hover { border-color: var(--primary); background: rgba(108,59,255,0.1); transform: translateY(-4px); }
.cat-icon { font-size: 28px; margin-bottom: 8px; }
.cat-name { font-size: 12px; font-weight: 500; color: var(--muted); }

/* ---- CREATORS GRID ---- */
.creators-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.creator-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.2s;
}
.creator-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.creator-img { height: 180px; overflow: hidden; position: relative; }
.creator-img img { width: 100%; height: 100%; object-fit: cover; }
.creator-avatar-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; font-weight: 700; color: #fff; font-family: var(--font-head);
}
.creator-info { padding: 16px; }
.creator-info h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.creator-info p { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.creator-stats { font-size: 12px; color: var(--muted); display: flex; gap: 12px; }

/* ---- STEPS ---- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; overflow: hidden; }
.step-num { font-family: var(--font-head); font-size: 56px; font-weight: 800; color: rgba(108,59,255,0.15); line-height: 1; margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-head); font-size: 20px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--muted); }

/* ---- FOOTER ---- */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 48px 0 24px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 24px; margin-bottom: 40px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-links a { padding: 6px 14px; background: var(--surface); border-radius: 8px; font-size: 13px; color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-bottom { font-size: 12px; color: var(--muted); text-align: center; padding-top: 24px; border-top: 1px solid var(--border); }

/* ---- HOW SECTION ---- */
.how-section { background: var(--bg); }

/* ===================================================
   ADMIN / BACKEND SHARED
   =================================================== */
.admin-layout { display: flex; min-height: 100vh; }
.sidebar {
  width: 240px; min-width: 240px;
  background: var(--bg2); border-right: 1px solid var(--border);
  padding: 0; position: sticky; top: 0; height: 100vh; overflow-y: auto;
  display: flex; flex-direction: column;
}
.sidebar-logo { padding: 20px 20px; border-bottom: 1px solid var(--border); font-family: var(--font-head); font-weight: 800; font-size: 18px; }
.sidebar-logo span { color: var(--primary); }
.sidebar-nav { flex: 1; padding: 16px 0; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 14px; font-weight: 500;
  color: var(--muted); transition: all 0.2s; border-left: 3px solid transparent;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--text); background: rgba(108,59,255,0.1);
  border-left-color: var(--primary);
}
.sidebar-nav .nav-section { padding: 16px 20px 6px; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.main-content { flex: 1; padding: 32px; overflow-y: auto; background: var(--bg); }
.page-header { margin-bottom: 28px; }
.page-header h1 { font-family: var(--font-head); font-size: 28px; font-weight: 700; margin-bottom: 4px; }
.page-header p { color: var(--muted); font-size: 14px; }

/* ---- CARDS ---- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.card-header h3 { font-family: var(--font-head); font-size: 18px; font-weight: 600; }

/* ---- FORMS ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 500; color: var(--muted); }
.form-label .req { color: var(--danger); }
.form-control {
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); padding: 10px 14px; border-radius: var(--radius);
  font-size: 14px; font-family: var(--font-body);
  transition: border-color 0.2s; width: 100%;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,59,255,0.1); }
.form-control::placeholder { color: var(--muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 80px; }

/* ---- TAGS INPUT ---- */
.tags-input-wrap {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 10px;
  display: flex; flex-wrap: wrap; gap: 6px; min-height: 46px; cursor: text;
}
.tags-input-wrap:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(108,59,255,0.1); }
.tag-item {
  background: rgba(108,59,255,0.2); border: 1px solid rgba(108,59,255,0.3);
  color: #b8a7ff; padding: 3px 10px; border-radius: 100px; font-size: 12px;
  display: flex; align-items: center; gap: 5px;
}
.tag-item .tag-remove { cursor: pointer; opacity: 0.6; font-size: 14px; line-height: 1; }
.tag-item .tag-remove:hover { opacity: 1; }
.tag-input-field { background: none; border: none; outline: none; color: var(--text); font-size: 13px; min-width: 120px; font-family: var(--font-body); flex: 1; }

/* ---- SUGGESTIONS DROPDOWN ---- */
.suggestions-dropdown {
  position: absolute; z-index: 100;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); margin-top: 4px;
  max-height: 200px; overflow-y: auto; width: 100%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.suggestion-item {
  padding: 8px 14px; font-size: 13px; cursor: pointer; transition: background 0.15s;
  display: flex; align-items: center; justify-content: space-between;
}
.suggestion-item:hover, .suggestion-item.focused { background: rgba(108,59,255,0.1); }
.suggestion-item .sug-new { font-size: 11px; color: var(--accent); background: rgba(255,60,172,0.1); padding: 2px 8px; border-radius: 100px; }

/* ---- SOCIAL PLATFORM ROWS ---- */
.platform-rows { display: flex; flex-direction: column; gap: 12px; }
.platform-row {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px;
  display: grid; grid-template-columns: 180px 1fr 120px 140px auto; gap: 12px; align-items: center;
}
.platform-row .remove-row {
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  color: var(--danger); border-radius: 8px; padding: 8px 12px; cursor: pointer;
  font-size: 13px; white-space: nowrap; transition: all 0.2s;
}
.platform-row .remove-row:hover { background: rgba(239,68,68,0.2); }

/* ---- BUTTONS ---- */
.btn { padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; font-family: var(--font-body); display: inline-flex; align-items: center; gap: 8px; }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-violet { background: var(--primary); color: #fff; }
.btn-violet:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { background: var(--surface); border-color: var(--primary); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-warning { background: var(--warning); color: #000; }
.btn-add { background: rgba(108,59,255,0.15); border: 1px dashed rgba(108,59,255,0.3); color: var(--primary); padding: 10px 16px; border-radius: var(--radius); cursor: pointer; font-size: 13px; font-weight: 500; transition: all 0.2s; width: 100%; text-align: center; }
.btn-add:hover { background: rgba(108,59,255,0.25); }

/* ---- TABLE ---- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th { background: var(--bg3); padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:hover td { background: rgba(108,59,255,0.03); }
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; }
.badge-green { background: rgba(34,197,94,0.15); color: var(--success); }
.badge-red { background: rgba(239,68,68,0.15); color: var(--danger); }
.badge-yellow { background: rgba(245,158,11,0.15); color: var(--warning); }
.badge-purple { background: rgba(108,59,255,0.15); color: #b8a7ff; }
.badge-blue { background: rgba(59,130,246,0.15); color: #93c5fd; }

/* ---- SEARCH BAR ---- */
.search-bar { position: relative; }
.search-bar input { padding-left: 40px !important; }
.search-bar::before { content: '🔍'; position: absolute; left: 12px; top: 50%; transform: translateY(-50%); font-size: 14px; pointer-events: none; }

/* ---- STATS CARDS ---- */
.stats-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; margin-bottom: 28px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px 24px; }
.stat-card .stat-label { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.stat-card .stat-value { font-family: var(--font-head); font-size: 32px; font-weight: 700; }
.stat-card .stat-change { font-size: 12px; margin-top: 4px; }
.stat-card.violet { border-color: rgba(108,59,255,0.3); background: rgba(108,59,255,0.05); }
.stat-card.pink { border-color: rgba(255,60,172,0.3); background: rgba(255,60,172,0.05); }
.stat-card.gold { border-color: rgba(255,184,0,0.3); background: rgba(255,184,0,0.05); }
.stat-card.green { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.05); }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.hidden { display: none; }
.modal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); width: 100%; max-width: 700px;
  max-height: 90vh; overflow-y: auto;
}
.modal-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: var(--surface); z-index: 1; }
.modal-header h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; }
.modal-close { background: none; border: none; color: var(--muted); font-size: 22px; cursor: pointer; padding: 4px; }
.modal-close:hover { color: var(--text); }
.modal-body { padding: 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 12px; }

/* ---- ALERTS ---- */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: var(--success); }
.alert-danger { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: var(--danger); }
.alert-info { background: rgba(108,59,255,0.1); border: 1px solid rgba(108,59,255,0.2); color: #b8a7ff; }

/* ---- TABS ---- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.tab-btn { padding: 10px 20px; background: none; border: none; color: var(--muted); font-size: 14px; font-weight: 500; cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; font-family: var(--font-body); }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---- PAGINATION ---- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.page-btn { padding: 8px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; cursor: pointer; color: var(--muted); transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---- MISC ---- */
.divider { height: 1px; background: var(--border); margin: 20px 0; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 13px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-12 { gap: 12px; }
.gap-8 { gap: 8px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.w-full { width: 100%; }
.pos-rel { position: relative; }

/* ---- AVATAR ---- */
.avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.avatar-lg { width: 72px; height: 72px; }
.avatar-placeholder {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-family: var(--font-head);
  border-radius: 50%;
}

/* ---- LOADING ---- */
.spinner { display: inline-block; width: 20px; height: 20px; border: 2px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- SEARCH PAGE ---- */
.search-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; padding-top: 90px; }
.filters-sidebar { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; height: fit-content; position: sticky; top: 90px; }
.filters-sidebar h3 { font-family: var(--font-head); font-size: 18px; margin-bottom: 20px; }
.filter-section { margin-bottom: 20px; }
.filter-section label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; display: block; margin-bottom: 8px; }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }

/* ---- PROFILE CARD ---- */
.profile-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.2s;
}
.profile-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.profile-card-img { height: 200px; overflow: hidden; position: relative; }
.profile-card-img img { width: 100%; height: 100%; object-fit: cover; }
.profile-card-body { padding: 16px; }
.profile-card-name { font-weight: 600; font-size: 16px; margin-bottom: 4px; }
.profile-card-meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.profile-card-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.profile-card-stat { font-size: 12px; background: var(--bg3); border-radius: 8px; padding: 4px 10px; }
.profile-card-actions { display: flex; gap: 8px; margin-top: 12px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .form-grid, .form-grid-3 { grid-template-columns: 1fr; }
  .platform-row { grid-template-columns: 1fr; }
  .admin-layout { flex-direction: column; }
  .sidebar { width: 100%; height: auto; position: relative; }
  .search-layout { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 36px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
}
