/* Fonts loaded non-blocking via <link> in HTML for faster render */
/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #090909;
  --bg2: #0e0e0e;
  --bg3: #141414;
  --card: #111111;
  --border: #1c1c1c;
  --accent: #ff4d00;
  --accent2: #e04300;
  --accent-glow: rgba(255,77,0,0.25);
  --text: #ffffff;
  --muted: #777777;
  --muted2: #555555;
  --white: #ffffff;
  --radius: 8px;
  --green: #25d366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ===== BEAMS CANVAS ===== */
#beams-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  filter: blur(15px);
  opacity: 0.85;
  will-change: transform;          /* promotes canvas to its own GPU layer */
  transform: translateZ(0);        /* force GPU compositing */
  image-rendering: pixelated;      /* skip anti-alias upscaling at capped DPR */
}

/* Ensure all page content sits above the canvas */
.topbar,
.hero,
.stats-bar,
.devices-section,
.sports-section,
.reviews-section,
.globe-section,
.why-section,
.faq-section,
.cta-section,
.footer,
.legal-strip {
  position: relative;
  z-index: 1;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ===== TOPBAR ===== */
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Mobile-first: tighter padding */
  padding: 18px 16px;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.logo .accent { color: var(--accent); }

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img--footer {
  height: 60px;
}

/* ===== HERO — mobile-first ===== */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  /* Mobile: topbar is ~66px tall, add comfortable gap below it */
  padding: 130px 0 20px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(255,77,0,0.10) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* Mobile: single column, card stacks below text */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-left { text-align: left; }

/* Mobile rating: left-aligned, wrap gracefully */
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.stars { color: #ffd700; font-size: 0.85rem; letter-spacing: 2px; }
.rating-score { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--white); }
.rating-divider { color: #333; font-size: 0.78rem; margin: 0 1px; }
/* Mobile: rating text stays on same line, smaller */
.rating-text {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.3;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  /* Mobile: fills phone width naturally */
  font-size: clamp(1.65rem, 7.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

/* Each phrase on its own line, forced single-line, clips at edge */
.title-line {
  display: block;
  white-space: nowrap;
  overflow: hidden;
}
.title-line:not(:last-child) { margin-bottom: 6px; }

.hero-title .orange { color: var(--accent); }

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0;
  letter-spacing: 0.1px;
  text-align: left;
}

/* ── TABLET (640px+) ── */
@media (min-width: 640px) {
  .hero { padding: 130px 0 28px; }
  .hero-inner { gap: 22px; padding: 0 24px; }
  .hero-sub { font-size: 0.92rem; }
  .rating-text { font-size: 0.68rem; }
}

/* ── MEDIUM (960px+): improve spacing but keep single column ── */
@media (min-width: 960px) {
  .hero {
    min-height: 100vh;
    align-items: center;
    padding: 70px 0 48px;
  }
  .hero-bg {
    background: radial-gradient(ellipse at 20% 50%, rgba(255,77,0,0.08) 0%, transparent 55%);
  }
}

/* ── DESKTOP (1200px+): side-by-side, left col is always 624px ── */
@media (min-width: 1200px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 56px;
    align-items: center;
    padding: 0 40px;
  }
  .hero-left { text-align: left; }
  .hero-rating { justify-content: flex-start; flex-wrap: nowrap; }
  .rating-text { font-size: 0.72rem; letter-spacing: 1px; }
  .hero-sub { max-width: 500px; font-size: 1.05rem; }
  /* 2.8rem fills the 624px column well without overflowing */
  .hero-title { font-size: 3.6rem; letter-spacing: -2px; margin-bottom: 16px; }
}

/* Card glow: border brightens + outer bloom expands in sync */
@keyframes card-attract {
  0%, 100% {
    border-color: rgba(255,70,0,0.22);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.03) inset,
      0 0 40px rgba(255,60,0,0.10),
      0 24px 60px rgba(0,0,0,0.80);
  }
  50% {
    border-color: rgba(255,90,0,0.70);
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.07) inset,
      0 0 0 4px rgba(255,60,0,0.06),
      0 0 90px rgba(255,60,0,0.32),
      0 0 160px rgba(255,100,0,0.14),
      0 24px 60px rgba(0,0,0,0.80);
  }
}

/* Top accent line: expands + brightens in sync with the card glow */
@keyframes card-edge {
  0%, 100% { opacity: 0.30; transform: scaleX(0.55); }
  50%       { opacity: 1.00; transform: scaleX(1.00); }
}

/* ===== HERO FORM CARD — mobile-first ===== */
.trial-card {
  background: rgba(10,10,17,0.97);
  border: 1px solid rgba(255,70,0,0.22);
  border-radius: 20px;
  padding: 20px 16px 16px;
  position: relative;
  backdrop-filter: blur(24px);
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  /* Continuous glow attract — runs automatically on mobile */
  animation: card-attract 3s ease-in-out infinite;
}

/* Glowing accent line at the top edge of the card */
.trial-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%) scaleX(0.55);
  transform-origin: center;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,120,0,0.85) 30%,
    rgba(255,200,80,0.95) 50%,
    rgba(255,120,0,0.85) 70%,
    transparent);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
  animation: card-edge 3s ease-in-out infinite;
}

@media (min-width: 640px) {
  .trial-card { padding: 24px 20px 18px; }
}
@media (min-width: 960px) {
  .trial-card {
    padding: 28px 24px 22px;
    border-radius: 20px;
    max-width: none;
  }
}

/* WhatsApp icon wrapper — holds icon + decorative dots */
.trial-wa-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  width: 72px;
  height: 72px;
}

/* Tiny accent dots left & right of icon */
.wa-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(37,211,102,0.45);
  top: 50%;
  transform: translateY(-50%);
}
.wa-dot-l { left: 0; }
.wa-dot-r { right: 0; }

/* The icon itself — iOS squircle style */
.trial-wa-icon {
  width: 64px;
  height: 64px;
  /* Rich WhatsApp green gradient with depth */
  background: linear-gradient(145deg, #3ae07a 0%, #25d366 35%, #1aad5e 70%, #128c47 100%);
  /* iOS squircle border-radius */
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    /* top-left gloss highlight */
    0 1px 0 rgba(255,255,255,0.30) inset,
    0 0 0 1px rgba(255,255,255,0.12) inset,
    /* outer glow ring */
    0 0 0 5px rgba(37,211,102,0.12),
    /* bloom glow */
    0 8px 30px rgba(37,211,102,0.55),
    0 20px 60px rgba(37,211,102,0.20),
    /* depth shadow */
    0 4px 10px rgba(0,0,0,0.50);
}

/* Glass shine overlay — top-left diagonal streak */
.wa-shine {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 55%;
  height: 55%;
  background: linear-gradient(135deg, rgba(255,255,255,0.28) 0%, transparent 70%);
  border-radius: 0 0 60% 0;
  pointer-events: none;
}

@media (min-width: 960px) {
  .trial-wa-wrap { width: 80px; height: 80px; margin-bottom: 14px; }
  .trial-wa-icon { width: 68px; height: 68px; border-radius: 20px; }
}

/* Instant access badge */
.instant-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #25d366;
  color: #25d366;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (min-width: 960px) {
  .instant-badge { font-size: 0.70rem; padding: 4px 12px; margin-bottom: 10px; }
}

/* Trial title — mobile: readable, bold */
.trial-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 5px;
  line-height: 1.15;
  text-align: center;
}
@media (min-width: 960px) {
  .trial-title { font-size: 1.55rem; }
}

.trial-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.80rem;
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: 0.1px;
  text-align: center;
}
@media (min-width: 960px) {
  .trial-subtitle { font-size: 0.80rem; margin-bottom: 12px; }
}

/* 3 feature row — mobile: stacked, desktop: 3-col */
.trial-features {
  display: grid;
  /* Mobile: single column so text is readable */
  grid-template-columns: 1fr;
  gap: 1px;
  background: #1c1c28;
  border: 1px solid #1c1c28;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2px;
  margin-bottom: 0;
  text-align: left;
}
/* Switch to 3-col once there's enough width */
@media (min-width: 480px) {
  .trial-features { grid-template-columns: repeat(3, 1fr); }
}

.trial-feat {
  background: #0f0f1a;
  /* Mobile: bigger padding for touch-friendliness */
  padding: 11px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* When stacked (1 column), keep row height comfortable */
@media (min-width: 480px) {
  .trial-feat { padding: 9px 8px; align-items: flex-start; }
}

.trial-feat-icon { font-size: 1.25rem; flex-shrink: 0; }

.trial-feat-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1px;
}

.trial-feat-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.35;
}
@media (min-width: 480px) {
  .trial-feat-title { font-size: 0.74rem; }
  .trial-feat-sub { font-size: 0.63rem; }
}

.form-group { margin-bottom: 9px; }

/* ===== PHONE ROW — mobile-first ===== */
.phone-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  position: relative;
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1a1a22;
  border: 1px solid #2a2a35;
  border-radius: 10px;
  padding: 0 12px;
  /* Mobile: comfortable tap width */
  min-width: 96px;
  /* Touch-friendly height */
  min-height: 48px;
  flex-shrink: 0;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.2s;
}
.phone-prefix:hover { border-color: #444; }
@media (min-width: 480px) {
  .phone-prefix { min-width: 108px; padding: 0 14px; gap: 8px; }
}

.prefix-flag { font-size: 1.15rem; flex-shrink: 0; }

.prefix-code {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

/* CRITICAL: font-size >= 16px prevents iOS Safari zoom on focus */
.phone-input {
  flex: 1;
  border-radius: 10px !important;
  font-size: 16px !important;
  letter-spacing: 0.5px;
  min-height: 48px;
}

/* ===== COUNTRY DROPDOWN ===== */
.country-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  /* Mobile: stretch full width of phone-row */
  right: 0;
  width: auto;
  background: #16161e;
  border: 1px solid #2a2a35;
  border-radius: 12px;
  z-index: 9999;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}
.country-dropdown.open { display: flex; }
/* Desktop: fixed width dropdown */
@media (min-width: 480px) {
  .country-dropdown { right: auto; width: 290px; }
}

.dropdown-search-wrap {
  padding: 10px;
  border-bottom: 1px solid #222230;
}
.dropdown-search {
  width: 100%;
  background: #0e0e14;
  border: 1px solid #2a2a3a;
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}
.dropdown-search:focus { border-color: var(--accent); }
.dropdown-search::placeholder { color: #444; }

.dropdown-list {
  list-style: none;
  max-height: 210px;
  overflow-y: auto;
  padding: 5px 0;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.dropdown-list::-webkit-scrollbar { width: 4px; }
.dropdown-list::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  cursor: pointer;
  font-size: 0.82rem;
  transition: background 0.1s;
  white-space: nowrap;
}
.dropdown-item:hover { background: #1e1e2c; }
.dropdown-item.selected { background: rgba(255,77,0,0.1); }
.dropdown-item .di-flag { font-size: 1.1rem; flex-shrink: 0; }
.dropdown-item .di-name {
  flex: 1;
  color: #ccc;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdown-item .di-code {
  color: #666;
  font-size: 0.75rem;
  font-family: 'Inter', monospace;
  flex-shrink: 0;
}

.form-input {
  width: 100%;
  background: #161616;
  border: 1px solid #222;
  border-radius: 10px;
  /* Touch-friendly: 16px prevents iOS zoom, generous padding */
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px; /* MUST stay 16px — prevents iOS Safari zoom */
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  letter-spacing: 0.1px;
  /* Prevent auto-resize bounce on iOS */
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--muted2); }
.form-input:focus { border-color: var(--accent); }

/* ===== SOCIAL PROOF BAR — mobile-first ===== */
.social-proof-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0f0f1a;
  border: 1px solid #1c1c28;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 9px;
  text-align: left;
}

.proof-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.proof-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #0f0f1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: white;
  margin-left: -6px;
}

.proof-av:first-child { margin-left: 0; }

.proof-av-dot {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid #0f0f1a;
  margin-left: -4px;
}

.proof-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  color: #aaa;
  flex: 1;
  line-height: 1.4;
}

.proof-live {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: #ff4d4d;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.live-dot-sm {
  width: 6px;
  height: 6px;
  background: #ff4d4d;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

/* ===== NO FEES LINE ===== */
.no-fees {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: #5a5a6e;
  margin-top: 10px;
  margin-bottom: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ===== BOTTOM 3 BADGES — mobile-first ===== */
.bottom-badges {
  display: grid;
  /* Mobile: single column so each badge has breathing room */
  grid-template-columns: 1fr;
  gap: 1px;
  background: #1c1c28;
  border: 1px solid #1c1c28;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}
/* Switch to 3-col at 400px — wide enough for the badge content */
@media (min-width: 400px) {
  .bottom-badges { grid-template-columns: repeat(3, 1fr); }
}

.bottom-badge {
  background: #0f0f1a;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 400px) {
  .bottom-badge { padding: 12px 8px; align-items: flex-start; }
}

.bb-icon { font-size: 1.1rem; flex-shrink: 0; }

.bb-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1px;
}
@media (min-width: 400px) {
  .bb-title { font-size: 0.72rem; }
}

.bb-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  color: var(--muted);
}
@media (min-width: 400px) {
  .bb-sub { font-size: 0.62rem; }
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  margin-top: 4px;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.2s infinite;
}

.urgency-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: #aaa;
  flex: 1;
}

.urgency-text strong { color: var(--white); font-weight: 700; }

.urgency-progress {
  width: 60px;
  height: 4px;
  background: #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.urgency-fill {
  width: 8%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* === CTA BUTTON ANIMATIONS ===
   btn-attract: expanding ring + glow intensifies — runs on mobile automatically
   btn-shimmer-auto: light sweep every 4s — replaces hover-only shimmer on mobile */
@keyframes btn-attract {
  0%, 100% {
    box-shadow:
      0 0 0 0px  rgba(255,60,0,0.55),
      0 0 0 1px  rgba(255,255,255,0.10) inset,
      0 1px 0    rgba(255,255,255,0.18) inset,
      0 0 32px   rgba(255,60,0,0.55),
      0 8px 24px rgba(255,60,0,0.35),
      0 2px 6px  rgba(0,0,0,0.40);
  }
  50% {
    box-shadow:
      0 0 0 16px rgba(255,60,0,0.00),
      0 0 0 1px  rgba(255,255,255,0.15) inset,
      0 1px 0    rgba(255,255,255,0.25) inset,
      0 0 72px   rgba(255,60,0,0.95),
      0 18px 52px rgba(255,60,0,0.70),
      0 2px 6px  rgba(0,0,0,0.40);
  }
}

@keyframes btn-shimmer-auto {
  0%         { left: -100%; opacity: 1; }
  20%        { left: 160%;  opacity: 1; }
  21%, 100%  { left: 160%;  opacity: 0; }
}

/* ===== CTA BUTTON — mobile-first ===== */
.btn-trial {
  width: 100%;
  background: linear-gradient(100deg, #d62a00 0%, #ff4500 48%, #ff6d20 100%);
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 15px 18px;
  min-height: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  /* Continuous attract animation — essential on mobile where hover doesn't fire */
  animation: btn-attract 2.4s ease-in-out infinite;
}

/* Desktop: restore hover interaction */
@media (min-width: 960px) {
  .btn-trial {
    border-radius: 14px;
    padding: 16px 22px;
    font-size: 0.97rem;
    letter-spacing: 1px;
    transition: transform 0.22s ease, filter 0.22s ease;
  }
}

/* Auto-playing shimmer — sweeps every 4s, visible on mobile without hover */
.btn-trial::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  pointer-events: none;
  animation: btn-shimmer-auto 4s ease-in-out infinite;
}

.btn-trial .btn-arrow {
  margin-left: auto;
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

/* Hover: stop animation, show full-bright state + lift */
.btn-trial:hover {
  animation: none;
  transform: translateY(-2px) scale(1.015);
  filter: brightness(1.08);
  box-shadow:
    0 0 0 1px  rgba(255,255,255,0.15) inset,
    0 1px 0    rgba(255,255,255,0.25) inset,
    0 0 72px   rgba(255,60,0,0.95),
    0 18px 52px rgba(255,60,0,0.70),
    0 4px 10px rgba(0,0,0,0.40);
}
.btn-trial:hover::after {
  animation: none;
  left: 160%;
  opacity: 1;
}

.btn-trial:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-trial:active {
  transform: translateY(0) scale(0.988);
  transition-duration: 0.08s;
}

/* ===== SUBSCRIBE BUTTON (secondary CTA) ===== */
.btn-subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 10px;
  padding: 13px 18px;
  min-height: 48px;
  background: linear-gradient(135deg, #0e0e18 0%, #1a1a2e 50%, #0e0e18 100%);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,77,0,0.35);
  border-radius: 13px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 0 1px rgba(255,77,0,0.1) inset, 0 4px 20px rgba(255,60,0,0.12);
  transition: border-color 0.25s, box-shadow 0.25s, color 0.25s, transform 0.22s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.btn-subscribe:hover {
  border-color: rgba(255,77,0,0.75);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255,77,0,0.15) inset, 0 0 28px rgba(255,60,0,0.30), 0 4px 20px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

.btn-subscribe:active { transform: translateY(0) scale(0.99); }

/* ===== PRICING SECTION ===== */
.pricing-section {
  padding: 70px 0 60px;
  background: #090909;
  border-top: 1px solid var(--border);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.pricing-sub {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: 0.90rem;
  max-width: 520px;
  margin: 10px auto 44px;
  line-height: 1.7;
}

/* Mobile: 1 col → 2 col at 560px → 4 col at 1024px */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

@media (min-width: 560px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }

.pricing-card {
  position: relative;
  background: #0d0d14;
  border: 1px solid #1e1e2e;
  border-radius: 18px;
  padding: 28px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: border-color 0.28s, box-shadow 0.28s, transform 0.28s;
}

.pricing-card:hover {
  border-color: rgba(255,60,0,0.55);
  box-shadow: 0 0 0 1px rgba(255,60,0,0.08) inset, 0 20px 60px rgba(255,40,0,0.14);
  transform: translateY(-5px);
}

.pricing-card--popular {
  border-color: rgba(255,77,0,0.5);
  box-shadow: 0 0 40px rgba(255,60,0,0.12);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e1e2e;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.60rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid #2a2a3e;
  white-space: nowrap;
}

.pricing-badge--popular {
  background: linear-gradient(90deg, #ff4500, #ff6d20);
  color: #fff;
  border-color: transparent;
}

.pricing-badge--gold {
  background: linear-gradient(90deg, #b8860b, #ffd700);
  color: #000;
  border-color: transparent;
}

.pricing-period {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 12px;
  margin-top: 8px;
  letter-spacing: 0.5px;
}

.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}

.pricing-currency {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
  color: #ffd700;
}

.pricing-per {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--muted2);
  margin-top: 6px;
  margin-bottom: 20px;
}

.pricing-features {
  list-style: none;
  width: 100%;
  text-align: left;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pricing-features li {
  font-family: 'Inter', sans-serif;
  font-size: 0.80rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #2a2a3e;
  background: #13131e;
  color: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-align: center;
  transition: all 0.22s;
  margin-top: auto;
}

.pricing-btn:hover {
  border-color: rgba(255,77,0,0.5);
  color: #fff;
  background: rgba(255,60,0,0.08);
}

.pricing-btn--primary {
  background: linear-gradient(100deg, #d62a00 0%, #ff4500 48%, #ff6d20 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,60,0,0.4);
}

.pricing-btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 32px rgba(255,60,0,0.6);
  background: linear-gradient(100deg, #d62a00 0%, #ff4500 48%, #ff6d20 100%);
  color: #fff;
}

.pricing-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.80rem;
  color: var(--muted2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: #555;
}

.trust-dot { color: #333; }

/* ===== FORM LABEL & ERRORS ===== */
.form-label-inline {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.69rem;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 8px;
  text-align: left;
}

/* Input error highlight */
.phone-input.input-error,
.phone-prefix.input-error {
  border-color: #ff4444 !important;
  box-shadow: 0 0 0 2px rgba(255,68,68,0.18) !important;
}

/* Shake the whole phone row on bad submit */
@keyframes input-shake {
  0%, 100% { transform: translateX(0); }
  18%       { transform: translateX(-7px); }
  36%       { transform: translateX(7px); }
  54%       { transform: translateX(-5px); }
  72%       { transform: translateX(5px); }
}
.phone-row.shake { animation: input-shake 0.42s ease; }

/* Error message block */
.form-error {
  display: none;
  font-size: 0.76rem;
  font-family: 'Inter', sans-serif;
  color: #ff6060;
  margin-top: 7px;
  padding: 8px 11px;
  background: rgba(255,60,60,0.08);
  border: 1px solid rgba(255,60,60,0.22);
  border-radius: 9px;
  line-height: 1.45;
}

/* ===== DEVICE GRID ===== */
.device-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.device-option {
  background: #161616;
  border: 1px solid #252525;
  border-radius: 8px;
  padding: 10px 6px;
  text-align: center;
  cursor: pointer;
  font-size: 0.72rem;
  color: #888;
  line-height: 1.4;
  transition: all 0.18s;
  user-select: none;
}

.device-option:hover {
  border-color: rgba(255,77,0,0.4);
  color: var(--text);
  background: #1a1a1a;
}

.device-option.selected {
  border-color: var(--accent);
  background: rgba(255,77,0,0.1);
  color: var(--white);
}

.device-opt-icon {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.device-option small { color: #666; font-size: 0.66rem; }
.device-option.selected small { color: #bbb; }


/* ===== STATS BAR ===== */
.stats-bar {
  background: #0c0c0c;
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  /* Mobile: 2×2 grid — readable on any phone */
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
}

/* ===== ANIMATED UNDERLINE ===== */
.animated-underline-wrap {
  position: relative;
  display: inline-block;
  padding-bottom: 18px;
}

.animated-underline-svg {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 18px;
  color: var(--accent);
  overflow: visible;
}

.animated-underline-path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  /* total path length — draw-in animation */
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: underline-draw 1.5s ease-in-out forwards;
  transition: d 0.8s ease;
}

@keyframes underline-draw {
  to { stroke-dashoffset: 0; }
}

/* Replay animation when section scrolls into view via Intersection Observer */
.animated-underline-wrap.in-view .animated-underline-path {
  stroke-dashoffset: 0;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 90px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 90px 40px;
  width: 100%;
}

.section-full .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.label-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-heading .orange { color: var(--accent); }

.section-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 14px;
  max-width: 500px;
  line-height: 1.75;
  letter-spacing: 0.1px;
}

/* ===== DEVICES SECTION ===== */
.devices-section {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, #0c0a08 50%, var(--bg) 100%);
  overflow: hidden;
}

.devices-inner {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 36px;
}

.devices-section .section-heading { justify-content: center; }

.devices-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── INFINITE MARQUEE ── */
@keyframes device-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Clip window with fade edges left & right */
.device-marquee-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Flex row — 2× cards for seamless loop, animates to -50% then resets */
.device-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 10px 0 14px;
  animation: device-marquee 28s linear infinite;
  will-change: transform;
}


/* Individual card */
.device-card {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  background: #0f0f18;
  border: 1px solid #1e1e2e;
  border-radius: 16px;
  padding: 20px 14px 18px;
  transition: border-color 0.2s;
}

.device-card:hover {
  border-color: rgba(255,70,0,0.45);
}

.device-icon-box {
  width: 68px;
  height: 68px;
  background: #17171f;
  border: 1px solid #252535;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device-card-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.device-card-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.70rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 80px 0 70px;
  text-align: center;
}

.content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-header {
  margin-bottom: 48px;
}

.content-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 7vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.genre-gradient {
  background: linear-gradient(90deg, #a855f7 0%, #22d3ee 55%, #4ade80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-sub {
  font-family: 'Inter', sans-serif;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Cards — mobile: 1 col, tablet: 2 col, desktop: 4 col */
.content-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

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

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

.content-card {
  background: #0c0c18;
  border: 1px solid #1a1a2e;
  border-radius: 20px;
  padding: 30px 22px 28px;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  cursor: default;
}

.content-card:hover {
  transform: translateY(-7px);
  border-color: rgba(139,92,246,0.45);
  box-shadow: 0 24px 64px rgba(139,92,246,0.14), 0 8px 24px rgba(0,0,0,0.5);
}

.content-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.content-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.content-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* What's Included bar */
.content-included {
  background: #0c0c18;
  border: 1px solid #1a1a2e;
  border-radius: 16px;
  padding: 22px 28px;
  margin-top: 14px;
}

.included-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--muted2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.included-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 4px;
}

.included-items span {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.included-sep {
  color: #2a2a3a !important;
  font-weight: 300 !important;
  margin: 0 2px;
}

/* ===== SPORTS SECTION ===== */
.sports-section {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
}

.sports-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522778119026-d647f0596c20?w=1920&q=40') center/cover no-repeat;
  opacity: 0.07;
}

.sports-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}

.sports-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 50px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.sport-card {
  background: rgba(15,15,15,0.95);
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}

.sport-card:hover { background: rgba(255,77,0,0.06); }

.sport-icon { font-size: 1.6rem; margin-bottom: 12px; display: block; }

.sport-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
}

.sport-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.65;
  letter-spacing: 0.1px;
}

/* ===== REVIEWS ===== */
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reviews-marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.reviews-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 0 16px;
  animation: reviews-marquee 14s linear infinite;
  will-change: transform;
}

.review-img {
  flex-shrink: 0;
  height: 340px;
  width: auto;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #1c1c1c;
  display: block;
}

.reviews-section {
  padding: 90px 40px;
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.big-rating {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -1px;
}

.rating-stars { color: #ffd700; font-size: 1rem; letter-spacing: 2px; }
.rating-count {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.1px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.review-card {
  background: #111;
  border: 1px solid #1c1c1c;
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.2s;
}

.review-card:hover { border-color: rgba(255,77,0,0.3); }

.review-wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #1a1a1a;
}

.wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1e1e1e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--muted);
  flex-shrink: 0;
  overflow: hidden;
}

.wa-name { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1px; }
.wa-time { font-family: 'Inter', sans-serif; font-size: 0.68rem; font-weight: 400; color: var(--muted); margin-left: auto; }

.wa-bubble {
  background: #1a2e1a;
  border-radius: 0 8px 8px 8px;
  padding: 8px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: #d4ecd4;
  line-height: 1.55;
  margin-bottom: 6px;
  letter-spacing: 0.1px;
}

.wa-bubble.sent {
  background: #1f2d1a;
  border-radius: 8px 0 8px 8px;
  text-align: right;
  margin-left: 20px;
}

.wa-tick { color: #4fc3f7; font-size: 0.65rem; }

/* ===== GLOBE SECTION ===== */
.globe-section {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.globe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,77,0,0.07) 0%, transparent 60%);
}

.globe-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.globe-visual {
  margin: 50px auto 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a1a2e, #0a0a14);
  border: 1px solid #1c1c2e;
  position: relative;
  box-shadow: 0 0 80px rgba(255,77,0,0.15), inset 0 0 40px rgba(0,0,100,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.globe-visual::after {
  content: '🌍';
  font-size: 6rem;
  opacity: 0.6;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,77,0,0.12);
  border: 1px solid rgba(255,77,0,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 30px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

/* Blinking cursor on hero title last line */
.cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  animation: cursorBlink 1s step-end infinite;
  margin-left: 1px;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.globe-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  letter-spacing: 0.1px;
}

/* ===== WHY US ===== */
.why-section {
  padding: 60px 16px;
  background: #0a0a0a;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mobile: single column */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}

/* Tablet+: 2 columns */
@media (min-width: 640px) {
  .why-section { padding: 80px 24px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 44px; }
}

/* Desktop */
@media (min-width: 960px) {
  .why-section { padding: 90px 40px; }
  .why-grid { gap: 20px; margin-top: 50px; }
}

.why-card {
  background: #0e0e0e;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

@media (min-width: 640px) {
  .why-card { padding: 24px; gap: 18px; }
}

@media (min-width: 960px) {
  .why-card { padding: 28px; }
}

.why-card:hover { border-color: rgba(255,77,0,0.3); }

.why-icon-wrap {
  width: 46px;
  height: 46px;
  background: rgba(255,77,0,0.1);
  border: 1px solid rgba(255,77,0,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.why-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.2px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.why-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
  letter-spacing: 0.1px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 90px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }
.faq-question.open { color: var(--accent); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform 0.25s, color 0.2s;
  flex-shrink: 0;
}

.faq-question.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
}

.faq-answer.open {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.1px;
}

/* ===== FINAL CTA ===== */
.cta-section {
  text-align: center;
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,77,0,0.1) 0%, transparent 65%);
}

.cta-inner { position: relative; z-index: 1; }

.cta-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.cta-heading .orange { color: var(--accent); }

.cta-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  letter-spacing: 0.1px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-cta:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,77,0,0.4);
}

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 32px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.1px;
}
.footer-badge .dot { width: 6px; height: 6px; background: #25d366; border-radius: 50%; }

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.1px;
}
.footer-links a:hover { color: var(--text); }

.footer-right .btn-cta-sm {
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 9px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-right .btn-cta-sm:hover { background: var(--accent2); }

.legal-strip {
  text-align: center;
  padding: 16px 40px;
  background: #060606;
  color: #333;
  font-size: 0.72rem;
  border-top: 1px solid #111;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(100deg, #d62a00 0%, #ff4500 48%, #ff6d20 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: 14px 26px;
  font-family: 'Inter', sans-serif;
  font-size: 0.90rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(255,60,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.floating-cta--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.floating-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 12px 48px rgba(255,60,0,0.75), 0 2px 8px rgba(0,0,0,0.4);
}

.floating-cta:active {
  transform: translateX(-50%) scale(0.96);
}

.floating-cta-icon { font-size: 1rem; line-height: 1; }

/* Desktop: move to bottom-right corner */
@media (min-width: 640px) {
  .floating-cta {
    left: auto;
    right: 28px;
    bottom: 28px;
    transform: translateY(100px);
  }
  .floating-cta--visible {
    transform: translateY(0);
  }
  .floating-cta:active {
    transform: scale(0.96);
  }
}

/* ===== SOCIAL PROOF POPUP ===== */
.sp-popup {
  position: fixed;
  bottom: 90px;
  left: 16px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(12, 12, 22, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(160, 80, 255, 0.22);
  border-radius: 16px;
  padding: 12px 16px 12px 12px;
  max-width: 260px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,60,0,0.06) inset;
  /* hidden by default */
  opacity: 0;
  transform: translateX(-110%);
  pointer-events: none;
  transition: none;
}

.sp-popup--in {
  animation: sp-slide-in 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
  pointer-events: auto;
}

.sp-popup--out {
  animation: sp-fade-out 0.45s ease forwards;
  pointer-events: none;
}

@keyframes sp-slide-in {
  from { opacity: 0; transform: translateX(-110%); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes sp-fade-out {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-30px); }
}

.sp-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(37,211,102,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-body { display: flex; flex-direction: column; gap: 2px; }

.sp-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.sp-msg {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.3;
}

/* Desktop: position left-center */
@media (min-width: 640px) {
  .sp-popup {
    bottom: 40px;
    left: 24px;
    max-width: 290px;
  }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  max-width: 320px;
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: rgba(37,211,102,0.4); }
.toast.error { border-color: rgba(255,77,0,0.4); }

/* ===================================================================
   RESPONSIVE — mobile-first (min-width breakpoints only)
   Base styles above already handle mobile (<480px).
   These breakpoints progressively enhance upward.
   =================================================================== */

/* Tablet+ (640px+): restore section padding */
@media (min-width: 640px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar { padding: 24px 32px; }
  .footer { padding: 28px 32px; }
}

/* Medium tablet (768px+) */
@media (min-width: 768px) {
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop (960px+): already handled inline above for hero/card.
   Other sections that need desktop layout: */
@media (min-width: 960px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar { padding: 24px 40px; }
}

/* Wide desktop (1100px+) */
@media (min-width: 1100px) {
  .reviews-grid { grid-template-columns: repeat(4, 1fr); }
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
}
