
/* ── PRICING TABS — consistent sizing on both monthly and annual ─ */
/* Ensure tabs-content and w-tab-pane take full width */
.tabs-content.w-tab-content {
  width: 100% !important;
  overflow: visible !important;
}
.w-tab-pane {
  width: 100% !important;
}
.w-tab-pane.w--tab-active {
  display: block !important;
}
/* pricing-wrapper inside both tabs — same layout */
.w-tab-pane .pricing-wrapper {
  display: flex !important;
  justify-content: center !important;
  gap: 1rem !important;
  width: 100% !important;
}
/* Each card stretches equally */
.w-tab-pane .pricing-tab {
  flex: 1 !important;
  min-width: 0 !important;
  max-width: 24.375rem !important;
}

/* ── LIVE INDICATOR DOTS — pure CSS, no JS dependency ───────── */
/* Both hero badge dot and The Data Speaks badge dot */
.hero-notification-block .live-indicator-dot {
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  border-radius: 50% !important;
  background: #22c55e !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  animation: liveGlow 2s ease-in-out infinite !important;
}


@keyframes liveGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.7), 0 0 6px rgba(34,197,94,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0), 0 0 14px rgba(34,197,94,0.3); }
}
@keyframes goldGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,0.7), 0 0 6px rgba(245,158,11,0.5); }
  50%      { box-shadow: 0 0 0 6px rgba(245,158,11,0), 0 0 14px rgba(245,158,11,0.3); }
}


/* ── "The Data Speaks" badge — centered above heading, green dot ─ */
.competition-left-wrapper {
  align-items: center !important;  /* center children horizontally */
}
.competition-left-wrapper > .hero-notification-block {
  align-self: center !important;
  margin-bottom: 20px !important;
}
.competition-header-wrapper {
  text-align: center !important;
  width: 100% !important;
}
.competition-header-wrapper .heading-6 {
  text-align: center !important;
}
/* Badge dot — exact same green glow as hero badge */
.competition-left-wrapper > .hero-notification-block .live-indicator-dot {
  background: #22c55e !important;
  border-radius: 50% !important;
  animation: liveGlow 2s ease-in-out infinite !important;
  box-shadow: none !important;
}



/* ═══════════════════════════════════════════════════════════════
   365Locate — Visual Patches v3
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. NAVBAR + HERO — flush, no gap, no rounding ──────────────
   Navbar pill sits at top, hero image section starts immediately
   below it — zero gap, no rounded corners between them.
   ─────────────────────────────────────────────────────────────── */

/* ── NAVBAR overlaps hero card ──────────────────────────────────
   The header is position:fixed. We make it transparent so the
   hero background SVG shows through it — the pill appears to sit
   INSIDE the hero card, exactly like the Webflow design.
   ─────────────────────────────────────────────────────────────── */
.header.section-3 {
  padding: 12px 16px !important;
  background: transparent !important; /* let hero show through */
}
.header.section-3 .container {
  max-width: 1600px !important;
  padding: 0 !important;
}
.navbar-content-wrapper {
  width: 100% !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
  height: 64px !important;
  border-radius: 20px !important;
  align-items: center !important;
  display: flex !important;
  /* Semi-transparent dark bg so pill is visible over hero */
  background-color: rgba(10, 8, 5, 0.55) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* Logo: 120px on desktop, 100px on tablet/mobile */
@media screen and (min-width: 992px) {
  .nav-logo-image {
    width: 120px !important;
    max-width: 120px !important;
  }
}
@media screen and (max-width: 991px) {
  .nav-logo-image {
    width: 100px !important;
    max-width: 100px !important;
  }
}

/* Desktop nav-link font size bigger */
@media screen and (min-width: 992px) {
  .nav-link {
    font-size: 20px !important;
  }
}

/* Hero: starts from top:0 with enough top padding to clear the navbar */
.hero {
  padding-top: 0 !important;    /* no gap — hero starts at very top of page */
  padding-left: 16px !important;
  padding-right: 16px !important;
  margin-top: 0 !important;
}
.hero-container {
  max-width: 1600px !important;
}
/* hero-inner: full border-radius, padding-top clears the navbar pill */
.hero-inner {
  border-radius: 32px !important;
  padding-top: 96px !important;  /* clear the 64px pill + 16px header padding */
  margin-top: 0 !important;
}


/* ── WORD ROTATOR — staggered letter slide ──────────────────────
   Wrapper: inline-block, overflow:hidden, height = one line.
   JS builds per-letter spans; each slides up independently.
   No position switching — pure transform only, no reflow.
   ─────────────────────────────────────────────────────────────── */
.hero-title-bottom-wrapper {
  align-items: center !important;
  gap: 16px !important;
}
.hero-changing-words-wrapper {
  display: inline-block !important;
  overflow: hidden !important;
  height: 80px !important;
  position: relative !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
}
/* Letter spans injected by JS inherit these */
.hero-changing-words-wrapper span {
  font-family: 'Instrument Serif', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400 !important;
  font-size: 72px !important;
  line-height: 80px !important;
  color: #f2f2f2 !important;
}
/* Original .hero-changing-word divs are cleared by JS — just in case */
.hero-changing-word {
  display: none !important;
}

/* Kill fixed heights causing vertical padding bloat */
.hero-section-icon-holder.hero-section-main-class .hero-section-text-header-wrapper {
  height: auto !important;
  min-height: unset !important;
}
.hero-section-icon-holder.hero-section-main-class .hero-section-main-text-wrapper {
  height: auto !important;
}
.hero-section-icon-holder.hero-section-main-class .hero-section-content-wrapper {
  height: auto !important;
  align-items: center !important;
}

@media (max-width: 991px) {
  .hero-changing-words-wrapper { height: 56px !important; }
  .hero-changing-words-wrapper span { font-size: 48px !important; line-height: 56px !important; }
}
@media (max-width: 767px) {
  .hero-changing-words-wrapper { height: 42px !important; }
  .hero-changing-words-wrapper span { font-size: 36px !important; line-height: 42px !important; }
}
@media (max-width: 479px) {
  .hero-changing-words-wrapper { height: 32px !important; }
  .hero-changing-words-wrapper span { font-size: 28px !important; line-height: 32px !important; }
}

/* ── 2. NAVBAR LINKS — let Webflow JS control show/hide ─────────────────
   We only style, never override display. Webflow's w-nav collapse logic
   adds/removes w--nav-menu-open and sets display via its own JS.
   ─────────────────────────────────────────────────────────────────────── */
.menu-wrapper {
  display: flex;
  gap: 28px;
}
.nav-link {
  opacity: 0.52;
  color: #f2f2f2 !important;
  font-family: Ikaros, Arial, sans-serif !important;
  font-size: 17px !important;
  transition: opacity 0.25s ease !important;
  text-decoration: none !important;
  padding: 0 !important;
}
.nav-link:hover {
  opacity: 1;
}
/* Desktop: hide hamburger */
@media screen and (min-width: 992px) {
  .nav_button, .nav_button.w-nav-button, .simple-menu-button {
    display: none !important;
  }
  /* Ensure nav links always show on desktop regardless of Webflow state */
  .nav-menu-2 {
    display: flex !important;
  }
}
/* Mobile/tablet: hide nav links, show hamburger */
@media screen and (max-width: 991px) {
  .nav-menu-2 {
    display: none !important;
  }
  .nav_button, .nav_button.w-nav-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  /* Fix asymmetric padding — Webflow sets .navbar { padding: 12px 0 0 } on tablet
     which adds extra top space but nothing at bottom inside the pill */
  .navbar {
    padding: 0 !important;
  }
  .navbar-content-wrapper {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: center !important;
  }
  .navbar-content-area {
    padding-left: 0 !important;
    padding-right: 0 !important;
    align-items: center !important;
  }
  .nav-logo {
    margin-right: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
}

/* ── MOBILE MENU OVERLAY ─────────────────────────────────────────────────── */
#mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 100000; /* above header z-index: 99999 */
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
#mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

/* ── MOBILE MENU PANEL ───────────────────────────────────────────────────── */
#mobile-nav-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background and blur fade in AFTER slide completes */
  background: rgba(10,8,5,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255,255,255,0);
  border-radius: 0 0 24px 24px;
  padding: 90px 32px 40px;
  z-index: 100001; /* above header z-index: 99999 and overlay: 100000 */
  flex-direction: column;
  gap: 4px;
  /* clip-path slides content down from top — content is hidden above */
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path 0.38s cubic-bezier(0.25,0.46,0.45,0.94) 0.15s,
    background   0.3s ease 0.5s,
    backdrop-filter 0.3s ease 0.5s,
    -webkit-backdrop-filter 0.3s ease 0.5s,
    border-bottom-color 0.3s ease 0.5s;
}
#mobile-nav-panel.open {
  display: flex;
  clip-path: inset(0 0 0% 0);
  pointer-events: all;
  background: rgba(10,8,5,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Links hidden, slide in after panel reveals */
#mobile-nav-panel .mobile-nav-link,
#mobile-nav-panel .mobile-nav-cta {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}
#mobile-nav-panel.open .mobile-nav-link:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0.32s; }
#mobile-nav-panel.open .mobile-nav-link:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 0.38s; }
#mobile-nav-panel.open .mobile-nav-link:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 0.44s; }
#mobile-nav-panel.open .mobile-nav-link:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 0.50s; }
#mobile-nav-panel.open .mobile-nav-cta               { opacity:1; transform:translateY(0); transition-delay: 0.56s; }

.mobile-nav-link {
  pointer-events: all !important;
  cursor: pointer !important;
  font-family: Ikaros, Arial, sans-serif !important;
  font-size: 26px !important;
  color: rgba(242,242,242,0.7) !important;
  text-decoration: none !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  display: block !important;
  /* align with logo (navbar-content-wrapper padding-left: 28px) */
  padding-left: 0px !important;
}
.mobile-nav-link:last-of-type {
  border-bottom: none !important;
}
.mobile-nav-link:hover {
  color: #f2f2f2 !important;
}
.mobile-nav-cta {
  pointer-events: all !important;
  cursor: pointer !important;
  margin-top: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 50px !important;
  padding: 16px 28px !important;
  font-family: Outfit, sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #f2f2f2 !important;
  text-decoration: none !important;
  transition: background 0.2s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.mobile-nav-cta:hover {
  background: rgba(255,255,255,0.12) !important;
}

/* ── 3. GET STARTED BUTTON ───────────────────────────────────── */
.arrow-button-secondary {
  opacity: 0.68 !important;
  border: 1px solid rgba(255,255,255,0.38) !important;
  border-radius: 100px !important;
  height: 38px !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
  gap: 6px !important;
  display: flex !important;
  align-items: center !important;
  background: transparent !important;
  transition: opacity 0.25s ease, border-color 0.25s ease, background 0.25s ease !important;
}
.arrow-button-secondary:hover {
  opacity: 1 !important;
  border-color: rgba(255,255,255,0.8) !important;
  background: rgba(255,255,255,0.05) !important;
}
.scroll-arrow-txt {
  color: #f8f8f8 !important;
  font-size: 0.65rem !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}
.scroll-arrow-img {
  width: 15px !important;
  transition: transform 0.22s ease !important;
  float: none !important;
}
.arrow-button-secondary:hover .scroll-arrow-img {
  transform: translate(2px, -2px) !important;
}

/* ── 4. COUNTER SECTION — tight, no wasted space ─────────────
   Kill every source of vertical gap:
   - section padding
   - h2 default browser margin
   - social-proof-top spacing
   - section-social-proof margin-top
   ─────────────────────────────────────────────────────────────── */
.social-proof {
  padding: 32px 16px 24px !important;
}
.social-proof-wrapper {
  max-width: 900px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
}
.social-proof-top {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
}
.social-proof-top-text-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}
.heading-2 {
  font-size: 28px !important;
  line-height: 34px !important;
  font-weight: 700 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  max-width: 780px !important;
}
.social-proof-image-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}
.social-proof-image-wrapper .image {
  width: 140px !important;
  display: block !important;
}
/* Counter row — decent gap below heading */
.section-social-proof {
  height: auto !important;
  margin-top: 36px !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  gap: 0 !important;
  align-items: center !important;
  justify-content: center !important;
}
.counter-item-1 {
  grid-row-gap: 8px !important;
  flex: 1 !important;
  padding: 12px 40px !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
}
.counter-numbers-wrapper {
  height: 48px !important;
  align-items: center !important;
  overflow: visible !important;
}
.counter-value {
  font-size: 38px !important;
  line-height: 42px !important;
  font-family: Urbanist, Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -1px !important;
  align-items: center !important;
}
.counter-label {
  font-size: 11px !important;
  line-height: 11px !important;
  opacity: 0.45 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}
.horizontal-liner-01 {
  width: 1px !important;
  height: 56px !important;
  min-height: unset !important;
  max-height: 56px !important;
  flex: none !important;
  align-self: center !important;
}

/* ── 5. BUTTON HOVER ANIMATION — Webflow IX2 ────────────────────
   .outline-btn: overflow:hidden clips the circle as it rises.
   Webflow IX2 (a-21/a-22) moves .button-hover-circle via yValue.
   Circle starts at inset: auto auto -400% -16px (hidden below).
   DO NOT override inset/top/bottom — IX2 sets those via transform.
   ─────────────────────────────────────────────────────────────── */
.outline-btn {
  overflow: hidden !important;
  position: relative !important;
}
.secondary-btn-text-2 {
  position: relative !important;
  z-index: 10 !important;
}
/* hover-01 gradient (Starter button) */
.button-hover-circle.button-hover-01 {
  background-color: transparent !important;
  background-image: radial-gradient(circle at 0 0, #000 40%, #bd671d 80%) !important;
  opacity: 0.8 !important;
}



/* ── 6. DASHBOARD — 5-layer parallax composite ──────────────────
   All 5 images are 2400x1600px on the same canvas.
   Background defines height (position:static, width:100%, height:auto).
   The 4 overlays sit at top:0,left:0 with identical pixel dimensions.
   object-fit:fill + same intrinsic size = pixel-perfect alignment.
   ─────────────────────────────────────────────────────────────── */
.dashboard-showcase {
  padding: 40px 16px 20px !important;
}
.dashboard-image-content-holder {
  padding: 2% 0 !important;
  overflow: visible !important;
}
.dashboard-image-load-wrapper {
  width: 86% !important;
  max-width: 1060px !important;
  margin: 0 auto !important;
  position: relative !important;
}

/* Wrapper: sized by background image, overlays hang off it */
.dashboard-3d-wrapper {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  padding-bottom: 0 !important;
  overflow: visible !important;
  border-radius: 12px !important;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 40px 100px rgba(0,0,0,0.7),
    0 0 80px rgba(235,132,73,0.15) !important;
}

/* Background: static in flow — its rendered size = the reference for all overlays */
.dashboard-mockup {
  position: static !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 12px !important;
  will-change: transform !important;
}

/* All overlays: same intrinsic size as bg (2400×1600), positioned to match exactly */
.dashboard-image-sidebar,
.dashboard-image-top,
.dashboard-image-bottom-left,
.dashboard-image-bottom-right {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  /* Match the background's rendered size exactly */
  width: 100% !important;
  height: 100% !important;
  /* object-fit:fill = stretch to container without cropping
     Works because all images share the same 2400x1600 canvas */
  object-fit: fill !important;
  will-change: transform !important;
  border-radius: 12px !important;
}
.dashboard-image-sidebar     { z-index: 2 !important; }
.dashboard-image-top         { z-index: 3 !important; }
.dashboard-image-bottom-left { z-index: 4 !important; }
.dashboard-image-bottom-right{ z-index: 5 !important; }

/* Dashboard text — bigger, more presence */
.dashboard-text-wrapper {
  padding-top: 48px !important;
  padding-bottom: 24px !important;
  max-width: 780px !important;
  margin: 0 auto !important;
}
.dashboard-text-wrapper .text-block-4 {
  font-size: 22px !important;
  line-height: 34px !important;
  color: rgba(242,242,242,0.85) !important;
  letter-spacing: 0.01em !important;
}
/* More space between dashboard section and rewards section below */
.dashboard-showcase {
  padding-bottom: 60px !important;
}

/* Heading → image gap (all viewpoints) */
.dashboard-headline-wrapper {
  margin-bottom: 48px !important;
}

/* Orange glow — full dashboard coverage, bleeds to bottom */
.hero-section-blur-background {
  width: 130% !important;
  height: 780px !important;
  left: -15% !important;
  right: auto !important;
  top: -40px !important;
  bottom: auto !important;
  transform: scale3d(1, 0.85, 1) !important;
  opacity: 0.5 !important;
  filter: blur(70px) !important;
}

@media (max-width: 767px) {
  .dashboard-image-sidebar,
  .dashboard-image-top,
  .dashboard-image-bottom-left,
  .dashboard-image-bottom-right { display: none !important; }
  .dashboard-image-load-wrapper { width: 98% !important; }
}

/* ── 7. APP SHOWCASE — same width as hero card ───────────────── */
.app-showcase {
  padding: 0 16px 40px !important;  /* same 16px side padding as .hero */
  max-width: 1600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
  width: 100% !important;
}
.app-showcase-container {
  max-width: 1600px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}
.app-showcase-inner {
  background-image: url('../images/hero-background.svg') !important;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
  border-radius: 32px !important;  /* match hero-inner border-radius */
}
@media screen and (min-width: 992px) {
  .app-showcase-top-wrapper {
    flex-direction: row !important;
    padding: 60px 48px 40px !important;
    gap: 48px !important;
    align-items: flex-start !important;
  }
  .app-showcase-image-wrapper {
    width: 55% !important;
    flex-shrink: 0 !important;
  }
  .app-showcase-text-wrapper {
    width: 42% !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding-top: 32px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .app-showcase-top-header-wrapper {
    justify-content: flex-start !important;
    display: flex !important;
  }
  .app-showcase-mobile-heading-clone {
    display: none !important;
  }
}
.heading-4 {
  text-align: left !important;
  font-size: 38px !important;
  line-height: 44px !important;
}
.app-showcase-top-text-wrapper .text-block-4 {
  text-align: left !important;
  line-height: 1.7 !important;
  font-size: 20px !important;
}

/* ── 8. COMPETITION SECTION ─────────────────────────────────── */
.app-showcase-bottom-wrapper {
  padding: 0 48px 60px !important;
  gap: 64px !important;
  align-items: center !important;
}
.competition-left-wrapper {
  width: 44% !important;
  align-items: flex-start !important;
  padding-top: 16px !important;
}
.competition-right-wrapper {
  width: 52% !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
}
.competition-right-wrapper img {
  margin-bottom: 48px !important;
}
.competition-text-wrapper {
  padding: 14px 0 !important;
  align-items: center !important;
  gap: 8px !important;
  align-self: flex-start !important;
  width: 100% !important;
}
.competition-text-wrapper .competition-text-facts {
  margin-left: 5px !important;
}
.competition-header-wrapper {
  width: 100% !important;
}
.heading-6 {
  text-align: left !important;
  font-size: 38px !important;
  line-height: 44px !important;
}

/* ── 9. FOOTER — no gap at bottom ───────────────────────────── */
/* Root cause: body bg (#0a0a0a) shows below navigation-item-list
   (#16161a). Fix: make html + body background match footer bg.
   Also kill .div-block-3 (Webflow's fixed bottom blur gradient). */
.div-block-3 {
  display: none !important;
}
html, body {
  background-color: #16161a !important;
  margin: 0 !important;
  padding: 0 !important;
}
body {
  overflow-x: hidden !important;
  /* sections have their own bg colors; body/html = footer color
     so the very bottom of the page never shows a gap */
}
.body {
  background-color: #0a0a0a !important; /* Webflow's body class = page bg */
}
.footer-parent {
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important;
  border: none !important;
}
.navigation-item-list {
  padding-top: 60px !important;
  height: auto !important;
}
.navigation-item-list {
  padding-top: 40px !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
}
.footer-wrap.complete-footer {
  padding-bottom: 0 !important;
}
.footer-bottom.py-25 {
  padding-top: 20px !important;
  padding-bottom: 24px !important;
  margin-bottom: 0 !important;
}
.footer {
  margin: 0 !important;
  padding-bottom: 0 !important;
}

/* ── 10. VELOCITY TICKER ────────────────────────────────────── */
.velocity-ticker {
  padding: 6px 16px 0 !important;
  margin-top: 4px !important;
}

/* ── 11. MOBILE MENU OVERLAY (≤991px) ───────────────────────── */
@media screen and (max-width: 991px) {
  #nav-mobile-menu {
    position: fixed !important;
    top: 80px !important;
    left: 16px !important;
    right: 16px !important;
    background: rgba(10,10,10,0.97) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px !important;
    padding: 20px 24px 24px !important;
    z-index: 99997 !important;
    flex-direction: column !important;
    gap: 8px !important;
    display: none;
  }
  #nav-mobile-menu .menu-item {
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    padding: 10px 0 !important;
    overflow: visible !important;
  }
  #nav-mobile-menu .menu-item:last-child {
    border-bottom: none !important;
  }
  #nav-mobile-menu .nav-link {
    font-size: 22px !important;
    opacity: 0.7 !important;
    display: block !important;
  }
  #nav-mobile-menu .nav-link:hover {
    opacity: 1 !important;
  }
}

/* ── 12. RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-social-proof { padding: 0 8px !important; }
  .counter-item-1 { padding: 8px 16px !important; }
  .app-showcase-top-wrapper { flex-direction: column !important; padding: 40px 24px 24px !important; }
  .app-showcase-image-wrapper, .app-showcase-text-wrapper { width: 100% !important; }
  .app-showcase-text-wrapper { padding-top: 0 !important; align-items: center !important; text-align: center !important; }
  .heading-4 { text-align: center !important; }
  .app-showcase-top-text-wrapper .text-block-4 { text-align: center !important; }
  .app-showcase-bottom-wrapper { flex-direction: column !important; padding: 0 24px 40px !important; gap: 0 !important; margin-top: 64px !important; }
  .competition-left-wrapper, .competition-right-wrapper { width: 100% !important; }
  .competition-left-wrapper { align-items: center !important; }
  .heading-6 { text-align: center !important; }
}
@media (max-width: 767px) {
  .section-social-proof { flex-direction: column !important; align-items: center !important; gap: 12px !important; margin-top: 16px !important; }
  .horizontal-liner-01 { width: 50% !important; min-height: 1px !important; height: 1px !important; }
  .counter-item-1 { flex: none !important; width: 100% !important; max-width: 260px !important; }
}

/* ── CUSTOM PRICING TAB TOGGLE ──────────────────────────────────────────── */
.custom-tab-toggle {
  position: relative;
  display: inline-flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  padding: 4px;
  gap: 0;
  margin: 0 auto 2rem;
}
.custom-tab-pill {
  position: absolute;
  background: #ffffff;
  border-radius: 0.35rem;
  transition: left 0.3s ease, width 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.custom-tab-btn {
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.5rem;
  font-family: Ikaros, Arial, sans-serif;
  font-size: 24px;
  line-height: 24px;
  color: rgba(242,242,242,0.6);
  transition: color 0.3s ease;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
/* Monthly has no subtext — pad to match Annual two-line height so text is centred */
.custom-tab-btn[data-tab="1"] {
  padding-top: calc(0.75rem + 7px);
  padding-bottom: calc(0.75rem + 7px);
}
.custom-tab-btn.active {
  color: #142f3c;
}
.custom-tab-sub {
  font-size: 12px;
  line-height: 12px;
  color: #67fa50;
  display: block;
}
.custom-tab-btn.active .custom-tab-sub {
  color: #1a7a0a;
}
/* ── Also ensure button hover (outline-btn) still works ────────────────── */
.outline-btn {
  overflow: hidden !important;
  position: relative !important;
}
.secondary-btn-text-2 {
  position: relative !important;
  z-index: 10 !important;
}

/* Ensure panes display properly with custom toggle */
.w-tab-pane { display: none !important; }
.w-tab-pane.w--tab-active { display: block !important; opacity: 1 !important; }

/* ── Prevent card height shift when switching monthly/annual ── */
.pricing-wrapper {
  align-items: stretch !important;
}
.pricing-tab {
  min-height: 520px;
  display: flex !important;
  flex-direction: column !important;
}
.pricing-content-wrapper {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.pricing-button-wrapper {
  margin-top: auto !important;
}

/* ── FAQ section — more breathing room above ── */
.faq-section-padding {
  padding-top: 100px !important;
}

/* ── CTA section — balanced spacing between FAQ and footer ── */
.cta {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* ── Smooth anchor scrolling ── */

/* ── FIX: Webflow injects w-nav-overlay which covers the full page and blocks
   all pointer events below the navbar. Since we use our own #mobile-nav-panel,
   disable pointer events on the Webflow overlay entirely. ──────────────────── */
.w-nav-overlay {
  pointer-events: none !important;
}




/* ── DASHBOARD SECTION: static image on tablet/mobile ────────────────────── */
/* Hide static image on desktop — parallax layers are used instead */
.dashboard-full-static {
  display: none;
}

@media screen and (max-width: 991px) {
  /* Hide all 5 parallax layers */
  .dashboard-mockup,
  .dashboard-image-sidebar,
  .dashboard-image-top,
  .dashboard-image-bottom-left,
  .dashboard-image-bottom-right {
    display: none !important;
  }

  /* Show the flat combined image */
  .dashboard-full-static {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    position: relative;
    z-index: 1;
  }

  /* Collapse fixed-height wrappers */
  .dashboard-image-content-holder {
    height: auto !important;
    min-height: unset !important;
    padding: 20px 0 !important;
    position: relative !important;
  }

  .dashboard-3d-wrapper {
    width: 100% !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .dashboard-image-load-wrapper {
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
  }

  /* Glow behind static image */
  .dashboard-image-content-holder .hero-section-blur-background {
    position: absolute !important;
    width: 130% !important;
    height: 780px !important;
    left: -15% !important;
    top: 50% !important;
    transform: translateY(-50%) scale3d(1, 0.85, 1) !important;
    z-index: 0 !important;
    opacity: 0.5 !important;
    filter: blur(70px) !important;
    pointer-events: none !important;
  }

  .dashboard-full-static {
    position: relative !important;
    z-index: 1 !important;
  }
}

/* ── DASHBOARD SECTION: tablet/mobile text + divider tweaks ─────────────── */
@media screen and (max-width: 991px) {
  /* Shrink the white divider so its ends don't show */
  .dashboard-showcase .bottom-liner {
    width: 60% !important;
    max-width: 400px !important;
    opacity: 0.5 !important;
  }

  /* Tighten the text below the dashboard image */
  .dashboard-text-wrapper {
    padding-top: 28px !important;
    max-width: 92% !important;
  }
  .dashboard-text-wrapper .text-block-4 {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}

@media screen and (max-width: 479px) {
  .dashboard-showcase .bottom-liner {
    width: 50% !important;
    max-width: 280px !important;
  }
  .dashboard-text-wrapper .text-block-4 {
    font-size: 15px !important;
    line-height: 22px !important;
  }
}

/* ── APP SHOWCASE: tablet/mobile layout reorder ─────────────────────────────
   Desktop: image (left) | heading + paragraph (right)  — untouched
   Mobile:  heading clone → image → paragraph (stacked column)
   ─────────────────────────────────────────────────────────────────────────── */

/* Mobile clone heading: hidden on desktop */
.app-showcase-mobile-heading-clone {
  display: none;
}

@media screen and (max-width: 991px) {
  /* Show mobile clone heading, hide the original inside text-wrapper */
  .app-showcase-mobile-heading-clone {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .app-showcase-mobile-heading-clone .heading-4 {
    font-size: 26px !important;
    line-height: 32px !important;
    text-align: center !important;
  }
  .app-showcase-top-header-wrapper {
    display: none !important;
  }

  /* Stack: clone heading → image → text wrapper */
  .app-showcase-top-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    padding: 24px 16px !important;
  }
  .app-showcase-image-wrapper {
    width: 100% !important;
    margin-bottom: 24px !important;
  }
  .app-showcase-text-wrapper {
    width: 100% !important;
    align-items: center !important;
  }

  /* Paragraph */
  .app-showcase-top-text-wrapper .text-block-4 {
    font-size: 15px !important;
    line-height: 1.5 !important;
    text-align: center !important;
  }
}

/* ── COMPETITION SECTION: tablet/mobile only ────────────────────────────────
   Desktop untouched. All rules below apply only at ≤991px.
   ─────────────────────────────────────────────────────────────────────────── */
@media screen and (max-width: 991px) {

  /* Paragraph max-width so it doesn't hit section edges */
  .app-showcase-top-text-wrapper {
    max-width: 88% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Bigger gap between image-with-badges and paragraph below */
  .app-showcase-text-wrapper {
    margin-top: 36px !important;
  }

  /* Bigger gap: paragraph → "The Data Speaks" badge */
  .app-showcase-bottom-wrapper .hero-notification-block {
    margin-top: 72px !important;
    margin-bottom: 8px !important;
  }

  /* Smaller gap between "The Data Speaks" badge and heading below it */
  .competition-header-wrapper {
    margin-top: 8px !important;
  }

  /* Match heading-6 to heading-4 mobile settings */
  .heading-6 {
    font-size: 26px !important;
    line-height: 32px !important;
    text-align: center !important;
  }
}

/* ── COMPETITION SECTION: mobile reorder ────────────────────────────────────
   Desktop: left col (badge+heading+stats) | right col (image+quote)
   Mobile:  badge → heading → image → stats → quote heading
   ─────────────────────────────────────────────────────────────────────────── */

/* Hide mobile-only clones on desktop */
.competition-mobile-top,
.competition-mobile-quote {
  display: none;
}

@media screen and (max-width: 991px) {
  /* Show mobile clones, hide desktop-only originals */
  .competition-mobile-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 8px;
    margin-bottom: 24px;
  }
  .competition-mobile-top .hero-notification-block {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .competition-mobile-top .competition-header-wrapper {
    margin-top: 8px !important;
    width: 100%;
  }
  .competition-desktop-only {
    display: none !important;
  }
  .competition-mobile-quote {
    display: block;
    width: 100%;
    margin-top: 28px;
  }
  .competition-mobile-quote .heading-5 {
    font-size: 26px !important;
    line-height: 32px !important;
    text-align: center !important;
  }

  /* Stack: mobile-top → right(image) → left(stats) */
  .app-showcase-bottom-wrapper {
    flex-direction: column !important;
    align-items: center !important;
  }
  /* Image comes before stats on mobile */
  .competition-right-wrapper {
    order: 1 !important;
    width: 100% !important;
    margin-bottom: 4px !important;
  }
  .competition-left-wrapper {
    order: 2 !important;
    width: 100% !important;
    align-items: center !important;
    text-align: center !important;
  }
  /* Hide the original quote in right wrapper on mobile (we show mobile-quote instead) */
  .competition-right-wrapper .competition-right-sde-text-quote {
    display: none !important;
  }
}

/* ── STATS: source links + number spans ─────────────────────── */
/* Hide source links and keep numbers inline on desktop */
.stat-source-link { display: none; }
.stat-number { }

@media screen and (max-width: 991px) {
  /* Center the entire stats column */
  .competition-left-wrapper {
    align-items: center !important;
    text-align: center !important;
  }

  /* Smaller gap between image and stats */
  .competition-right-wrapper {
    margin-bottom: 4px !important;
  }

  /* Each stat: column layout — number → desc → source */
  .competition-text-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px 0 !important;
    gap: 4px !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100% !important;
  }
  .competition-text-wrapper:last-of-type { border-bottom: none; }

  /* Hide the original inline dot — we use a custom one */
  .competition-text-wrapper > .live-indicator-dot {
    display: none !important;
  }

  /* facts div: column — number row → desc → source */
  .competition-text-facts {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    width: 100% !important;
  }

  /* Number row: orange dot inline-left + big number */
  .stat-number {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-family: Outfit, Arial, sans-serif;
    font-size: 56px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    color: #f2f2f2;
  }
  .stat-number::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    background: #f97316;
    animation: orangeGlow 2s ease-in-out infinite;
  }

  /* Description text */
  .stat-desc {
    display: block !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    color: #f2f2f2;
    max-width: 88%;
    margin: 0 auto;
  }

  /* Show only our source link */
  .stat-source-link {
    display: inline-block !important;
    color: #94a1b2;
    font-family: Outfit, Arial, sans-serif;
    font-size: 13px;
    text-decoration: none;
    margin-top: 4px;
  }
  .stat-source-link:hover { color: #f2f2f2; }
}

/* ── PRICING SECTION: tablet/mobile only ────────────────────────────────────
   Desktop untouched. All rules below apply only at ≤991px.
   ─────────────────────────────────────────────────────────────────────────── */
@media screen and (max-width: 991px) {
  /* Smaller gap between previous section and pricing heading */
  .pricing {
    padding-top: 28px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Remove w-container max-width constraint on mobile */
  .pricing-container.w-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Smaller heading font */
  .heading-7 {
    font-size: 26px !important;
    line-height: 32px !important;
    text-align: center !important;
  }

  /* Stack cards centered and full-width */
  .plans-wrapper,
  .tabs.w-tabs,
  .tabs-content.w-tab-content,
  .w-tab-pane {
    width: 100% !important;
  }

  .pricing-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }

  .pricing-tab {
    width: 92% !important;
    max-width: 92% !important;
    box-sizing: border-box !important;
  }
}

/* ── CTA SECTION: tablet/mobile only ───────────────────────────────────────*/
@media screen and (max-width: 991px) {
  .heading-9 {
    font-size: 26px !important;
    line-height: 32px !important;
    text-align: center !important;
  }
}

/* ── APP SHOWCASE: hide image wrapper (trophy + badges) on mobile only ──────*/
@media screen and (max-width: 479px) {
  .app-showcase-image-wrapper {
    display: none !important;
  }
}

/* ── APP SHOWCASE: fix bottom badge positions on desktop ─────── */
@media screen and (min-width: 992px) {
  /* hero-04: bottom-left badge */
  .app-showcase .hero-section-icon-holder.hero-section-main-class.hero-04 {
    inset: auto auto 420px 30px !important;
  }
  /* hero-02: bottom-right badge */
  .app-showcase .hero-section-icon-holder.hero-section-main-class.hero-02 {
    inset: auto 0 440px auto !important;
  }
}

/* ── APP SHOWCASE: top badges slightly lower ─────────────────── */
@media screen and (min-width: 992px) {
  .app-showcase .hero-section-icon-holder.hero-section-main-class.hero-01 {
    top: 15px !important;
    right: 30px !important;
  }
  .app-showcase .hero-section-icon-holder.hero-section-main-class.hero-03 {
    top: 20px !important;
    left: 10px !important;
  }
}

/* ── APP SHOWCASE: mobile only (≤479px) ─────────────────────── */
@media screen and (max-width: 479px) {
  /* Show heading above image */
  .app-showcase-mobile-heading-clone {
    display: block !important;
    width: 100%;
    text-align: center;
    margin-bottom: 16px;
  }
  .app-showcase-mobile-heading-clone .heading-4 {
    font-size: 22px !important;
    line-height: 28px !important;
    text-align: center !important;
  }

  /* Shrink the badge cards */
  .app-showcase .hero-section-icon-holder.hero-section-main-class {
    width: clamp(120px, 38%, 155px) !important;
    padding: 3px 4px !important;
  }

  /* Move bottom badges down */
  .app-showcase .hero-section-icon-holder.hero-section-main-class.hero-04 {
    inset: auto auto 100px 10px !important;
  }
  .app-showcase .hero-section-icon-holder.hero-section-main-class.hero-02 {
    inset: auto 0 115px auto !important;
  }

  /* Shrink badge icon image */
  .app-showcase .hero-section-picture-wrapper {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
  }
  .app-showcase .hero-section-profile-04 {
    width: 20px !important;
    height: 20px !important;
  }

  /* Shrink blur background on badges */
  .app-showcase .hero-section-blur-background-2 {
    width: 50% !important;
    height: 50% !important;
    filter: blur(16px) !important;
  }

  /* Shrink badge heading text */
  .app-showcase .hero-section-main-header {
    font-size: 8px !important;
    line-height: 1.2 !important;
  }

  /* Shrink badge body text */
  .app-showcase .hero-section-main-text {
    font-size: 7px !important;
    line-height: 1.3 !important;
  }
}


@media screen and (max-width: 479px) {
  /* Smaller stat numbers on mobile */
  .stat-number {
    font-size: 40px !important;
  }
  .stat-desc {
    font-size: 13px !important;
  }
}
/* ── FAQ: smaller heading gap on mobile ─────────────────────── */
@media screen and (max-width: 479px) {
  .faq-section-padding {
    padding-top: 16px !important;
  }
  .faq-header-wrapper {
    padding-top: 0 !important;
    padding-bottom: 8px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .faq-content-wrapper {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ── HERO: center heading on tablet/mobile ── */
@media screen and (max-width: 991px) {
  .hero-header-wrapper {
    text-align: center !important;
    align-items: center !important;
  }
  .hero-title-bottom-wrapper {
    justify-content: center !important;
  }
}

/* ── Google Places Autocomplete Dropdown ── */
.pac-container,
.pac-item {
  box-sizing: border-box !important;
}

.pac-container {
  z-index: 99999 !important;
  position: fixed !important;
  width: auto !important;
  max-width: 600px !important;
  background: #1a0f04 !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 14px !important;
  border-top: none !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
  font-family: 'Urbanist', sans-serif !important;
  margin-top: 0 !important;
  padding: 6px !important;
  overflow: hidden !important;
}

.pac-item {
  background: transparent !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: background 0.15s ease !important;
  color: rgba(242,242,242,0.85) !important;
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(201,127,42,0.12) !important;
  border-radius: 10px !important;
}

.pac-item-query {
  font-family: 'Outfit', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #f2f2f2 !important;
  padding-right: 6px !important;
}

.pac-matched {
  color: #c97f2a !important;
  font-weight: 700 !important;
}

.pac-icon {
  display: none !important;
}

.pac-item-query + span {
  font-size: 12px !important;
  color: rgba(242,242,242,0.4) !important;
}

/* Keep powered by Google but style it subtly */
.pac-container:after {
  background-color: #1a0f04 !important;
  padding: 4px 10px !important;
  font-size: 11px !important;
  opacity: 0.4 !important;
}
