/* =========================================================
   GoldenBet Casino UK — Main Stylesheet (Mobile-First)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- Design Tokens --- */
:root {
  --gold-primary:   #C8A84B;
  --gold-light:     #E4C76B;
  --gold-deep:      #8A6A1E;
  --black-bg:       #0B0C0E;
  --black-card:     #13151A;
  --black-border:   #1E2028;
  --black-hover:    #1A1C23;
  --white:          #FFFFFF;
  --off-white:      #E8E4D8;
  --grey-muted:     #7A7F8E;
  --grey-light:     #B0B5C0;
  --red-alert:      #C0392B;
  --green-ok:       #1A8C5B;

  --font-display:   'Rajdhani', sans-serif;
  --font-body:      'Inter', sans-serif;

  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;

  --shadow-card:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold:    0 0 20px rgba(200,168,75,0.25);

  --max-width:      1180px;

  /* Mobile-first section padding */
  --section-gap:    44px;
  --container-pad:  16px;
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* Prevent font size inflation on iOS */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 15px;
}

body {
  background-color: var(--black-bg);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Prevent horizontal scroll on mobile */
  max-width: 100vw;
}

a { color: var(--gold-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* =========================================================
   TYPOGRAPHY — MOBILE FIRST
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Mobile base sizes */
h1 { font-size: 1.75rem; color: var(--gold-light); }
h2 { font-size: 1.4rem;  color: var(--white); }
h3 { font-size: 1.1rem;  color: var(--gold-primary); }
h4 { font-size: 0.97rem; color: var(--off-white); }

p {
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

ul, ol { padding-left: 1.3rem; margin-bottom: 0.9rem; }
li { margin-bottom: 0.35rem; font-size: 0.88rem; }

strong { color: var(--gold-light); font-weight: 600; }

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

.section { padding: var(--section-gap) 0; }
.section--tight { padding: 32px 0; }
.section--dark { background: var(--black-card); }

/* =========================================================
   SEPARATOR
   ========================================================= */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  margin: 28px 0;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,12,14,0.97);
  border-bottom: 1px solid var(--black-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--container-pad);
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 12px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  line-height: 1;
  white-space: nowrap;
}

.logo-text span {
  display: block;
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--grey-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.header-cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* =========================================================
   BUTTONS — MOBILE FIRST
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
  /* Touch-friendly minimum tap area */
  min-height: 44px;
  padding: 10px 20px;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-deep) 100%);
  color: var(--black-bg);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover, .btn-primary:active {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  color: var(--black-bg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold-primary);
  color: var(--gold-primary);
}
.btn-outline:hover, .btn-outline:active {
  background: var(--gold-primary);
  color: var(--black-bg);
}

.btn-lg {
  font-size: 1rem;
  padding: 14px 32px;
  min-height: 52px;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 8px 16px;
  min-height: 40px;
  letter-spacing: 0.06em;
}

/* Full-width buttons on small screens */
.btn-block { width: 100%; }

/* =========================================================
   TOP BONUS BANNER
   ========================================================= */
.bonus-banner-top {
  background: linear-gradient(135deg, #1A1200 0%, #2A1E00 40%, #1A1200 100%);
  border-bottom: 2px solid var(--gold-primary);
  padding: 12px var(--container-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-banner-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,168,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bonus-banner-top__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.bonus-banner-top__text {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.3;
}

.bonus-banner-top__text em {
  color: var(--gold-light);
  font-style: normal;
}

.bonus-banner-top__sub {
  font-size: 0.68rem;
  color: var(--grey-light);
  margin-top: 1px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 40px var(--container-pad) 48px;
  overflow: hidden;
  background: linear-gradient(160deg, #0D0E12 0%, #0F1007 50%, #0B0C0E 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 320px; height: 320px;
  background: radial-gradient(ellipse, rgba(200,168,75,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.35);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 14px;
}

.hero__title {
  margin-bottom: 12px;
  hyphens: auto;
}

.hero__subtitle {
  font-size: 0.9rem;
  color: var(--grey-light);
  margin-bottom: 22px;
  line-height: 1.75;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__cta-group .btn { width: 100%; }

.hero__trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--grey-light);
  font-weight: 500;
}

.trust-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Hero visual — stat cards */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-card);
}

.stat-card__icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(200,168,75,0.2), rgba(138,106,30,0.15));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.stat-card__val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-card__label {
  font-size: 0.72rem;
  color: var(--grey-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* =========================================================
   KEY FACTS GRID
   ========================================================= */
.facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.fact-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 13px 14px;
}

.fact-item__label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-muted);
  margin-bottom: 4px;
}

.fact-item__value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--off-white);
  word-break: break-word;
}

/* =========================================================
   TABLES — MOBILE SCROLL
   ========================================================= */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  border: 1px solid var(--black-border);
  margin: 20px 0;
  /* Visual scroll hint on mobile */
  position: relative;
}

/* Scroll shadow hint */
.table-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 24px;
  background: linear-gradient(to right, transparent, rgba(11,12,14,0.6));
  pointer-events: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.8rem;
}

thead tr {
  background: linear-gradient(90deg, rgba(200,168,75,0.15), rgba(200,168,75,0.08));
  border-bottom: 1px solid var(--gold-deep);
}

th {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  padding: 11px 13px;
  text-align: left;
  white-space: nowrap;
}

td {
  padding: 10px 13px;
  color: var(--off-white);
  border-bottom: 1px solid var(--black-border);
  vertical-align: top;
  line-height: 1.5;
}

tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--black-hover); }

/* =========================================================
   CHECK LIST
   ========================================================= */
.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--off-white);
  font-size: 0.87rem;
  line-height: 1.55;
}

.check-list li::before {
  content: '';
  display: inline-block;
  width: 17px; height: 17px;
  min-width: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C8A84B'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") no-repeat center;
  margin-top: 2px;
}

/* =========================================================
   CONTENT CARDS
   ========================================================= */
.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
}

.card__icon {
  width: 38px; height: 38px;
  background: rgba(200,168,75,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 7px;
}

.card__body {
  font-size: 0.84rem;
  color: var(--grey-light);
  line-height: 1.65;
  margin: 0;
}

/* =========================================================
   STEPS
   ========================================================= */
.steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: steps;
  margin: 20px 0;
}

.steps-list li {
  counter-increment: steps;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 0.87rem;
  line-height: 1.6;
}

.steps-list li::before {
  content: counter(steps);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-primary);
  background: rgba(200,168,75,0.1);
  width: 34px; height: 34px;
  min-width: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,168,75,0.3);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================================================
   INLINE BONUS STRIPE
   ========================================================= */
.bonus-stripe {
  background: linear-gradient(135deg, #1C1400 0%, #2E2200 50%, #1C1400 100%);
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--gold-deep);
  padding: 28px var(--container-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bonus-stripe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,168,75,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.bonus-stripe__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.bonus-stripe__headline {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.bonus-stripe__headline em { color: var(--gold-light); font-style: normal; }

.bonus-stripe__sub {
  font-size: 0.78rem;
  color: var(--grey-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}

.bonus-stripe .btn { width: 100%; max-width: 320px; }

/* =========================================================
   TABLE OF CONTENTS
   ========================================================= */
.toc {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  margin: 28px 0;
}

.toc__title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.toc__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.toc__list li a {
  font-size: 0.84rem;
  color: var(--grey-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 0;
  /* Touch target */
  min-height: 36px;
}
.toc__list li a::before {
  content: '→';
  color: var(--gold-deep);
  font-size: 0.72rem;
}
.toc__list li a:hover { color: var(--gold-light); }

/* =========================================================
   EYEBROW LABEL
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

/* =========================================================
   RATING BLOCK
   ========================================================= */
.rating-block {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(200,168,75,0.08);
  border: 1px solid rgba(200,168,75,0.25);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.rating-stars { display: flex; gap: 2px; }

.star {
  width: 14px; height: 14px;
  fill: var(--gold-primary);
}

.rating-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
}

.rating-label {
  font-size: 0.72rem;
  color: var(--grey-muted);
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 22px;
}

.faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item.open { border-color: var(--gold-deep); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--off-white);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  /* Touch-friendly */
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.3;
}

.faq-question:hover { color: var(--gold-light); }
.faq-item.open .faq-question { color: var(--gold-light); }

.faq-chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gold-primary);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 16px 16px;
  font-size: 0.86rem;
  color: var(--grey-light);
  line-height: 1.72;
  border-top: 1px solid var(--black-border);
  padding-top: 14px;
}

.faq-item.open .faq-answer { display: block; }

/* =========================================================
   PAYMENT BADGES
   ========================================================= */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pay-badge {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pay-badge svg { width: 16px; height: 16px; }

/* =========================================================
   PROS / CONS
   ========================================================= */
.pros-cons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0;
}

.pros, .cons {
  background: var(--black-card);
  border-radius: var(--radius-md);
  padding: 18px 16px;
}

.pros { border-left: 3px solid var(--green-ok); }
.cons { border-left: 3px solid var(--red-alert); }

.pros__title, .cons__title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pros__title { color: var(--green-ok); }
.cons__title { color: var(--red-alert); }

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros ul li, .cons ul li {
  font-size: 0.84rem;
  color: var(--grey-light);
  padding: 5px 0;
  border-bottom: 1px solid var(--black-border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
}

.pros ul li:last-child, .cons ul li:last-child { border-bottom: none; }
.pros ul li::before { content: '✓'; color: var(--green-ok); font-weight: 700; flex-shrink: 0; }
.cons ul li::before { content: '✗'; color: var(--red-alert); font-weight: 700; flex-shrink: 0; }

/* =========================================================
   RESPONSIBLE GAMBLING NOTICE
   ========================================================= */
.rg-notice {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.3);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-top: 32px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rg-notice__icon { flex-shrink: 0; margin-top: 1px; }

.rg-notice p {
  font-size: 0.8rem;
  color: var(--grey-light);
  margin: 0;
  line-height: 1.65;
}

.rg-notice strong { color: var(--off-white); }

/* =========================================================
   SECTION INTRO TEXT
   ========================================================= */
.section-intro {
  font-size: 0.9rem;
  color: var(--grey-light);
  margin-top: 10px;
  line-height: 1.8;
  max-width: 100%;
}

/* =========================================================
   CALLOUT
   ========================================================= */
.callout {
  border-left: 3px solid var(--gold-primary);
  background: rgba(200,168,75,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 13px 16px;
  margin: 18px 0;
  font-size: 0.88rem;
  color: var(--off-white);
  font-style: italic;
  line-height: 1.7;
}

/* =========================================================
   TWO-COLUMN LAYOUT — stacked on mobile
   ========================================================= */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 22px;
}

/* =========================================================
   PILL ROW
   ========================================================= */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.pill {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey-light);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  transition: all 0.2s;
  min-height: 34px;
  display: flex;
  align-items: center;
}

.pill.active, .pill:hover {
  background: rgba(200,168,75,0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #080910;
  border-top: 1px solid var(--black-border);
  padding: 40px var(--container-pad) 28px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--black-border);
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--grey-muted);
  margin-top: 12px;
  line-height: 1.75;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a {
  font-size: 0.8rem;
  color: var(--grey-muted);
  transition: color 0.2s;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-cols-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--grey-muted);
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer-badge {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey-muted);
}

/* =========================================================
   TABLET — 600px+
   ========================================================= */
@media (min-width: 600px) {
  :root {
    --section-gap: 60px;
    --container-pad: 24px;
  }

  html { font-size: 15.5px; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.2rem; }

  p { font-size: 0.93rem; }
  li { font-size: 0.91rem; }

  .bonus-banner-top__inner {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }

  .bonus-banner-top__text { font-size: 1.05rem; }

  .hero__cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__cta-group .btn { width: auto; flex: 1 1 auto; min-width: 160px; }

  .hero__trust {
    grid-template-columns: repeat(4, auto);
    gap: 14px;
  }

  .toc__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
  }

  .check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }

  .facts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-cols-row { grid-template-columns: 1fr 1fr 1fr; }

  .bonus-stripe__headline { font-size: 1.6rem; }
  .bonus-stripe .btn { width: auto; }

  .hero__visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  table { font-size: 0.84rem; }
  th { font-size: 0.73rem; padding: 12px 14px; }
  td { padding: 11px 14px; }
}

/* =========================================================
   DESKTOP — 900px+
   ========================================================= */
@media (min-width: 900px) {
  :root {
    --section-gap: 80px;
    --container-pad: 20px;
  }

  html { font-size: 16px; }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }

  p { font-size: 1rem; }
  li { font-size: 0.95rem; }

  .logo-icon { width: 44px; height: 44px; }
  .logo-text { font-size: 1.45rem; }

  .hero { padding: 80px 20px 70px; }

  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .hero__cta-group { flex-wrap: nowrap; }
  .hero__cta-group .btn { width: auto; flex: 0 0 auto; }

  .hero__visual {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero::before {
    width: 700px; height: 700px;
    top: -100px;
  }

  .stat-card { padding: 20px 24px; gap: 18px; }
  .stat-card__val { font-size: 1.6rem; }

  .facts-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  .fact-item { padding: 18px 20px; }
  .fact-item__value { font-size: 1rem; }

  .cards-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
  .card { padding: 24px 20px; }

  .toc__list { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 6px 30px; }
  .toc { padding: 24px 28px; }

  .check-list { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

  .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
  .footer-cols-row { display: contents; }
  .footer-bottom { flex-direction: row; align-items: flex-start; justify-content: space-between; }

  .bonus-banner-top__text { font-size: 1.25rem; }
  .bonus-stripe__headline { font-size: 2rem; }

  .section-intro { font-size: 1rem; max-width: 780px; }

  th { font-size: 0.78rem; padding: 13px 16px; }
  td { padding: 12px 16px; }
  table { font-size: 0.88rem; }
}

/* =========================================================
   LARGE DESKTOP — 1200px+
   ========================================================= */
@media (min-width: 1200px) {
  h1 { font-size: 3.2rem; }

  .hero { padding: 90px 20px 80px; }
}

/* =========================================================
   HEADER LOGIN BUTTON — hide on small mobile only
   ========================================================= */
@media (max-width: 380px) {
  .header-cta .btn-outline { display: none; }
  .logo-text span { display: none; }
}

/* =========================================================
   REDUCE MOTION SUPPORT
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
