/* ============================================================
   MyHeadsOnAStick.com — shared design system
   Playful, bold, primary-color, mobile-first ecommerce + team orders
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Luckiest+Guy&family=Nunito:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Brand */
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-700:    #1E40AF;
  --blue-50:     #EEF4FF;
  --blue-100:    #DCE7FF;
  --yellow:      #FBBF24;
  --yellow-soft: #FEF0C7;
  --coral:       #FB5849;
  --coral-soft:  #FFE2DE;
  --mint:        #19C6A3;

  /* Ink + neutrals */
  --ink:    #0F1B33;
  --slate:  #45526B;
  --muted:  #8492A8;
  --line:   #E7ECF4;
  --line-2: #D9E0EC;
  --bg:     #FFFFFF;
  --bg-soft:#F3F6FC;
  --bg-soft-2:#EAF0FA;
  --navy:   #0E1C3A;
  --navy-2: #15264B;

  /* Status */
  --green:    #15A24A;  --green-bg:  #DCFBE7;
  --amber:    #E0900B;  --amber-bg:  #FDF0CE;
  --red:      #E23B3B;  --red-bg:    #FCE0E0;
  --info:     #2563EB;  --info-bg:   #DCE7FF;
  --grey-bg:  #ECF0F6;  --grey-fg:   #64728A;

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadow (soft, slightly blue) */
  --sh-sm: 0 2px 8px rgba(20,40,90,.06);
  --sh:    0 8px 24px rgba(20,40,90,.10);
  --sh-lg: 0 20px 50px rgba(20,40,90,.16);
  --sh-btn: 0 4px 0 var(--blue-700);
  --sh-btn-yellow: 0 4px 0 #D89A06;

  --font-head: 'Fredoka', system-ui, sans-serif;
  --font-heading: 'Luckiest Guy', 'Fredoka', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-weight: 600;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.02;
  margin: 0;
  letter-spacing: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.center { text-align: center; }
.stack { display: flex; flex-direction: column; }
.row { display: flex; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.gap-24 { gap: 24px; } .gap-32 { gap: 32px; }
.wrapflex { flex-wrap: wrap; }
.aic { align-items: center; } .jcc { justify-content: center; }
.jsb { justify-content: space-between; }

/* ---------- Type scale ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  color: var(--blue);
}
.eyebrow.on-dark { color: var(--yellow); }
.display { font-size: clamp(38px, 7vw, 74px); line-height: 0.98; }
.h1 { font-size: clamp(32px, 5.2vw, 54px); }
.h2 { font-size: clamp(26px, 4vw, 40px); }
.h3 { font-size: clamp(20px, 2.6vw, 27px); }
.lead { font-size: clamp(17px, 2.1vw, 20px); color: var(--slate); font-weight: 600; }
.small { font-size: 14px; }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600;
  font-size: 17px; padding: 15px 28px;
  border-radius: var(--r-pill); border: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(2px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--sh-btn); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-primary:active { box-shadow: 0 2px 0 var(--blue-700); }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: var(--sh-btn-yellow); }
.btn-yellow:hover { background: #F7B011; }
.btn-yellow:active { box-shadow: 0 2px 0 #D89A06; }
.btn-ghost { background: #fff; color: var(--ink); border: 2.5px solid var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #1b2c4d; }
.btn-lg { font-size: 19px; padding: 18px 34px; }
.btn-sm { font-size: 14px; padding: 10px 18px; }
.btn-block { width: 100%; }

/* ---------- Badges / chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 800; font-size: 12.5px;
  padding: 5px 11px; border-radius: var(--r-pill);
  letter-spacing: .01em; white-space: nowrap;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.chip-green { background: var(--green-bg); color: #0d7a36; }
.chip-amber { background: var(--amber-bg); color: #9a6206; }
.chip-red   { background: var(--red-bg);   color: #b32525; }
.chip-blue  { background: var(--info-bg);  color: #1b4fd1; }
.chip-grey  { background: var(--grey-bg);  color: var(--grey-fg); }
.chip-yellow{ background: var(--yellow-soft); color: #8a5a06; }

/* pill tag (marketing) */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-50); color: var(--blue);
  font-weight: 800; font-size: 14px; padding: 8px 16px; border-radius: var(--r-pill);
}

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1.5px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
}
.card-pad { padding: 28px; }
.soft-card { background: var(--bg-soft); border-radius: var(--r-lg); padding: 28px; }

/* ---------- Site nav (marketing) ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.brand .blob { width: 30px; height: 30px; flex: none; }
.brand b { color: var(--blue); }
.brand-logo { display: inline-flex; align-items: center; min-width: 0; }
.brand-logo img { width: 248px; max-width: min(44vw, 248px); height: auto; display: block; }
.footer .brand-logo img { width: 240px; max-width: 100%; filter: drop-shadow(0 4px 10px rgba(0,0,0,.18)); }
.nav-links { display: flex; align-items: center; gap: 18px; font-family: var(--font-body); font-weight: 700; font-size: 15px; min-width: 0; }
.nav-links a,
.nav-group-title { color: var(--slate); }
.nav-links a:hover,
.nav-group:hover .nav-group-title,
.nav-group:focus-within .nav-group-title { color: var(--blue); }
.nav-group { position: relative; }
.nav-group-title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: default;
  padding: 24px 0;
}
.nav-group-title::after { content: "▾"; font-size: 11px; transform: translateY(1px); }
.nav-menu {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  min-width: 210px;
  transform: translateX(-50%) translateY(8px);
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--sh);
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
}
.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-menu a {
  display: block;
  padding: 9px 11px;
  border-radius: var(--r-xs);
  white-space: nowrap;
}
.nav-menu a:hover { background: var(--blue-50); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; width: 44px; height: 44px; border: none; background: var(--bg-soft); border-radius: var(--r-sm); cursor: pointer; align-items: center; justify-content: center; }
.hamburger span, .hamburger span::before, .hamburger span::after { content: ''; display: block; width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px; position: relative; }
.hamburger span::before { position: absolute; top: -6px; }
.hamburger span::after { position: absolute; top: 6px; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: #C9D4E8; padding: 64px 0 36px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 14px; font-family: var(--font-body); font-weight: 800; }
.footer a { display: block; color: #9FB0CC; font-weight: 600; font-size: 15px; padding: 5px 0; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 34px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; font-size: 14px; color: #7E90AE; }
.footer-credit { margin-top: 8px; text-align: right; font-size: 14px; color: #7E90AE; }
.footer-credit a { display: inline; padding: 0; font-size: inherit; font-weight: 800; }

/* ---------- How-it-works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.step { text-align: center; }
.step .num {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 14px;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
  font-size: 24px; background: var(--blue-50); color: var(--blue);
}

/* ---------- Stat / status legend ---------- */
.legend { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Dashboard shell ---------- */
.app { display: flex; min-height: 100vh; background: var(--bg-soft); }
.sidebar {
  width: 248px; flex: none; background: #fff; border-right: 1.5px solid var(--line);
  padding: 22px 16px; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.side-link {
  display: flex; align-items: center; gap: 11px; padding: 11px 14px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 15px; color: var(--slate); cursor: pointer; margin-bottom: 2px;
}
.side-link:hover { background: var(--bg-soft); }
.side-link.active { background: var(--blue-50); color: var(--blue); }
.side-link .ico { width: 20px; height: 20px; flex: none; }
.side-section { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 16px 14px 6px; }
.main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.topbar { height: 68px; background: #fff; border-bottom: 1.5px solid var(--line); display: flex; align-items: center; justify-content: space-between; padding: 0 28px; position: sticky; top: 0; z-index: 20; }
.content { padding: 28px; flex: 1; }

/* stat cards */
.statgrid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 14px; }
.stat { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r); padding: 16px 18px; }
.stat .n { font-family: var(--font-head); font-weight: 700; font-size: 30px; line-height: 1; }
.stat .l { font-size: 13px; color: var(--muted); font-weight: 700; margin-top: 7px; }
.stat.accent-amber { border-color: #F3D58A; background: #FFFCF4; }
.stat.accent-red { border-color: #F2C0C0; background: #FFF6F6; }
.stat.accent-green { border-color: #B6E9C9; background: #F4FCF7; }
.stat.accent-blue { border-color: #BBD0FB; background: #F6F9FF; }

/* table */
.table { width: 100%; border-collapse: collapse; background: #fff; }
.table th {
  text-align: left; font-family: var(--font-body); font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: .05em; color: var(--muted);
  padding: 13px 16px; border-bottom: 1.5px solid var(--line); white-space: nowrap;
}
.table td { padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: 14.5px; font-weight: 600; vertical-align: middle; }
.table tr:hover td { background: var(--bg-soft); }
.table .avatar { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-50); display: grid; place-items: center; flex: none; }
.tablecard { border: 1.5px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }

/* segmented filter */
.segbar { display: flex; flex-wrap: wrap; gap: 8px; }
.seg { font-family: var(--font-body); font-weight: 700; font-size: 14px; padding: 8px 15px; border-radius: var(--r-pill); border: 1.5px solid var(--line-2); background: #fff; color: var(--slate); cursor: pointer; }
.seg:hover { border-color: var(--blue); color: var(--blue); }
.seg.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.seg .ct { opacity: .6; margin-left: 4px; }

/* progress bar */
.progress { height: 12px; background: var(--bg-soft-2); border-radius: var(--r-pill); overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--blue); border-radius: var(--r-pill); }

/* form bits */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 800; font-size: 14px; margin-bottom: 7px; }
.input, .select, textarea.input {
  width: 100%; font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 13px 15px; border: 2px solid var(--line-2); border-radius: var(--r-sm);
  background: #fff; color: var(--ink); outline: none;
}
.input:focus, .select:focus { border-color: var(--blue); }
.input::placeholder { color: var(--muted); font-weight: 600; }

/* option tiles */
.opt-tiles { display: grid; gap: 12px; }
.opt {
  border: 2.5px solid var(--line-2); border-radius: var(--r); padding: 18px 20px;
  cursor: pointer; background: #fff; display: flex; align-items: center; gap: 14px;
  transition: border-color .15s, background .15s;
}
.opt:hover { border-color: var(--blue-100); }
.opt.sel { border-color: var(--blue); background: var(--blue-50); }
.opt .radio { width: 22px; height: 22px; border-radius: 50%; border: 2.5px solid var(--line-2); flex: none; display: grid; place-items: center; }
.opt.sel .radio { border-color: var(--blue); }
.opt.sel .radio::after { content: ''; width: 11px; height: 11px; border-radius: 50%; background: var(--blue); }

/* stepper */
.stepper { display: inline-flex; align-items: center; border: 2px solid var(--line-2); border-radius: var(--r-pill); overflow: hidden; }
.stepper button { width: 44px; height: 44px; border: none; background: #fff; font-size: 22px; font-family: var(--font-head); cursor: pointer; color: var(--blue); }
.stepper button:hover { background: var(--blue-50); }
.stepper .val { min-width: 48px; text-align: center; font-family: var(--font-head); font-weight: 600; font-size: 19px; }

/* flow progress header */
.flowsteps { display: flex; gap: 8px; align-items: center; }
.flowstep { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 14px; color: var(--muted); }
.flowstep .b { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft-2); color: var(--muted); display: grid; place-items: center; font-family: var(--font-head); font-size: 15px; }
.flowstep.done .b { background: var(--green); color: #fff; }
.flowstep.active { color: var(--ink); }
.flowstep.active .b { background: var(--blue); color: #fff; }
.flowstep .ln { width: 28px; height: 2.5px; background: var(--line-2); border-radius: 2px; }

/* upload dropzone */
.dropzone {
  border: 2.5px dashed var(--line-2); border-radius: var(--r-lg); padding: 38px 24px;
  text-align: center; background: var(--bg-soft); cursor: pointer;
}
.dropzone:hover { border-color: var(--blue); background: var(--blue-50); }

/* audience landing pages */
.purchase-hero { background: linear-gradient(180deg, var(--blue-50), #fff); padding: 54px 0 62px; }
.purchase-shell { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: stretch; }
.purchase-intro { display: flex; flex-direction: column; justify-content: center; }
.purchase-panel { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-lg); padding: 26px; }
.purchase-step { display: grid; gap: 12px; padding: 18px 0; border-bottom: 1.5px solid var(--line); }
.purchase-step:first-child { padding-top: 0; }
.purchase-step:last-child { border-bottom: none; padding-bottom: 0; }
.purchase-label { display: flex; align-items: center; gap: 10px; font-weight: 900; color: var(--ink); }
.purchase-label .n { width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; flex: none; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.choice-card { border: 2.5px solid var(--line-2); border-radius: var(--r); padding: 18px; background: #fff; display: flex; align-items: center; gap: 14px; font-weight: 900; min-height: 112px; }
.choice-card.primary { border-color: var(--blue); background: var(--blue-50); }
.choice-card:hover { border-color: var(--blue); background: var(--blue-50); transform: translateY(-1px); }
.choice-card small { display: block; color: var(--muted); font-weight: 700; margin-top: 2px; }
.size-picks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.size-pick { border: 2px solid var(--line-2); border-radius: var(--r-sm); padding: 12px; text-align: center; font-weight: 900; background: #fff; }
.size-pick.active { border-color: var(--blue); background: var(--blue-50); color: var(--blue); }
.accessory-picks { display: flex; flex-wrap: wrap; gap: 10px; }
.accessory-pick { border: 1.5px solid var(--line-2); border-radius: var(--r-pill); padding: 8px 12px; font-size: 13px; font-weight: 800; color: var(--slate); background: #fff; }
.purchase-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.proof-carousel { margin-top: 28px; max-width: 520px; overflow: hidden; }
.proof-track { display: flex; gap: 14px; width: max-content; animation: proofSlide 18s linear infinite; }
.proof-carousel:hover .proof-track { animation-play-state: paused; }
.proof-card { width: 220px; flex: none; background: #fff; border: 1.5px solid var(--line); border-radius: var(--r); padding: 14px; box-shadow: var(--sh-sm); }
.proof-photo { height: 112px; border-radius: 12px; background: var(--blue-50); display: grid; place-items: center; margin-bottom: 10px; overflow: hidden; }
.proof-card p { font-size: 13px; color: var(--slate); font-weight: 800; line-height: 1.35; }
.proof-card .who { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; font-weight: 800; }
@keyframes proofSlide {
  0%, 18% { transform: translateX(0); }
  28%, 46% { transform: translateX(-234px); }
  56%, 74% { transform: translateX(-468px); }
  84%, 100% { transform: translateX(0); }
}
.aud-hero { background: linear-gradient(180deg, var(--blue-50), #fff); padding: 64px 0 70px; }
.aud-hero-grid { display: grid; grid-template-columns: 1.05fr .85fr; gap: 48px; align-items: center; }
.aud-visual { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-xl); padding: 34px; box-shadow: var(--sh-lg); text-align: center; }
.aud-uses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aud-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-sm); }
.aud-card .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-50); color: var(--blue); font-weight: 900; margin-bottom: 14px; }
.aud-band { background: var(--navy); color: #fff; border-radius: var(--r-xl); padding: 44px; display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.aud-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }

/* utility */
.divider { height: 1.5px; background: var(--line); border: none; margin: 0; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .brand-logo img { width: 196px; max-width: 38vw; }
  .nav-links { gap: 14px; font-size: 14px; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn-sm { padding: 9px 14px; }
}
@media (max-width: 960px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .brand-logo img { width: 220px; max-width: 62vw; }
  .hamburger { display: flex; }
  .nav-actions .btn:not(.keep) { display: none; }
  .nav.nav-open .nav-links {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(255,255,255,.98);
    border-bottom: 1.5px solid var(--line);
    box-shadow: var(--sh);
  }
  .nav.nav-open .nav-links a,
  .nav.nav-open .nav-group-title {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav.nav-open .nav-group {
    position: static;
  }
  .nav.nav-open .nav-group-title {
    width: 100%;
    justify-content: flex-start;
    color: var(--ink);
    font-weight: 900;
  }
  .nav.nav-open .nav-group-title::after { display: none; }
  .nav.nav-open .nav-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 8px 12px;
    background: transparent;
  }
  .nav.nav-open .nav-menu a {
    padding: 10px 8px;
    border-bottom: 1px solid var(--line);
  }
  .nav.nav-open .hamburger span { background: transparent; }
  .nav.nav-open .hamburger span::before { top: 0; transform: rotate(45deg); }
  .nav.nav-open .hamburger span::after { top: 0; transform: rotate(-45deg); }
  .purchase-shell { grid-template-columns: 1fr; }
  .proof-carousel { display: none; }
  .choice-grid { grid-template-columns: 1fr; }
  .size-picks { grid-template-columns: 1fr; }
  .aud-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .aud-uses { grid-template-columns: 1fr; }
  .aud-band { grid-template-columns: 1fr; padding: 30px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .sidebar { display: none; }
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
  .content { padding: 16px; }
  .topbar { padding: 0 16px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .steps { grid-template-columns: 1fr; }
  .statgrid { grid-template-columns: 1fr 1fr; }
  .btn-hero-block { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-credit { text-align: left; }
}
