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

:root {
  --bg:        #111110;
  --bg2:       #18181600;
  --surface:   #1c1c1a;
  --surface2:  #242422;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.12);
  --ink:       #f0ede6;
  --ink2:      rgba(240,237,230,0.65); /* Increased for better primary subheaders */
  --ink3:      rgba(240,237,230,0.48); /* Increased for accessible contrast ratio > 4.5:1 */
  --lime:      #c8f135;
  --lime-dim:  rgba(200,241,53,0.1);
  --lime-glow: rgba(200,241,53,0.06);
  --red:       #ff4d4d;
  --r:         10px;
  --r2:        16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 56px;
  display: flex; align-items: center;
  padding: 0 40px;
  background: rgba(17,17,16,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  width: 100%; max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}

.logo-sq {
  width: 26px; height: 26px;
  background: var(--lime);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}

.logo-sq svg { width: 13px; height: 13px; }

.nav-r { display: flex; align-items: center; gap: 8px; }

.nav-a {
  font-size: 13px; font-weight: 500;
  color: var(--ink3);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 7px;
  transition: color 0.15s, background 0.15s;
}
.nav-a:hover { color: var(--ink); background: rgba(255,255,255,0.05); }

.nav-btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--bg);
  background: var(--lime);
  padding: 8px 18px;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
}
.nav-btn:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 100px 40px 60px;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-num {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(280px, 35vw, 520px);
  letter-spacing: -0.02em;
  color: rgba(200,241,53,0.025);
  bottom: -60px; right: -40px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-line {
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
  pointer-events: none;
}

.hero-wrap {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
  opacity: 0; animation: rise 0.5s 0.05s ease forwards;
}

.tag-pip { width: 5px; height: 5px; border-radius: 50%; background: var(--lime); animation: blink 2.5s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 116px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0; animation: rise 0.5s 0.12s ease forwards;
}

.hero-h1 .lime { color: var(--lime); }
.hero-h1 .thin {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 0.52em;
  letter-spacing: -0.01em;
  display: block;
  line-height: 1.3;
  color: var(--ink2);
  font-style: italic;
}

.hero-sub {
  font-size: 17.5px; font-weight: 300;
  color: var(--ink2); line-height: 1.8;
  max-width: 420px; margin-bottom: 32px;
  opacity: 0; animation: rise 0.5s 0.2s ease forwards;
}

.hero-chips {
  display: flex; gap: 7px; flex-wrap: wrap;
  opacity: 0; animation: rise 0.5s 0.26s ease forwards;
}

.chip {
  font-size: 12px; font-weight: 500;
  color: var(--ink3);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 13px;
  transition: color 0.15s, border-color 0.15s;
}
.chip:hover { color: var(--ink); border-color: var(--border2); }

/* ── COUNTER CARD ── */
.counter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  opacity: 0; animation: rise 0.5s 0.3s ease forwards;
}

.cc-top {
  padding: 20px 22px 16px;
  border-bottom: 1px solid var(--border);
}

.cc-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink3); margin-bottom: 6px;
}

.cc-counter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 58px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--red);
  transition: color 0.3s;
}

.cc-counter.resolved { color: var(--lime); }

.cc-caption {
  font-size: 12px; font-weight: 400;
  color: var(--ink2); margin-top: 5px;
  line-height: 1.5;
}

.cc-sub-caption {
  font-size: 10.5px;
  font-weight: 300;
  color: var(--ink3);
  margin-top: 10px;
  line-height: 1.5;
}

.cc-mid {
  padding: 14px 22px;
  border-bottom: 1px solid var(--border);
}

.cc-progress-label {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 7px;
}

.cc-progress-label .left { color: var(--ink3); text-transform: uppercase; }
.cc-progress-label .right { color: var(--lime); }

.cc-track {
  height: 5px; border-radius: 99px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}

.cc-fill {
  height: 100%; border-radius: 99px;
  background: var(--lime);
  transition: width 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
}

.cc-bottom { padding: 16px 22px 20px; }

/* Signup inside card */

.cc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.05em;
  color: var(--ink); margin-bottom: 4px;
}

.cc-sub {
  font-size: 12px; color: var(--ink3);
  margin-bottom: 14px; line-height: 1.5;
}

.cc-input {
  width: 100%;
  padding: 10px 13px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px; font-weight: 400;
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 10px;
}
.cc-input:focus { border-color: var(--lime); }
.cc-input::placeholder { color: var(--ink3); }

.cc-submit {
  width: 100%;
  padding: 11px;
  background: var(--lime);
  color: var(--bg);
  border: none; border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  margin-bottom: 10px;
}
.cc-submit:hover { opacity: 0.88; transform: translateY(-1px); }

.cc-note { font-size: 11px; color: var(--ink3); text-align: center; }

/* Seg */
.seg-wrap { display: none; }
.seg-wrap.on { display: block; }

.seg-q {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; letter-spacing: 0.05em;
  color: var(--ink); margin-bottom: 12px;
}

.seg-opts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7px; margin-bottom: 10px;
}

.seg-o {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 10px;
  cursor: pointer;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  transition: border-color 0.15s, background 0.15s;
}
.seg-o:hover { border-color: var(--lime); background: var(--lime-dim); }

.seg-o-t { font-size: 12px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 1px; }
.seg-o-s { font-size: 11px; color: var(--ink3); }

.seg-skip {
  display: block; width: 100%; text-align: center;
  font-size: 11px; color: var(--ink3);
  background: none; border: none;
  font-family: 'Nunito', sans-serif;
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px; padding: 4px 0;
}
.seg-skip:hover { color: var(--ink2); }

/* Success */
.ok-wrap { display: none; text-align: center; padding: 8px 0; }
.ok-wrap.on { display: block; }

.ok-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lime-dim);
  border: 1px solid rgba(200,241,53,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}

.ok-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; letter-spacing: 0.05em;
  color: var(--lime); margin-bottom: 6px;
}

.ok-body { font-size: 12px; color: var(--ink3); line-height: 1.6; }

/* ── TICKER ── */
.ticker {
  background: var(--lime);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex; gap: 0;
  animation: scroll 22s linear infinite;
}

.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--bg);
  padding: 0 28px;
  display: flex; align-items: center; gap: 14px;
}

.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(17,17,16,0.35);
}

@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.sec { padding: 96px 40px; border-top: 1px solid var(--border); }
.sec-inner { max-width: 1160px; margin: 0 auto; }

.sec-eye {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.sec-eye::before { content: ''; width: 20px; height: 1px; background: var(--lime); }

.sec-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 72px);
  letter-spacing: 0.02em; line-height: 1;
  color: var(--ink); margin-bottom: 16px;
}

.sec-h .mute {
  color: var(--ink3);
}

.sec-lead {
  font-size: 18px; font-weight: 300;
  color: var(--ink2); line-height: 1.75;
  max-width: 480px;
}

/* ── PROBLEM — full-bleed alternating ── */
.prob-list { margin-top: 64px; }

.prob-row {
  display: grid;
  grid-template-columns: 80px 320px 1fr;
  gap: 32px;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  align-items: start;
  transition: background 0.2s;
}
.prob-row:hover { background: rgba(255,255,255,0.015); }
.prob-row:last-child { border-bottom: 1px solid var(--border); }

.prob-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; letter-spacing: 0.02em;
  color: var(--border2); line-height: 1;
  padding-top: 4px;
  transition: color 0.2s;
}
.prob-row:hover .prob-num { color: var(--lime); }

.prob-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; letter-spacing: 0.03em; line-height: 1.1;
  color: var(--ink); padding-right: 40px;
  padding-top: 4px;
}

.prob-p {
  font-size: 16px; font-weight: 400; /* Increased weight from 300 to 400 for dark background legibility */
  color: var(--ink); /* Maximum contrast */
  line-height: 1.75;
}

/* ── HOW — horizontal scroll feeling, big numbers ── */
.how-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}

.how-col {
  background: var(--surface);
  padding: 36px 28px;
  transition: background 0.2s;
  position: relative;
}
.how-col:hover { background: var(--surface2); }

.how-big-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; letter-spacing: 0.01em; line-height: 1;
  color: rgba(200,241,53,0.12);
  margin-bottom: 20px;
  transition: color 0.2s;
}
.how-col:hover .how-big-num { color: rgba(200,241,53,0.22); }

.how-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 99px;
  margin-bottom: 14px;
}
.hb-free { background: var(--lime-dim); color: var(--lime); border: 1px solid rgba(200,241,53,0.2); }
.hb-solo { background: rgba(255,255,255,0.05); color: var(--ink3); border: 1px solid var(--border); }

.how-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.04em; line-height: 1.1;
  color: var(--ink); margin-bottom: 10px;
}

.how-p {
  font-size: 15px; font-weight: 300;
  color: var(--ink2); line-height: 1.75;
}

/* ── AUDIENCE — overlapping cards ── */
.aud-wrap {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.aud-card {
  border-radius: var(--r2);
  padding: 44px 40px;
  border: 1px solid var(--border);
}

.aud-card.a1 { background: var(--surface); margin-bottom: -40px; }
.aud-card.a2 { background: var(--lime); margin-top: 40px; }

.a1 .aud-eye { color: var(--lime); font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 16px; }
.a2 .aud-eye { color: rgba(17,17,16,0.75); font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; margin-bottom: 16px; }

.aud-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 2.8vw, 34px);
  letter-spacing: 0.02em; line-height: 1.1;
  margin-bottom: 14px;
}
.a1 .aud-h { color: var(--ink); }
.a2 .aud-h { color: var(--bg); }

.aud-p {
  font-size: 16px; font-weight: 300;
  line-height: 1.75; margin-bottom: 24px;
}
.a1 .aud-p { color: var(--ink2); }
.a2 .aud-p { color: rgba(17,17,16,0.85); }

.aud-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.aud-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 400; line-height: 1.5;
}
.a1 .aud-list li { color: rgba(240,237,230,0.65); }
.a2 .aud-list li { color: rgba(17,17,16,0.85); }

.aud-chk { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; }

/* ── PRICING ── */
.price-wrap {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.price-card.pop {
  border-color: var(--lime);
}

.ph-cell {
  background: var(--surface);
  padding: 28px 28px 20px;
}
.ph-cell.pop { background: var(--lime); }

.ph-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px; display: block;
}
.ph-cell:not(.pop) .ph-tag { color: var(--ink3); }
.ph-cell.pop .ph-tag { color: rgba(17,17,16,0.75); }

.ph-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.ph-cell:not(.pop) .ph-name { color: var(--ink); }
.ph-cell.pop .ph-name { color: var(--bg); }

.ph-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; letter-spacing: 0.01em; line-height: 1;
}
.ph-cell:not(.pop) .ph-price { color: var(--ink); }
.ph-cell.pop .ph-price { color: var(--bg); }

.ph-per { font-size: 12px; margin-top: 3px; }
.ph-cell:not(.pop) .ph-per { color: var(--ink3); }
.ph-cell.pop .ph-per { color: rgba(17,17,16,0.75); }

.pf-col { background: var(--surface2); padding: 20px 28px 28px; flex-grow: 1; }
.pf-col.pop { background: rgba(200,241,53,0.05); }

.pf-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }

.pf-list li {
  font-size: 14.5px; font-weight: 400;
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.5;
  color: var(--ink2);
}

.pf-y { color: var(--lime); flex-shrink: 0; font-size: 12px; margin-top: 2px; }
.pf-n { color: var(--ink3); flex-shrink: 0; font-size: 12px; margin-top: 2px; }

/* ── FINAL CTA ── */
.final {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}

.final-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,241,53,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.final-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: start;
  position: relative; z-index: 1;
}

.final-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6.5vw, 88px);
  letter-spacing: 0.02em; line-height: 0.98;
  color: var(--ink); margin-bottom: 20px;
}

.final-h .lime { color: var(--lime); }
.final-h .dim { color: var(--ink3); }

.final-p {
  font-size: 16px; font-weight: 300;
  color: var(--ink2); line-height: 1.75;
  margin-bottom: 36px; max-width: 400px;
}

.final-reassure {
  display: flex; flex-direction: column; gap: 10px;
}

.reassure-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 400; color: var(--ink2);
}

.reassure-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.final-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}

.ffc-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}

.ffc-head-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }

.ffc-head-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; letter-spacing: 0.06em;
  color: var(--ink);
}

.ffc-body { padding: 20px 24px 24px; }

.ffc-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink3); display: block; margin-bottom: 6px;
}

.ffc-input {
  width: 100%;
  padding: 10px 13px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px; color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
  margin-bottom: 12px;
}
.ffc-input:focus { border-color: var(--lime); }
.ffc-input::placeholder { color: var(--ink3); }

.ffc-btn {
  width: 100%;
  padding: 12px;
  background: var(--lime);
  color: var(--bg);
  border: none; border-radius: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  margin-bottom: 12px;
}
.ffc-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.ffc-note { font-size: 11px; color: var(--ink3); text-align: center; }

/* Final card seg/ok inherits cc styles but overrides bg */
.ffc-body .seg-wrap.on { display: block; }
.ffc-body .seg-o { background: var(--surface2); }
.ffc-body .seg-o:hover { background: var(--lime-dim); border-color: var(--lime); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 22px 40px;
  display: flex; align-items: center;
}

.foot-inner {
  max-width: 1160px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}

.foot-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: 0.06em;
  color: var(--ink3);
  text-decoration: none;
}

.foot-copy { font-size: 13px; color: var(--ink3); }

/* ── REVEAL ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ── SIGNUP COUNTER ── */
.signup-counter {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  opacity: 0;
  animation: rise 0.5s 0.42s ease forwards;
}
.signup-counter.show { display: flex; }

.counter-avatars {
  display: flex;
}

.counter-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -7px;
  font-size: 10px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
}
.counter-avatar:first-child { margin-left: 0; }
.ca1 { background: #c8f135; }
.ca2 { background: #6ee7b7; }
.ca3 { background: #fbbf24; }
.ca4 { background: #f87171; }

.counter-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink2);
  line-height: 1.4;
}

.counter-text strong {
  color: var(--lime);
  font-weight: 700;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 0 20px; }
  .nav-r .nav-a { display: none; }
  .hero { padding: 90px 20px 60px; }
  .hero-bg-num { font-size: 180px; }
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
  .ticker-item { padding: 0 18px; }
  .sec { padding: 64px 20px; }
  .prob-row { grid-template-columns: 48px 1fr; grid-template-rows: auto auto; }
  .prob-p { grid-column: 2; }
  .how-row { grid-template-columns: 1fr 1fr; }
  .aud-wrap { grid-template-columns: 1fr; }
  .aud-card.a1 { margin-bottom: 0; }
  .aud-card.a2 { margin-top: 0; }
  .price-wrap { grid-template-columns: 1fr; gap: 20px; }
  .final { padding: 64px 20px; }
  .final-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 20px; }
}

@media (max-width: 600px) {
  .how-row { grid-template-columns: 1fr; }
}

/* ── UTILITIES ── */
.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
