/* ============================================================
   888-baji-live.com — Global Stylesheet
   Style DNA:
   - layout_bias: longform-seo + marketing-landing
   - hero_layout: asymmetric-banner (left text, right visual)
   - nav_alignment: logo-left, nav-center, cta-right
   - card_geometry: medium-radius-layered-cards (12px)
   - background_treatment: panel-gradient-with-soft-grid
   - section_divider: color-block + soft-shadow
   - shadow_density: layered-shadow
   - icon_style: dual-color SVG
   - cta_emphasis: high
   - copy_tone: expert-conversion-bd
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary palette */
  --clr-primary:       #0D1F3C;   /* deep navy */
  --clr-primary-mid:   #162B52;
  --clr-primary-light: #1E3A6E;
  /* Accent */
  --clr-gold:          #F5C518;
  --clr-gold-dark:     #D4A017;
  --clr-gold-light:    #FFE066;
  /* Highlight */
  --clr-accent:        #E84545;
  --clr-accent-hover:  #C73030;
  /* Neutral */
  --clr-white:         #FFFFFF;
  --clr-off-white:     #F4F6FA;
  --clr-text:          #E8EDF5;
  --clr-text-muted:    #9AAAC4;
  --clr-border:        rgba(245,197,24,0.18);
  /* Backgrounds */
  --clr-bg-dark:       #080F1E;
  --clr-bg-card:       rgba(22,43,82,0.85);
  --clr-bg-section:    #0F1C35;
  /* Shadows */
  --shadow-card:       0 4px 24px rgba(0,0,0,0.45), 0 1px 4px rgba(245,197,24,0.08);
  --shadow-btn:        0 4px 16px rgba(245,197,24,0.35);
  --shadow-header:     0 2px 20px rgba(0,0,0,0.6);
  /* Radius */
  --radius-card:       12px;
  --radius-btn:        8px;
  --radius-sm:         6px;
  /* Transitions */
  --transition:        0.25s ease;
  /* Font */
  --font-main:         system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  /* Spacing */
  --section-py:        72px;
  --container-max:     1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--clr-bg-dark);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--clr-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold-light); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Base ── */
.section { padding: var(--section-py) 0; }
.section--dark { background: var(--clr-bg-dark); }
.section--mid  { background: var(--clr-bg-section); }
.section--card { background: var(--clr-primary); }
.section--gold { background: linear-gradient(135deg, #1a2e50 0%, #0d1f3c 100%); }

/* Grid background overlay */
.section--grid {
  background-image:
    linear-gradient(rgba(245,197,24,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── Section Heading ── */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.section-title span { color: var(--clr-gold); }
.section-subtitle {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 640px;
  margin-bottom: 40px;
}
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Divider ── */
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-accent));
  border-radius: 2px;
  margin: 12px 0 20px;
}
.center .divider { margin-left: auto; margin-right: auto; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,15,30,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: var(--shadow-header);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  max-height: 52px;
}
.site-logo svg {
  width: auto;
  height: 44px;
  max-height: 44px;
  display: block;
}
.logo-text {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--clr-gold);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Nav */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a.active {
  background: rgba(245,197,24,0.12);
  color: var(--clr-gold);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(8,15,30,0.99);
  border-bottom: 1px solid var(--clr-border);
  padding: 16px 20px;
  z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.mobile-nav .nav-list a {
  width: 100%;
  padding: 10px 14px;
  font-size: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-register {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  color: var(--clr-primary);
  box-shadow: var(--shadow-btn);
}
.btn-register:hover {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  color: var(--clr-primary);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,197,24,0.5);
}

.btn-login {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn-login:hover {
  background: rgba(245,197,24,0.12);
  color: var(--clr-gold-light);
  border-color: var(--clr-gold-light);
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  color: var(--clr-primary);
  box-shadow: var(--shadow-btn);
  padding: 13px 32px;
  font-size: 1rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,197,24,0.5);
  color: var(--clr-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
  padding: 11px 28px;
  font-size: 0.95rem;
}
.btn-secondary:hover {
  background: rgba(245,197,24,0.1);
  color: var(--clr-gold-light);
}

.btn-accent {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-hover) 100%);
  color: var(--clr-white);
  padding: 13px 32px;
  font-size: 1rem;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,69,69,0.45);
  color: var(--clr-white);
}

.btn-lg { padding: 15px 40px; font-size: 1.05rem; }
.btn-sm { padding: 7px 16px; font-size: 0.82rem; }

/* ============================================================
   BANNER SECTION
   ============================================================ */
.banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--clr-primary);
}
.banner-section img,
.banner-section svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
}

/* ============================================================
   HERO SECTION (asymmetric)
   ============================================================ */
.hero-section {
  padding: 64px 0 56px;
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-primary) 60%, var(--clr-primary-mid) 100%);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.12);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--clr-gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-title span { color: var(--clr-gold); }
.hero-desc {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--clr-gold);
  display: block;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual svg { max-width: 420px; width: 100%; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(245,197,24,0.15);
  border-color: rgba(245,197,24,0.35);
}
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(245,197,24,0.05));
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.card-desc {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* 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; }

/* Feature card (horizontal) */
.feature-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245,197,24,0.3);
}
.feature-card .card-icon { flex-shrink: 0; margin-bottom: 0; }
.feature-card .card-body { flex: 1; }

/* Category card */
.cat-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-card);
}
.cat-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,0.35); }
.cat-card-visual {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cat-card-body { padding: 20px; }
.cat-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 6px;
}
.cat-card-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(90deg, var(--clr-primary-light) 0%, var(--clr-primary-mid) 100%);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(245,197,24,0.35); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--clr-white);
  gap: 12px;
  user-select: none;
}
.faq-question:hover { color: var(--clr-gold); }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: rgba(245,197,24,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(245,197,24,0.25); }
.faq-icon svg { width: 12px; height: 12px; fill: var(--clr-gold); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-section {
  padding: 14px 0;
  background: var(--clr-bg-section);
  border-bottom: 1px solid var(--clr-border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--clr-text-muted); }
.breadcrumb a:hover { color: var(--clr-gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--clr-gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 56px 0 48px;
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-primary-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,197,24,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.page-hero-title span { color: var(--clr-gold); }
.page-hero-desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto 24px;
}

/* ============================================================
   LONG-FORM CONTENT
   ============================================================ */
.longform-section { padding: 64px 0; }
.longform-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.longform-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--clr-white);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245,197,24,0.2);
}
.longform-body h2:first-child { margin-top: 0; }
.longform-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 24px 0 10px;
}
.longform-body p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}
.longform-body ul {
  list-style: none;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.longform-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--clr-text-muted);
}
.longform-body ul li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--clr-gold);
  border-radius: 50%;
  margin-top: 8px;
}
.longform-body ol {
  counter-reset: ol-counter;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.longform-body ol li {
  counter-increment: ol-counter;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--clr-text-muted);
}
.longform-body ol li::before {
  content: counter(ol-counter);
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-gold);
}

/* Sidebar */
.longform-sidebar { position: sticky; top: 88px; }
.sidebar-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--clr-border);
}
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition);
}
.sidebar-links a:hover { color: var(--clr-gold); }
.sidebar-links a::before {
  content: '›';
  color: var(--clr-gold);
  font-size: 1.1rem;
}

/* ============================================================
   STEPS / PROCESS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold), transparent);
  opacity: 0.3;
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--clr-primary);
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(245,197,24,0.35);
}
.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--clr-primary-light) 0%, var(--clr-primary) 50%, var(--clr-bg-dark) 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: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.cta-title span { color: var(--clr-gold); }
.cta-desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto 28px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { padding: 64px 0; background: var(--clr-bg-section); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--clr-border);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.video-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.video-content p {
  font-size: 0.93rem;
  color: var(--clr-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section { padding: 56px 0; background: var(--clr-primary); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
}
.trust-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(245,197,24,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
}
.trust-desc {
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* ============================================================
   TABLE
   ============================================================ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  background: var(--clr-primary-light);
  color: var(--clr-gold);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--clr-border);
}
.compare-table td {
  padding: 12px 18px;
  color: var(--clr-text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-table tr:hover td { background: rgba(245,197,24,0.04); }
.compare-table .check { color: #4CAF50; font-weight: 700; }
.compare-table .cross { color: var(--clr-accent); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-muted);
}
.form-input,
.form-textarea,
.form-select {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.93rem;
  color: var(--clr-white);
  font-family: var(--font-main);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--clr-gold);
  background: rgba(245,197,24,0.05);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(154,170,196,0.5); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--clr-primary); color: var(--clr-white); }
.form-error {
  font-size: 0.8rem;
  color: var(--clr-accent);
  display: none;
}
.form-error.show { display: block; }
.form-success {
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #81C784;
  font-size: 0.9rem;
  display: none;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--clr-bg-dark);
  border-top: 1px solid var(--clr-border);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border);
}
.footer-brand .site-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-col-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--clr-gold); }

/* Footer contact */
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-contact-value {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* Footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(154,170,196,0.6);
}
.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(154,170,196,0.6);
}
.footer-legal a:hover { color: var(--clr-gold); }

/* Disclaimer */
.footer-disclaimer {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  color: rgba(154,170,196,0.45);
  line-height: 1.6;
  text-align: center;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(245,197,24,0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 900;
  border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; fill: var(--clr-primary); }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background: linear-gradient(135deg, rgba(245,197,24,0.08), rgba(245,197,24,0.03));
  border: 1px solid rgba(245,197,24,0.25);
  border-left: 4px solid var(--clr-gold);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 20px 0;
}
.highlight-box p {
  font-size: 0.92rem;
  color: var(--clr-text);
  margin: 0;
}

/* Warning box */
.warning-box {
  background: rgba(232,69,69,0.08);
  border: 1px solid rgba(232,69,69,0.25);
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin: 20px 0;
}
.warning-box p { font-size: 0.92rem; color: var(--clr-text); margin: 0; }

/* ============================================================
   PROMO CARDS
   ============================================================ */
.promo-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), border-color var(--transition);
}
.promo-card:hover { transform: translateY(-4px); border-color: rgba(245,197,24,0.35); }
.promo-card-header {
  padding: 20px 22px 16px;
  background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-primary-mid));
  border-bottom: 1px solid var(--clr-border);
}
.promo-badge {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.promo-amount {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-gold);
  line-height: 1;
}
.promo-card-body { padding: 18px 22px; }
.promo-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.promo-desc {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

/* ============================================================
   TABS
   ============================================================ */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--clr-border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition);
  font-family: var(--font-main);
}
.tab-btn:hover { color: var(--clr-gold); }
.tab-btn.active {
  color: var(--clr-gold);
  border-bottom-color: var(--clr-gold);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clr-white);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--clr-border);
}
.policy-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin: 20px 0 8px;
}
.policy-content p {
  font-size: 0.92rem;
  color: var(--clr-text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
}
.policy-content ul {
  list-style: none;
  margin: 10px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.policy-content ul li {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  padding-left: 18px;
  position: relative;
}
.policy-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 70vh;
  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;
  color: var(--clr-gold);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.error-content { position: relative; z-index: 1; }
.error-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.error-desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.error-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--clr-gold); }
.text-muted { color: var(--clr-text-muted); }
.text-white { color: var(--clr-white); }
.text-center { text-align: center; }
.text-accent { color: var(--clr-accent); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Bullet list (for featured snippets) */
.bullet-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}
.bullet-list li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--clr-gold);
  border-radius: 50%;
  margin-top: 7px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .longform-inner { grid-template-columns: 1fr; }
  .longform-sidebar { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .video-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 48px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-inner { height: 60px; }
  .site-logo svg { height: 36px; max-height: 36px; }
  .logo-text { font-size: 1rem; }
  .btn-register, .btn-login { padding: 8px 14px; font-size: 0.82rem; }
  .banner-section img, .banner-section svg { max-height: 220px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 16px; }
}

@media (max-width: 480px) {
  .header-cta { gap: 6px; }
  .btn-register, .btn-login { padding: 7px 10px; font-size: 0.78rem; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
