/* ==========================================================================
   JANNAH GOLD — SENIOR GRAPHIC DESIGN OVERHAUL
   Design System: Bold Brutalist Luxury / High Density / Optical Balance
   Fonts: Bricolage Grotesque (Headlines) + Sora (Body) + Space Grotesk (Numbers)
   Zero AI Slop: Human, punchy, dense, high contrast (> 4.5:1), zero tiny text.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;700;800&family=Sora:wght@400;600;700&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  /* Canvas & Surfaces */
  --bg-canvas: #090A0D;
  --bg-surface: #111319;
  --bg-card: #161922;
  --bg-card-highlight: #1D212D;
  --bg-solid-black: #000000;

  /* High Contrast Luxury Gold & Vibrant Accents */
  --gold-vibrant: #F5C542;
  --gold-glow: #FFE27A;
  --gold-dark: #8C6A15;
  --gold-badge-bg: #2B2310;
  --gold-border: #52421B;
  --gold-border-bright: #D4AF37;

  /* Accent & Trust Colors */
  --wa-green: #25D366;
  --wa-dark-bg: #0A2614;
  --wa-border: #166E36;
  --tg-blue: #2AABEE;
  --tg-dark-bg: #0C2333;
  --tg-border: #17608A;

  /* High Contrast Typography */
  --text-pure: #FFFFFF;
  --text-high: #F2F4F8;
  --text-muted: #B4B9C7;
  --text-gold-light: #FCE8A6;

  /* Borders & Dividers */
  --border-subtle: #242936;
  --border-strong: #384052;

  /* Fonts */
  --font-display: 'Bricolage Grotesque', -apple-system, sans-serif;
  --font-body: 'Sora', -apple-system, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* Geometry & Shadows */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-card: 0 16px 36px -8px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 0 24px rgba(245, 197, 66, 0.25);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--text-pure);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background-color: var(--bg-canvas);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(245, 197, 66, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(37, 211, 102, 0.06), transparent 70%);
  background-repeat: no-repeat;
  overflow-x: hidden;
  padding-bottom: 84px; /* Room for mobile sticky bar */
}

@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   OPTICAL ALIGNMENT & CANVAS COMPOSITION
   ========================================================================== */
.canvas-wrap {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 3.5vw, 36px);
  padding-right: clamp(16px, 3.5vw, 36px);
}

/* ==========================================================================
   HIGH IMPACT TYPOGRAPHY & SOLID BADGES (NO WEAK/TINY TEXT)
   ========================================================================== */
.display-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text-pure);
}

.display-title-hero {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
}

.display-title-section {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
}

.text-gold {
  color: var(--gold-vibrant);
}

.text-white {
  color: var(--text-pure);
}

.lead-text {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 400;
}

/* Solid High Contrast Pill Badge */
.solid-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--gold-badge-bg);
  border: 1px solid var(--gold-border-bright);
  color: var(--gold-glow);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: var(--radius-full);
}

.solid-badge-green {
  background-color: var(--wa-dark-bg);
  border-color: var(--wa-green);
  color: #A3F7BF;
}

/* ==========================================================================
   HEADER / NAVIGATION BAR (BALANCED & CRISP)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 10, 13, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-unit {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold-vibrant);
  object-fit: cover;
  background: var(--bg-solid-black);
}

.brand-titles {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--gold-vibrant);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.header-meta-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.status-indicator {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-high);
  font-weight: 600;
}

@media (min-width: 900px) {
  .status-indicator {
    display: flex;
  }
}

.pulse-beacon {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   BUTTONS (BIG, TACTILE, COMFORTABLE TOUCH TARGETS)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-header {
  padding: 10px 18px;
  font-size: 0.95rem;
  background-color: var(--wa-green);
  color: #03200D;
}

.btn-header:hover {
  background-color: #32E574;
  transform: translateY(-2px);
}

.btn-primary-wa {
  padding: 18px 32px;
  font-size: 1.15rem;
  background-color: var(--wa-green);
  color: #03200D;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
  font-weight: 800;
}

.btn-primary-wa:hover {
  background-color: #32E574;
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
}

.btn-secondary-gold {
  padding: 18px 28px;
  font-size: 1.1rem;
  background-color: var(--bg-surface);
  color: var(--gold-vibrant);
  border: 2px solid var(--gold-vibrant);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.btn-secondary-gold:hover {
  background-color: var(--gold-badge-bg);
  color: #FFF;
  border-color: var(--gold-glow);
  transform: translateY(-3px);
}

/* ==========================================================================
   HERO SECTION (OPTICALLY BALANCED & ZERO DEAD SPACE)
   ========================================================================== */
.hero-section {
  padding: clamp(36px, 6vw, 70px) 0 clamp(30px, 5vw, 60px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

@media (min-width: 520px) {
  .hero-actions {
    flex-direction: row;
    align-items: stretch;
  }
}

/* 3 Core Highlights Ribbon */
.hero-stats-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  margin-top: 10px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid var(--border-subtle);
}

.stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  color: var(--gold-vibrant);
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

/* HERO VISUAL BOX (REAL INVENTORY FRAME) */
.hero-visual-frame {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--gold-border-bright);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card), var(--shadow-gold);
}

.hero-img-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-solid-black);
  aspect-ratio: 4/5;
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}

.hero-frame-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-pure);
}

.hero-frame-meta span {
  font-size: 0.82rem;
  color: var(--gold-vibrant);
  font-weight: 600;
}

.hero-floating-seal {
  position: absolute;
  top: -14px;
  right: -10px;
  background: var(--wa-green);
  color: #03200D;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================================
   OFFICIAL SOCIAL & BROADCAST BANNER
   ========================================================================== */
.community-bar {
  background: var(--bg-surface);
  border-top: 2px solid var(--border-subtle);
  border-bottom: 2px solid var(--border-subtle);
  padding: 20px 0;
}

.community-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 840px) {
  .community-grid {
    flex-direction: row;
  }
}

.community-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.community-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-pure);
}

.community-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.community-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
  border: 1px solid transparent;
}

.btn-pill:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-pill-wa {
  background: var(--wa-dark-bg);
  border-color: var(--wa-green);
  color: #A3F7BF;
}

.btn-pill-tg {
  background: var(--tg-dark-bg);
  border-color: var(--tg-blue);
  color: #92DCFB;
}

/* ==========================================================================
   SECTION COMMON & HIGH DENSITY LAYOUT
   ========================================================================== */
.content-section {
  padding: clamp(48px, 7vw, 84px) 0;
}

.section-head-centered {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ==========================================================================
   REAL INVENTORY GALLERY (4 PUNCHY CARDS)
   ========================================================================== */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2.5vw, 24px);
}

@media (min-width: 860px) {
  .inventory-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gold-product-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.gold-product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-vibrant);
  box-shadow: var(--shadow-card);
}

.gold-thumb-box {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-solid-black);
  overflow: hidden;
}

.gold-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gold-product-card:hover .gold-thumb-box img {
  transform: scale(1.05);
}

.gold-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--gold-border-bright);
  color: var(--gold-glow);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
}

.gold-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.gold-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.25;
}

.gold-card-spec {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.gold-card-btn {
  margin-top: auto;
  width: 100%;
  padding: 12px 14px;
  font-size: 0.9rem;
  background: var(--bg-surface);
  border: 1px solid var(--gold-border-bright);
  color: var(--gold-vibrant);
  border-radius: var(--radius-xs);
  text-align: center;
}

.gold-card-btn:hover {
  background: var(--gold-vibrant);
  color: #050608;
  border-color: var(--gold-vibrant);
}

/* ==========================================================================
   INTERACTIVE CALCULATOR (MAXIMUM DENSITY & TACTILITY)
   ========================================================================== */
.calculator-box {
  background: var(--bg-card);
  border: 2px solid var(--gold-vibrant);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  max-width: 900px;
  margin: 0 auto;
}

.calc-section-label {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-glow);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Brand Selection Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

@media (min-width: 600px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.brand-btn {
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.brand-btn:hover {
  border-color: var(--gold-border-bright);
  background: var(--bg-card-highlight);
}

.brand-btn.active {
  background: var(--gold-badge-bg);
  border-color: var(--gold-vibrant);
}

.brand-btn strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-pure);
}

.brand-btn span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.brand-btn.active strong {
  color: var(--gold-glow);
}

.brand-btn.active span {
  color: var(--gold-vibrant);
}

/* Gram Selection Grid */
.gram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

@media (min-width: 600px) {
  .gram-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.weight-btn {
  background: var(--bg-surface);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.weight-btn:hover {
  border-color: var(--gold-border-bright);
}

.weight-btn.active {
  background: var(--gold-vibrant);
  border-color: var(--gold-vibrant);
}

.weight-btn strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure);
}

.weight-btn span {
  display: block;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}

.weight-btn.active strong,
.weight-btn.active span {
  color: #050608;
}

/* Calculation Display Panel */
.calc-display-panel {
  background: var(--bg-solid-black);
  border: 2px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 30px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

@media (min-width: 680px) {
  .calc-display-panel {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }
}

.price-unit label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.price-digit {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold-vibrant);
  line-height: 1.05;
}

.buyback-indicator {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.buyback-digit {
  font-family: var(--font-mono);
  color: var(--text-pure);
  font-weight: 700;
}

.calc-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-high);
}

.calc-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  color: var(--wa-green);
  flex-shrink: 0;
}

/* ==========================================================================
   4 VALUE PILLARS (PUNCHY, CONCISE, ICON-FIRST)
   ========================================================================== */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pillar-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3.5vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.pillar-card:hover {
  border-color: var(--gold-border-bright);
  transform: translateY(-4px);
}

.pillar-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pillar-icon-shield {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--gold-badge-bg);
  border: 1px solid var(--gold-border-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-vibrant);
  flex-shrink: 0;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-pure);
  line-height: 1.25;
}

.pillar-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   3 SIMPLE STEPS
   ========================================================================== */
.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flow-card {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.flow-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-vibrant);
  color: #060709;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 800;
}

.flow-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-pure);
}

.flow-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   AREA COVERAGE (PURBALINGGA & BANYUMAS)
   ========================================================================== */
.coverage-panel {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.coverage-head h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-pure);
}

.coverage-head p {
  font-size: 1rem;
  color: var(--text-muted);
}

.district-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.district-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  color: var(--text-high);
  font-weight: 600;
}

.district-pill.hot {
  background: var(--gold-badge-bg);
  border-color: var(--gold-border-bright);
  color: var(--gold-glow);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-stack {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-row {
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-row:hover {
  border-color: var(--gold-border-bright);
}

.faq-btn {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.faq-icon-arrow {
  color: var(--gold-vibrant);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-row.open .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.faq-row.open .faq-answer {
  display: block;
}

/* ==========================================================================
   FINAL HEROIC CTA
   ========================================================================== */
.heroic-cta-box {
  background: radial-gradient(circle at 50% 20%, #29200B 0%, #101217 100%);
  border: 2px solid var(--gold-vibrant);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px) clamp(20px, 4vw, 44px);
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.heroic-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-pure);
}

.heroic-cta-box p {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  max-width: 660px;
}

/* ==========================================================================
   FOOTER & SINGLE CENTRALIZED DISCLAIMER
   ========================================================================== */
.site-footer {
  border-top: 2px solid var(--border-subtle);
  background-color: var(--bg-solid-black);
  padding: 54px 0 36px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

@media (min-width: 800px) {
  .footer-top-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-vibrant);
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link-list a {
  font-size: 0.95rem;
  color: var(--text-high);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-link-list a:hover {
  color: var(--gold-vibrant);
}

/* SINGLE STRICT DISCLAIMER BAR AT THE BOTTOM */
.single-disclaimer-box {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: #7E8696;
  line-height: 1.6;
  text-align: center;
}

.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}

/* ==========================================================================
   STICKY BOTTOM BAR (MOBILE ONLY)
   ========================================================================== */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(9, 10, 13, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 2px solid var(--gold-vibrant);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .mobile-action-bar {
    display: none;
  }
}

.mobile-bar-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--text-pure);
}

.mobile-bar-info span {
  font-size: 0.78rem;
  color: #A3F7BF;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mobile-action-bar .btn {
  flex: 1;
  max-width: 190px;
  padding: 12px 16px;
  font-size: 1rem;
}
