/* ═══════════════════════════════════════════════════════════
   ZENCY DESIGN SYSTEM — Shared CSS
   Dark luxury tech aesthetic for dental/medical SaaS
═══════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #06080f;
  color: #f1f5f9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Noise overlay ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .35;
}

/* ── Glass / Card ── */
.glass {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .08);
}

.card {
  background: linear-gradient(145deg, rgba(22, 32, 52, .85) 0%, rgba(6, 8, 15, .97) 100%);
  border: 1px solid rgba(255, 255, 255, .08);
}

/* ── Gradient text ── */
.grad {
  background: linear-gradient(135deg, #818cf8 0%, #2dd4bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-warm {
  background: linear-gradient(135deg, #f472b6, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grad-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ── */
.btn-cta {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 0 32px -8px rgba(99, 102, 241, .5);
  transition: box-shadow .25s, transform .15s;
}
.btn-cta:hover {
  box-shadow: 0 0 50px -8px rgba(99, 102, 241, .7);
  transform: translateY(-2px);
}
.btn-cta:active { transform: scale(.97); }

.btn-teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 0 32px -8px rgba(20, 184, 166, .4);
  transition: box-shadow .25s, transform .15s;
}
.btn-teal:hover {
  box-shadow: 0 0 50px -8px rgba(20, 184, 166, .6);
  transform: translateY(-2px);
}
.btn-teal:active { transform: scale(.97); }

/* ── Glow card border ── */
.glow-card { position: relative; }
.glow-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99, 102, 241, .4), rgba(45, 212, 191, .2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Ticker ── */
.ticker-outer { overflow: hidden; }
.ticker-inner {
  display: flex;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }

/* ── FAQ ── */
details summary::-webkit-details-marker { display: none; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform .25s; display: inline-block; }

/* ── Scroll dot ── */
@keyframes scrollDown {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(8px); opacity: 0; }
}
.scroll-dot { animation: scrollDown 1.4s ease-in-out infinite; }

/* ── Bot widget ── */
#bot-widget { transition: all .4s cubic-bezier(.34, 1.56, .64, 1); }
#bot-widget.open {
  transform: scale(1) translateY(0) !important;
  opacity: 1 !important;
  pointer-events: all !important;
}
#bot-widget.closed {
  transform: scale(0.85) translateY(24px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Mobile menu ── */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1), opacity .25s;
  opacity: 0;
}
#mobile-menu.open { max-height: 420px; opacity: 1; }

/* ── Hamburger animation ── */
#ham1, #ham2, #ham3 { transition: all .25s ease; transform-origin: center; }
.nav-open #ham1 { transform: translateY(7px) rotate(45deg); }
.nav-open #ham2 { opacity: 0; transform: scaleX(0); }
.nav-open #ham3 { transform: translateY(-7px) rotate(-45deg); width: 20px; }

/* ── Message animation ── */
.msg { opacity: 0; animation: slideUp .4s ease forwards; }
.msg:nth-child(1) { animation-delay: .3s; }
.msg:nth-child(2) { animation-delay: 1.1s; }
.msg:nth-child(3) { animation-delay: 2s; }
.msg:nth-child(4) { animation-delay: 2.9s; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Section padding ── */
.sec { padding: 4rem 1.25rem; }
@media (min-width: 640px) { .sec { padding: 6rem 1.5rem; } }

/* ── Animations — Keyframes ── */
@keyframes blob {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -50px) scale(1.1); }
  66%  { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Delay helpers ── */
.d1 { animation-delay: .4s; }
.d2 { animation-delay: .9s; }
.d3 { animation-delay: 1.4s; }

/* ── Reveal animation (scrollytelling) ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ── Timeline ── */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(99,102,241,.3) 0%, rgba(45,212,191,.3) 100%);
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .timeline-line { left: 24px; }
}

/* ── Dropdown nav ── */
.nav-dropdown { position: relative; }
.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  min-width: 240px;
}
.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown-content:hover {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* ── Feature matrix table ── */
.feature-matrix th,
.feature-matrix td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.feature-matrix th { font-weight: 600; color: #f1f5f9; }
.feature-matrix td { color: #94a3b8; font-size: .875rem; }

/* ── Mobile bot widget full-screen ── */
@media (max-width: 640px) {
  #bot-widget.open {
    position: fixed !important;
    inset: auto 0.75rem 88px 0.75rem !important;
    width: auto !important;
    height: calc(100dvh - 110px) !important;
    border-radius: 1.5rem !important;
  }
  #bot-toggle { width: 56px !important; height: 56px !important; }
}

/* ── ROI calculator ── */
.roi-highlight {
  background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(45,212,191,.08));
  border: 1px solid rgba(99,102,241,.2);
}

/* ── Video placeholder ── */
.vsl-placeholder {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1.5rem;
}
.vsl-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  transition: background .3s;
}
.vsl-placeholder:hover::after { background: rgba(0,0,0,.2); }
.vsl-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, background .3s;
}
.vsl-placeholder:hover .vsl-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(99,102,241,.4);
}

/* ── Blog cards ── */
.blog-card {
  transition: transform .3s, border-color .3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99,102,241,.3);
}

/* ── Badge pill ── */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .875rem;
  border-radius: 9999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE & TOUCH — iOS/Android best-in-class UX
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties for safe areas ── */
:root {
  --safe-top:    env(safe-area-inset-top,    0px);
  --safe-right:  env(safe-area-inset-right,  0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left,   0px);
}

/* ── Base: prevent iOS text scaling + remove tap flash ── */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
  overscroll-behavior-y: contain;
}

/* ── Prevent iOS long-press callout on images/links ── */
img, a {
  -webkit-touch-callout: none;
}

/* ── Non-selectable UI elements ── */
.btn-cta, .btn-teal, #bot-toggle, #hamburger, .badge-pill, nav {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* ── Minimum 44×44px touch targets (Apple HIG) ── */
.btn-cta, .btn-teal {
  min-height: 44px;
}
#bot-toggle {
  min-width: 48px;
  min-height: 48px;
}
#hamburger {
  min-width: 44px;
  min-height: 44px;
}

/* ── Touch active feedback (replaces hover on touch devices) ── */
@media (hover: none) and (pointer: coarse) {
  .btn-cta:active  { transform: scale(0.96); opacity: 0.88; transition: transform .08s, opacity .08s !important; }
  .btn-teal:active { transform: scale(0.96); opacity: 0.88; transition: transform .08s, opacity .08s !important; }

  /* Disable broken hover effects on touch */
  .btn-cta:hover  { transform: none; box-shadow: 0 0 32px -8px rgba(99,102,241,.5); }
  .btn-teal:hover { transform: none; box-shadow: 0 0 32px -8px rgba(20,184,166,.4); }
  .blog-card:hover { transform: none; border-color: rgba(255,255,255,.08); }
  .vsl-placeholder:hover::after  { background: rgba(0,0,0,.35); }
  .vsl-placeholder:hover .vsl-play-btn { transform: translate(-50%,-50%) scale(1); background: rgba(255,255,255,.15); }

  /* Active tap ripple feel on links */
  a:not(.btn-cta):not(.btn-teal):active { opacity: 0.65; transition: opacity .08s; }

  /* Touch: fix dropdown — hover doesn't work */
  .nav-dropdown-content { pointer-events: none !important; opacity: 0 !important; }
  .nav-dropdown-content.touch-open {
    opacity: 1 !important;
    pointer-events: all !important;
    transform: translateX(-50%) translateY(0) !important;
  }
}

/* ── iOS input zoom fix — inputs must be ≥16px ── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="password"],
select,
textarea {
  font-size: 16px !important;
  transform: translateZ(0);
}

/* ── Safe area: navbar ── */
#nav {
  padding-top: max(0px, var(--safe-top));
}
/* Compensate spacer for notched phones */
#nav + div[style*="height:64px"] {
  height: calc(64px + max(0px, var(--safe-top))) !important;
}

/* ── Safe area: bot widget floating container ── */
.bot-float-wrap {
  bottom: calc(1.25rem + var(--safe-bottom)) !important;
  right: calc(1rem + var(--safe-right)) !important;
}
@media (min-width: 768px) {
  .bot-float-wrap {
    right: calc(1.5rem + var(--safe-right)) !important;
  }
}

/* ── Mobile bot widget full-screen with safe area ── */
@media (max-width: 640px) {
  #bot-widget.open {
    position: fixed !important;
    inset: auto 0.75rem calc(88px + var(--safe-bottom)) 0.75rem !important;
    width: auto !important;
    height: calc(100dvh - 110px - var(--safe-bottom)) !important;
    border-radius: 1.5rem !important;
  }
  #bot-toggle { width: 56px !important; height: 56px !important; }
}

/* ── Scroll lock when mobile menu is open ── */
/* NOTE: position:fixed on body breaks iOS touch events — scroll is locked via
   touchmove preventDefault in JS instead */
body.menu-open {
  overflow: hidden;
}

/* ── Mobile nav links: big touch targets ── */
#mobile-menu a {
  min-height: 52px;
  display: flex;
  align-items: center;
}

/* ── Momentum scrolling for overflowing containers ── */
.scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.scroll-x::-webkit-scrollbar { display: none; }
.scroll-x > * { scroll-snap-align: start; flex-shrink: 0; }

/* ── Feature matrix: sticky first column + horizontal scroll ── */
.feature-matrix-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 1rem;
}
.feature-matrix-wrap::-webkit-scrollbar { display: none; }

@media (max-width: 768px) {
  .feature-matrix { font-size: .8125rem; min-width: 520px; }
  .feature-matrix th,
  .feature-matrix td { padding: .5rem .625rem; }
  .feature-matrix th:first-child,
  .feature-matrix td:first-child {
    position: sticky;
    left: 0;
    background: #0c0f1a;
    z-index: 1;
    min-width: 110px;
  }
}

/* ── Swipe hint label ── */
.swipe-hint {
  display: block;
  text-align: center;
  color: #475569;
  font-size: .75rem;
  padding: .375rem 0;
  pointer-events: none;
}
@media (min-width: 769px) { .swipe-hint { display: none; } }

/* ── Ticker: GPU acceleration ── */
.ticker-inner {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ── Blob: lighter on mobile (perf) ── */
@media (max-width: 768px) {
  .animate-blob { animation-duration: 16s; opacity: .7; }
}

/* ── Smooth momentum for page scroll ── */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ── Reduced motion: respect system pref ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ticker-inner { animation: none; transform: none; }
  .scroll-dot   { animation: none; }
  .animate-blob, .animate-float { animation: none; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Focus styles (keyboard + switch access) ── */
:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 3px;
  border-radius: 6px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── Landscape mobile: compact sections ── */
@media (max-height: 500px) and (orientation: landscape) {
  .sec { padding: 2.5rem 1rem; }
}

/* ── Typography: fluid sizes on mobile ── */
@media (max-width: 640px) {
  h1, h2, h3 {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  p { line-height: 1.7; }
}

/* ── Prevent image drag ── */
img {
  -webkit-user-drag: none;
  user-select: none;
}

/* ── Android-style ripple effect for interactive cards ── */
.ripple {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,.12) 0%, transparent 65%);
  opacity: 0;
  transform: scale(0);
  transition: transform .4s ease, opacity .4s ease;
  pointer-events: none;
}
.ripple:active::after {
  opacity: 1;
  transform: scale(2.5);
  transition: 0s;
}

/* ── Utility: hide scrollbar ── */
.no-scrollbar { scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════════════════════════
   MOBILE UX/CRO OVERHAUL — 375px-first optimizations
═══════════════════════════════════════════════════════════ */

/* ── Sticky mobile CTA bar ── */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 48;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(8, 11, 20, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 10px;
    align-items: center;
  }
  .mobile-sticky-cta.visible {
    transform: translateY(0);
  }
  .mobile-sticky-cta .sticky-cta-btn {
    flex: 1;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .mobile-sticky-cta .sticky-cta-primary {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    box-shadow: 0 0 24px -4px rgba(99, 102, 241, 0.5);
  }
  .mobile-sticky-cta .sticky-cta-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 0 0 auto;
    padding: 14px;
    border-radius: 14px;
  }

  /* ── Compensate page bottom so sticky CTA doesn't overlap content ── */
  body { padding-bottom: 72px; }

  /* ── Hero: tighter, CTA-first approach ── */
  .hero-mobile-compact .hero-badge {
    font-size: 10px !important;
    padding: 6px 12px !important;
    margin-bottom: 16px !important;
  }
  .hero-mobile-compact h1 {
    font-size: 1.85rem !important;
    line-height: 1.12 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.02em;
  }
  .hero-mobile-compact .hero-subtitle {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
  }
  .hero-mobile-compact .hero-trust-badge {
    font-size: 10px !important;
    margin-bottom: 20px !important;
    padding: 5px 10px !important;
  }
  .hero-mobile-compact .hero-ctas {
    margin-bottom: 16px !important;
  }
  .hero-mobile-compact .hero-ctas a {
    padding: 14px 16px !important;
    font-size: 14px !important;
    border-radius: 14px !important;
  }
  .hero-mobile-compact .hero-proof {
    font-size: 12px !important;
    gap: 12px !important;
  }

  /* ── Phone mockup: shorter on mobile ── */
  .phone-mockup-mobile {
    height: 380px !important;
  }

  /* ── Demo iframe: shorter on mobile ── */
  .demo-iframe-wrap {
    height: 440px !important;
  }

  /* ── Section padding: tighter on mobile ── */
  .sec {
    padding: 2.5rem 1rem !important;
  }

  /* ── Section headings: smaller on mobile ── */
  .sec h2 {
    font-size: 1.65rem !important;
    line-height: 1.15 !important;
  }

  /* ── Cards: tighter padding on mobile ── */
  .card-compact-mobile {
    padding: 20px !important;
  }

  /* ── Stats cards: tighter ── */
  .stats-grid-mobile .card {
    padding: 16px 12px !important;
  }
  .stats-grid-mobile .card p:first-of-type {
    font-size: 1.5rem !important;
  }

  /* ── Pricing: horizontal scroll on mobile ── */
  .pricing-scroll-mobile {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .pricing-scroll-mobile::-webkit-scrollbar { display: none; }
  .pricing-scroll-mobile > * {
    scroll-snap-align: center;
    flex: 0 0 85vw !important;
    max-width: 320px;
  }

  /* ── Process steps: tighter spacing ── */
  .process-steps-mobile {
    gap: 2.5rem !important;
  }
  .process-steps-mobile .grid {
    gap: 1rem !important;
  }
  .process-steps-mobile .card {
    padding: 20px !important;
  }

  /* ── Testimonials: horizontal scroll ── */
  .testimonials-scroll-mobile {
    display: flex !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px !important;
    scrollbar-width: none;
  }
  .testimonials-scroll-mobile::-webkit-scrollbar { display: none; }
  .testimonials-scroll-mobile > * {
    scroll-snap-align: start;
    flex: 0 0 85vw !important;
    max-width: 320px;
  }

  /* ── FAQ: tighter on mobile ── */
  .faq-mobile details summary {
    padding: 14px 16px !important;
    font-size: 14px !important;
  }
  .faq-mobile details > div {
    padding: 0 16px 14px !important;
    font-size: 13px !important;
  }

  /* ── Final CTA section: tighter ── */
  .cta-final-mobile {
    padding: 28px 20px !important;
    border-radius: 1.5rem !important;
  }
  .cta-final-mobile h2 {
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
  }
  .cta-final-mobile p {
    font-size: 13px !important;
  }

  /* ── Hide floating bot widget on mobile landing (sticky CTA replaces it) ── */
  .hide-widget-mobile .bot-float-wrap {
    display: none !important;
  }

  /* ── Comparison cards: tighter ── */
  .comparison-mobile .card {
    padding: 20px !important;
  }
  .comparison-mobile ul {
    gap: 10px !important;
  }
  .comparison-mobile li {
    font-size: 13px !important;
  }

  /* ── Before/After: visual separator ── */
  .vs-divider-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0;
  }
  .vs-divider-mobile span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #14b8a6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 11px;
    color: #fff;
    letter-spacing: .05em;
  }

  /* ── ROI callout: full width ── */
  .roi-highlight {
    display: flex;
    text-align: left;
  }

  /* ── Pillar cards: stack nicely ── */
  .pillars-mobile {
    gap: 10px !important;
  }

  /* ── Offer comparison mini: ensure gap ── */
  .offer-compare-mobile {
    gap: 12px !important;
  }
  .offer-compare-mobile > a {
    padding: 20px !important;
  }

  /* ── Hide desktop-only elements on mobile ── */
  .desktop-only { display: none !important; }
}

/* ── Show mobile-only elements ── */
.mobile-only { display: none; }
@media (max-width: 768px) {
  .mobile-only { display: block; }
}

/* ── Blobs: much lighter on mobile for perf ── */
@media (max-width: 768px) {
  .animate-blob {
    animation-duration: 20s !important;
    opacity: 0.4 !important;
    filter: blur(100px) !important;
  }
  /* Reduce body noise overlay on mobile */
  body::after {
    opacity: 0.15 !important;
  }
}
