:root {
  --brand-primary:     #FF4400;
  --brand-secondary:   #5B2D8E;
  --brand-accent:      #FF6600;
  --brand-bg:          #F5F5F5;
  --brand-text:        #2D2D2D;
  --brand-header-bg:   #1A1A2E;
  --brand-btn-bg:      #FF4400;
  --brand-btn-text:    #FFFFFF;
  --brand-btn-radius:  24px;
  --brand-head-font:   'Montserrat', sans-serif;
  --brand-body-font:   'Open Sans', sans-serif;
  --brand-head-weight: 800;
  --brand-body-size:   14px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--brand-body-font);
  font-size: var(--brand-body-size);
  color: var(--brand-text);
  background: var(--brand-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.skip-to-content {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--brand-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 99999;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER & NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--brand-header-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
  max-width: 200px;
}

.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav ul li a {
  color: #ffffff;
  font-family: var(--brand-head-font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  background: var(--brand-primary);
  color: #fff;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  text-align: center;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.btn-primary {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
}
.btn-primary:hover { background: #e63d00; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--brand-primary);
  background: rgba(255,68,0,0.1);
}

.btn-hero {
  background: var(--brand-btn-bg);
  color: var(--brand-btn-text);
  padding: 16px 40px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  text-decoration: none;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,68,0,0.5);
}

.btn-cta {
  background: var(--brand-accent);
  color: #fff;
  padding: 14px 36px;
  border-radius: var(--brand-btn-radius);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,102,0,0.45);
}

/* Mobile nav */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

@media (max-width: 992px) {
  .main-nav ul { display: none; }
  .mobile-menu-btn { display: block; }
  .header-cta .btn-outline { display: none; }
  .main-nav.mobile-nav-active ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--brand-header-bg);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    gap: 4px;
    z-index: 999;
  }
  .main-nav.mobile-nav-active ul li a {
    display: block;
    padding: 12px 16px;
  }
}

/* ── FLOATING CTA ── */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  padding: 14px 28px;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-family: var(--brand-head-font);
}
.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

/* ── HERO ── */
.hero-section {
  min-height: 90vh;
  background: linear-gradient(135deg, #1A1A2E 0%, #2d1b5e 40%, #4a1a8a 70%, #5B2D8E 100%);
  display: flex;
  align-items: center;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,68,0,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(91,45,142,0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,68,0,0.2);
  color: var(--brand-accent);
  border: 1px solid rgba(255,102,0,0.4);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 52px);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--brand-accent); }

.hero-content p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
}
.hero-trust-item .trust-icon {
  width: 18px;
  height: 18px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.hero-stat-card .stat-value {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 26px;
  color: var(--brand-accent);
  display: block;
}
.hero-stat-card .stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.hero-bonus-card {
  background: linear-gradient(135deg, rgba(255,68,0,0.3), rgba(91,45,142,0.4));
  border: 1px solid rgba(255,68,0,0.3);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.hero-bonus-card .bonus-amount {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 36px;
  color: #fff;
}
.hero-bonus-card .bonus-label {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding: 60px 20px 40px;
    gap: 40px;
  }
  .hero-visual { order: -1; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── SECTION COMMON ── */
section { padding: 72px 0; }
.section-label {
  display: inline-block;
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--brand-text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--brand-primary); }
.section-intro {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 40px;
}

/* ── WELCOME BAND ── */
.welcome-band {
  background: var(--brand-header-bg);
  padding: 48px 0;
}
.welcome-band-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
}
.welcome-band-text h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 30px);
  color: #fff;
  margin-bottom: 10px;
}
.welcome-band-text p { color: rgba(255,255,255,0.7); font-size: 14px; }
.welcome-band-bonus {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
}
.welcome-band-bonus .big-number {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 48px;
  color: #fff;
  line-height: 1;
}
.welcome-band-bonus .big-label { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 6px; }
.welcome-band-cta { text-align: center; }

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

/* ── WHAT IS TONYBET ── */
.about-section { background: #fff; }
.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-sidebar {
  background: var(--brand-header-bg);
  border-radius: 20px;
  padding: 30px 24px;
}
.about-sidebar h3 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}
.sidebar-fact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sidebar-fact:last-child { border-bottom: none; }
.fact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,68,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.fact-text { color: rgba(255,255,255,0.85); font-size: 13px; line-height: 1.4; }
.fact-text strong { color: var(--brand-accent); display: block; font-size: 14px; }

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; }
}

/* ── GAMES SECTION ── */
.games-section { background: var(--brand-bg); }
.games-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.game-tab {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid #ddd;
  background: #fff;
  color: var(--brand-text);
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.game-tab.active, .game-tab:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.game-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
}
.game-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.game-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: linear-gradient(135deg, #2d1b5e, #4a1a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.game-card-body { padding: 14px; }
.game-card-title {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: var(--brand-text);
  margin-bottom: 4px;
}
.game-card-provider { color: #888; font-size: 11px; }
.game-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  font-family: var(--brand-head-font);
}

@media (max-width: 900px) { .games-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ── BONUS SECTION ── */
.bonus-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #2d1b5e 100%);
  padding: 80px 0;
}
.bonus-section .section-title { color: #fff; }
.bonus-section .section-intro { color: rgba(255,255,255,0.65); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bonus-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 24px;
  transition: background 0.2s, transform 0.2s;
}
.bonus-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}
.bonus-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,68,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.bonus-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.bonus-card .bonus-amount-display {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 28px;
  color: var(--brand-accent);
  margin-bottom: 10px;
}
.bonus-card p { color: rgba(255,255,255,0.6); font-size: 13px; line-height: 1.6; }
.bonus-terms { color: rgba(255,255,255,0.4); font-size: 11px; margin-top: 14px; }

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

/* ── PAYMENTS ── */
.payments-section { background: #fff; }
.payments-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.payments-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.payment-method {
  background: var(--brand-bg);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  color: var(--brand-text);
  border: 1px solid #e8e8e8;
}
.payment-speeds {
  background: var(--brand-header-bg);
  border-radius: 20px;
  padding: 28px 24px;
}
.payment-speeds h3 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}
.speed-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.speed-row:last-child { border-bottom: none; }
.speed-method { color: rgba(255,255,255,0.8); font-size: 13px; }
.speed-time { color: var(--brand-accent); font-weight: 700; font-size: 13px; font-family: var(--brand-head-font); }

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

/* ── SPORTS BETTING ── */
.sports-section {
  background: var(--brand-bg);
}
.sports-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}
.sports-sidebar-info {
  background: linear-gradient(135deg, var(--brand-secondary), #2d1b5e);
  border-radius: 20px;
  padding: 32px 24px;
}
.sports-sidebar-info h3 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}
.sports-sidebar-info p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
.sports-stat {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  margin-top: 16px;
}
.sports-stat-number {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 32px;
  color: var(--brand-accent);
}
.sports-stat-label { color: rgba(255,255,255,0.6); font-size: 12px; }
.sports-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.sports-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.sport-type {
  background: #fff;
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.sport-type:hover { transform: translateY(-3px); }
.sport-icon { font-size: 28px; display: block; margin-bottom: 8px; }
.sport-name { font-family: var(--brand-head-font); font-weight: 700; font-size: 12px; color: var(--brand-text); }

@media (max-width: 900px) {
  .sports-layout { grid-template-columns: 1fr; }
  .sports-types-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── SECURITY SECTION ── */
.security-section {
  background: var(--brand-header-bg);
  padding: 60px 0;
}
.security-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.security-card {
  text-align: center;
  padding: 28px 16px;
}
.security-card .security-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255,68,0,0.15);
  border: 1px solid rgba(255,68,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.security-card h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
}
.security-card p { color: rgba(255,255,255,0.55); font-size: 12px; line-height: 1.5; }

@media (max-width: 900px) { .security-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .security-inner { grid-template-columns: 1fr 1fr; } }

/* ── LIVE CASINO ── */
.live-section { background: #fff; }
.live-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 50px;
  align-items: center;
}
.live-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.live-games-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.live-game-tile {
  background: linear-gradient(135deg, #1A1A2E, #2d1b5e);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  color: #fff;
  transition: transform 0.2s;
}
.live-game-tile:hover { transform: translateY(-3px); }
.live-game-tile .lg-icon { font-size: 32px; margin-bottom: 10px; }
.live-game-tile .lg-title { font-family: var(--brand-head-font); font-weight: 700; font-size: 14px; }
.live-badge {
  display: inline-block;
  background: rgba(255,68,0,0.15);
  color: var(--brand-primary);
  border: 1px solid rgba(255,68,0,0.3);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--brand-head-font);
  margin-top: 8px;
}

@media (max-width: 900px) { .live-layout { grid-template-columns: 1fr; } }

/* ── RESPONSIBLE GAMBLING ── */
.rg-section { background: var(--brand-bg); }
.rg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.rg-content p {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.rg-tools {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.rg-tools h3 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 18px;
  color: var(--brand-text);
  margin-bottom: 20px;
}
.rg-tool-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}
.rg-tool-item:last-child { border-bottom: none; }
.rg-tool-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(91,45,142,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.rg-tool-text { font-size: 13px; color: #555; line-height: 1.4; }
.rg-tool-text strong { display: block; color: var(--brand-text); font-weight: 700; }

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

/* ── MID-PAGE CTA ── */
.midpage-cta {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  padding: 64px 0;
  text-align: center;
}
.midpage-cta h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  margin-bottom: 14px;
}
.midpage-cta p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 28px; }

/* ── FAQ ── */
.faq-section { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-item {
  background: var(--brand-bg);
  border-radius: 14px;
  padding: 24px 20px;
}
.faq-item h3 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 15px;
  color: var(--brand-text);
  margin-bottom: 10px;
}
.faq-item p { color: #555; font-size: 13px; line-height: 1.6; }

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

/* ── FOOTER ── */
.site-footer {
  background: var(--brand-header-bg);
  padding: 56px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 13px; line-height: 1.7; margin-top: 14px; }
.footer-col h4 {
  font-family: var(--brand-head-font);
  font-weight: 700;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--brand-accent); }

.footer-security {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.security-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.security-logo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--brand-head-font);
}
.security-logo-badge .badge-icon { font-size: 16px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--brand-primary);
  color: var(--brand-primary);
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.footer-bottom-text { color: rgba(255,255,255,0.4); font-size: 11px; line-height: 1.5; flex: 1; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal-links a { color: rgba(255,255,255,0.4); font-size: 11px; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--brand-accent); }

.footer-rg-links {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.rg-link { color: rgba(255,255,255,0.4); font-size: 11px; transition: color 0.2s; }
.rg-link:hover { color: #fff; }

@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }

/* ── LEGAL PAGES ── */
.legal-hero {
  background: var(--brand-header-bg);
  padding: 100px 0 48px;
}
.legal-hero h1 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 38px);
  color: #fff;
  margin-bottom: 10px;
}
.legal-hero p { color: rgba(255,255,255,0.6); font-size: 14px; }
.legal-content {
  background: #fff;
  padding: 56px 0;
}
.legal-body { max-width: 800px; }
.legal-body h2 {
  font-family: var(--brand-head-font);
  font-weight: 800;
  font-size: 20px;
  color: var(--brand-text);
  margin: 32px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { color: #444; font-size: 14px; line-height: 1.8; margin-bottom: 14px; }
.legal-body ul { margin: 12px 0 14px 20px; list-style: disc; }
.legal-body ul li { color: #444; font-size: 14px; line-height: 1.7; margin-bottom: 6px; }
.last-updated { color: #888; font-size: 12px; margin-bottom: 32px; }

/* ── MISC ── */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.divider { width: 48px; height: 4px; background: var(--brand-primary); border-radius: 2px; margin: 14px 0 24px; }
.divider.center { margin: 14px auto 24px; }

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn-hero { width: 100%; text-align: center; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 14px; }
  section { padding: 48px 0; }
}