/* ==========================================================================
   Aviator PIX — style.css (mobile-first)
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h, 64px) + 12px);
  scroll-padding-bottom: calc(var(--sticky-cta-h, 92px) + 12px);
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255, 90, 31, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(11, 31, 58, 0.06), transparent 45%),
    var(--color-bg);
  text-align: left;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  padding-bottom: calc(var(--sticky-cta-h, 92px) + env(safe-area-inset-bottom, 0px));
  transition: padding-bottom 0.3s ease;
}

/* No empty strip under footer when sticky CTA is hidden */
body.sticky-cta-hidden {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

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

a {
  color: var(--color-accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/* 2. CSS variables */
:root {
  --color-bg: #F5F7FB;
  --color-surface: #FFFFFF;
  --color-ink: #0B1F3A;
  --color-accent: #FF5A1F;
  --color-accent-dark: #C2410C;
  --color-accent-light: #FFF0E8;
  --color-text: #0B1F3A;
  --color-text-muted: #5B6B7C;
  --color-border: #D7DEE8;
  --color-danger: #DC2626;
  --color-warning-bg: #FFF7ED;
  --color-warning-border: #F59E0B;
  --color-section-alt: #E8EEF6;

  --gradient-accent: linear-gradient(135deg, #FF5A1F 0%, #FF8A3D 55%, #FFB347 100%);
  --gradient-hero: linear-gradient(135deg, #0B1F3A 0%, #163A66 48%, #1F4E89 100%);
  --gradient-surface: linear-gradient(160deg, #FFFFFF 0%, #F0F4FA 100%);

  --font-heading: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --radius-btn: 12px;
  --radius-card: 20px;
  --radius-sm: 10px;
  --max-width: 1200px;

  --shadow-card: 0 4px 20px rgba(11, 31, 58, 0.08);
  --shadow-hover: 0 12px 32px rgba(11, 31, 58, 0.14);

  --header-h: 64px;
  --sticky-cta-h: 92px;
}

/* 3. Typography */
h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  text-align: left;
}

.section > .container > h2,
.section .content-narrow > h2,
.section .faq-narrow > h2 {
  text-align: center;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text);
  text-align: left;
}

p:last-child {
  margin-bottom: 0;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  max-width: 56rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

.content-narrow > p {
  max-width: none;
  width: 100%;
  text-align: left;
}

.demo-cta p,
.crash-cta p,
.rg-note,
.casino-terms,
.disclaimer {
  text-align: center;
}

.accent {
  color: var(--color-accent);
  background: none;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

/* 4. Layout */
.container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.info-grid,
.steps,
.saque-info,
.trust-checklist,
.faq-list,
.crash-games-grid,
.highlight-box,
.warning-box,
.legal-notice,
.trust-box,
.demo-wrapper {
  width: 100%;
}

.content-narrow,
.faq-narrow {
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
}

.section {
  padding: 2.5rem 0;
  text-align: left;
}

.section-alt {
  background: var(--color-section-alt);
}

/* 5. Visually hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 6. Header sticky — dark glass, matches hero */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.12) 0%, transparent 42%),
    linear-gradient(135deg, rgba(11, 31, 58, 0.96) 0%, rgba(15, 42, 74, 0.94) 55%, rgba(22, 58, 102, 0.94) 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(255, 138, 61, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 28px rgba(11, 31, 58, 0.35);
  overflow: visible;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #FF5A1F 35%, #FFB347 50%, #FF5A1F 65%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  min-width: 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.12rem;
  color: #F5F7FB;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.logo strong {
  color: #FF8A3D;
  background: linear-gradient(135deg, #FF5A1F, #FFB347);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  color: #fff;
  line-height: 0;
  background: var(--gradient-accent);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 4px 14px rgba(255, 90, 31, 0.45);
}

/* 7–8. Hamburger + mobile nav */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 10px;
  z-index: 110;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hamburger:hover,
.hamburger.is-open {
  background: rgba(255, 90, 31, 0.18);
  border-color: rgba(255, 138, 61, 0.45);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #F5F7FB;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background 0.2s;
}

.hamburger.is-open span {
  background: #FF8A3D;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background:
    linear-gradient(180deg, rgba(15, 42, 74, 0.98) 0%, rgba(11, 31, 58, 0.98) 100%);
  border-bottom: 1px solid rgba(255, 138, 61, 0.3);
  box-shadow: 0 18px 40px rgba(5, 14, 28, 0.55);
  padding: 0.85rem 1.25rem 1.35rem;
  text-align: center;
}

.main-nav.is-open {
  display: flex;
}

.main-nav a {
  display: block;
  width: 100%;
  padding: 0.8rem 0.65rem;
  color: rgba(245, 247, 251, 0.88);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:last-child {
  border-bottom: none;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 90, 31, 0.14);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 14, 28, 0.62);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.menu-open .nav-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .sticky-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

body.menu-open .main-nav {
  box-shadow: 0 20px 48px rgba(5, 14, 28, 0.6);
  border-bottom-color: rgba(255, 90, 31, 0.35);
}

.nav-cta {
  margin-top: 0.55rem !important;
  text-align: center;
  background: var(--gradient-accent);
  color: #fff !important;
  border-radius: var(--radius-btn);
  border-bottom: none !important;
  padding: 0.85rem 1.25rem !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(255, 90, 31, 0.4);
}

.nav-cta:hover {
  color: #fff !important;
  background: var(--gradient-accent) !important;
  opacity: 0.96;
  filter: brightness(1.05);
}

/* Responsive button labels */
.btn-text-short {
  display: inline;
}

.btn-text-full {
  display: none;
}

@media (min-width: 480px) {
  .btn-text-short {
    display: none;
  }

  .btn-text-full {
    display: inline;
  }
}

/* 9. Buttons */
.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 54px;
  border: none;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  color: #fff;
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-cta:focus-visible,
.sticky-cta__btn:focus-visible,
.main-nav a:focus-visible,
.logo:focus-visible,
.faq-item summary:focus-visible,
.rg-links a:focus-visible,
.footer-meta a:focus-visible,
.error-links a:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  min-height: 54px;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
  min-height: 58px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-height: 40px;
}

/* 10. Hero */
.hero {
  padding: 2rem 0;
  background: var(--gradient-hero);
  color: #F5F7FB;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 20%, rgba(255, 90, 31, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 138, 61, 0.18), transparent 55%),
    repeating-linear-gradient(
      -18deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.03) 18px,
      rgba(255, 255, 255, 0.03) 19px
    );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.hero-content {
  text-align: center;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0B1F3A;
  background: #FF8A3D;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  max-width: 100%;
  box-sizing: border-box;
}

.hero-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
  text-align: center;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  color: #FFFFFF;
}

.hero-title .accent {
  color: #FF8A3D;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(245, 247, 251, 0.78);
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0;
  width: 100%;
  min-width: 0;
}

.stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
}

.stat-value {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #FF8A3D;
  overflow-wrap: anywhere;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(245, 247, 251, 0.7);
}

.hero-content > .hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  margin-inline: auto;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
}

.hero-content > .hero-ctas .btn-primary,
.hero-content > .hero-ctas .btn-secondary {
  width: auto;
  max-width: 100%;
  white-space: normal;
  box-sizing: border-box;
}

.hero-ctas .btn-secondary {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.hero-ctas .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

/* Live multipliers strip — Aviator BR vibe */
.live-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 138, 61, 0.28);
  overflow: hidden;
}

.live-strip__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.live-strip__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
}

.live-strip__track {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.live-strip__rail {
  display: flex;
  gap: 0.45rem;
  width: max-content;
  will-change: transform;
}

.multi-chip {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.multi-chip--low {
  background: rgba(52, 211, 153, 0.22);
  border-color: rgba(52, 211, 153, 0.45);
  color: #a7f3d0;
}

.multi-chip--mid {
  background: rgba(96, 165, 250, 0.22);
  border-color: rgba(96, 165, 250, 0.45);
  color: #bfdbfe;
}

.multi-chip--high {
  background: rgba(255, 90, 31, 0.28);
  border-color: rgba(255, 138, 61, 0.55);
  color: #fdba74;
}

.multi-chip--moon {
  background: rgba(244, 114, 182, 0.28);
  border-color: rgba(244, 114, 182, 0.5);
  color: #fbcfe8;
}

.stat-value--live {
  color: #34d399;
}

.hero-image {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-image::after {
  content: none;
  position: absolute;
  left: -12%;
  top: 18%;
  z-index: 2;
  font-size: 1.35rem;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.bonus-value {
  background-size: 200% 100%;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 510 / 340;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background: #9B0A1A;
  border: 1px solid rgba(255, 138, 61, 0.35);
}

/* 11. Demo */

.demo-wrapper {
  margin-block: 1.5rem 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #111;
}

.demo-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.demo-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.demo-cta p {
  font-weight: 600;
  margin: 0;
}

.rg-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ========== Devices (mobile + desktop) ========== */
.section-devices {
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: clip;
  position: relative;
}

.section-devices::before {
  display: none;
}

.section-devices .container {
  position: relative;
  z-index: 1;
}

.devices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}

.devices-copy {
  text-align: left;
  width: 100%;
  min-width: 0;
}

.devices-copy > .btn-primary {
  display: inline-flex;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .devices-copy {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .devices-copy > .btn-primary {
    align-self: center;
    width: auto;
    max-width: 100%;
  }
}

.devices-copy h2 {
  text-align: left;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.devices-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  background: var(--color-accent-light);
}

.devices-copy > p {
  color: var(--color-text-muted);
  margin-bottom: 1.15rem;
  max-width: none;
  text-align: left;
}

.devices-points {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
}

.devices-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.devices-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--gradient-accent);
}

.devices-visual {
  width: 100%;
  min-width: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.devices-visual img {
  width: auto;
  max-width: min(100%, 200px);
  max-height: min(55vh, 380px);
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .devices-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 2rem;
    align-items: center;
  }

  .devices-visual img {
    max-width: min(100%, 220px);
    max-height: 420px;
  }
}

@media (min-width: 1024px) {
  .devices-grid {
    gap: 2.5rem;
  }
}

/* 12. Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block: 1.75rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-surface);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  margin-bottom: 0.25rem;
}

.step p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* 13. Cards */
.info-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.info-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 1.35rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
}

.info-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

/* info-icon styled below */

.info-card p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.crash-games-grid {
  display: grid;
  gap: 1.5rem;
  margin-block: 1.5rem 2rem;
}

.crash-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.crash-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.crash-image {
  background: transparent;
  display: block;
  padding: 0;
  line-height: 0;
}

.crash-image img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  border-radius: 0;
}

.crash-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.crash-info p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
  flex: 1;
}

.crash-rtp {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.crash-info .btn-primary {
  width: 100%;
  margin-top: auto;
  min-height: 3.25rem;
  height: 3.25rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
  box-sizing: border-box;
}

.crash-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.crash-cta p {
  font-weight: 500;
  color: var(--color-text-muted);
  margin: 0;
}

/* Casino featured */
.casino-featured {
  position: relative;
  background: var(--gradient-surface);
  border: 2px solid var(--color-ink);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-hover);
  text-align: center;
}

.casino-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.casino-featured > .casino-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0.75rem 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 1.25rem;
  margin-inline: 0;
}

.casino-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  margin-right: auto;
  font-size: 0;
  line-height: 0;
  flex: 0 0 auto;
}

.casino-logo {
  display: block;
  width: auto;
  height: 2.75rem;
  max-width: 7.5rem;
  padding: 0.55rem 0.85rem;
  background: var(--color-ink);
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.casino-header h3 {
  font-size: 1.75rem;
  margin: 0;
  text-align: left;
}

.casino-rating {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.casino-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.casino-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.bonus-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  background-image: linear-gradient(
    90deg,
    #ff5a1f 0%,
    #ff8a3d 35%,
    #ffe7b0 50%,
    #ff8a3d 65%,
    #ff5a1f 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bonus-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.casino-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.casino-facts span {
  font-size: 0.9rem;
  color: var(--color-text);
}

.casino-featured .btn-primary {
  width: 100%;
}

.casino-terms {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* 14. Casino table */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: var(--color-surface);
}

.casinos-table {
  min-width: 560px;
}

.casinos-table th,
.casinos-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.casinos-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-text-muted);
  background: var(--color-accent-light);
}

.casinos-table tbody tr:last-child td {
  border-bottom: none;
}

.casinos-table td:last-child {
  text-align: right;
}

.disclaimer {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Saque cards */
.saque-info {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.saque-card {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
}

.saque-card > span,
.saque-card strong,
.saque-card p {
  display: block;
  width: 100%;
  text-align: center;
}

.saque-card > span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.saque-card strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent-dark);
}

.saque-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* 15. FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: var(--shadow-card);
  border-color: var(--color-accent);
}

.faq-item summary {
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-text);
  min-height: 48px;
}

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

.faq-item summary::after {
  content: '+';
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* 16. Trust checklist */
.trust-box {
  margin-bottom: 1.5rem;
}

.trust-score {
  background: var(--color-surface);
  border-radius: var(--radius-card);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-accent);
}

.trust-stars {
  display: block;
  color: #F59E0B;
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.35rem;
}

.trust-score strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.trust-score p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.trust-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.trust-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: var(--color-surface);
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.trust-item > span {
  flex-shrink: 0;
  line-height: 1.4;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.2rem;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

.trust-ok {
  border-left: 3px solid var(--color-accent);
}

.trust-warning {
  border-left: 3px solid var(--color-warning-border);
  background: var(--color-warning-bg);
}

/* 17. Warning / highlight boxes */
.highlight-box {
  background: var(--color-accent-light);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-card);
  padding: 1.1rem 1.25rem;
  margin-block: 1.5rem;
  text-align: center;
  color: var(--color-accent-dark);
}

.warning-box {
  background: var(--color-warning-bg);
  border: 1px solid var(--color-warning-border);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.warning-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.warning-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

/* 18. Footer */
.site-footer {
  background: #0B1F3A;
  color: #C5D0DE;
  padding-block: 2.5rem;
}

.footer-inner {
  display: grid;
  gap: 2rem;
}

.footer-rg {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #FF8A3D;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}

.footer-rg p {
  color: #C5D0DE;
  font-size: 0.9rem;
  margin: 0;
  max-width: 28rem;
}

.rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.rg-links a,
.footer-meta a {
  color: #FFB087;
  text-decoration: none;
  font-size: 0.9rem;
}

.rg-links a:hover,
.footer-meta a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-meta p {
  font-size: 0.85rem;
  color: #8FA3B8;
  margin-bottom: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.85rem !important;
  line-height: 1.55;
  color: #A8B8C8 !important;
}

/* Motion */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeUp 0.6s ease-out both;
}

.hero-image {
  animation: fadeUp 0.7s ease-out 0.12s both;
}

.hero-stats .stat {
  animation: fadeUp 0.5s ease-out both;
}

.hero-stats .stat:nth-child(1) { animation-delay: 0.15s; }
.hero-stats .stat:nth-child(2) { animation-delay: 0.22s; }
.hero-stats .stat:nth-child(3) { animation-delay: 0.29s; }
.hero-stats .stat:nth-child(4) { animation-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* 19. Breakpoints — mobile-first */

/* ≥480px */
@media (min-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-content > .hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .hero-content > .hero-ctas .btn-primary,
  .hero-content > .hero-ctas .btn-secondary {
    width: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .saque-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ≥768px — tablet: still hamburger, section padding */
@media (min-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 3rem 0;
  }

  .hero-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .crash-games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .casino-details {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .casino-featured .btn-primary {
    width: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

/* ≥1024px — desktop nav + 2-col hero */
@media (min-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hamburger {
    display: none;
  }

  .nav-backdrop {
    display: none;
  }

  body.menu-open {
    overflow: auto;
  }

  body.menu-open .sticky-cta {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 0.15rem 0.85rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: left;
  }

  .main-nav a {
    padding: 0.4rem 0.5rem;
    border: none;
    font-size: 0.88rem;
    width: auto;
    color: rgba(245, 247, 251, 0.82);
  }

  .main-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    margin-top: 0 !important;
    padding: 0.52rem 0.95rem !important;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 90, 31, 0.35);
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-content > .hero-ctas {
    justify-content: center;
  }

  .hero-content > .hero-ctas .btn-primary,
  .hero-content > .hero-ctas .btn-secondary {
    width: auto;
    flex: 0 1 auto;
  }

  .info-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .crash-card {
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .main-nav a {
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
  }

  .nav-cta {
    padding: 0.55rem 1.05rem !important;
    font-size: 0.875rem !important;
  }
}

/* ========== Skip link ========== */
/* Hidden until keyboard focus (clip + off-screen). Keep in DOM for a11y. */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 400;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  background: var(--color-accent);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 8px;
}

.skip-link:focus,
.skip-link:focus-visible {
  position: fixed;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1.1rem;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 2px;
}

html.a11y-contrast .skip-link,
html.a11y-links .skip-link {
  text-decoration: none !important;
}

/* ========== Legal page ========== */
.legal-page .legal-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.5rem;
  text-align: left;
}

.legal-page .legal-content h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  text-align: left;
}

.legal-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.legal-list li {
  color: var(--color-text);
  line-height: 1.55;
}

.legal-page .site-header .nav-cta {
  margin-top: 0 !important;
  text-decoration: none;
}

.legal-page {
  padding-bottom: 2rem;
}

/* ========== 404 / error page ========== */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.error-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
}

.error-wrap {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.error-code {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 16vw, 7rem);
  line-height: 1;
  margin: 0 0 0.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.error-wrap h1 {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 0.85rem;
}

.error-lead {
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 1.75rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.error-links a {
  font-weight: 600;
  text-decoration: none;
}

.error-links a:hover {
  text-decoration: underline;
}

.legal-notice {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-card);
  background: var(--color-accent-light);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ========== Motion keyframes ========== */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes goldFlicker {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 90, 31, 0.25); }
  50% { box-shadow: 0 6px 28px rgba(255, 90, 31, 0.4), 0 0 22px rgba(255, 138, 61, 0.2); }
}

@keyframes stickyIn {
  0% { opacity: 0; transform: translateY(16px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes planePulse {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-6deg); }
}

@keyframes stickyLive {
  0% { box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.7); opacity: 1; }
  70% { box-shadow: 0 0 0 12px rgba(255, 138, 61, 0); opacity: 0.85; }
  100% { box-shadow: 0 0 0 0 rgba(255, 138, 61, 0); opacity: 1; }
}

@keyframes stickyBtnPulse {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.12),
      0 6px 24px rgba(255, 90, 31, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(255, 255, 255, 0.18),
      0 8px 32px rgba(255, 90, 31, 0.55);
  }
}

@keyframes stickyShine {
  0%, 55% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes liveDot {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

@keyframes multiMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes goldShimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes planeFly {
  0% { opacity: 0; transform: translate(-10%, 20%) rotate(-12deg) scale(0.85); }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { opacity: 0; transform: translate(118%, -28%) rotate(8deg) scale(1.05); }
}

@keyframes chipPop {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes cashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ========== Sticky CTA ========== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  padding: 0.75rem 0.75rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent 0%, rgba(11, 31, 58, 0.35) 40%, rgba(11, 31, 58, 0.92) 100%);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.sticky-cta.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  background: none;
}

.sticky-cta.is-hidden .sticky-cta__inner {
  pointer-events: none;
}

.sticky-cta__inner {
  pointer-events: auto;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.7rem 0.7rem 0.7rem 0.95rem;
  background: linear-gradient(135deg, #0B1F3A 0%, #163A66 100%);
  border: 2px solid #FF5A1F;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(11, 31, 58, 0.45);
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.sticky-cta__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  transform: translateX(-120%);
  pointer-events: none;
}

.sticky-cta__copy {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.sticky-cta__pulse {
  position: absolute;
  left: -0.15rem;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: #FF5A1F;
  box-shadow: 0 0 0 0 rgba(255, 90, 31, 0.7);
  flex-shrink: 0;
}

.sticky-cta__plane {
  font-size: 0;
  line-height: 0;
  margin-left: 0.65rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FF8A3D;
}

.sticky-cta__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #FF8A3D;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sticky-cta__copy strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.sticky-cta__amount {
  color: #FF8A3D;
  background-image: linear-gradient(
    90deg,
    #ff5a1f 0%,
    #ff8a3d 35%,
    #ffe7b0 50%,
    #ff8a3d 65%,
    #ff5a1f 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sticky-cta__btn {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-btn);
  background: var(--gradient-accent);
  color: #fff !important;
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(255, 90, 31, 0.45);
  white-space: nowrap;
}

.sticky-cta__btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.sticky-cta__btn:hover {
  color: #fff !important;
  filter: brightness(1.06);
}

.sticky-cta__btn:hover .sticky-cta__btn-arrow {
  transform: translateX(3px);
}

@media (max-width: 359px) {
  .sticky-cta__label { display: none; }
  .sticky-cta__copy strong { font-size: 0.82rem; }
  .sticky-cta__btn { padding: 0.75rem 0.85rem; font-size: 0.78rem; }
  .sticky-cta__plane { margin-left: 0.45rem; }
}

@media (min-width: 768px) {
  .sticky-cta {
    padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom, 0px));
  }
  .sticky-cta__inner {
    padding: 0.85rem 0.9rem 0.85rem 1.15rem;
    gap: 1rem;
    border-radius: 22px;
  }
  .sticky-cta__copy strong { font-size: 1.15rem; }
  .sticky-cta__label { font-size: 0.78rem; }
  .sticky-cta__btn { padding: 1rem 1.6rem; font-size: 1rem; }
  .sticky-cta__plane { color: #FF8A3D; }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta__inner::before,
  .sticky-cta__pulse,
  .sticky-cta__btn,
  .sticky-cta__plane {
    animation: none !important;
  }
}

/* ========== Float tools: a11y + back to top ========== */
.float-tools {
  position: fixed;
  left: 0.85rem;
  right: 0.85rem;
  bottom: calc(var(--sticky-cta-h, 92px) + 0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 280;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}

.float-tools__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  pointer-events: none;
}

.float-tools__side--left {
  align-items: flex-start;
}

.float-tools__side--right {
  align-items: flex-end;
  margin-left: auto;
}

.float-btn,
.a11y-panel {
  pointer-events: auto;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(11, 31, 58, 0.16);
  background: var(--color-surface);
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, filter 0.2s ease;
}

.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.float-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.float-btn--a11y {
  background: var(--color-ink);
  color: #fff;
  border-color: rgba(255, 90, 31, 0.55);
  box-shadow:
    0 8px 22px rgba(11, 31, 58, 0.32),
    inset 0 0 0 1px rgba(255, 138, 61, 0.2);
}

.float-btn--a11y:hover,
.float-btn--a11y:focus-visible {
  background: var(--gradient-accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.35);
}

.float-btn--a11y[aria-expanded="true"] {
  background: var(--gradient-accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.4);
}

.float-btn--top {
  background: var(--color-ink);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.32);
}

.float-btn--top:hover,
.float-btn--top:focus-visible {
  background: var(--gradient-accent);
  border-color: transparent;
  color: #fff;
}

.float-btn--top[hidden] {
  display: none !important;
}

.float-btn__svg {
  display: block;
}

.a11y-panel {
  width: min(292px, calc(100vw - 1.75rem));
  padding: 0.9rem;
  border-radius: var(--radius-card);
  background: var(--gradient-surface);
  border: 2px solid var(--color-ink);
  box-shadow: var(--shadow-hover);
}

.a11y-panel[hidden] {
  display: none !important;
}

.a11y-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.a11y-panel__head strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-text);
}

.a11y-panel__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.a11y-panel__close:hover,
.a11y-panel__close:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent-dark);
  outline: none;
}

.a11y-panel__lead {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.a11y-panel__options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.a11y-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.7rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.a11y-option:hover,
.a11y-option:focus-visible {
  border-color: rgba(255, 90, 31, 0.45);
  outline: none;
}

.a11y-option[aria-pressed="true"] {
  border-color: rgba(255, 90, 31, 0.55);
  background: var(--color-accent-light);
  box-shadow: inset 0 0 0 1px rgba(255, 90, 31, 0.12);
}

.a11y-option__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--color-accent-dark);
  background: var(--color-accent-light);
  border: 1px solid rgba(255, 90, 31, 0.25);
}

.a11y-option__icon--contrast::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--color-ink) 50%, #fff 50%);
  border: 1px solid var(--color-ink);
  box-sizing: border-box;
}

.a11y-option__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.a11y-option__text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
}

.a11y-option__text small {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.a11y-panel__reset {
  width: 100%;
  margin-top: 0.7rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255, 90, 31, 0.35);
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 0.85rem;
}

.a11y-panel__reset:hover,
.a11y-panel__reset:focus-visible {
  background: rgba(255, 90, 31, 0.16);
  color: var(--color-accent-dark);
  outline: none;
}

body.menu-open .float-tools {
  opacity: 0;
  pointer-events: none;
}

body.sticky-cta-hidden .float-tools {
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
}

html.a11y-font {
  font-size: 112.5%;
}

html.a11y-contrast {
  --color-bg: #000;
  --color-surface: #0A0A0A;
  --color-text: #FFFFFF;
  --color-text-muted: #E8E8E8;
  --color-border: rgba(255, 255, 255, 0.28);
  --color-accent: #FF7A45;
  --color-accent-dark: #FFB087;
  --color-accent-light: #111;
}

html.a11y-contrast body {
  background: #000;
}

html.a11y-contrast .site-header {
  background: #000;
  border-bottom-color: #FF7A45;
  box-shadow: none;
}

html.a11y-contrast .site-header::after {
  background: #FF7A45;
  opacity: 1;
}

html.a11y-contrast .main-nav {
  background: #0A0A0A;
  border-bottom-color: rgba(255, 255, 255, 0.35);
}

html.a11y-contrast .stat,
html.a11y-contrast .info-card,
html.a11y-contrast .faq-item,
html.a11y-contrast .a11y-panel,
html.a11y-contrast .float-btn {
  background: #0A0A0A;
  border-color: rgba(255, 255, 255, 0.35);
}

html.a11y-contrast a {
  color: #FFB087;
  text-decoration: underline;
}

html.a11y-motion *,
html.a11y-motion *::before,
html.a11y-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.a11y-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}

@media (min-width: 768px) {
  .float-tools {
    left: 1.15rem;
    right: 1.15rem;
    bottom: calc(var(--sticky-cta-h, 92px) + 1rem + env(safe-area-inset-bottom, 0px));
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-btn {
    transition: none;
  }
}


/* Non-emoji UI icons */
.icon-svg {
  display: block;
}

.logo-icon,
.sticky-cta__plane {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.info-icon {
  display: block;
  width: 2.25rem;
  height: 0.35rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  background: var(--gradient-accent);
}

.info-icon--bolt { background: linear-gradient(90deg, #FF5A1F, #FFB020); }
.info-icon--lock { background: linear-gradient(90deg, #0B1F3A, #3D5A80); }
.info-icon--chart { background: linear-gradient(90deg, #FF5A1F, #0B1F3A); }
.info-icon--plane { background: var(--gradient-accent); }

.icon-check {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.35rem;
  border-radius: 2px;
  background: var(--color-accent);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.35);
}
