/* ============================================================
   BAJIPLAY-888 — Global Stylesheet
   Design System: Dark Navy + Gold + Amber accent
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colour palette */
  --clr-bg-deep:    #060e1a;
  --clr-bg-dark:    #0d1b2a;
  --clr-bg-mid:     #112236;
  --clr-bg-card:    #162840;
  --clr-bg-card2:   #1a3050;
  --clr-border:     #1e3a58;
  --clr-gold:       #f5a623;
  --clr-gold-light: #ffc84a;
  --clr-amber:      #e8520a;
  --clr-accent:     #00c9a7;
  --clr-accent2:    #0ea5e9;
  --clr-text:       #e2eaf4;
  --clr-text-muted: #8ba3be;
  --clr-white:      #ffffff;

  /* Typography */
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0,0,0,.45);
  --shadow-glow: 0 0 20px rgba(245,166,35,.25);
  --shadow-btn:  0 4px 16px rgba(245,166,35,.4);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-base);
  background: var(--clr-bg-deep);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--clr-gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--clr-gold-light); }

img, svg { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--clr-white);
}
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--clr-text); }

.text-gold  { color: var(--clr-gold); }
.text-muted { color: var(--clr-text-muted); }
.text-center { text-align: center; }
.text-accent { color: var(--clr-accent); }

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.section { padding: var(--sp-xl) 0; }
.section-sm { padding: var(--sp-lg) 0; }

.section-header {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.section-header p {
  color: var(--clr-text-muted);
  max-width: 640px;
  margin: .75rem auto 0;
}

.divider-gold {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-amber));
  border-radius: 2px;
  margin: .75rem auto 0;
}

/* ── Grid helpers ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-md); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-md); }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1.5rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s, background .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-register {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-amber));
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-register:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #fff;
  box-shadow: 0 6px 24px rgba(245,166,35,.55);
}

.btn-login {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn-login:hover {
  background: var(--clr-gold);
  color: #fff;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-amber));
  color: #fff;
  box-shadow: var(--shadow-btn);
  padding: .8rem 2rem;
  font-size: 1rem;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  color: #fff;
  box-shadow: 0 6px 28px rgba(245,166,35,.6);
}

.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
  padding: .75rem 1.8rem;
}
.btn-outline:hover {
  background: var(--clr-gold);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent2));
  color: #fff;
  padding: .8rem 2rem;
}
.btn-accent:hover {
  opacity: .9;
  color: #fff;
}

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-md);
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  border-color: var(--clr-gold);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, rgba(245,166,35,.15), rgba(232,82,10,.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-sm);
  border: 1px solid rgba(245,166,35,.2);
}
.card-icon svg { width: 28px; height: 28px; }

/* ── Header / Navigation ──────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6,14,26,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow .3s;
}
#site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.6);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--sp-md);
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}
.site-logo svg {
  width: auto;
  height: 44px;
  max-height: 44px;
}
@media (max-width: 768px) {
  .site-logo svg { height: 36px; max-height: 36px; }
  .header-inner { height: 60px; }
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  color: var(--clr-text-muted);
  font-weight: 600;
  font-size: .9rem;
  padding: .45rem .75rem;
  border-radius: var(--r-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--clr-gold);
  background: rgba(245,166,35,.08);
}

/* Header CTA group */
.header-cta {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.header-cta .btn {
  padding: .5rem 1.1rem;
  font-size: .88rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--clr-bg-dark);
    border-bottom: 1px solid var(--clr-border);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--sp-sm) var(--sp-md);
    gap: .1rem;
  }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: .65rem .75rem; }
}

/* ── Hero Banner ──────────────────────────────────────────── */
.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--clr-bg-dark);
}
.hero-banner img,
.hero-banner svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-banner img,
  .hero-banner svg { max-height: 260px; }
}

/* ── Hero Section (text overlay) ─────────────────────────── */
.hero-section {
  background: linear-gradient(135deg, var(--clr-bg-deep) 0%, var(--clr-bg-mid) 100%);
  padding: var(--sp-xl) 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-content h1 { margin-bottom: var(--sp-sm); }
.hero-content p { font-size: 1.1rem; color: var(--clr-text-muted); margin-bottom: var(--sp-md); }
.hero-cta { display: flex; gap: var(--sp-sm); flex-wrap: wrap; }

/* ── Stats Bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--clr-bg-mid);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-md) 0;
}
.stats-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
}
.stat-item .label {
  font-size: .82rem;
  color: var(--clr-text-muted);
  margin-top: .25rem;
}

/* ── Feature Cards ────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--sp-md); }

/* ── Category Cards ───────────────────────────────────────── */
.cat-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
  text-decoration: none;
  display: block;
}
.cat-card:hover { transform: translateY(-4px); border-color: var(--clr-gold); }
.cat-card-body { padding: var(--sp-md); }
.cat-card-body h3 { color: var(--clr-white); margin-bottom: .4rem; }
.cat-card-body p { color: var(--clr-text-muted); font-size: .9rem; margin: 0; }
.cat-card-header {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--clr-bg-card);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--clr-white);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 1.1rem var(--sp-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-sm);
  transition: background .2s;
}
.faq-question:hover { background: rgba(245,166,35,.06); }
.faq-question .faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1rem;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 var(--sp-md) var(--sp-md);
  color: var(--clr-text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 50%, #0d2137 100%);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: var(--r-lg);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,166,35,.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: var(--sp-sm); position: relative; }
.cta-banner p { color: var(--clr-text-muted); margin-bottom: var(--sp-md); position: relative; }
.cta-banner .btn-group { display: flex; gap: var(--sp-sm); justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid var(--clr-border);
  background: var(--clr-bg-mid);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  list-style: none;
}
.breadcrumb li { font-size: .85rem; color: var(--clr-text-muted); }
.breadcrumb li a { color: var(--clr-text-muted); }
.breadcrumb li a:hover { color: var(--clr-gold); }
.breadcrumb li.active { color: var(--clr-gold); }
.breadcrumb li + li::before { content: '/'; margin-right: .4rem; color: var(--clr-border); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--clr-bg-deep) 0%, var(--clr-bg-mid) 100%);
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: .5rem; }
.page-hero p { color: var(--clr-text-muted); max-width: 600px; }

/* ── Steps / Process ──────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--sp-md); }
.step-item { text-align: center; padding: var(--sp-md); }
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-amber));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-sm);
  box-shadow: var(--shadow-glow);
}
.step-item h4 { margin-bottom: .4rem; }
.step-item p { color: var(--clr-text-muted); font-size: .9rem; margin: 0; }

/* ── Table ────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
}
th {
  background: var(--clr-bg-card2);
  color: var(--clr-gold);
  padding: .85rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--clr-border);
}
td {
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-text);
}
tr:hover td { background: rgba(245,166,35,.04); }

/* ── Promo Cards ──────────────────────────────────────────── */
.promo-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.promo-card:hover { transform: translateY(-4px); border-color: var(--clr-gold); }
.promo-card-badge {
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-amber));
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .75rem;
  display: inline-block;
  border-radius: 0 0 var(--r-sm) 0;
}
.promo-card-body { padding: var(--sp-md); }
.promo-card-body h3 { margin-bottom: .5rem; }
.promo-card-body p { color: var(--clr-text-muted); font-size: .9rem; margin-bottom: var(--sp-sm); }

/* ── Video Module ─────────────────────────────────────────── */
.video-section { background: var(--clr-bg-mid); }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-md);
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ── Contact Form ─────────────────────────────────────────── */
.form-group { margin-bottom: var(--sp-md); }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--clr-text);
  font-size: .9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  color: var(--clr-text);
  font-size: .95rem;
  font-family: var(--font-base);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--clr-gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { color: #f87171; font-size: .82rem; margin-top: .3rem; display: none; }
.form-success {
  background: rgba(0,201,167,.1);
  border: 1px solid var(--clr-accent);
  border-radius: var(--r-sm);
  padding: var(--sp-sm) var(--sp-md);
  color: var(--clr-accent);
  display: none;
  margin-top: var(--sp-sm);
}

/* ── Info Box ─────────────────────────────────────────────── */
.info-box {
  background: var(--clr-bg-card);
  border-left: 4px solid var(--clr-gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: var(--sp-sm) var(--sp-md);
  margin: var(--sp-md) 0;
}
.info-box p { margin: 0; color: var(--clr-text-muted); }

/* ── Bullet list ──────────────────────────────────────────── */
.bullet-list { padding-left: 0; }
.bullet-list li {
  padding: .4rem 0 .4rem 1.6rem;
  position: relative;
  color: var(--clr-text);
  border-bottom: 1px solid rgba(30,58,88,.5);
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-gold);
}

/* ── Tags ─────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: rgba(245,166,35,.12);
  color: var(--clr-gold);
  border: 1px solid rgba(245,166,35,.25);
  border-radius: 20px;
  padding: .2rem .75rem;
  font-size: .8rem;
  font-weight: 600;
}

/* ── Policy / Terms content ───────────────────────────────── */
.policy-content h2 { margin: var(--sp-lg) 0 var(--sp-sm); color: var(--clr-gold); font-size: 1.3rem; }
.policy-content h3 { margin: var(--sp-md) 0 .5rem; font-size: 1.1rem; }
.policy-content p, .policy-content li { color: var(--clr-text-muted); line-height: 1.8; }
.policy-content ul { padding-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.policy-content ul li { margin-bottom: .4rem; }

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
  background: var(--clr-bg-dark);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-xl) 0 var(--sp-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .site-logo { margin-bottom: var(--sp-sm); }
.footer-brand p { color: var(--clr-text-muted); font-size: .88rem; line-height: 1.7; }

.footer-col h4 {
  color: var(--clr-gold);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: var(--sp-sm);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footer-col ul li { margin-bottom: .4rem; }
.footer-col ul li a {
  color: var(--clr-text-muted);
  font-size: .88rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--clr-gold); }

.footer-contact { font-size: .88rem; color: var(--clr-text-muted); }
.footer-contact p { margin-bottom: .5rem; }
.footer-contact strong { color: var(--clr-text); }

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}
.footer-bottom p { color: var(--clr-text-muted); font-size: .82rem; margin: 0; }
.footer-bottom a { color: var(--clr-text-muted); font-size: .82rem; }
.footer-bottom a:hover { color: var(--clr-gold); }

/* ── Back to Top ──────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-amber));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-btn);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 999;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { transform: translateY(-3px); }
#back-to-top svg { width: 20px; height: 20px; fill: #fff; }

/* ── Highlight Band ───────────────────────────────────────── */
.highlight-band {
  background: linear-gradient(90deg, var(--clr-gold) 0%, var(--clr-amber) 100%);
  padding: .6rem 0;
  text-align: center;
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
}

/* ── Tabs ─────────────────────────────────────────────────── */
.tabs-nav {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: var(--sp-md);
  border-bottom: 2px solid var(--clr-border);
  padding-bottom: .5rem;
}
.tab-btn {
  background: none;
  border: none;
  color: var(--clr-text-muted);
  font-weight: 700;
  font-size: .9rem;
  padding: .5rem 1.1rem;
  cursor: pointer;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  transition: color .2s, background .2s;
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--clr-gold);
  background: rgba(245,166,35,.08);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── 404 ──────────────────────────────────────────────────── */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-xl) var(--sp-md);
}
.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Responsive tweaks ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: var(--sp-lg) var(--sp-md); }
  .stats-bar .container { gap: var(--sp-md); }
  .stat-item .num { font-size: 1.6rem; }
}

/* ── Utility ──────────────────────────────────────────────── */
.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }
.mb-sm { margin-bottom: var(--sp-sm); }
.mb-md { margin-bottom: var(--sp-md); }
.mb-lg { margin-bottom: var(--sp-lg); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: var(--sp-sm); }
.gap-md { gap: var(--sp-md); }
.w-full { width: 100%; }
.hidden { display: none !important; }
