/* =====================================================
   BlastBet – Gates of Olympus 1000 SEO Landing Page
   ===================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --bg:         #0a0a0f;
  --surface:    #13131c;
  --surface-2:  #1c1c28;
  --accent:     #E50F44;
  --accent-h:   #FF2857;
  --text:       #ffffff;
  --text-muted: #8888a8;
  --radius:     14px;
  --max-w:      1200px;
  --header-h:   68px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-title--left { text-align: left; }

.section-subtitle {
  color: var(--text-muted);
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--gold {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--gold:hover {
  background: var(--accent-h);
  color: #fff;
  border-color: var(--accent-h);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn--lg { padding: 16px 40px; font-size: 1.05rem; border-radius: 12px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: var(--header-h);
}
.header--scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}
.logo__text  { font-size: 1.55rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1; }
.logo__blast { color: var(--text); }
.logo__bet   { color: var(--accent); }

/* Desktop nav */
.nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.nav__link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav__link:hover { color: var(--text); }

/* Hamburger */
.nav__burger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
  line-height: 1;
}

/* Mobile nav drawer */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: var(--surface);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile__link {
  color: var(--text-muted);
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}
.nav-mobile__link:hover { color: var(--text); }

/* ===== HERO ===== */
.hero { padding: 36px 0 64px; }

.hero__banner {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 44px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
}
.hero__img { width: 100%; height: auto; display: block; }

.hero__content {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}
.hero__title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero__game-title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1.3;
}
.hero__subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero__subtitle strong { color: var(--accent); font-weight: 700; }

.hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== STATS ===== */
.stats { padding: 0 0 72px; }
.stats__intro,
.stats__outro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}
.stats__intro { margin-bottom: 28px; }
.stats__outro { margin-top: 28px; margin-bottom: 0; }
.stats__intro strong,
.stats__outro strong { color: var(--text); }
.stats__intro a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.stats__intro a:hover { color: var(--accent-h); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  border: 1px solid rgba(229, 15, 68, 0.18);
}
.stats__value {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 6px;
  line-height: 1;
}
.stats__label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ===== BONUS ===== */
.bonus {
  padding: 80px 0;
  background: var(--surface);
}
.bonus__main-card {
  background: linear-gradient(135deg, #1f1f30 0%, #14141f 100%);
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
}
.bonus__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.bonus__badge--silver { background: #c0c0c0; }
.bonus__badge--bronze { background: #cd7f32; }

.bonus__amount {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.bonus__spins {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.bonus__desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.bonus__secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 620px;
  margin: 0 auto 24px;
}
.bonus__secondary-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.bonus__secondary-amount {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  margin: 10px 0 6px;
  line-height: 1;
}
.bonus__secondary-spins {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.bonus__disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 8px;
}

/* ===== ABOUT ===== */
.about { padding: 80px 0; }

.about__hero-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.6);
}
.about__hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.about__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 0.975rem;
}
.about__text p strong { color: var(--text); }

.about__specs {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 8px 24px;
}
.about__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.about__spec:last-child { border-bottom: none; }
.about__spec-label {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.about__spec-value {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== FEATURES ===== */
.features {
  padding: 80px 0;
  background: var(--surface);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.features__card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.features__card:hover {
  border-color: rgba(229, 15, 68, 0.28);
}
.features__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.features__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.features__desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ===== HOW TO PLAY ===== */
.how-to { padding: 80px 0; }
.how-to__steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 52px;
  gap: 4px;
}
.how-to__step {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}
.how-to__num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.how-to__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-to__desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.how-to__arrow {
  font-size: 1.4rem;
  color: var(--accent);
  padding-top: 24px;
  flex-shrink: 0;
  align-self: center;
  padding-left: 4px;
  padding-right: 4px;
}
.how-to__cta { text-align: center; }

/* ===== WHY BLASTBET ===== */
.why {
  padding: 80px 0;
  background: var(--surface);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why__card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.why__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.why__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.why__desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ===== AFFILIATE ===== */
.affiliate { padding: 80px 0; background: var(--surface); }
.affiliate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.affiliate__img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.affiliate__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.affiliate__desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.affiliate__desc a { color: var(--accent); text-decoration: underline; }
.affiliate__list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.affiliate__list li {
  color: var(--text-muted);
  font-size: 0.95rem;
  padding-left: 20px;
  position: relative;
}
.affiliate__list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* ===== FAQ ===== */
.faq { padding: 80px 0; }
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 22px 52px 22px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  line-height: 1.4;
}
.faq__question::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 300;
  line-height: 1;
}
.faq__question[aria-expanded="true"]::after {
  content: '−';
}
.faq__answer {
  display: none;
  padding: 0 0 24px;
}
.faq__answer.open { display: block; }
.faq__answer p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}
.faq__answer p strong { color: var(--text); }

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 40px;
  background: #06060a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.footer__nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__link {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.footer__link:hover { color: var(--text); }
.footer__badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.footer__badge {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 4px 14px;
  font-weight: 800;
  font-size: 0.9rem;
}
.footer__text {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.footer__disclaimer {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer__copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.footer__updated { color: var(--text-muted); }
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--surface-2);
}
.footer__social-link:hover {
  color: var(--text);
  border-color: rgba(229, 15, 68, 0.4);
}
.provider-chip {
  cursor: pointer;
}
a.provider-chip:hover {
  border-color: rgba(229, 15, 68, 0.4);
  color: var(--text);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  background: var(--accent);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== BONUS EXTRAS (cashback, wheel, calendar) ===== */
.bonus__extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 36px auto 24px;
}
.bonus__extra-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.bonus__extra-icon { font-size: 2rem; margin-bottom: 12px; line-height: 1; }
.bonus__extra-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.bonus__extra-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}
.bonus__extra-desc strong { color: var(--text); }
.bonus__wager-note {
  max-width: 620px;
  margin: 0 auto 16px;
  text-align: center;
  background: rgba(229, 15, 68,0.08);
  border: 1px solid rgba(229, 15, 68,0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.bonus__wager-note strong { color: var(--accent); }

/* ===== CASINO OVERVIEW / INFO TABLE ===== */
.casino-overview { padding: 80px 0; background: var(--surface); }
.overview-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.overview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.overview-table thead tr {
  background: rgba(229, 15, 68,0.1);
}
.overview-table thead th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.overview-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.overview-table tbody tr:last-child { border-bottom: none; }
.overview-table tbody tr:nth-child(odd) { background: rgba(255,255,255,0.02); }
.overview-table td { padding: 14px 20px; vertical-align: middle; }
.overview-table__label {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  width: 200px;
}
.overview-table__value { color: var(--text-muted); }
.overview-note {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
}

/* ===== PAYMENTS ===== */
.payments { padding: 80px 0; }
.payments-table .check { color: #4ade80; font-weight: 700; text-align: center; }
.payments-table td:nth-child(3),
.payments-table td:nth-child(4) { text-align: center; }
.payments__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.payments__note-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.07);
}
.payments__note-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.payments__note-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}
.payments__note-card p strong { color: var(--text); }

/* ===== GAME LOBBY ===== */
.lobby { padding: 80px 0; background: var(--surface); }

/* ===== SLOTS RTP ===== */
.slots-rtp { padding: 80px 0; }
.rtp-table__highlight td { background: rgba(229, 15, 68,0.06) !important; }
.rtp-table__highlight .overview-table__label { color: var(--accent); }
.rtp-val { font-weight: 700; color: var(--accent); }

/* ===== PROVIDERS ===== */
.providers-section { padding: 80px 0; background: var(--surface); }
.providers-desc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.providers-desc__card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.07);
}
.providers-desc__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.providers-desc__text {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
.providers-desc__text strong { color: var(--text); }
.providers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}
.provider-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--surface-2);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}
.provider-chip--featured {
  border-color: rgba(229, 15, 68,0.4);
  color: var(--accent);
  font-weight: 700;
}

/* ===== SPORTSBOOK + VIP ===== */
.sportsbook-vip { padding: 80px 0; }
.support-mobile { padding: 80px 0; background: var(--surface); }
.sv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}
.sv-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sv-card__icon { font-size: 2rem; line-height: 1; }
.sv-card__title { font-size: 1.15rem; font-weight: 800; }
.sv-card__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}
.sv-card__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sv-card__list li {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding-left: 16px;
  position: relative;
}
.sv-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}
.sv-card__list li strong { color: var(--text); }
.sv-card__note {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-style: italic;
  margin: 0;
}
.sv-card .btn { align-self: flex-start; margin-top: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features__grid    { grid-template-columns: repeat(2, 1fr); }
  .why__grid         { grid-template-columns: repeat(2, 1fr); }
  .bonus__extras     { grid-template-columns: 1fr 1fr; }
  .payments__notes   { grid-template-columns: 1fr 1fr; }
  .about__body       { grid-template-columns: 1fr; gap: 32px; }
  .providers-desc    { grid-template-columns: 1fr; }
  .affiliate__grid   { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .how-to__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .how-to__arrow {
    transform: rotate(90deg);
    align-self: center;
    padding: 0;
  }

  /* Hide desktop nav, show burger */
  .nav { display: none; }
  .header__inner > .btn { display: none; }
  .nav__burger { display: block; }
}

@media (max-width: 768px) {
  .sv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .features__grid  { grid-template-columns: 1fr; }
  .why__grid       { grid-template-columns: 1fr 1fr; }
  .bonus__extras   { grid-template-columns: 1fr; }
  .payments__notes { grid-template-columns: 1fr; }

  .bonus__main-card { padding: 36px 24px; }
  .bonus__secondary-grid { grid-template-columns: 1fr; }

  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__nav { flex-direction: column; gap: 10px; }

  .hero__btns { flex-direction: column; align-items: center; }
  .hero__btns .btn { width: 100%; max-width: 320px; }

  .overview-table__label { width: auto; min-width: 120px; }
}

@media (max-width: 400px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .why__grid   { grid-template-columns: 1fr; }
}
