/* CareLeads v4 — impeccable overhaul.
   One family (Schibsted Grotesk, weight contrast 400-800).
   Cobalt anchor on pure white; deep indigo dark surfaces; amber signal.
   No cream, no eyebrows, no identical card grids, no side-stripes. */

:root {
  --cobalt: oklch(0.478 0.136 252);
  --cobalt-deep: oklch(0.40 0.13 252);
  --cobalt-soft: oklch(0.478 0.136 252 / 0.08);
  --cobalt-border: oklch(0.478 0.136 252 / 0.32);
  --ink: oklch(0.21 0.02 255);
  --dark: oklch(0.24 0.045 258);
  --dark-2: oklch(0.29 0.05 258);
  --slate: oklch(0.45 0.022 255);
  --label: oklch(0.32 0.03 255);
  --border: oklch(0.91 0.008 255);
  --bg: oklch(1 0 0);
  --wash: oklch(0.965 0.006 255);
  --white: #FFFFFF;
  --amber: oklch(0.80 0.14 80);
  --amber-ink: oklch(0.42 0.11 70);
  --amber-bg: oklch(0.80 0.14 80 / 0.16);
  --good: oklch(0.55 0.14 150);
  --good-bg: oklch(0.55 0.14 150 / 0.12);
  --red: oklch(0.52 0.19 25);
  --red-bg: oklch(0.52 0.19 25 / 0.09);
  --shadow-1: 0 1px 2px oklch(0.3 0.03 255 / 0.06), 0 4px 12px oklch(0.3 0.03 255 / 0.05);
  --shadow-3: 0 2px 6px oklch(0.3 0.05 255 / 0.08), 0 24px 48px -20px oklch(0.3 0.06 255 / 0.22);
  --shadow-4: 0 8px 16px -6px oklch(0.25 0.05 255 / 0.2), 0 24px 48px -12px oklch(0.25 0.05 255 / 0.3);
  --radius: 6px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  /* legacy aliases for inline styles in app/admin markup */
  --navy-deep: var(--ink);
  --navy: var(--dark);
  --green: var(--cobalt);
  --green-dark: var(--cobalt-deep);
  --green-soft: var(--cobalt-soft);
  --green-border: var(--cobalt-border);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; }

body {
  font-family: "Schibsted Grotesk", -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--label);
  background: var(--bg);
}

h1, h2, h3, h4 { color: var(--ink); font-weight: 700; letter-spacing: -0.015em; text-wrap: balance; }
h1 { font-size: clamp(34px, 4.6vw, 54px); line-height: 1.04; font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(26px, 3vw, 36px); line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 20px; line-height: 1.25; }
h4 { font-size: 17px; }
p { text-wrap: pretty; }

a { color: var(--cobalt); text-decoration: none; }
.num { font-variant-numeric: tabular-nums; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

.photo-frame { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-3); }
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }
.split-band { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 10px 20px; border-radius: 6px; border: 1.5px solid transparent;
  cursor: pointer; transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.15s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--cobalt); color: #fff; }
.btn-primary:hover { background: var(--cobalt-deep); }
.btn-ghost { background: transparent; color: var(--cobalt); border-color: var(--cobalt-border); }
.btn-ghost:hover { background: var(--cobalt-soft); border-color: var(--cobalt); }
.btn-navy { background: var(--ink); color: #fff; }
.btn-navy:hover { background: var(--dark-2); }
.btn-danger { background: transparent; color: var(--red); border-color: oklch(0.52 0.19 25 / 0.35); }
.btn-danger:hover { background: var(--red-bg); }
.btn-sm { font-size: 13px; padding: 7px 13px; }
.btn-lg { font-size: 16px; padding: 13px 26px; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; }
.btn:active { transform: translateY(1px); }
.btn:focus-visible, .chip-filter:focus-visible, .wallet-chip:focus-visible { outline: 2px solid var(--cobalt); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; padding: 2px 8px; border-radius: 4px;
}
.badge-green { background: var(--good-bg); color: var(--good); border: 1px solid oklch(0.55 0.14 150 / 0.3); }
.badge-navy { background: oklch(0.21 0.02 255 / 0.06); color: var(--label); border: 1px solid oklch(0.21 0.02 255 / 0.14); }
.badge-amber { background: var(--amber-bg); color: var(--amber-ink); border: 1px solid oklch(0.80 0.14 80 / 0.5); }
.badge-red { background: var(--red-bg); color: var(--red); border: 1px solid oklch(0.52 0.19 25 / 0.3); }

/* ---------- cards ---------- */
.card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; box-shadow: var(--shadow-1); }
.card-pad { padding: 24px; }

/* ================= LANDING ================= */
.nav-landing {
  position: sticky; top: 0; z-index: 50;
  background: oklch(1 0 0 / 0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-landing .container { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.logo { display: flex; align-items: baseline; gap: 2px; font-size: 21px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.logo em { font-style: normal; color: var(--cobalt); }
.logo small { font-size: 11px; font-weight: 500; color: var(--slate); margin-left: 8px; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--label); }
.nav-links a:hover { color: var(--ink); }

/* dark hero */
.hero { background: var(--dark); padding: 92px 0 84px; }
.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--amber); }
.hero p.lede { font-size: 18px; line-height: 1.6; margin: 22px 0 32px; max-width: 46ch; color: oklch(0.85 0.02 255); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-actions { display: flex; gap: 12px; }
.hero .btn-ghost { color: #fff; border-color: oklch(1 0 0 / 0.35); }
.hero .btn-ghost:hover { background: oklch(1 0 0 / 0.08); border-color: #fff; }
.hero .btn-primary { background: var(--amber); color: var(--ink); font-weight: 700; }
.hero .btn-primary:hover { background: oklch(0.85 0.13 82); }
.hero-note { margin-top: 18px; font-size: 13.5px; color: oklch(0.72 0.02 255); }

.hero-card { background: var(--white); border-radius: 10px; box-shadow: var(--shadow-4); overflow: hidden; }
.hero-card-head { padding: 14px 20px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--label); font-weight: 600; }
.hero-lead-row { padding: 14px 20px; border-bottom: 1px solid var(--wash); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.hero-lead-row:last-child { border-bottom: 0; }
.hero-lead-row .who { font-size: 14px; color: var(--ink); font-weight: 600; }
.hero-lead-row .what { font-size: 12.5px; color: var(--slate); margin-top: 2px; }
.hero-lead-row .price { font-size: 15px; color: var(--ink); font-weight: 700; }

.section { padding: 88px 0; }
.section-dark { background: var(--dark); }
.section-dark h2 { color: #fff; }
.section-dark p { color: oklch(0.82 0.02 255); }
.section-head { max-width: 62ch; margin-bottom: 52px; }
.section-head p { font-size: 17px; margin-top: 14px; color: var(--slate); }
.section-dark .section-head p { color: oklch(0.82 0.02 255); }

/* numbered flow rows (real sequence, not card grid) */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border); }
.step { padding: 28px 28px 8px 0; border-top: 3px solid transparent; margin-top: -1.5px; }
.step:hover { border-top-color: var(--cobalt); }
.section-dark .steps { border-top-color: oklch(1 0 0 / 0.18); }
.section-dark .step:hover { border-top-color: var(--amber); }
.step .n { font-size: 15px; font-weight: 800; color: var(--cobalt); letter-spacing: 0.02em; font-variant-numeric: tabular-nums; }
.section-dark .step .n { color: var(--amber); }
.step h3 { margin: 10px 0 8px; }
.section-dark .step h3 { color: #fff; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--slate); }
.section-dark .step p { color: oklch(0.78 0.02 255); }
a.step { display: block; }
a.step:hover h3 { color: var(--cobalt); }

/* pricing: one committed feature, two quiet */
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 30px; display: flex; flex-direction: column; }
.price-card.feature { background: var(--dark); border-color: var(--dark); box-shadow: var(--shadow-4); }
.price-card.feature h3, .price-card.feature .amt { color: #fff; }
.price-card.feature .amt span { color: oklch(0.75 0.03 255); }
.price-card.feature li { color: oklch(0.85 0.02 255); border-bottom-color: oklch(1 0 0 / 0.1); }
.price-card.feature li strong { color: #fff; }
.price-card .amt { font-size: 38px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin-top: 8px; }
.price-card .amt span { font-size: 14px; color: var(--slate); font-weight: 500; letter-spacing: 0; }
.price-card ul { list-style: none; margin: 18px 0 24px; flex: 1; }
.price-card li { font-size: 14.5px; padding: 8px 0; border-bottom: 1px solid var(--wash); color: var(--slate); }
.price-card li:last-child { border-bottom: 0; }
.price-card li strong { color: var(--ink); font-weight: 600; }
.price-card.feature .btn-primary { background: var(--amber); color: var(--ink); font-weight: 700; }
.price-card.feature .btn-primary:hover { background: oklch(0.85 0.13 82); }

.footer { padding: 44px 0; border-top: 1px solid var(--border); background: var(--white); }
.footer .container { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--slate); }

/* ================= APP ================= */
.app-shell { display: grid; grid-template-columns: 236px 1fr; min-height: 100vh; background: var(--wash); }

.sidebar {
  background: var(--dark); border-right: 1px solid var(--dark);
  padding: 20px 14px; display: flex; flex-direction: column; gap: 3px;
  position: sticky; top: 0; height: 100vh;
}
.sidebar .logo { padding: 4px 10px 20px; color: #fff; }
.sidebar .logo em { color: var(--amber); }
.sidebar .logo small { color: oklch(0.7 0.02 255); }
.side-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: oklch(0.8 0.02 255);
  padding: 9px 10px; border-radius: 6px; cursor: pointer; border: 0; background: none;
  font-family: inherit; text-align: left; width: 100%;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.side-link svg { width: 17px; height: 17px; stroke: currentColor; flex-shrink: 0; }
.side-link:hover { background: oklch(1 0 0 / 0.07); color: #fff; }
.side-link.active { background: oklch(1 0 0 / 0.12); color: #fff; }
.side-link .count { margin-left: auto; font-size: 11.5px; font-weight: 700; background: var(--amber); color: var(--ink); border-radius: 4px; padding: 1px 6px; font-variant-numeric: tabular-nums; }
.sidebar .spacer { flex: 1; }
.side-account { border-top: 1px solid oklch(1 0 0 / 0.14); padding: 14px 10px 4px; font-size: 13px; }
.side-account .biz { color: #fff; font-weight: 600; }
.side-account .plan { color: oklch(0.7 0.02 255); font-size: 12px; margin-top: 2px; }

.main { padding: 0 0 64px; }
.topbar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 14px 32px; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 40;
}
.topbar h2 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.wallet-chip {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border); border-radius: 6px; padding: 7px 14px;
  font-size: 14px; color: var(--label); background: var(--white); cursor: pointer;
  font-family: inherit; font-weight: 500;
  transition: border-color 0.15s var(--ease);
}
.wallet-chip strong { color: var(--ink); font-weight: 800; font-variant-numeric: tabular-nums; }
.wallet-chip:hover { border-color: var(--cobalt); }
.swap-chip { font-size: 12.5px; color: var(--amber-ink); background: var(--amber-bg); border: 1px solid oklch(0.80 0.14 80 / 0.5); border-radius: 4px; padding: 4px 10px; font-weight: 600; }

.view { padding: 28px 32px; display: none; }
.view.active { display: block; }

/* stats */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 22px; }
.stat { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 18px 20px; }
.stat .k { font-size: 12.5px; font-weight: 600; color: var(--slate); }
.stat .v { font-size: 30px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; margin-top: 4px; font-variant-numeric: tabular-nums; }
.stat .sub { font-size: 12px; color: var(--slate); margin-top: 4px; }
.stat .sub.good { color: var(--good); font-weight: 600; }

.panel-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; align-items: start; }
.panel-title { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.panel-title h3 { font-size: 15.5px; font-weight: 700; letter-spacing: 0; }
.panel-title a, .panel-title button.linkish { font-size: 13px; color: var(--cobalt); background: none; border: 0; cursor: pointer; font-family: inherit; font-weight: 600; }

/* lead rows and cards */
.lead-list { display: flex; flex-direction: column; }
.lead-row { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--wash); }
.lead-row:last-child { border-bottom: 0; }
.lead-avatar {
  width: 38px; height: 38px; border-radius: 6px; flex-shrink: 0;
  background: var(--cobalt-soft); color: var(--cobalt);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px;
}
.lead-row .mid { flex: 1; min-width: 0; }
.lead-row .name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.lead-row .meta { font-size: 12.5px; color: var(--slate); margin-top: 1px; }
.lead-row .right { text-align: right; flex-shrink: 0; }

.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.market-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.market-card:hover { box-shadow: var(--shadow-3); border-color: var(--cobalt-border); transform: translateY(-2px); }
.market-card .mc-head { padding: 16px 18px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.market-card .mc-body { padding: 12px 18px 16px; flex: 1; }
.market-card .who { font-size: 16.5px; font-weight: 700; color: var(--ink); }
.market-card .where { font-size: 13px; color: var(--slate); margin-top: 2px; }
.market-card .need { font-size: 13.5px; line-height: 1.55; color: var(--label); margin-top: 10px; }
.market-card .mc-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.market-card .mc-foot { border-top: 1px solid var(--wash); padding: 12px 18px; display: flex; justify-content: space-between; align-items: center; }
.market-card .price { font-size: 20px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.market-card .age { font-size: 12px; color: var(--slate); }

.filter-bar { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.chip-filter {
  font-family: inherit; font-size: 13px; font-weight: 600; color: var(--label);
  background: var(--white); border: 1.5px solid var(--border); border-radius: 6px;
  padding: 6px 13px; cursor: pointer; transition: all 0.15s var(--ease);
}
.chip-filter:hover { border-color: var(--cobalt-border); }
.chip-filter.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* my leads */
.mylead-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-1); margin-bottom: 16px; }
.mylead-head { padding: 18px 22px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--wash); }
.mylead-head .name { font-size: 17px; font-weight: 700; color: var(--ink); }
.mylead-head .sub { font-size: 13px; color: var(--slate); margin-top: 1px; }
.mylead-head .actions { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.mylead-body { padding: 16px 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 20px; }
.field .fk { font-size: 11.5px; font-weight: 600; color: var(--slate); }
.field .fv { font-size: 14.5px; color: var(--ink); margin-top: 2px; font-weight: 600; }
.mylead-note { grid-column: 1 / -1; background: var(--wash); border-radius: 6px; padding: 12px 14px; font-size: 13.5px; color: var(--label); line-height: 1.55; }
.mylead-foot { border-top: 1px solid var(--wash); padding: 12px 22px; font-size: 12.5px; color: var(--slate); }

/* wallet */
.wallet-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; align-items: start; }
.topup-opts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0; }
.topup-btn {
  font-family: inherit; background: var(--white); border: 1.5px solid var(--border); border-radius: 8px;
  padding: 14px 10px; cursor: pointer; text-align: center; transition: all 0.15s var(--ease);
}
.topup-btn:hover, .topup-btn.selected { border-color: var(--cobalt); background: var(--cobalt-soft); }
.topup-btn .amt { font-size: 18px; font-weight: 800; color: var(--ink); font-variant-numeric: tabular-nums; }
.topup-btn .bonus { font-size: 11.5px; color: var(--cobalt); font-weight: 600; margin-top: 2px; }
.tx-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; border-bottom: 1px solid var(--wash); font-size: 14px; }
.tx-row:last-child { border-bottom: 0; }
.tx-row .t { color: var(--ink); font-weight: 600; }
.tx-row .d { font-size: 12px; color: var(--slate); margin-top: 1px; }
.tx-row .amt { font-weight: 800; font-variant-numeric: tabular-nums; }
.tx-row .amt.pos { color: var(--good); }
.tx-row .amt.neg { color: var(--ink); }

/* modal */
.modal-back {
  position: fixed; inset: 0; background: oklch(0.2 0.03 255 / 0.5); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-back.open { display: flex; }
.modal { background: var(--white); border-radius: 10px; box-shadow: var(--shadow-4); width: 100%; max-width: 460px; overflow: hidden; }
.modal-back.open .modal { animation: modal-in 0.28s var(--ease); }
@keyframes modal-in { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-head { padding: 18px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.modal-head h3 { font-size: 17px; font-weight: 700; letter-spacing: 0; }
.modal-x { background: none; border: 0; font-size: 20px; color: var(--slate); cursor: pointer; line-height: 1; padding: 4px; }
.modal-body { padding: 22px 24px; }
.modal-foot { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 10px; }
.confirm-line { display: flex; justify-content: space-between; font-size: 14.5px; padding: 8px 0; border-bottom: 1px solid var(--wash); color: var(--slate); }
.confirm-line:last-child { border-bottom: 0; }
.confirm-line strong { color: var(--ink); font-variant-numeric: tabular-nums; }

/* call modal */
.call-stage { text-align: center; padding: 8px 0 4px; }
.call-stage .callee { font-size: 20px; font-weight: 700; color: var(--ink); }
.call-stage .callnum { font-size: 14px; color: var(--slate); margin-top: 2px; font-variant-numeric: tabular-nums; }
.call-timer { font-size: 38px; font-weight: 800; color: var(--ink); margin: 18px 0 6px; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; }
.call-state { font-size: 13.5px; color: var(--slate); min-height: 20px; }
.call-wave { display: flex; gap: 4px; justify-content: center; align-items: flex-end; height: 34px; margin: 16px 0; }
.call-wave i { width: 4px; background: var(--cobalt); border-radius: 2px; animation: wave 0.9s ease-in-out infinite; }
.call-wave i:nth-child(2n) { animation-delay: 0.15s; }
.call-wave i:nth-child(3n) { animation-delay: 0.3s; }
.call-wave i:nth-child(5n) { animation-delay: 0.45s; }
@keyframes wave { 0%, 100% { height: 8px; } 50% { height: 30px; } }
.call-wave.idle i { animation: none; height: 8px; background: var(--border); }

.verdict { border-radius: 6px; padding: 14px 16px; font-size: 14px; line-height: 1.5; text-align: left; margin-top: 14px; }
.verdict.good { background: var(--good-bg); border: 1px solid oklch(0.55 0.14 150 / 0.3); color: oklch(0.4 0.12 150); }
.verdict.bad { background: var(--red-bg); border: 1px solid oklch(0.52 0.19 25 / 0.3); color: var(--red); }
.verdict strong { display: block; margin-bottom: 3px; }

.empty { padding: 40px 20px; text-align: center; color: var(--slate); font-size: 14.5px; }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 500; padding: 11px 20px;
  border-radius: 8px; box-shadow: var(--shadow-4); z-index: 200; opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); max-width: 90vw;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* responsive */
@media (max-width: 1024px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .panel-grid, .wallet-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .steps, .price-row { grid-template-columns: 1fr; }
  .step { padding-right: 0; padding-bottom: 20px; }
  .split-band { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 760px) {
  .app-shell { grid-template-columns: 1fr; }
  .sidebar {
    position: sticky; height: auto; flex-direction: row; align-items: center;
    overflow-x: auto; gap: 2px; padding: 10px 12px; z-index: 60;
    border-right: 0; border-bottom: 1px solid var(--dark-2);
  }
  .sidebar .logo { padding: 0 10px 0 0; }
  .sidebar .logo small { display: none; }
  .side-link { width: auto; white-space: nowrap; padding: 8px 10px; }
  .side-link svg { display: none; }
  .sidebar .spacer, .side-account { display: none; }
  .topbar { padding: 12px 16px; }
  .view { padding: 20px 16px; }
  .mylead-body { grid-template-columns: 1fr 1fr; }
  .mylead-head { flex-wrap: wrap; }
  .mylead-head .actions { margin-left: 0; width: 100%; }
  .hero { padding: 56px 0; }
  .section { padding: 60px 0; }
  .nav-links a:not(.btn) { display: none; }
}
