/* ═══════════════════════════════════════════════════════════
   xe8.NET — Bonuses & Promotions Page CSS
   File: bonuses/style.css
   Mobile-first. Card-focused. Zero JS (except hamburger).
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:        #0d1b4b;
  --navy-dark:   #091236;
  --blue:        #022a99;
  --blue-mid:    #022a99;
  --orange:      #ff7f00;
  --orange-dark: #d96b00;
  --green:       #16a34a;
  --gold:        #f59e0b;
  --silver:      #94a3b8;
  --bronze:      #b45309;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --light-gray:  #eef1f8;
  --gray:        #888ea8;
  --text-dark:   #111827;
  --text-body:   #374151;
  --text-muted:  #6b7280;
  --border:      #dde3f0;

  --font-main:    'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;

  --section-py:    clamp(56px, 7vw, 88px);
  --container-max: 1160px;
  --container-px:  clamp(16px, 4vw, 40px);

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

  --shadow-sm: 0 2px 8px rgba(13,27,75,0.08);
  --shadow-md: 0 8px 32px rgba(13,27,75,0.12);
  --shadow-lg: 0 16px 48px rgba(13,27,75,0.20);
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-main); font-size: 16px; line-height: 1.75; color: var(--text-body); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
}
h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  line-height: 1.2;
}
h4 {
  font-family: var(--font-main);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 700;
  line-height: 1.3;
}
p {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.75;
}

/* ─── UTILITIES ─────────────────────────────── */
.container { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-px); }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.text-green  { color: var(--green); }
.text-white  { color: var(--white); }
.text-light  { color: rgba(255,255,255,0.78); }
.text-center { text-align: center; }

.heading-split {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.heading-split.text-white { color: var(--white); }
.heading-split.text-light { color: rgba(255,255,255,0.78); }
.section-intro {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 700px;
  margin-bottom: 36px;
}
.section-intro.text-white { color: var(--white); }
.section-intro.text-light { color: var(--white); }
.section-label { font-size: clamp(12px, 1.4vw, 14px); font-weight: 700; color: var(--gray); letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.3; display: block; margin-bottom: 6px; }
.section-label-center { font-size: clamp(12px, 1.4vw, 14px); font-weight: 700; color: var(--gray); letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.3; display: block; margin-bottom: 6px; text-align: center; }
.section-subtext { max-width: 640px; margin-inline: auto; text-align: center; color: var(--text-muted); font-size: 15px; margin-bottom: 40px; line-height: 1.7; }

/* Section tag pill */
.section-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag--light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* Scrollable table wrapper */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

/* CTA Buttons */
.btn-cta-primary {
  display: inline-block; padding: 14px 32px; background: var(--orange); color: var(--white);
  border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.2s;
}
.btn-cta-primary:hover { background: var(--orange-dark); }
.btn-cta-secondary {
  display: inline-block; padding: 14px 32px; border: 2px solid var(--blue); color: var(--blue);
  border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.2s, color 0.2s;
}
.btn-cta-secondary:hover { background: var(--blue); color: var(--white); }

/* ─── HEADER ─────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 200; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.header-inner { max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-px); height: 60px; display: flex; align-items: center; gap: 24px; }
.logo img { height: 36px; width: auto; }
.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: clamp(12px, 2vw, 28px); align-items: center; }
.main-nav a { font-size: 14px; font-weight: 600; color: var(--text-dark); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; transition: color 0.2s; }
.main-nav a:hover, .main-nav a.nav-active { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-login { font-size: 14px; font-weight: 700; color: var(--text-dark); letter-spacing: 0.04em; text-transform: uppercase; padding: 6px 4px; transition: color 0.2s; }
.btn-login:hover { color: var(--blue); }
.btn-register { font-size: 13px; font-weight: 700; background: var(--orange); color: var(--white); padding: 8px 18px; border-radius: var(--radius-sm); letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.2s; }
.btn-register:hover { background: var(--orange-dark); }
.lang-switcher img { display: block; border-radius: 3px; }
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0; }
.hamburger span { display: block; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { background: var(--white); border-top: 1px solid var(--border); padding: 20px var(--container-px) 24px; }
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; margin-bottom: 20px; }
.mobile-menu a { display: block; padding: 10px 0; font-size: 16px; font-weight: 600; color: var(--text-dark); border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: 0.04em; }
.mobile-auth { display: flex; gap: 12px; }
.mobile-auth .btn-login { flex: 1; text-align: center; padding: 12px; border: 2px solid var(--text-dark); border-radius: var(--radius-sm); }
.mobile-auth .btn-register { flex: 1; text-align: center; padding: 12px; }

/* ─── BREADCRUMB ────────────────────────────── */
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { font-size: 13px; color: var(--blue); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li[aria-hidden="true"] { color: var(--gray); font-size: 13px; }
.breadcrumb span { font-size: 13px; color: var(--text-muted); }

/* ─── PROMO HERO ────────────────────────────── */
.promo-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%, #1a1060 100%);
  padding-block: clamp(48px, 7vw, 80px);
  overflow: hidden;
}
.promo-hero-inner { display: flex; flex-direction: column; gap: 36px; }
.hero-eyebrow { font-size: 14px; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.promo-h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
}
.promo-h1 span { color: var(--orange); }
.promo-hero-desc { font-size: clamp(14px, 1.8vw, 16px); color: rgba(255,255,255,0.72); line-height: 1.7; max-width: 640px; }

/* Stats strip */
.promo-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-wrap: wrap;
}
.promo-stat {
  flex: 1;
  min-width: 120px;
  padding: 20px 24px;
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1.1;
  white-space: pre-line;
}
.stat-label { display: block; font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }
.promo-stat-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }

/* ─── BONUS QUICKNAV ────────────────────────── */
.bonus-quicknav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 60px;
  z-index: 100;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bonus-quicknav .container { padding-block: 0; }
.bonus-quicknav ul { display: flex; gap: 0; min-width: max-content; }
.bonus-quicknav a {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.bonus-quicknav a:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* ─── SECTION: WELCOME BONUSES ─────────────── */
.section-bonuses {
  padding-block: var(--section-py);
  background: var(--off-white);
}

/* Welcome cards */
.welcome-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.bonus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.bonus-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.bonus-card--featured {
  border-color: var(--orange);
  background: linear-gradient(160deg, #fff9f0 0%, var(--white) 60%);
}
.bonus-card--sports { border-color: var(--green); }

.bonus-card-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.bonus-card-badge--green { background: var(--green); }

.bonus-card-top { display: flex; flex-direction: column; gap: 4px; }
.bonus-pct {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.bonus-card--sports .bonus-pct { color: var(--green); }

.bonus-type { font-size: 14px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.bonus-cat { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-body); font-weight: 600; line-height: 1.4; }

.bonus-card-details { display: flex; flex-direction: column; gap: 8px; }
.detail-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); }
.detail-row:last-child { border-bottom: none; }
.detail-label { font-size: 14px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.detail-val { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.detail-val.highlight { color: var(--orange); font-size: 17px; }

.bonus-card-example {
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.bonus-card-note { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; }

.btn-claim {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: auto;
}
.btn-claim:hover { background: var(--orange-dark); }
.btn-claim--dark { background: var(--navy); }
.btn-claim--dark:hover { background: var(--blue); }

/* Full compare table */
.compare-wrap { margin-top: 8px; }
.compare-title { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }

.promo-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 500px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.promo-table thead tr { background: var(--navy); }
.promo-table th { padding: 13px 16px; text-align: left; font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap; }
.promo-table td { padding: 13px 16px; font-size: 14px; color: var(--text-body); border-bottom: 1px solid var(--border); }
.promo-table tbody tr:last-child td { border-bottom: none; }
.promo-table tbody tr:hover { background: var(--off-white); }
.row-featured { background: #fff9f0; }
.row-featured:hover { background: #fef3e2 !important; }
.row-gold { background: rgba(245,158,11,0.12); }
.row-silver { background: rgba(148,163,184,0.1); }
.row-bronze { background: rgba(180,83,9,0.08); }

/* Dark table variant */
.promo-table--dark { background: rgba(255,255,255,0.05); }
.promo-table--dark thead tr { background: rgba(255,255,255,0.1); }
.promo-table--dark th { color: var(--white); }
.promo-table--dark td { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.1); }
.promo-table--dark tbody tr:hover { background: rgba(255,255,255,0.06); }
.promo-table--dark .row-gold { background: rgba(245,158,11,0.15); }
.promo-table--dark .row-silver { background: rgba(148,163,184,0.1); }
.promo-table--dark .row-bronze { background: rgba(180,83,9,0.1); }

.table-note { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 12px; line-height: 1.6; }

/* ─── SECTION: LEADERBOARD ──────────────────── */
.section-leaderboard {
  padding-block: var(--section-py);
  background: var(--navy);
  overflow: hidden;
}

/* Podium */
.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.podium-place { display: flex; flex-direction: column; align-items: center; text-align: center; width: clamp(120px, 22vw, 200px); }
.podium-crown { font-size: 28px; margin-bottom: 4px; }
.podium-rank { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.podium-prize { font-family: var(--font-display); font-size: clamp(22px, 3.5vw, 32px); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; }
.podium-reward { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.4; margin-bottom: 12px; max-width: 140px; }

.podium-block { width: 100%; border-radius: 8px 8px 0 0; }
.podium-block--gold   { height: 100px; background: linear-gradient(180deg, var(--gold) 0%, #d97706 100%); }
.podium-block--silver { height: 70px;  background: linear-gradient(180deg, var(--silver) 0%, #64748b 100%); }
.podium-block--bronze { height: 50px;  background: linear-gradient(180deg, #cd7f32 0%, var(--bronze) 100%); }

.podium-place--1st .podium-prize { color: var(--gold); }
.podium-place--2nd .podium-prize { color: var(--silver); }
.podium-place--3rd .podium-prize { color: #cd7f32; }

.leaderboard-table-wrap { margin-bottom: 16px; }

/* Qualify steps */
.qualify-steps {
  margin-top: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255,255,255,0.08);
}
.qualify-heading { font-family: var(--font-display); font-size: clamp(18px, 2.5vw, 24px); font-weight: 800; color: var(--white); margin-bottom: 24px; }
.qualify-list { display: flex; flex-direction: column; gap: 14px; }
.qualify-list li { display: flex; gap: 16px; align-items: flex-start; font-size: 15px; color: rgba(255,255,255,0.82); }
.qualify-num { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--orange); min-width: 36px; line-height: 1.2; }
.qualify-list strong { color: var(--white); }

/* ─── SECTION: LUCKY WHEEL ──────────────────── */
.section-wheel {
  padding-block: var(--section-py);
  background: var(--white);
  border-bottom: 3px solid var(--orange);
}
.wheel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; }
.wheel-info p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; }
.wheel-mechanics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
.mechanic-item { display: flex; gap: 12px; align-items: center; background: var(--off-white); border-radius: var(--radius-md); padding: 14px; line-height: 1.3; }
.mechanic-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--light-gray); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.mechanic-icon svg { width: 22px; height: 22px; }
.mechanic-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--text-dark); }
.mechanic-item span { font-size: 14px; color: var(--text-muted); }
.wheel-note { font-size: 13px; color: var(--text-muted); line-height: 1.65; background: var(--light-gray); border-radius: var(--radius-sm); padding: 12px 16px; }

/* Prize odds */
.wheel-prizes { background: var(--navy); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; }
.wheel-prize-heading { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); }
.prize-rows { display: flex; flex-direction: column; gap: 10px; }
.prize-row { display: grid; grid-template-columns: 90px 1fr 48px; align-items: center; gap: 10px; }
.prize-amount { font-size: 14px; font-weight: 700; color: var(--white); }
.prize-bar-wrap { background: rgba(255,255,255,0.1); border-radius: 100px; height: 8px; overflow: hidden; }
.prize-bar { height: 100%; background: var(--orange); border-radius: 100px; min-width: 4px; }
.prize-bar--jackpot { background: var(--gold); }
.prize-pct { font-size: 12px; font-weight: 700; color: var(--orange); text-align: right; }
.prize-row--jackpot .prize-amount { color: var(--gold); }
.prize-row--jackpot .prize-pct { color: var(--gold); }
.prize-note { margin-top: auto; padding-top: 16px; font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ─── SECTION: KYC + VIP MIGRATION ─────────── */
.section-kyc {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.kyc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.kyc-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.kyc-card--free { border-top: 4px solid var(--orange); }
.kyc-card--vip  { border-top: 4px solid var(--gold); }
.kyc-card-header { padding: clamp(20px, 3vw, 32px); border-bottom: 1px solid var(--border); }
.kyc-badge { display: inline-block; background: var(--orange); color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.kyc-badge--gold { background: var(--gold); color: var(--text-dark); }
.kyc-card-header h3 { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 26px); font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.kyc-card-header p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

.kyc-details { padding: 20px clamp(20px, 3vw, 32px); border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.kyc-row { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.kyc-row:last-child { border-bottom: none; padding-bottom: 0; }
.kyc-row span:first-child { font-weight: 600; color: var(--text-dark); flex-shrink: 0; }
.kyc-row span:last-child { color: var(--text-muted); text-align: right; }

.kyc-how { padding: 16px clamp(20px, 3vw, 32px); font-size: 13px; color: var(--text-muted); line-height: 1.6; border-bottom: 1px solid var(--border); }
.kyc-how strong { color: var(--text-dark); }
.kyc-card .btn-claim { margin: 20px clamp(20px, 3vw, 32px); width: calc(100% - 2 * clamp(20px, 3vw, 32px)); }

/* VIP table within kyc card */
.vip-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.vip-table thead tr { background: var(--navy); }
.vip-table th { padding: 10px 14px; font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; text-transform: uppercase; text-align: left; }
.vip-table td { padding: 10px 14px; font-size: 13px; color: var(--text-body); border-bottom: 1px solid var(--border); vertical-align: middle; }
.vip-table tbody tr:last-child td { border-bottom: none; }
.vip-table tbody tr:hover { background: var(--off-white); }
.row-featured-vip { background: rgba(245,158,11,0.08); }

/* Tier badges */
.tier-badge { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px; letter-spacing: 0.04em; }
.tier-bronze   { background: rgba(180,83,9,0.12);  color: var(--bronze); }
.tier-silver   { background: rgba(148,163,184,0.2); color: #475569; }
.tier-gold     { background: rgba(245,158,11,0.15); color: #92400e; }
.tier-platinum { background: rgba(99,102,241,0.1);  color: #4338ca; }
.tier-diamond  { background: rgba(15,23,42,0.1);    color: var(--navy); border: 1px solid rgba(245,158,11,0.4); }

/* ─── SECTION: BIRTHDAY BONUS ───────────────── */
.section-birthday {
  padding-block: var(--section-py);
  background: var(--white);
}
.birthday-tiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.birthday-tier {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  border: 2px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.birthday-tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.birthday-tier--inactive { opacity: 0.45; }
.birthday-tier--top { border-color: var(--gold); background: linear-gradient(160deg, #fffbeb 0%, var(--white) 100%); }

.birthday-tier-level { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; margin-bottom: 14px; display: inline-block; }
.tier-bronze-bg  { background: rgba(180,83,9,0.1);  color: var(--bronze); }
.tier-silver-bg  { background: rgba(148,163,184,0.2); color: #475569; }
.tier-gold-bg    { background: rgba(245,158,11,0.15); color: #92400e; }
.tier-platinum-bg{ background: rgba(99,102,241,0.1);  color: #4338ca; }
.tier-diamond-bg { background: rgba(245,158,11,0.2);  color: #92400e; border: 1px solid rgba(245,158,11,0.5); }

.birthday-tier-bonus { font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px); font-weight: 900; color: var(--orange); margin-bottom: 8px; line-height: 1; }
.birthday-tier-note { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.birthday-claim-note { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 700px; background: var(--light-gray); padding: 14px 20px; border-radius: var(--radius-sm); }

/* ─── PROMO SECTION BANNER ───────────────────── */
.promo-section-banner {
  margin: 0 0 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.promo-section-banner img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─── SECTION: RELOAD ───────────────────────── */
.section-reload {
  padding-block: var(--section-py);
  background: var(--off-white);
}
.reload-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reload-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reload-card-icon { line-height: 1; }
.reload-card-icon svg { width: 52px; height: 52px; display: block; }
.reload-card h3 { font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 22px); font-weight: 800; color: var(--text-dark); }
.reload-rows { display: flex; flex-direction: column; gap: 8px; }
.reload-row { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.reload-row:last-child { border-bottom: none; }
.reload-row span:first-child { font-weight: 600; color: var(--text-dark); flex-shrink: 0; }
.reload-row span:last-child { color: var(--text-muted); text-align: right; }
.reload-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.coming-soon-tag { display: inline-block; background: var(--light-gray); color: var(--text-muted); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-top: auto; }

/* ─── SECTION: FAQ ──────────────────────────── */
.section-faq { padding-block: var(--section-py); background: var(--white); }
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: clamp(15px, 2vw, 17px); font-weight: 700; color: var(--text-dark); cursor: pointer; list-style: none; gap: 16px; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }
.faq-question::after { content: ''; display: block; width: 20px; height: 20px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888ea8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-size: contain; background-repeat: no-repeat; flex-shrink: 0; transition: transform 0.25s; }
details[open] .faq-question::after { transform: rotate(180deg); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f07d00' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); }
details[open] .faq-question { color: var(--blue); }
.faq-answer { padding-bottom: 20px; }
.faq-answer p { font-size: 15px; color: var(--text-body); line-height: 1.75; }
.faq-answer a { color: var(--blue); text-decoration: underline; }

/* ─── SECTION: PROMO CTA ────────────────────── */
.section-cta-promo {
  padding-block: var(--section-py);
  background: var(--navy);
  text-align: center;
}
.section-cta-promo h2 { font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 50px); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.section-cta-promo p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.75; max-width: 680px; margin-inline: auto; margin-bottom: 28px; }
.cta-promo-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-rg-note { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 680px; margin-inline: auto; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); padding: 14px 20px; border: 1px solid rgba(255,255,255,0.08); text-align: left; }
.cta-rg-note strong { color: rgba(255,255,255,0.7); }

/* ─── FOOTER ────────────────────────────────── */
.site-footer { background: var(--light-gray); }
.footer-inner { max-width: var(--container-max); margin-inline: auto; padding: 60px var(--container-px) 48px; display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; gap: clamp(32px, 5vw, 64px); }
.footer-brand img { height: 40px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-brand p + p { margin-top: 10px; }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.social-links a:hover { background: var(--orange); }
.social-links svg { width: 18px; height: 18px; }
.footer-nav h4, .footer-nav ul { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 12px; }
.footer-nav a { display: block; padding: 5px 0; font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange); }
.footer-rg { background: var(--navy); padding: 20px var(--container-px); }
.footer-rg p { max-width: var(--container-max); margin-inline: auto; font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.65; }
.footer-rg strong { color: rgba(255,255,255,0.8); }
.footer-bottom { background: var(--navy-dark); padding: 14px var(--container-px); text-align: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; }


/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .main-nav ul { gap: 12px; }
  .main-nav a  { font-size: 12px; }

  .welcome-cards    { grid-template-columns: 1fr 1fr; }
  .wheel-grid       { grid-template-columns: 1fr; }
  .kyc-grid         { grid-template-columns: 1fr; }
  .birthday-tiers   { grid-template-columns: repeat(3, 1fr); }
  .reload-grid      { grid-template-columns: 1fr 1fr; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .footer-brand     { grid-column: 1 / -1; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max-width: 768px)
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  .main-nav, .header-actions { display: none; }
  .hamburger   { display: flex; }
  .header-inner { justify-content: space-between; gap: 0; }

  .promo-stats { flex-wrap: wrap; }
  .promo-stat  { min-width: 50%; }
  .promo-stat-divider { display: none; }

  .bonus-quicknav { top: 60px; }

  .welcome-cards    { grid-template-columns: 1fr; }
  .wheel-grid       { grid-template-columns: 1fr; }
  .wheel-mechanics  { grid-template-columns: 1fr; }
  .birthday-tiers   { grid-template-columns: 1fr 1fr; }
  .reload-grid      { grid-template-columns: 1fr; }

  .podium { gap: 4px; }
  .podium-place { width: clamp(90px, 28vw, 160px); }

  /* Responsive tables — redesigned card layout */
  .promo-table,
  .promo-table thead,
  .promo-table tbody,
  .promo-table th,
  .promo-table td,
  .promo-table tr { display: block; min-width: 0; }
  .promo-table thead { display: none; }

  /* Light table cards (welcome comparison) */
  .promo-table tbody tr {
    margin-bottom: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 0;
  }
  /* Bonus name cell → card header */
  .promo-table td:first-child {
    background: var(--navy);
    padding: 12px 16px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 15px;
    color: var(--white);
    border-bottom: 3px solid var(--orange);
  }
  .promo-table td:first-child::before { display: none; }
  /* Data cells */
  .promo-table td:not(:first-child) {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
    gap: 12px;
  }
  .promo-table td:last-child { border-bottom: none; }
  .promo-table td:not(:first-child)::before {
    content: attr(data-label);
    font-size: 11px; font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.04em;
    flex-shrink: 0; padding-top: 1px;
  }
  /* Featured row highlight */
  .promo-table .row-featured td:first-child { background: #0d1b4b; border-bottom-color: #ff7f00; }

  /* Dark table cards (leaderboard prizes) */
  .promo-table--dark tbody tr {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(255,255,255,0.12);
    box-shadow: none;
  }
  .promo-table--dark td:first-child {
    background: rgba(255,255,255,0.1);
    border-bottom-color: rgba(255,127,0,0.6);
    font-size: 16px;
    letter-spacing: 0.02em;
  }
  .promo-table--dark td:not(:first-child)::before { color: rgba(255,255,255,0.45); }
  .promo-table--dark td:not(:first-child) { color: rgba(255,255,255,0.9); border-bottom-color: rgba(255,255,255,0.08); }
  .promo-table--dark td:last-child { color: rgba(255,255,255,0.6); font-size: 13px; }
  /* Gold/silver/bronze row accents */
  .promo-table--dark .row-gold td:first-child { background: rgba(245,158,11,0.25); }
  .promo-table--dark .row-silver td:first-child { background: rgba(148,163,184,0.2); }
  .promo-table--dark .row-bronze td:first-child { background: rgba(180,83,9,0.18); }

  /* VIP migration table */
  .vip-table,
  .vip-table thead,
  .vip-table tbody,
  .vip-table th,
  .vip-table td,
  .vip-table tr { display: block; min-width: 0 !important; }
  .vip-table thead { display: none; }
  .vip-table tbody tr {
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    padding: 0;
  }
  /* VIP Level cell → card header */
  .vip-table td:first-child {
    background: var(--navy);
    padding: 10px 16px;
    border-bottom: 2px solid var(--orange);
  }
  .vip-table td:first-child::before { display: none; }
  /* Data cells */
  .vip-table td:not(:first-child) {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    gap: 8px;
  }
  .vip-table td:last-child { border-bottom: none; }
  .vip-table td:not(:first-child)::before {
    content: attr(data-label);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--text-muted); flex-shrink: 0;
  }
  /* Featured Black Diamond row */
  .vip-table .row-featured-vip td:first-child { background: #1a1a2e; border-bottom-color: var(--gold); }
  .vip-table .row-featured-vip td:not(:first-child) { background: rgba(245,158,11,0.04); }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-nav ul { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .birthday-tiers { grid-template-columns: 1fr; }
  .mechanic-item  { flex-direction: column; text-align: center; }
  .cta-promo-btns { flex-direction: column; align-items: center; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; text-align: center; }
}

@media print {
  .site-header, .hamburger, .bonus-quicknav, .section-cta-promo, .site-footer { display: none; }
}

/* Secondary CTA button on navy background — use white instead of blue */
.section-cta-promo .btn-cta-secondary {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.section-cta-promo .btn-cta-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* =============================================
   NAV + FOOTER — Benchmark (guide/shared.css)
   ============================================= */

:root {
  --nav-bg:     #ffffff;
  --nav-border: #e2e4ed;
  --nav-text:   #374151;
  --grey-light: #e2e4ed;
  --grey-mid:   #8a90a8;
  --grey-dark:  #555a6e;
  --footer-bg:  #eef0f5;
  --blue-acc:   #022a99;
  --transition: 0.2s ease;
}

.navbar {
  position: sticky; top: 0; z-index: 200;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1100px; margin: 0 auto; padding: 0 20px;
}
.logo-xe { font-size: 1.55rem; font-weight: 900; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.logo-8  { font-size: 1.55rem; font-weight: 900; color: var(--orange); letter-spacing: -0.03em; line-height: 1; }
.nav-links { display: none; gap: 2px; align-items: center; }
.nav-item { position: relative; }
.nav-item > a {
  display: block; color: var(--nav-text); font-size: 0.82rem; font-weight: 600;
  padding: 6px 11px; border-radius: var(--radius-sm);
  letter-spacing: 0.02em; text-transform: uppercase;
  transition: color var(--transition); text-decoration: none;
}
.nav-item > a:hover  { color: var(--orange); }
.nav-item > a.active { color: var(--orange); }
.nav-item.has-dropdown > a::after {
  content: ''; display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 5px; vertical-align: middle; opacity: 0.6;
  transition: transform var(--transition);
}
.dropdown {
  display: none; position: absolute; top: calc(100% + 4px); left: 0;
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius-md); min-width: 210px;
  box-shadow: var(--shadow-md); z-index: 300; overflow: hidden;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown.open  .dropdown { display: block; }
.dropdown a {
  display: block; padding: 11px 16px; font-size: 0.82rem; font-weight: 600;
  color: var(--text-body); border-bottom: 1px solid var(--grey-light);
  transition: color var(--transition), background var(--transition);
  text-decoration: none; text-transform: none; letter-spacing: 0;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { color: var(--orange); background: var(--off-white); }
.nav-right { display: none; align-items: center; gap: 10px; }

.nav-login {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(13,27,75,0.35);
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-login:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

@keyframes register-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(255,127,0,0.4), 0 0 0 0 rgba(255,127,0,0.25); }
  50%       { box-shadow: 0 4px 14px rgba(255,127,0,0.4), 0 0 0 8px rgba(255,127,0,0); }
}
.nav-register {
  display: inline-flex;
  align-items: center;
  padding: 9px 22px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 6px;
  white-space: nowrap;
  animation: register-pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.nav-register:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,127,0,0.6);
  animation: none;
  color: var(--white);
}
.hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.25s ease; }
.mobile-menu { display: none; background: var(--white); border-top: 1px solid var(--nav-border); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.mobile-menu.open { display: block; }
.mobile-menu > a {
  display: block; color: var(--text-dark); font-size: 0.9rem; font-weight: 600;
  padding: 13px 24px; border-bottom: 1px solid var(--grey-light);
  text-transform: uppercase; letter-spacing: 0.03em;
  transition: color var(--transition), background var(--transition); text-decoration: none;
}
.mobile-menu > a:hover  { color: var(--orange); background: var(--off-white); }
.mobile-menu > a.active { color: var(--orange); }
.mobile-sub { background: var(--off-white); border-bottom: 1px solid var(--grey-light); }
.mobile-sub a {
  display: block; color: var(--grey-dark); font-size: 0.85rem; font-weight: 600;
  padding: 10px 24px 10px 36px; border-bottom: 1px solid var(--grey-light);
  transition: color var(--transition); text-decoration: none;
}
.mobile-sub a:last-child { border-bottom: none; }
.mobile-sub a:hover  { color: var(--orange); }
.mobile-menu-actions {
  display: flex;
  gap: 10px;
  padding: 16px 20px 20px;
}
.mobile-menu-actions a {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, filter 0.2s;
}
.mobile-login {
  color: var(--navy);
  border: 2px solid rgba(13,27,75,0.35);
}
.mobile-login:hover {
  background: var(--navy);
  color: var(--white);
}
.mobile-register {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  box-shadow: 0 4px 12px rgba(255,127,0,0.35);
}
.mobile-register:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 18px rgba(255,127,0,0.5);
}
.breadcrumb { background: var(--off-white); border-bottom: 1px solid var(--grey-light); padding: 10px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 0.8rem; color: var(--grey-mid); }
.breadcrumb-inner a { color: var(--blue-acc); text-decoration: none; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-inner .current { color: var(--text-dark); font-weight: 600; }
.footer { background: var(--footer-bg); border-top: 1px solid var(--grey-light); padding: 52px 0 0; color: var(--text-body); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 14px; }
.footer-logo .logo-xe { font-size: 1.6rem; }
.footer-logo .logo-8  { font-size: 1.6rem; }
.footer-desc { font-size: 0.875rem; color: var(--grey-dark); line-height: 1.7; margin-bottom: 18px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 0.8rem; font-weight: 700; transition: background var(--transition), transform var(--transition); text-decoration: none; }
.social-btn:hover { background: var(--orange); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: var(--grey-dark); transition: color var(--transition); text-decoration: none; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark); margin-bottom: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; color: var(--grey-dark); line-height: 1.5; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-item a { color: var(--grey-dark); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-map { margin-top: 14px; border-radius: 8px; overflow: hidden; border: 1px solid var(--grey-light); }
.footer-map iframe { display: block; width: 100%; height: 130px; border: 0; }

.footer-bottom { border-top: 1px solid var(--grey-light); padding: 18px 0; text-align: center; font-size: 0.78rem; color: var(--grey-mid); }
@media (min-width: 768px) {
  .hamburger   { display: none; }
  .nav-links   { display: flex; }
  .nav-right   { display: flex; }
  .mobile-menu { display: none !important; }
  .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.4fr; }
}

/* Site logo image */
.site-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-logo .site-logo-img,
.footer-brand .site-logo-img {
  height: 30px;
}

/* ── Scroll-to-top button ── */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ff7f00;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
  z-index: 999;
}
#scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scroll-top:hover { background: #d96b00; }
#scroll-top:focus-visible { outline: 3px solid #ff7f00; outline-offset: 3px; }
