/* ===== ROOT VARIABLES ===== */
:root {
  --bg-primary: #0d0f1a;
  --bg-secondary: #131626;
  --bg-card: #1a1d2e;
  --bg-card-hover: #1f2338;
  --accent-gold: #f5a623;
  --accent-gold-light: #ffc24a;
  --accent-teal: #2de0b0;
  --accent-teal-dark: #1bb890;
  --accent-red: #e84545;
  --text-primary: #ffffff;
  --text-secondary: #b0b8d0;
  --text-muted: #6e7a9a;
  --border-color: #252840;
  --border-accent: #2a2e4a;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-display: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 20px rgba(245,166,35,0.25);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: var(--accent-teal); text-decoration: none; }
a:hover { color: var(--accent-gold); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.text-gold { color: var(--accent-gold); }
.text-teal { color: var(--accent-teal); }

/* ===== TOP PROMO STRIP ===== */
.promo-strip {
  background: linear-gradient(90deg, #1a0a00 0%, #2d1500 40%, #1a0a00 100%);
  border-bottom: 2px solid var(--accent-gold);
  padding: 12px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.promo-strip__text {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}
.promo-strip__text span { color: var(--accent-gold); font-size: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #e8920a 100%);
  color: #0d0f1a;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.2s ease;
  display: inline-block;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(245,166,35,0.45);
  color: #0d0f1a;
}
.btn-teal {
  background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-teal-dark) 100%);
  color: #0d0f1a;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.2s ease;
  display: inline-block;
}
.btn-teal:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(45,224,176,0.35);
  color: #0d0f1a;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.logo__text {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo__text span { color: var(--accent-gold); }

.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--text-primary);
  background: var(--bg-card);
}
.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(160deg, #0d1530 0%, #0a0f1e 50%, #0d1520 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,224,176,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__label {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 30px;
  line-height: 1.7;
}
.hero__cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__trust {
  margin-top: 28px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.hero__trust-item .icon {
  color: var(--accent-teal);
  font-size: 16px;
}

/* Rating card */
.rating-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.rating-card__score {
  font-size: 64px;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -2px;
}
.rating-card__label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.rating-card__stars {
  font-size: 26px;
  color: var(--accent-gold);
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.rating-card__divider {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 18px 0;
}
.rating-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
  margin-bottom: 20px;
}
.rating-card__stat-item { }
.rating-card__stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.rating-card__stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-teal);
}

/* ===== BONUS BANNER MID ===== */
.bonus-banner {
  background: linear-gradient(90deg, #1a1000 0%, #221500 35%, #1a1000 100%);
  border-top: 1px solid rgba(245,166,35,0.3);
  border-bottom: 1px solid rgba(245,166,35,0.3);
  padding: 22px 20px;
}
.bonus-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bonus-banner__badge {
  background: var(--accent-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}
.bonus-banner__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent-gold);
}
.bonus-banner__sub {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 20px;
}
.section--alt {
  background: var(--bg-secondary);
}
.section__header {
  margin-bottom: 40px;
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  color: var(--accent-teal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section__title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section__lead {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== FEATURE CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all 0.25s ease;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.feature-card__icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.feature-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.feature-card__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== BONUS SECTION ===== */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 36px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
}
.bonus-card__type {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-teal);
  font-weight: 700;
  margin-bottom: 8px;
}
.bonus-card__amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.bonus-card__desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}
.bonus-card__terms {
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== PROS CONS ===== */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.pros-cons__box {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.pros-cons__box--pros { border-top: 3px solid #22c55e; }
.pros-cons__box--cons { border-top: 3px solid var(--accent-red); }
.pros-cons__title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pros-cons__list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.pros-cons__list li:last-child { border-bottom: none; }
.pros-cons__list li::before {
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.pros-cons__box--pros .pros-cons__list li::before { content: '✓'; color: #22c55e; font-weight: 700; }
.pros-cons__box--cons .pros-cons__list li::before { content: '✕'; color: var(--accent-red); font-weight: 700; }

/* ===== GAMES TABLE ===== */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-accent);
  max-width: 1200px;
  margin: 0 auto;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 14px;
}
.data-table thead tr {
  background: var(--bg-card);
  border-bottom: 2px solid var(--border-accent);
}
.data-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
}
.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  vertical-align: middle;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--bg-card-hover); }
.data-table .highlight { color: var(--accent-gold); font-weight: 700; }
.data-table .tag {
  display: inline-block;
  background: rgba(45,224,176,0.12);
  color: var(--accent-teal);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
}

/* ===== PAYMENT GRID ===== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}
.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s;
}
.payment-item:hover { border-color: var(--accent-teal); }
.payment-item__icon { font-size: 24px; margin-bottom: 8px; }
.payment-item__name { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.payment-item__time { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

/* ===== REVIEW PROSE ===== */
.review-content {
  max-width: 820px;
  margin: 0 auto;
}
.review-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 40px 0 16px;
  color: var(--text-primary);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}
.review-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--accent-gold);
}
.review-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.8;
}
.review-content strong { color: var(--text-primary); }
.review-content ul {
  margin: 12px 0 20px 0;
  display: grid;
  gap: 8px;
}
.review-content ul li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}
.review-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-teal);
}

/* ===== RATING BREAKDOWN ===== */
.rating-breakdown {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  max-width: 820px;
  margin: 0 auto 40px;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}
.rating-row:last-child { border-bottom: none; }
.rating-row__label {
  width: 160px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.rating-row__bar {
  flex: 1;
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  overflow: hidden;
}
.rating-row__fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
}
.rating-row__score {
  width: 36px;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  line-height: 1.45;
}
.faq-item__question:hover { color: var(--accent-gold); }
.faq-item__chevron {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--accent-teal);
  transition: transform 0.3s ease, border-color 0.2s;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}
.faq-item.open .faq-item__answer { max-height: 500px; }
.faq-item.open .faq-item__chevron { transform: rotate(180deg); border-color: var(--accent-teal); }

/* ===== STEPS (HOW TO) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  counter-reset: step-counter;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  position: relative;
  counter-increment: step-counter;
}
.step-card::before {
  content: counter(step-counter);
  position: absolute;
  top: 20px; right: 20px;
  font-size: 36px;
  font-weight: 900;
  color: rgba(245,166,35,0.12);
  line-height: 1;
}
.step-card__num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-gold), #e8920a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #0d0f1a;
  margin-bottom: 16px;
}
.step-card__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card__text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== HIGHLIGHT BOX ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(45,224,176,0.07) 0%, rgba(245,166,35,0.05) 100%);
  border: 1px solid rgba(45,224,176,0.25);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  max-width: 820px;
  margin: 32px auto;
}
.highlight-box p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #080a12;
  border-top: 1px solid var(--border-color);
  padding: 48px 20px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col__logo { margin-bottom: 14px; }
.footer-col__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.footer-col__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--accent-gold); }
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-badge {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.responsible-gaming {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 28px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}
.responsible-gaming strong { color: var(--text-secondary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; }
  .rating-card { max-width: 420px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 16px;
    z-index: 99;
    gap: 4px;
  }
  .header-cta .btn-primary { font-size: 12px; padding: 8px 16px; }
  .hero { padding: 40px 20px; }
  .pros-cons { grid-template-columns: 1fr; }
  .section { padding: 48px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .promo-strip { flex-direction: column; gap: 10px; }
  .bonus-banner__inner { flex-direction: column; text-align: center; }
  .rating-breakdown { padding: 20px 16px; }
  .rating-row__label { width: 120px; font-size: 12px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn-primary,
  .hero__cta-group .btn-teal { width: 100%; text-align: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
}
