/* ============================================================
   BINGO ARUBA — LANDING PAGE STYLES
   Minimal bold design matching the actual Wix site
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #5B2DBF;
  --accent-2: #7B52D9;
  --accent-dark: #421F8F;
  --gold: #FFC830;
  --dark: #1A0E3A;
  --dark-2: #221448;
  --dark-3: #2E1C5C;
  --danger: #dc2626;
  --shadow-sm: 0 2px 8px rgba(26, 14, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(26, 14, 58, 0.08);
  --shadow-lg: 0 25px 60px rgba(26, 14, 58, 0.12);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(.2,.7,.2,1);
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(70px, 10vw, 130px) 0;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 5px 28px;
  min-width: 200px;
  border: 2px solid transparent;
  border-radius: 20px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: none;
}

.btn-accent,
.btn-accent:link,
.btn-accent:visited {
  background: linear-gradient(180deg, #FFE45A 0%, #FFC830 50%, #F0A800 100%);
  color: #1A0E3A !important;
  padding: 14px 36px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 16px;
  border: none;
  box-shadow: 0 2px 8px rgba(240, 168, 0, 0.3);
  transition: all 0.2s cubic-bezier(.2,.7,.2,1);
}
.btn-accent:hover,
.btn-accent:focus {
  background: linear-gradient(180deg, #FFF06A 0%, #FFD440 50%, #F0B000 100%);
  color: #1A0E3A !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(240, 168, 0, 0.35);
}
.btn-accent:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(240, 168, 0, 0.25);
}

.btn-sub,
.btn-sub:link,
.btn-sub:visited {
  background: linear-gradient(180deg, #9B7DD4 0%, #5B35B0 50%, #3B1D8E 100%);
  color: #ffffff !important;
  padding: 14px 36px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 16px;
  border: none;
  box-shadow: 0 2px 8px rgba(59, 29, 142, 0.3);
  transition: all 0.2s cubic-bezier(.2,.7,.2,1);
}
.btn-sub:hover,
.btn-sub:focus {
  background: linear-gradient(180deg, #B094E0 0%, #6B45C0 50%, #4A2AAF 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 29, 142, 0.4);
}
.btn-sub:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(59, 29, 142, 0.25);
}

.btn-lg {
}

.btn-block {
  width: 100%;
  display: flex;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

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

.navbar-logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.navbar-logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}
.navbar-logo:hover .navbar-logo-img {
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-2);
  transition: color var(--transition);
  text-transform: none;
  letter-spacing: 0.01em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}
.nav-links .nav-cta {
  padding: 7px 36px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  padding: 6px 0;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: all var(--transition);
  border-radius: 2px;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ============================================================
   HERO — Full-viewport, video-first
   ============================================================ */
.hero {
  min-height: auto;
  padding: 84px 0 36px;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(91, 45, 191, 0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(123, 82, 217, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(66, 31, 143, 0.3) 0%, transparent 60%),
    linear-gradient(165deg, #1A0E3A 0%, #2A1252 25%, #3B1D8E 50%, #4A2AAF 75%, #5B35B0 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ----------- Bingo number grid background ----------- */
.bingo-grid-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 5px;
  padding: 8px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}
.bingo-cell {
  aspect-ratio: 1;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(9px, 0.9vw, 12px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
  letter-spacing: 0.02em;
  transition: color 1s ease, border-color 1s ease, background 1s ease;
}
.bingo-cell.pop {
  color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
}
@media (prefers-reduced-motion: reduce) {
  .bingo-cell { transition: none; }
}

.hero-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vh, 22px);
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  width: 100%;
  max-width: none;
  font-size: clamp(30px, 5.4vw, 68px);
  gap: 0.08em;
}
.hero-headline .hh-line {
  display: block;
  white-space: nowrap;
}
.hero-headline .line-strong {
  font-weight: 900;
  letter-spacing: -0.03em;
}
.hero-headline .line-light {
  font-weight: 300;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.hero-headline .highlight {
  color: var(--gold);
}
/* Desktop: 3-line layout (GUARANTEED TO BE SEEN merged). Mobile: 4-line layout. */
.hero-headline .hh-desktop { display: block; }
.hero-headline .hh-mobile { display: none; }


/* ----------- Hero video ----------- */
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #1A0E3A;
  box-shadow:
    0 16px 40px -10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateZ(0);
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-video-sound {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--transition);
  z-index: 2;
}
.hero-video-sound:hover {
  background: var(--accent);
  transform: scale(1.08);
}
.hero-video-sound svg {
  width: 20px;
  height: 20px;
}
.hero-video-sound .icon-unmuted { display: none; }
.hero-video-sound.unmuted .icon-muted { display: none; }
.hero-video-sound.unmuted .icon-unmuted { display: block; }

.hero-video-fullscreen {
  position: absolute;
  bottom: 16px;
  right: 72px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--transition);
  z-index: 2;
}
.hero-video-fullscreen:hover {
  background: var(--accent);
  transform: scale(1.08);
}
.hero-video-fullscreen svg {
  width: 20px;
  height: 20px;
}
.hero-video-fullscreen .icon-collapse { display: none; }
.hero-video-wrap.is-fullscreen .hero-video-fullscreen .icon-expand { display: none; }
.hero-video-wrap.is-fullscreen .hero-video-fullscreen .icon-collapse { display: block; }
.hero-video-wrap.floating .hero-video-fullscreen { display: none; }

.hero-video-hint {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
  animation: hintPulse 2.2s ease-in-out infinite;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-video-hint svg { width: 16px; height: 16px; }
.hero-video-hint.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(-8px);
  pointer-events: none;
}
@keyframes hintPulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.04); }
}
.hero-video-wrap.floating .hero-video-hint {
  display: none;
}


/* ----------- Floating mini-player controls ----------- */
.hero-video-pause,
.hero-video-close {
  position: absolute;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all var(--transition);
  z-index: 3;
}
.hero-video-close { display: none; }
.hero-video-pause {
  bottom: 12px;
  left: 12px;
  width: 34px;
  height: 34px;
}
.hero-video-close {
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
}
.hero-video-pause:hover,
.hero-video-close:hover {
  background: var(--accent);
  transform: scale(1.08);
}
.hero-video-pause svg { width: 14px; height: 14px; }
.hero-video-close svg { width: 12px; height: 12px; }
.hero-video-pause .icon-play { display: none; }
.hero-video-pause.paused .icon-pause { display: none; }
.hero-video-pause.paused .icon-play { display: block; }

/* ----------- Progress / scrub bar ----------- */
.hero-video-progress {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 54px;
  height: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 3;
  touch-action: none;
}
.hero-video-progress-track {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  overflow: hidden;
  transition: height var(--transition);
}
.hero-video-progress:hover .hero-video-progress-track,
.hero-video-progress.scrubbing .hero-video-progress-track {
  height: 6px;
}
.hero-video-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--accent);
  border-radius: 999px;
}
.hero-video-wrap.floating .hero-video-progress { display: none; }


/* ----------- Floating mode (sticky mini-player) ----------- */
.hero-video-wrap.floating {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: min(340px, 42vw);
  max-width: none;
  max-height: none;
  aspect-ratio: 16 / 9;
  z-index: 99999;
  border-radius: 14px;
  box-shadow:
    0 24px 50px -12px rgba(26, 14, 58, 0.45),
    0 0 0 1px rgba(91, 45, 191, 0.18);
  animation: floatVideoIn 0.45s cubic-bezier(.2,.7,.2,1);
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.hero-video-wrap.floating.dragging {
  cursor: grabbing;
  animation: none;
  transition: none;
  box-shadow:
    0 30px 60px -10px rgba(26, 14, 58, 0.55),
    0 0 0 2px rgba(91, 45, 191, 0.3);
}
.hero-video-wrap.floating::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 4;
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.hero-video-wrap.floating:hover::before {
  opacity: 1;
}
@keyframes floatVideoIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero-video-wrap.floating::after {
  border-radius: 14px;
}
.hero-video-wrap.floating .hero-video-pause,
.hero-video-wrap.floating .hero-video-sound,
.hero-video-wrap.floating .hero-video-progress {
  display: none !important;
}
.hero-video-wrap.floating .hero-video-close {
  display: grid !important;
}
.hero-video-wrap.floating { cursor: pointer; }
.hero-video-wrap.floating .hero-video-sound-hidden {
  width: 34px;
  height: 34px;
  bottom: 12px;
  right: 12px;
}
.hero-video-wrap.floating .hero-video-sound svg {
  width: 14px;
  height: 14px;
}


/* ----------- Hero subheadline + CTA ----------- */
.hero-sub {
  max-width: none;
  width: 100%;
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin: 0;
}
.hero-sub strong {
  color: #ffffff;
  font-weight: 700;
  display: inline;
  margin-bottom: 0;
}
.hero-sub br { display: none; }
.hero-sub br.br-desktop { display: inline; }

.hero-cta {
  margin-top: 0;
}
.cta-microcopy {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.2;
}


/* ============================================================
   DISPLAY TITLES
   ============================================================ */
.display-title {
  font-size: clamp(30px, 5.4vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 50px;
  white-space: nowrap;
}
.display-title .line-strong {
  font-weight: 900;
  letter-spacing: -0.03em;
}
.display-title .line-light {
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--ink);
}
/* Pricing title: desktop = single line (default), mobile = 3 lines */
.pricing-display-title .dt-desktop { display: inline; }
.pricing-display-title .dt-mobile { display: none; }
.pricing-display-title .dt-line {
  display: block;
  white-space: nowrap;
}
/* Pricing subtitle: responsive <br> — desktop hides them, mobile shows them */
.pricing-display-subtitle .br-mobile { display: none; }
.display-subtitle {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--ink);
  max-width: none;
  margin: -40px auto 40px;
  line-height: 1.6;
  white-space: nowrap;
}
.contact-link {
  color: var(--ink);
  font-weight: 500;
  transition: color var(--transition);
  border-bottom: 1px solid transparent;
}
.contact-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* ============================================================
   REACH SECTION — side-by-side image + copy
   ============================================================ */
.reach-section {
  background: #f7f8fa;
  border-top: 1px solid var(--line);
}

.reach-headline {
  display: block;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 clamp(40px, 6vw, 70px);
  text-transform: uppercase;
  font-size: clamp(30px, 5.4vw, 68px);
  white-space: nowrap;
}
.reach-headline .line-strong {
  font-weight: 900;
  letter-spacing: -0.03em;
}
.reach-headline .line-light {
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.reach-headline .highlight {
  color: var(--accent);
}

.reach-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: center;
}

.reach-media {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 12px 30px -12px rgba(26, 14, 58, 0.18),
    0 0 0 1px rgba(91, 45, 191, 0.08);
  position: relative;
}
.reach-media::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, #5B2DBF 0%, #9B7BDF 30%, #FFD400 50%, #9B7BDF 70%, #5B2DBF 100%);
  background-size: 300% 300%;
  animation: reachOutlineGlow 6s ease-in-out infinite;
  z-index: -1;
}
@keyframes reachOutlineGlow {
  0%   { background-position: 0% 0%; }
  50%  { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}
.reach-image {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.18) contrast(1.08) brightness(1.02);
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  transition: filter 0.4s ease;
}
.reach-media:hover .reach-image {
  filter: saturate(1.25) contrast(1.12) brightness(1.03);
}

.reach-copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}
.reach-fact {
  padding-left: 24px;
  border-left: 4px solid var(--accent);
  min-width: 0;
}
.reach-fact h3 {
  font-size: clamp(22px, 2.3vw, 33px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 2px;
  text-transform: none;
  color: var(--ink);
  white-space: nowrap;
}
.reach-fact p {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
}
.reach-copy .btn {
  align-self: flex-start;
  margin-top: 10px;
}


/* ----------- Chart card (demographics) ----------- */
.chart-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chart-title {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.info-dot {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 10px;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.chart-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  margin-bottom: 16px;
}
.chart-legend {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.legend-item .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-women { background: var(--accent); }
.dot-men { background: var(--accent-2); }
.dot-unknown { background: rgba(255,255,255,0.25); }

.chart-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bar-row {
  display: grid;
  grid-template-columns: 44px 1fr 52px;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.bar-row .bar-label {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.bar {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  height: 22px;
  overflow: hidden;
}
.bar .fill {
  height: 100%;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  animation: barGrow 1.2s cubic-bezier(.2,.7,.2,1) both;
}
.w-portion {
  background: var(--accent);
  height: 100%;
}
.m-portion {
  background: var(--accent-2);
  height: 100%;
}
.bar-value {
  font-weight: 500;
  color: #fff;
  font-size: 13px;
  text-align: right;
}

@keyframes barGrow {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}


/* ============================================================
   ENGAGEMENT SECTION
   ============================================================ */
.engagement-section {
  background: #f7f8fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.engagement-grid {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: center;
}
.engagement-grid .engagement-chart { order: 2; }
.engagement-grid .engagement-stats { order: 1; }

.engagement-chart {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 12px 30px -12px rgba(26, 14, 58, 0.18),
    0 0 0 1px rgba(91, 45, 191, 0.08);
  position: relative;
}
.engagement-chart::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, #5B2DBF 0%, #9B7BDF 30%, #FFD400 50%, #9B7BDF 70%, #5B2DBF 100%);
  background-size: 300% 300%;
  animation: reachOutlineGlow 6s ease-in-out infinite;
  z-index: -1;
}
.engagement-image {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.18) contrast(1.08) brightness(1.02);
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  transition: filter 0.4s ease;
}
.engagement-chart:hover .engagement-image {
  filter: saturate(1.25) contrast(1.12) brightness(1.03);
}

.engagement-chart .dashboard {
  padding: 28px;
}

.dash-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 4px;
}
.dash-heading {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dash-range {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.dash-total {
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.dash-graph {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 20px;
}
.dash-graph svg {
  width: 100%;
  height: 180px;
}
.dash-xlabels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  padding: 0 4px;
}
.dash-xlabels span {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
}

.dash-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.mini-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
}
.mini-icon {
  font-size: 16px;
  margin-bottom: 6px;
  opacity: 0.7;
}
.mini-value {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.mini-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}

.dash-breakdown {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}
.breakdown-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
}
.bd-title {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.bd-list { display: flex; flex-direction: column; gap: 7px; }
.bd-list li {
  display: grid;
  grid-template-columns: 40px 1fr 36px;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.bd-label { font-weight: 500; }
.bd-bar {
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  height: 6px;
  overflow: hidden;
}
.bd-bar i {
  display: block;
  height: 100%;
  background: var(--accent-2);
  border-radius: 3px;
}
.bd-val {
  font-weight: 500;
  font-size: 10px;
  color: #fff;
  text-align: right;
}

.donut-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.donut {
  width: 72px;
  height: 72px;
  transform: rotate(-90deg);
  flex-shrink: 0;
}
.donut-legend {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  color: rgba(255,255,255,0.75);
}
.donut-legend div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.donut-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}


/* ----------- Engagement stats (matches Reach facts) ----------- */
.engagement-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}
.big-stat {
  position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--accent);
  min-width: 0;
}
.big-stat-number {
  font-size: clamp(22px, 2.3vw, 33px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 2px;
  text-transform: none;
  white-space: nowrap;
}
.big-stat-label {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
}
.engagement-stats .btn {
  align-self: flex-start;
  margin-top: 10px;
}


/* ============================================================
   PRICING
   ============================================================ */
.pricing-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #3B1D8E 0%, #5B35B0 30%, #9B7DD4 60%, #ffffff 100%);
}
.pricing-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(123, 82, 217, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(91, 45, 191, 0.25) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 70%, rgba(155, 125, 212, 0.2) 0%, transparent 50%);
  background-size: 200% 200%;
  animation: pricingBgMove 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes pricingBgMove {
  0%   { background-position: 0% 0%; }
  33%  { background-position: 100% 50%; }
  66%  { background-position: 30% 100%; }
  100% { background-position: 0% 0%; }
}
.pricing-section::before {
  display: none;
}
.bingo-grid-pricing {
  z-index: 0;
}
.bingo-grid-pricing .bingo-cell {
  color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}
.bingo-grid-pricing .bingo-cell.pop {
  color: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
.pricing-section > .container {
  position: relative;
  z-index: 1;
}
.pricing-section .display-title {
  color: #ffffff;
}
.pricing-section .display-title .highlight {
  color: var(--gold);
}

.pricing-section .container {
  max-width: 1600px;
  padding: 0 32px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin: 40px auto 0;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.pricing-card {
  background: #ffffff;
  backdrop-filter: blur(25px) saturate(140%);
  -webkit-backdrop-filter: blur(25px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  position: relative;
  transition: all var(--transition);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.pricing-card:hover {
  transform: none;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(210, 195, 240, 0.25) 0%, #ffffff 35%);
  backdrop-filter: blur(25px) saturate(140%);
  -webkit-backdrop-filter: blur(25px) saturate(140%);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 32px 26px;
  margin: 0;
  transform: none;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.pricing-card.featured:hover {
  transform: none;
}

/* Name row — holds package name (left) + optional badge (far right) */
.pricing-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  min-height: 22px;
  flex-wrap: nowrap;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border: none;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.4;
  margin-left: auto;
}

/* Title — matches body text size */
.pricing-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 0;
  text-transform: none;
}
.pricing-card.featured .pricing-name {
  color: var(--ink);
  font-weight: 800;
  display: block;
  visibility: visible;
}
.pricing-card.featured .pricing-price {
  color: var(--ink);
}
.pricing-card.featured .pricing-period {
  color: var(--ink);
}

/* Price row: AWG 275 / month — single line, baseline aligned */
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.pricing-currency {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}
.pricing-price {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pricing-period {
  font-size: 14px;
  font-weight: 700;
  color: #9ca3af;
}

/* Short benefit description */
.pricing-desc {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 14px;
  min-height: 0;
  background: linear-gradient(
    90deg,
    #2A1555 0%,
    #5B2DBF 25%,
    #9B7BDF 50%,
    #5B2DBF 75%,
    #2A1555 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: pricingDescGradient 4s linear infinite;
}
@keyframes pricingDescGradient {
  0%   { background-position: 0% 50%; }
  100% { background-position: -200% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .pricing-desc { animation: none; }
}

/* CTA button inside pricing cards */
.pricing-card .btn-block {
  padding: 7px 36px;
  margin-bottom: 18px;
  width: 100%;
  display: block;
  box-sizing: border-box;
  text-align: center;
}

/* Feature list — simple checkmark bullets, aligned */
.pricing-features {
  flex: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  list-style: none;
}
.pricing-features li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 700;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background: rgba(234, 179, 8, 0.35);
  color: #7A6200;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}
.pricing-card.featured .pricing-badge {
  background: #ffffff;
  color: var(--accent);
}
/* Tiered checkmarks — base (1-3) yellow, mid (4-6) orange, premium (7+) red */
.pricing-features li:nth-child(n+4)::before {
  background: rgba(232, 126, 4, 0.4);
  color: #994400;
}
.pricing-features li:nth-child(n+7)::before {
  background: rgba(200, 40, 40, 0.4);
  color: #ffffff;
}
.pricing-card.featured .pricing-features li::before {
  background: rgba(234, 179, 8, 0.35);
  color: #7A6200;
}
.pricing-card.featured .pricing-features li:nth-child(n+4)::before {
  background: rgba(232, 126, 4, 0.4);
  color: #994400;
}
.pricing-card.featured .pricing-features li:nth-child(n+7)::before {
  background: rgba(200, 40, 40, 0.4);
  color: #ffffff;
}


/* ============================================================
   INQUIRY FORM
   ============================================================ */
.form-section {
  background: #f7f8fa;
  border-top: 1px solid var(--line);
}

.form-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.required { color: var(--danger); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(91,45,191,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--danger);
}

.error-message {
  display: none;
  color: var(--danger);
  font-size: 12px;
  margin-top: 6px;
  font-weight: 500;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--ink-2) !important;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-submit-area {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.btn-submit {
  position: relative;
  min-width: 220px;
}
.btn-submit .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.btn-submit.loading .btn-text { opacity: 0.6; }
.btn-submit.loading .spinner { display: inline-block; }
.btn-submit.loading { pointer-events: none; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 0;
}
.form-success.visible { display: block; }
.form-success-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 500;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}
.form-success p {
  color: var(--muted);
  max-width: none;
  margin: 0 auto;
  white-space: nowrap;
}
.form-success p .br-mobile { display: none; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #fff;
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.footer-logo-img {
  width: clamp(180px, 20vw, 240px);
  height: auto;
  display: block;
  margin: 0 auto;
}
.footer-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.85;
  padding: 22px 36px;
  border: 4px solid var(--ink);
  border-radius: 18px;
  position: relative;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.footer-badge .fb-top {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.footer-badge .fb-mid {
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin: 4px 0;
}
.footer-badge .fb-bottom {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  -webkit-text-stroke: 1px var(--ink);
}

.footer-links {
  display: flex;
  gap: clamp(16px, 4vw, 40px);
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.footer-links a {
  font-size: clamp(11px, 2.4vw, 13px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.08em;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-links a:hover::after { width: 100%; }

.footer-copy {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.55);
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}


/* ============================================================
   GLOBAL VIDEO CONTROL FAB (mute + play/pause, next to WhatsApp)
   ============================================================ */
.video-fab-group {
  position: fixed;
  bottom: 28px;
  right: 98px;
  display: none;
  gap: 10px;
  z-index: 999;
}
body.video-floating .video-fab-group {
  display: flex;
}
.video-fab {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 14, 58, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(26, 14, 58, 0.35);
  transition: all var(--transition);
}
.video-fab:hover {
  background: var(--accent);
  transform: scale(1.08);
  box-shadow: 0 14px 34px rgba(91, 45, 191, 0.45);
}
.video-fab svg { width: 18px; height: 18px; }
.video-fab .icon-unmuted,
.video-fab .icon-play { display: none; }
.video-fab.unmuted .icon-muted { display: none; }
.video-fab.unmuted .icon-unmuted { display: block; }
.video-fab.paused .icon-pause { display: none; }
.video-fab.paused .icon-play { display: block; }
.video-fab .icon-collapse { display: none; }
.video-fab.fullscreen .icon-expand { display: none; }
.video-fab.fullscreen .icon-collapse { display: block; }
.video-fab.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.9);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .engagement-grid,
  .reach-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .engagement-grid .engagement-chart { order: 1; }
  .engagement-grid .engagement-stats { order: 2; }
  .reach-fact h3,
  .big-stat-number {
    white-space: normal;
  }
  .dash-breakdown {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .pricing-card { padding: 32px 26px; }
  .pricing-price { font-size: clamp(40px, 5vw, 56px); }
  .pricing-features li { font-size: 13.5px; }
  /* On tablet+ the featured card no longer shifts, so the spacing around
     neighbors must be equalized (no negative margin leakage). */
  .pricing-card.featured {
    transform: none;
    margin: 0;
    padding: 32px 26px;
  }
  .pricing-card.featured:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: calc(100px + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 24px;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity var(--transition), transform var(--transition), visibility 0s linear 0.25s;
    box-shadow: 0 14px 40px rgba(26, 14, 58, 0.35);
    background: #2A1252;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links a {
    color: rgba(255, 255, 255, 0.9) !important;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold) !important;
  }
  .nav-links .nav-cta {
    border: none !important;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity var(--transition), transform var(--transition), visibility 0s linear 0s;
  }
  .mobile-toggle {
    display: flex;
    flex-shrink: 0;
  }
  /* Navbar: push logo + hamburger safely below the status bar / notch */
  .navbar {
    padding-top: calc(40px + env(safe-area-inset-top, 0px));
    padding-bottom: 0;
    height: auto;
  }
  .navbar-inner {
    height: 60px;
    padding-top: 0;
    padding-bottom: 0;
    align-items: center;
  }
  .navbar-logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
  }
  .navbar-logo-img {
    height: 38px;
    max-height: 44px;
    width: auto;
    display: block;
  }
  .container { padding: 0 18px; }

  .sub-btn-group {
    flex-direction: column !important;
    align-items: center;
    gap: 12px !important;
  }
  .sub-btn-group .btn-sub {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero {
    padding-top: calc(108px + env(safe-area-inset-top, 0px));
    padding-bottom: 20px;
    min-height: auto;
    height: auto;
  }
  .hero-inner {
    gap: 10px;
    height: 100%;
    justify-content: flex-start;
  }

  /* Bingo grid: keep cell size consistent on mobile, overflow is clipped */
  .bingo-grid-bg,
  .bingo-grid-pricing {
    grid-template-columns: repeat(12, 60px);
    grid-template-rows: repeat(12, 60px);
    gap: 5px;
    justify-content: center;
  }
  .bingo-cell {
    font-size: 12px;
    border-radius: 8px;
  }

  /* 4-line headline — matches main section headlines */
  .hero-headline {
    font-size: clamp(30px, 8.4vw, 56px);
    gap: 0.02em;
    line-height: 1;
    margin: 0;
  }
  .hero-headline .hh-line {
    white-space: nowrap;
  }
  .hero-headline .hh-desktop { display: none; }
  .hero-headline .hh-mobile { display: block; }

  .hero-video-wrap {
    max-height: 26vh;
    border-radius: var(--radius);
    margin-top: 2px;
  }
  .hero-video {
    border-radius: var(--radius);
  }
  .hero-sub {
    font-size: 18px;
    line-height: 1.55;
    max-width: 560px;
    padding: 0 4px;
    margin: 0;
  }
  .hero-sub br { display: none; }
  .hero-sub br.br-mobile { display: inline; }
  .hero-sub br.br-desktop { display: none; }
  .hero-sub strong { font-size: 18px; display: inline; margin-bottom: 0; }

  .hero-cta {
    margin-top: 2px;
  }
  .cta-microcopy {
    margin-top: 6px;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
  }

  /* All section headlines share the same mobile size scale */
  .reach-headline {
    font-size: clamp(30px, 8.4vw, 56px);
    white-space: normal;
    line-height: 1.02;
  }
  .display-title {
    font-size: clamp(30px, 8.4vw, 56px);
    white-space: normal;
    line-height: 1.02;
  }
  .display-subtitle {
    white-space: normal;
    font-size: 16px;
    max-width: 560px;
  }

  /* Pricing title: swap desktop → mobile 3-line layout */
  .pricing-display-title .dt-desktop { display: none; }
  .pricing-display-title .dt-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.06em;
    line-height: 1;
  }
  /* Pricing subtitle: activate the mobile line breaks */
  .pricing-display-subtitle .br-mobile { display: inline; }

  /* Thank you message: allow wrapping on mobile */
  .form-success p {
    white-space: normal;
    max-width: 460px;
  }
  .form-success p .br-mobile { display: inline; }
  .reach-fact h3,
  .big-stat-number {
    white-space: normal;
    font-size: clamp(24px, 6vw, 36px);
  }
  .reach-fact p,
  .big-stat-label {
    font-size: 16px;
  }

  .hero-video-sound { width: 38px; height: 38px; bottom: 10px; right: 10px; }
  .hero-video-sound svg { width: 16px; height: 16px; }
  .hero-video-fullscreen { width: 38px; height: 38px; bottom: 10px; right: 58px; }
  .hero-video-fullscreen svg { width: 16px; height: 16px; }
  .hero-video-wrap.floating {
    width: min(220px, 55vw);
    bottom: 16px;
    left: 16px;
  }
  .chart-card {
    padding: 22px;
  }
  .bar-row {
    grid-template-columns: 36px 1fr 46px;
    font-size: 12px;
    gap: 10px;
  }
  .dash-mini-stats {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing section: ultra-tight so heading + subtitle + full Starter card visible on first screen */
  .pricing-section { padding-top: 30px; padding-bottom: 50px; }
  .pricing-display-title { margin-bottom: 6px; font-size: clamp(22px, 6vw, 30px); }
  .pricing-display-subtitle { margin: 0 auto 10px; font-size: 12px; line-height: 1.4; }

  /* Pricing: single column with consistent spacing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 14px;
  }
  .pricing-card {
    padding: 26px 22px;
    border-radius: 20px;
  }
  .pricing-card.featured {
    transform: none;
    margin: 0;
    padding: 26px 22px;
  }
  .pricing-card.featured:hover {
    transform: none;
  }

  /* Mobile pricing typography */
  .pricing-name { font-size: 19px; letter-spacing: 0.01em; margin-bottom: 0; text-transform: none; }
  .pricing-name-row { margin-bottom: 8px; }
  .pricing-price-row { gap: 6px; margin-bottom: 6px; }
  .pricing-price { font-size: 28px; line-height: 1; }
  .pricing-period { font-size: 14px; }
  .pricing-desc { font-size: 17px; margin: 0 0 12px; min-height: 0; }
  .pricing-card .btn-block { margin-bottom: 14px; width: 100%; text-align: center; }
  .pricing-features { gap: 16px; }
  .pricing-features li { padding-left: 28px; font-size: 17px; line-height: 1.5; font-weight: 600; }
  .pricing-features li::before { width: 18px; height: 18px; font-size: 10px; top: 3px; }

  .footer {
    padding: 60px 0 30px;
  }

  /* Social links always on one line — even at 4 items */
  .footer-links {
    gap: clamp(10px, 3.4vw, 24px);
    flex-wrap: nowrap;
  }
  .footer-links a {
    font-size: clamp(10px, 2.6vw, 13px);
    letter-spacing: 0.06em;
  }

  /* Mobile: hide most buttons on floating sticker, keep close button */
  .hero-video-wrap.floating .hero-video-sound,
  .hero-video-wrap.floating .hero-video-pause {
    display: none !important;
  }
  .hero-video-wrap.floating .hero-video-close {
    display: grid !important;
  }

  /* Mobile: video FABs always visible, next to WhatsApp on the right */
  .video-fab-group {
    display: flex !important;
    position: fixed;
    bottom: 28px;
    right: 96px;
    left: auto;
    flex-direction: row;
    gap: 8px;
    z-index: 999;
  }
  .video-fab { width: 38px; height: 38px; }
  .video-fab svg { width: 15px; height: 15px; }
  /* Hide fullscreen FAB on mobile — not useful */
  .video-fab-fullscreen { display: none !important; }

}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .broadcast-mock {
    aspect-ratio: auto;
    padding: 14px;
  }
  .broadcast-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .chart-card { padding: 18px; }

  .hero-headline {
    font-size: clamp(28px, 9vw, 50px);
  }
  .reach-headline,
  .display-title {
    font-size: clamp(28px, 9vw, 50px);
  }

  .pricing-card { padding: 24px 20px; }
  .pricing-card.featured { padding: 26px 20px; }
  .pricing-price { font-size: clamp(36px, 10vw, 44px); }

  .footer-links {
    gap: clamp(8px, 3vw, 20px);
  }
  .footer-links a {
    font-size: clamp(9.5px, 2.7vw, 12px);
    letter-spacing: 0.05em;
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .video-fab-group {
    bottom: 22px;
    right: 76px;
    left: auto;
    gap: 6px;
  }
  .video-fab { width: 34px; height: 34px; }
  .video-fab svg { width: 14px; height: 14px; }

}
