/* ============================================================
   BAJI 888 - Global Stylesheet
   Site: www.bajibd-888.com
   Design System: Dark Navy + Gold + Crimson Accent
   ============================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --color-bg-primary:    #080d1a;
  --color-bg-secondary:  #0d1628;
  --color-bg-card:       #111e35;
  --color-bg-card-hover: #162540;
  --color-bg-section:    #0a1220;
  --color-bg-alt:        #0f1c30;

  --color-gold:          #d4a017;
  --color-gold-light:    #f5d060;
  --color-gold-dark:     #a07810;
  --color-crimson:       #c0392b;
  --color-crimson-light: #e74c3c;
  --color-teal:          #1abc9c;
  --color-blue-accent:   #2980b9;

  --color-text-primary:  #e8edf5;
  --color-text-secondary:#a0b4cc;
  --color-text-muted:    #5a7a9a;
  --color-text-gold:     #f5d060;

  --color-border:        rgba(212,160,23,0.2);
  --color-border-subtle: rgba(255,255,255,0.06);

  --shadow-card:         0 4px 24px rgba(0,0,0,0.4);
  --shadow-card-hover:   0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold:         0 0 20px rgba(212,160,23,0.3);
  --shadow-btn:          0 4px 16px rgba(212,160,23,0.4);

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --font-stack: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --header-height: 72px;
  --transition:    0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-stack);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold-light); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--color-text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-gold  { color: var(--color-gold-light); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(8,13,26,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(8,13,26,0.99);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 16px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  pointer-events: none;
  user-select: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.logo-icon svg {
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text .logo-brand {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-gold-light);
  letter-spacing: 0.5px;
}
.logo-text .logo-sub {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold-light);
  background: rgba(212,160,23,0.1);
}
.main-nav a.nav-home {
  color: var(--color-gold-light);
  font-weight: 700;
}

/* Header CTA Buttons */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-register {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #0a1628;
  box-shadow: var(--shadow-btn);
}
.btn-register:hover {
  background: linear-gradient(135deg, #f0c040, #d4a017);
  color: #0a1628;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,160,23,0.5);
}
.btn-login {
  background: transparent;
  color: var(--color-gold-light);
  border: 1.5px solid var(--color-gold);
}
.btn-login:hover {
  background: rgba(212,160,23,0.12);
  color: var(--color-gold-light);
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #0a1628;
  padding: 12px 28px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #f0c040, #d4a017);
  color: #0a1628;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--color-gold-light);
  border: 1.5px solid var(--color-gold);
  padding: 12px 28px;
  font-size: 0.95rem;
}
.btn-secondary:hover {
  background: rgba(212,160,23,0.12);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}
.btn-crimson {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  padding: 12px 28px;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(192,57,43,0.4);
}
.btn-crimson:hover {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 14px 36px;
  font-size: 1rem;
}
.btn-sm {
  padding: 7px 16px;
  font-size: 0.8rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: rgba(8,13,26,0.98);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 20px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--color-gold-light);
  background: rgba(212,160,23,0.1);
}
.mobile-nav a.nav-home { color: var(--color-gold-light); font-weight: 700; }

/* ============================================================
   PAGE OFFSET (for fixed header)
   ============================================================ */
.page-content { padding-top: var(--header-height); }

/* ============================================================
   BANNER SECTION
   ============================================================ */
.banner-section {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: var(--color-bg-secondary);
}
.banner-section img,
.banner-section svg {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(160deg, #0a0e1a 0%, #0d1f3c 50%, #1a0a2e 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(41,128,185,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--color-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(90deg, #d4a017, #f5d060, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-gold-light);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: 72px 0;
}
.section-alt {
  background: var(--color-bg-alt);
}
.section-dark {
  background: var(--color-bg-secondary);
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  margin-bottom: 12px;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}
.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a017, #f5d060);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition);
}
.card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.2);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.card p  { font-size: 0.9rem; margin: 0; }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

/* ============================================================
   FEATURE CARDS (category nav)
   ============================================================ */
.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4a017, #f5d060);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  color: var(--color-text-primary);
}
.feature-card:hover::before { opacity: 1; }
.feature-card .fc-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--color-text-primary);
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(90deg, #0d1628, #111e35, #0d1628);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--color-border-subtle);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--color-gold-light);
  line-height: 1;
  display: block;
}
.stat-item .label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--color-border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--color-bg-card);
  transition: background var(--transition);
  gap: 12px;
}
.faq-question:hover { background: var(--color-bg-card-hover); }
.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  flex: 1;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--color-gold);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.faq-item.open .faq-icon {
  background: rgba(212,160,23,0.2);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  background: var(--color-bg-card);
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-section {
  padding: 14px 0;
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.breadcrumb a:hover { color: var(--color-gold-light); }
.breadcrumb .sep {
  color: var(--color-text-muted);
  font-size: 0.75rem;
}
.breadcrumb .current {
  font-size: 0.82rem;
  color: var(--color-gold-light);
  font-weight: 600;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 56px 0 48px;
  background: linear-gradient(160deg, #080d1a 0%, #0d1f3c 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 100%;
  background: radial-gradient(ellipse at right, rgba(212,160,23,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 600px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #0d1628 0%, #111e35 50%, #0d1628 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,160,23,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   YOUTUBE VIDEO MODULE
   ============================================================ */
.video-section {
  padding: 72px 0;
  background: var(--color-bg-section);
}
.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-caption {
  text-align: center;
  margin-top: 20px;
}
.video-caption h3 { margin-bottom: 8px; font-size: 1.1rem; }
.video-caption p { font-size: 0.9rem; }

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}
.step-item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  position: relative;
  counter-increment: step-counter;
  transition: all var(--transition);
}
.step-item:hover {
  border-color: var(--color-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #0a1628;
  font-size: 1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-item h3 { font-size: 1rem; margin-bottom: 8px; }
.step-item p  { font-size: 0.88rem; margin: 0; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.compare-table th {
  background: var(--color-bg-card);
  color: var(--color-gold-light);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--color-border);
}
.compare-table td {
  padding: 12px 18px;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-subtle);
  background: var(--color-bg-section);
}
.compare-table tr:hover td { background: var(--color-bg-card); }
.compare-table .check { color: var(--color-teal); font-weight: 700; }
.compare-table .cross { color: var(--color-crimson-light); }

/* ============================================================
   PROMOTION CARDS
   ============================================================ */
.promo-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.promo-card:hover {
  border-color: var(--color-border);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.promo-card-header {
  padding: 24px;
  background: linear-gradient(135deg, #0d1f3c, #162540);
  border-bottom: 1px solid var(--color-border-subtle);
  position: relative;
  overflow: hidden;
}
.promo-card-header::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(212,160,23,0.1) 0%, transparent 70%);
}
.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #0a1628;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}
.promo-card-header h3 { font-size: 1.1rem; margin-bottom: 4px; }
.promo-card-header .promo-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-gold-light);
}
.promo-card-body { padding: 20px 24px; }
.promo-card-body ul { list-style: none; }
.promo-card-body ul li {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  padding: 5px 0;
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-card-body ul li:last-child { border-bottom: none; }
.promo-card-body ul li::before {
  content: '✓';
  color: var(--color-teal);
  font-weight: 700;
  flex-shrink: 0;
}
.promo-card-footer { padding: 16px 24px 24px; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--color-bg-section);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: var(--font-stack);
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error {
  font-size: 0.78rem;
  color: var(--color-crimson-light);
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }
.form-success {
  background: rgba(26,188,156,0.1);
  border: 1px solid rgba(26,188,156,0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--color-teal);
  font-size: 0.9rem;
  display: none;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ============================================================
   CONTACT INFO BLOCK
   ============================================================ */
.contact-info-block {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-info-block h3 { margin-bottom: 20px; font-size: 1.1rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-subtle);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-text .ci-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}
.ci-text .ci-value {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  font-weight: 500;
}

/* ============================================================
   POLICY / TERMS CONTENT
   ============================================================ */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}
.policy-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--color-gold-light);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-subtle);
}
.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 10px;
}
.policy-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}
.policy-content ul li {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
  line-height: 1.7;
}
.policy-content ol {
  list-style: decimal;
  padding-left: 24px;
  margin-bottom: 14px;
}
.policy-content ol li {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  margin-bottom: 6px;
}

/* ============================================================
   LONG CONTENT SECTIONS (homepage SEO text)
   ============================================================ */
.long-content {
  max-width: 900px;
  margin: 0 auto;
}
.long-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--color-text-primary);
}
.long-content h3 {
  font-size: 1.15rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--color-gold-light);
}
.long-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.long-content ul {
  list-style: none;
  margin-bottom: 20px;
}
.long-content ul li {
  font-size: 0.93rem;
  color: var(--color-text-secondary);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.7;
}
.long-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-gold);
}
.long-content ol {
  list-style: decimal;
  padding-left: 22px;
  margin-bottom: 20px;
}
.long-content ol li {
  font-size: 0.93rem;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}
.info-box {
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.2);
  border-left: 4px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
}
.info-box p { font-size: 0.9rem; margin: 0; color: var(--color-text-secondary); }
.warning-box {
  background: rgba(192,57,43,0.06);
  border: 1px solid rgba(192,57,43,0.2);
  border-left: 4px solid var(--color-crimson);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 24px 0;
}
.warning-box p { font-size: 0.9rem; margin: 0; color: var(--color-text-secondary); }

/* ============================================================
   TABS
   ============================================================ */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--color-border-subtle);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  background: none;
  font-family: var(--font-stack);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.tab-btn:hover { color: var(--color-text-primary); }
.tab-btn.active {
  color: var(--color-gold-light);
  border-bottom-color: var(--color-gold);
  background: rgba(212,160,23,0.05);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  color: #0a1628;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-btn);
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(212,160,23,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #060b16;
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border-subtle);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #d4a017, #f0c040);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #0a1628;
  flex-shrink: 0;
}
.footer-brand .footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-gold-light);
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--color-gold-light); }

/* Footer Contact */
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-contact-list { list-style: none; }
.footer-contact-list li {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-list li strong {
  color: var(--color-text-secondary);
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}
.footer-contact-list li a {
  color: var(--color-text-muted);
  font-size: 0.83rem;
}
.footer-contact-list li a:hover { color: var(--color-gold-light); }

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.footer-bottom-links a:hover { color: var(--color-gold-light); }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  background: linear-gradient(90deg, #d4a017, #f5d060, #d4a017);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h2 { margin-bottom: 12px; }
.error-page p { margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.error-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   HIGHLIGHT LIST (bullet points for featured snippets)
   ============================================================ */
.highlight-list {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 28px;
}
.highlight-list h3 {
  font-size: 1rem;
  margin-bottom: 14px;
  color: var(--color-gold-light);
}
.highlight-list ul { list-style: none; }
.highlight-list ul li {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  padding: 7px 0;
  border-bottom: 1px solid var(--color-border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.highlight-list ul li:last-child { border-bottom: none; }
.highlight-list ul li::before {
  content: '✦';
  color: var(--color-gold);
  font-size: 0.7rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-strip {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: 20px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.trust-item svg { width: 18px; height: 18px; color: var(--color-gold); }

/* ============================================================
   RELATED LINKS SECTION
   ============================================================ */
.related-section {
  padding: 48px 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-subtle);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.related-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  transition: all var(--transition);
  text-decoration: none;
}
.related-link:hover {
  border-color: var(--color-border);
  color: var(--color-gold-light);
  background: var(--color-bg-card-hover);
  transform: translateX(3px);
}
.related-link svg { width: 16px; height: 16px; color: var(--color-gold); flex-shrink: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .header-cta {
    gap: 6px;
  }
  .header-cta .btn {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .logo-text .logo-sub { display: none; }
  .logo-icon { width: 38px; height: 38px; max-width: 38px; max-height: 38px; }
  .logo-icon svg { width: 38px; height: 38px; max-width: 38px; max-height: 38px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--color-border-subtle); }
  .stat-item:last-child { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-form { padding: 24px 20px; }
  .contact-info-block { padding: 24px 20px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .banner-section img,
  .banner-section svg { max-height: 260px; }

  .section { padding: 52px 0; }
  .page-hero { padding: 40px 0 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-items { gap: 16px; }
  .tabs-nav { gap: 2px; }
  .tab-btn { padding: 8px 12px; font-size: 0.8rem; }
}
