/* ===== CUSTOM PROPERTIES ===== */
:root {
  /* Primary */
  --clr-brand: #00E676;
  --clr-brand-bright: #18FF8A;
  --clr-brand-deep: #00A85A;

  /* Accent */
  --clr-magenta: #D91572;
  --clr-hot-pink: #FF3FA4;
  --clr-sports-green: #16C970;
  --clr-promo-purple: #7C3AED;
  --clr-electric-blue: #3B82F6;
  --clr-aqua: #22D3EE;
  --clr-gold: #F5B942;
  --clr-orange: #FF8A1F;
  --clr-red: #EF4444;

  /* Interactive */
  --clr-btn-primary: #00E676;
  --clr-btn-hover: #3CFF9B;
  --clr-btn-dark: #101722;
  --clr-btn-slate: #1A2230;
  --clr-focus-ring: #00E676;

  /* Neutrals */
  --clr-white: #FFFFFF;
  --clr-soft-white: #F2F5F7;
  --clr-light-gray: #B8C0CC;
  --clr-muted-gray: #7D8796;
  --clr-dark-gray-blue: #2D3748;

  /* Surfaces */
  --clr-bg-darkest: #060B12;
  --clr-bg-main: #0A1018;
  --clr-bg-card: #101822;
  --clr-bg-elevated: #151E2A;
  --clr-border: #263142;
  --clr-divider: #1E2936;

  /* Typography */
  --clr-heading: #FFFFFF;
  --clr-body: #CBD5E1;
  --clr-muted: #94A3B8;
  --clr-link: #00E676;

  /* Game tones */
  --clr-slots-blue: #4DA3FF;
  --clr-live-red: #F04444;
  --clr-roulette-purple: #A855F7;
  --clr-dice-orange: #FF9F1C;
  --clr-mines-green: #22C55E;
  --clr-crash-cyan: #06B6D4;

  /* VIP */
  --clr-bronze: #B7793F;
  --clr-silver: #C0C8D2;
  --clr-gold-vip: #F5C542;
  --clr-platinum: #A7D8FF;
  --clr-diamond: #7DEBFF;

  /* Spacing */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;

  /* Typography scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.875rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.75rem;

  /* Radius */
  --rad-sm: 6px;
  --rad-md: 10px;
  --rad-lg: 16px;
  --rad-xl: 24px;
  --rad-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --duration: 0.25s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--clr-body);
  background-color: var(--clr-bg-darkest);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--clr-link);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}

a:hover {
  color: var(--clr-brand-bright);
}

a:focus-visible {
  outline: 2px solid var(--clr-focus-ring);
  outline-offset: 2px;
  border-radius: var(--rad-sm);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--clr-heading);
  line-height: 1.25;
  font-weight: 700;
}

/* ===== LAYOUT ===== */
.wrapper {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--sp-lg);
}

/* ===== HEADER ===== */
.site-masthead {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 11, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-divider);
  transition: background var(--duration) var(--ease-out);
}

.masthead-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin-inline: auto;
  padding: var(--sp-md) var(--sp-lg);
  gap: var(--sp-md);
}

.brand-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 32px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-sm);
  z-index: 1001;
}

.toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: var(--rad-full);
  transition: transform var(--duration) var(--ease-out), opacity var(--duration) var(--ease-out);
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.nav-anchor {
  color: var(--clr-light-gray);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--rad-sm);
  transition: color var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
}

.nav-anchor:hover,
.nav-anchor.active-link {
  color: var(--clr-brand);
  background: rgba(0, 230, 118, 0.08);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--clr-btn-primary);
  color: var(--clr-bg-darkest);
  font-weight: 700;
  font-size: var(--fs-sm);
  border-radius: var(--rad-full);
  transition: background var(--duration) var(--ease-out), transform 0.15s var(--ease-out), box-shadow var(--duration) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}

.header-action:hover {
  background: var(--clr-btn-hover);
  color: var(--clr-bg-darkest);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
}

/* ===== HERO ===== */
.hero-block {
  padding: var(--sp-4xl) 0 var(--sp-3xl);
  background: linear-gradient(170deg, var(--clr-bg-main) 0%, var(--clr-bg-darkest) 50%, rgba(0, 230, 118, 0.04) 100%);
  position: relative;
  overflow: hidden;
}

.hero-block::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-block .wrapper {
  display: flex;
  align-items: center;
  gap: var(--sp-3xl);
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-content h1 {
  font-size: var(--fs-4xl);
  margin-bottom: var(--sp-lg);
  background: linear-gradient(135deg, var(--clr-white) 40%, var(--clr-brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: var(--fs-md);
  color: var(--clr-body);
  margin-bottom: var(--sp-xl);
  max-width: 640px;
}

.hero-visual {
  flex-shrink: 0;
}

.hero-badge {
  width: 180px;
  height: 180px;
  border-radius: var(--rad-xl);
  box-shadow: 0 8px 40px rgba(0, 230, 118, 0.15);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: var(--clr-btn-primary);
  color: var(--clr-bg-darkest);
  font-weight: 700;
  font-size: var(--fs-base);
  border-radius: var(--rad-full);
  border: none;
  cursor: pointer;
  transition: background var(--duration) var(--ease-out), transform 0.15s var(--ease-out), box-shadow var(--duration) var(--ease-out);
  text-decoration: none;
}

.primary-action:hover {
  background: var(--clr-btn-hover);
  color: var(--clr-bg-darkest);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 230, 118, 0.35);
}

.primary-action:active {
  transform: translateY(0);
}

/* ===== CONTENT BODY ===== */
.content-body {
  padding: var(--sp-3xl) 0;
}

.byline-strip {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  margin-bottom: var(--sp-3xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--clr-divider);
}

.byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--rad-full);
  border: 2px solid var(--clr-border);
}

.byline-name {
  display: block;
  color: var(--clr-white);
  font-weight: 600;
  font-size: var(--fs-sm);
}

.byline-date {
  display: block;
  color: var(--clr-muted);
  font-size: var(--fs-xs);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  margin-bottom: var(--sp-3xl);
}

.content-section h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 2px solid var(--clr-brand);
  display: inline-block;
}

.content-section h3 {
  font-size: var(--fs-xl);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-md);
  color: var(--clr-soft-white);
}

.content-section p {
  margin-bottom: var(--sp-md);
  max-width: 75ch;
}

/* ===== TABLE ===== */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--sp-xl) 0;
  border-radius: var(--rad-md);
  border: 1px solid var(--clr-border);
}

.data-grid {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 480px;
}

.data-grid thead {
  background: var(--clr-bg-elevated);
}

.data-grid th {
  text-align: left;
  padding: var(--sp-md) var(--sp-lg);
  color: var(--clr-brand);
  font-weight: 600;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.data-grid td {
  padding: var(--sp-md) var(--sp-lg);
  border-top: 1px solid var(--clr-divider);
  color: var(--clr-body);
}

.data-grid tbody tr {
  transition: background var(--duration) var(--ease-out);
}

.data-grid tbody tr:hover {
  background: rgba(0, 230, 118, 0.03);
}

/* ===== LISTS ===== */
.feature-rundown,
.verification-list,
.responsibility-list,
.mistakes-list {
  margin: var(--sp-lg) 0;
  padding-left: 0;
}

.feature-rundown li,
.verification-list li,
.responsibility-list li,
.mistakes-list li {
  position: relative;
  padding: var(--sp-sm) 0 var(--sp-sm) var(--sp-xl);
  border-bottom: 1px solid var(--clr-divider);
  color: var(--clr-body);
  line-height: 1.65;
}

.feature-rundown li:last-child,
.verification-list li:last-child,
.responsibility-list li:last-child,
.mistakes-list li:last-child {
  border-bottom: none;
}

.feature-rundown li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 8px;
  background: var(--clr-brand);
  border-radius: var(--rad-full);
}

.verification-list li::before {
  content: '☐';
  position: absolute;
  left: 0;
  top: var(--sp-sm);
  color: var(--clr-brand);
  font-size: var(--fs-base);
}

.responsibility-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 1.05em;
  width: 6px;
  height: 6px;
  background: var(--clr-promo-purple);
  border-radius: 2px;
  transform: rotate(45deg);
}

.mistakes-list li::before {
  content: '✕';
  position: absolute;
  left: 2px;
  top: var(--sp-sm);
  color: var(--clr-red);
  font-size: var(--fs-sm);
  font-weight: 700;
}

.mistakes-list li strong {
  color: var(--clr-white);
}

/* ===== ORDERED LIST (Steps) ===== */
.step-sequence {
  counter-reset: step-counter;
  margin: var(--sp-lg) 0;
  padding-left: 0;
}

.step-sequence li {
  counter-increment: step-counter;
  position: relative;
  padding: var(--sp-md) 0 var(--sp-md) 52px;
  border-bottom: 1px solid var(--clr-divider);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.step-sequence li:last-child {
  border-bottom: none;
}

.step-sequence li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-bg-elevated);
  border: 1px solid var(--clr-brand);
  color: var(--clr-brand);
  font-weight: 700;
  font-size: var(--fs-sm);
  border-radius: var(--rad-full);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  margin: var(--sp-3xl) 0;
  border-radius: var(--rad-lg);
  background: linear-gradient(135deg, var(--clr-bg-elevated) 0%, rgba(0, 230, 118, 0.08) 50%, var(--clr-bg-elevated) 100%);
  border: 1px solid var(--clr-brand);
  overflow: hidden;
  position: relative;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 230, 118, 0.06), transparent 60%);
  pointer-events: none;
}

.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-2xl) var(--sp-2xl);
  gap: var(--sp-xl);
  position: relative;
}

.promo-tagline {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--sp-sm);
}

.promo-desc {
  color: var(--clr-body);
  font-size: var(--fs-base);
  max-width: 480px;
  margin-bottom: 0;
}

.promo-cta {
  flex-shrink: 0;
  padding: 16px 40px;
  font-size: var(--fs-md);
  box-shadow: 0 4px 24px rgba(0, 230, 118, 0.25);
}

/* ===== VISUAL PLACEHOLDER ===== */
.visual-placeholder {
  margin: var(--sp-xl) 0;
  border-radius: var(--rad-md);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: var(--clr-bg-card);
}

.visual-placeholder img {
  width: 100%;
  height: auto;
}

.visual-placeholder figcaption {
  padding: var(--sp-md);
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  text-align: center;
}

/* ===== LEGAL NOTE ===== */
.legal-note {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  font-style: italic;
  padding: var(--sp-md);
  background: var(--clr-bg-card);
  border-left: 3px solid var(--clr-orange);
  border-radius: 0 var(--rad-sm) var(--rad-sm) 0;
  margin-top: var(--sp-md);
}

/* ===== FAQ ===== */
.faq-section {
  margin-bottom: var(--sp-3xl);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.faq-entry {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-md);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease-out);
}

.faq-entry[open] {
  border-color: var(--clr-brand);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-lg) var(--sp-xl);
  cursor: pointer;
  color: var(--clr-white);
  font-weight: 600;
  font-size: var(--fs-base);
  transition: background var(--duration) var(--ease-out);
  list-style: none;
}

.faq-trigger::-webkit-details-marker {
  display: none;
}

.faq-trigger::after {
  content: '+';
  font-size: var(--fs-xl);
  color: var(--clr-brand);
  font-weight: 400;
  transition: transform var(--duration) var(--ease-out);
  flex-shrink: 0;
  margin-left: var(--sp-md);
}

.faq-entry[open] .faq-trigger::after {
  content: '−';
}

.faq-trigger:hover {
  background: rgba(0, 230, 118, 0.04);
}

.faq-answer {
  padding: 0 var(--sp-xl) var(--sp-lg);
  color: var(--clr-body);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.faq-answer p {
  margin: 0;
}

/* ===== SCROLL TOP ===== */
.scroll-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-btn-primary);
  color: var(--clr-bg-darkest);
  border: none;
  border-radius: var(--rad-full);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out), background var(--duration) var(--ease-out);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--clr-btn-hover);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-bg-main);
  border-top: 1px solid var(--clr-divider);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--clr-divider);
}

.footer-logo {
  height: 28px;
  width: auto;
  margin-bottom: var(--sp-md);
}

.footer-blurb {
  font-size: var(--fs-sm);
  color: var(--clr-muted);
  line-height: 1.7;
}

.footer-heading {
  font-size: var(--fs-xs);
  color: var(--clr-light-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-md);
  font-weight: 600;
}

.footer-links li {
  margin-bottom: var(--sp-sm);
}

.footer-links a {
  color: var(--clr-muted);
  font-size: var(--fs-sm);
  transition: color var(--duration) var(--ease-out);
}

.footer-links a:hover {
  color: var(--clr-brand);
}

.rg-badges {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.rg-badges img {
  width: 48px;
  height: 48px;
  border-radius: var(--rad-sm);
  opacity: 0.75;
  transition: opacity var(--duration) var(--ease-out);
}

.rg-badges img:hover {
  opacity: 1;
}

.footer-legal {
  padding-top: var(--sp-xl);
}

.risk-warning {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--rad-md);
  padding: var(--sp-lg);
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-lg);
}

.risk-warning strong {
  color: var(--clr-orange);
}

.risk-warning a {
  color: var(--clr-brand);
}

.copyright {
  font-size: var(--fs-xs);
  color: var(--clr-muted-gray);
  text-align: center;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: var(--sp-4xl) 0;
}

.legal-page h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-md);
}

.legal-updated {
  color: var(--clr-muted);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-3xl);
  padding-bottom: var(--sp-xl);
  border-bottom: 1px solid var(--clr-divider);
}

.legal-block {
  margin-bottom: var(--sp-2xl);
}

.legal-block h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-md);
  color: var(--clr-white);
}

.legal-block p {
  margin-bottom: var(--sp-md);
  max-width: 75ch;
}

.legal-block ul {
  margin: var(--sp-md) 0;
  padding-left: var(--sp-xl);
}

.legal-block ul li {
  position: relative;
  padding: var(--sp-xs) 0;
  padding-left: var(--sp-md);
}

.legal-block ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--clr-brand);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-block .wrapper {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-xl);
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-content h1 {
    font-size: var(--fs-3xl);
  }

  .promo-inner {
    flex-direction: column;
    text-align: center;
  }

  .promo-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --sp-lg: 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--clr-bg-main);
    border-left: 1px solid var(--clr-divider);
    flex-direction: column;
    align-items: stretch;
    padding: 80px var(--sp-xl) var(--sp-xl);
    gap: var(--sp-md);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 999;
    overflow-y: auto;
  }

  .main-navigation.is-open {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-anchor {
    display: block;
    padding: var(--sp-md);
    border-bottom: 1px solid var(--clr-divider);
    font-size: var(--fs-base);
  }

  .header-action {
    text-align: center;
    margin-top: var(--sp-md);
  }

  .nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .content-section h2 {
    font-size: var(--fs-xl);
  }

  .hero-content h1 {
    font-size: var(--fs-2xl);
  }

  .hero-badge {
    width: 120px;
    height: 120px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .promo-inner {
    padding: var(--sp-xl);
  }

  .promo-tagline {
    font-size: var(--fs-xl);
  }

  .step-sequence li {
    padding-left: 46px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: var(--fs-xl);
  }

  .hero-block {
    padding: var(--sp-2xl) 0;
  }

  .content-section h2 {
    font-size: var(--fs-lg);
    display: block;
  }

  .data-grid th,
  .data-grid td {
    padding: var(--sp-sm) var(--sp-md);
    font-size: var(--fs-xs);
  }

  .faq-trigger {
    padding: var(--sp-md);
    font-size: var(--fs-sm);
  }

  .faq-answer {
    padding: 0 var(--sp-md) var(--sp-md);
  }

  .primary-action {
    padding: 12px 28px;
    font-size: var(--fs-sm);
  }

  .promo-cta {
    padding: 14px 32px;
    font-size: var(--fs-base);
    width: 100%;
  }

  .scroll-top-btn {
    bottom: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }
}

/* ===== NAVIGATION OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 11, 18, 0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.nav-overlay.is-active {
  display: block;
  opacity: 1;
}