/* ============================================================
   Auto Clientz — Light / Clean Theme
   Headings: Instrument Serif · Body: Poppins
   ============================================================ */

:root {
  --bg:          #ffffff;
  --bg-soft:     #f4f7fb;
  --bg-tint:     #eef4ff;
  --text:        #0c1b2a;   /* deep navy */
  --text-muted:  #5b6b7a;
  --accent:      #16A6FC;   /* unified brand blue (matches buttons) */
  --accent-dark: #0d8ad9;
  --accent-soft: #d6efff;
  --btn-action:      #16A6FC;   /* action button */
  --btn-action-hover:#0d8ad9;
  --border:      rgba(12, 27, 42, 0.10);
  --shadow:      0 18px 50px rgba(13, 38, 76, 0.10);
  --nav-bg:      rgba(255, 255, 255, 0.97);
  --footer-bg:   #0c1b2a;
  --danger:      #f25f7c;
  --radius:      20px;
  --max-width:   1200px;
}

[data-theme="dark"] {
  --bg:          #0c0e13;
  --bg-soft:     #14171e;
  --bg-tint:     #11141b;
  --text:        #eef2f6;
  --text-muted:  #9aa6b3;
  --accent:      #16A6FC;   /* unified brand blue (matches buttons) */
  --accent-dark: #0d8ad9;
  --accent-soft: rgba(22, 166, 252, 0.16);
  --btn-action:      #16A6FC;   /* action button (dark mode) */
  --btn-action-hover:#0d8ad9;
  --border:      rgba(255, 255, 255, 0.10);
  --shadow:      0 18px 50px rgba(0, 0, 0, 0.55);
  --nav-bg:      rgba(12, 14, 19, 0.97);
  --footer-bg:   #08090c;
}

body { transition: background .3s ease, color .3s ease; }

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

html {
  scroll-behavior: smooth;
  background: var(--bg);              /* base page color sits behind the neural canvas */
  transition: background .3s ease;
  overflow-x: hidden;                 /* belt-and-suspenders against horizontal overflow */
}

body {
  font-family: "Poppins";
  background: transparent;           /* transparent so #neuralBg shows through */
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* content layers sit ABOVE the fixed neural canvas (#neuralBg, z-index:0) */
main, .footer { position: relative; z-index: 1; }

h1, h2, h3, h4, h5, h6,
.stat-number, .nav__logo, .footer__logo {
  font-family: "Poppins";
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); }

p  { color: var(--text-muted); }
em { font-style: italic; color: var(--btn-action); }

a { color: inherit; text-decoration: none; }

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

.eyebrow {
  display: inline-block;
  font-family: "Poppins";
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn--primary {
  background: var(--btn-action);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 166, 252, 0.30);
}
.btn--primary:hover { background: var(--btn-action-hover); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover { background: var(--bg-soft); transform: translateY(-2px); }
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: var(--nav-bg);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.nav__logo { font-size: 1.6rem; flex-shrink: 0; }
.nav__logo img { height: 26px; width: auto; display: block; }
.nav__logo .logo--dark { display: none; }
[data-theme="dark"] .nav__logo .logo--light { display: none; }
[data-theme="dark"] .nav__logo .logo--dark { display: block; }
.nav__menu { display: flex; gap: 32px; }
.nav__menu a {
  font-size: 0.95rem; font-weight: 400; color: var(--text-muted);
  transition: color .2s ease;
}
.nav__menu a:hover { color: var(--accent); }
.nav__toggle { display: none; background: none; border: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); display: block; transition: .3s; }
.nav__right { display: flex; align-items: center; gap: 10px; }
.nav__cta { padding: 9px 18px; font-size: 0.85rem; }
.nav__menu-cta { display: none; } /* only shown inside the open mobile menu */
.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.theme-toggle:hover { transform: translateY(-2px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 200px 0 120px;
  text-align: center;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(22,166,252,0.10), transparent 60%);
  z-index: -2;
  filter: blur(20px);
}
/* Hero "bubble" orbs removed — the neural-network canvas is the single background animation */
.hero__bg { display: none; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.5;
  will-change: transform;
}
.hero__orb--1 { width: 420px; height: 420px; background: var(--accent);  top: 2%;  left: 8%; }
.hero__orb--2 { width: 360px; height: 360px; background: #6f9dff;        top: 14%; right: 6%; }
.hero__orb--3 { width: 320px; height: 320px; background: #9bbcff;        bottom: 0%; left: 38%; }
[data-theme="dark"] .hero__orb { opacity: 0.62; }
.hero__inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 1; }
.hero__title { margin: 0.4rem 0 1.6rem; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 640px;
  margin: 0 auto 2.4rem;
}
.hero__cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-soft);
}
.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
}
.marquee__track span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ---------- Stats ---------- */
.stats { padding: 90px 0; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  display: block;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--text);
  line-height: 1;
}
.stat p { font-size: 0.95rem; margin-top: 8px; font-weight: 400; }

/* ---------- Section ---------- */
.section { padding: 110px 0; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section__head h2 { margin-top: 0.4rem; }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--accent-soft);
}
.card__num {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.card h3 { margin-bottom: 10px; }
.card--cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.card--cta h3, .card--cta p { color: #fff; }
.card--cta p { opacity: 0.9; }
.card--cta .btn { background: #fff; color: var(--accent); margin-top: 8px; }

/* ---------- Services CTA strip ---------- */
.cta-strip {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--btn-action-hover), var(--btn-action));
  box-shadow: 0 24px 50px rgba(22,166,252,.18);
  box-sizing: border-box;
}
.cta-strip__text { min-width: 0; }
.cta-strip h3 {
  color: #fff;
  font-size: 1.45rem;
  margin: 0 0 6px;
}
.cta-strip p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-size: 1rem;
}
.cta-strip .btn--primary {
  background: #fff;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}
.cta-strip .btn--primary:hover { background: #f0f0f0; }
@media (max-width: 600px) {
  .cta-strip { padding: 26px 22px; text-align: center; justify-content: center; }
  .cta-strip .btn--primary { width: 100%; }
}

/* ---------- AI Voice ---------- */
.voice {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-tint) 100%);
}
.voice__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.voice__text h2 { margin: 0.4rem 0 1.2rem; }
.voice__list { list-style: none; margin: 1.6rem 0 2rem; }
.voice__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 400;
}
.voice__list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 600;
}
.voice__visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  text-align: center;
}
.orb {
  position: relative;
  width: 96px; height: 96px;
  margin: 0 auto 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
}
.orb__label { color: #fff; font-size: 0.8rem; font-weight: 500; }
.orb__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: orbPulse 2s ease-out infinite;
}
@keyframes orbPulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.8); opacity: 0; }
}
.wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 78px;
  margin: 6px 0 4px;
  overflow: hidden;
}
.wave__bar {
  width: 6px;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-soft));
  transform: scaleY(0.3);
  transform-origin: center;
}
.voice__caption { color: var(--text-muted); font-size: 0.95rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  padding: 32px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__num {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 2.6rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; }

/* ---------- About ---------- */
.about__inner { max-width: 840px; margin: 0 auto; text-align: center; }
.about__title { margin: 0.4rem auto 1rem; max-width: 760px; }
.about__sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.8rem;
}
.about__text {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.about__close {
  font-family: "Poppins";
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--text);
}

/* ---------- Quotes ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
}
.quote blockquote {
  font-family: "Poppins";
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 18px;
}
.quote figcaption { color: var(--text-muted); font-size: 0.9rem; font-weight: 400; }

/* ---------- CTA Band ---------- */
.cta {
  padding: 130px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
}
.cta__inner { max-width: 720px; margin: 0 auto; }
.cta h2 { color: #fff; margin-bottom: 1rem; }
.cta p { color: rgba(255,255,255,0.9); margin-bottom: 2rem; font-size: 1.1rem; }
.cta .btn--primary { background: #fff; color: var(--accent); box-shadow: 0 12px 30px rgba(0,0,0,0.18); }
.cta .btn--primary:hover { background: #f0f0f0; }
.cta .btn { margin: 8px 8px 0; }
.cta .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.cta .btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ---------- Revenue Leak (theme-aware) ---------- */
.leak {
  padding: 120px 0;
  background: var(--bg-soft);
  background-image: radial-gradient(circle at 30% 0%, rgba(22,166,252,0.10), transparent 55%);
  color: var(--text);
}
.leak__inner > * { min-width: 0; }   /* let columns shrink instead of overflowing */
.leak__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* phone mockup */
.phone { max-width: 420px; margin: 0 auto; width: 100%; }
.phone__head { text-align: center; margin-bottom: 30px; }
.phone__clock {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.phone__clock svg { width: 22px; height: 22px; }
.phone__hour { display: block; font-family: "Poppins"; font-weight: 600; font-size: 4rem; line-height: 1.1; margin-top: 10px; color: var(--text); }
.phone__date { display: block; color: var(--text-muted); font-size: 0.95rem; }

/* ---- iPhone mockup frame (lock screen) ---- */
.iphone {
  position: relative;
  width: 100%; max-width: 340px; margin: 0 auto;   /* desktop = 340px (column is wider); mobile = fills column, never forces page wider */
  box-sizing: border-box;
  background: #0b0d12;
  border-radius: 56px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(8,18,33,.32), inset 0 0 0 2px rgba(255,255,255,.07), 0 0 0 1px rgba(0,0,0,.4);
}
[data-theme="dark"] .iphone { box-shadow: 0 40px 80px rgba(0,0,0,.6), inset 0 0 0 2px rgba(255,255,255,.09), 0 0 0 1px rgba(0,0,0,.6); }
.iphone__island {
  position: absolute; top: 28px; left: 50%; transform: translateX(-50%);
  width: 104px; height: 28px; background: #000; border-radius: 999px; z-index: 5;
}
.iphone__screen {
  position: relative; overflow: hidden;
  width: 100%; box-sizing: border-box;   /* fills frame — was sizing to content (caused Android overflow) */
  border-radius: 44px;
  background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg-soft) 55%, var(--bg) 100%);
  padding-bottom: 26px;
}
.iphone__statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 26px 0;
  font-family: "Poppins"; font-weight: 600; font-size: 0.82rem; color: var(--text);
}
.iphone__sb-icons { display: inline-flex; align-items: center; gap: 6px; color: var(--text); }
.iphone__sb-icons svg { height: 11px; width: auto; display: block; }
/* the lock-screen content sits inside the screen now */
.iphone .phone { max-width: none; margin: 0; padding: 14px 18px 0; }
.iphone .phone__head { margin-bottom: 24px; }
.iphone .notif:last-child { margin-bottom: 0; }
.notif {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 15px 17px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(13, 38, 76, 0.05);
}
.notif__icon {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
}
.notif__icon svg { width: 20px; height: 20px; }
.notif__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.notif__top { display: flex; justify-content: space-between; align-items: baseline; }
.notif__title { font-weight: 500; color: var(--text); }
.notif__time { color: var(--text-muted); font-size: 0.8rem; }
.notif__sub { color: var(--text-muted); font-size: 0.92rem; }
.notif__loss { color: var(--accent); font-size: 0.82rem; font-weight: 500; margin-top: 2px; }
/* copy + revenue card */
.eyebrow--danger { color: var(--accent); background: var(--accent-soft); }
.leak__text h2 { color: var(--text); margin: 0.4rem 0 1.2rem; }
.leak .danger { color: var(--accent); font-style: italic; }
.leak__text > p { color: var(--text-muted); max-width: 460px; font-size: 1.1rem; }
.leak__card {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  background: var(--bg);
}
.leak__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.leak__label { display: block; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; }
.leak__val { font-family: "Poppins"; font-weight: 600; font-size: 2rem; color: var(--text); }
.leak__val.danger { color: var(--accent); }
.leak__divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.leak__big {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: "Poppins"; font-weight: 600; font-size: 3rem; color: var(--text);
}
.leak__big-icon { width: 34px; height: 34px; color: var(--accent); }

/* ---------- Footer ---------- */
.footer { padding: 70px 0 30px; background: var(--footer-bg); color: #fff; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__logo { font-size: 1.7rem; display: block; margin-bottom: 12px; }
.footer__logo img { height: 38px; width: auto; display: block; }
.footer__brand p { color: rgba(255,255,255,0.6); max-width: 320px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { color: rgba(255,255,255,0.7); transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 8px; }
.footer__contact { display: flex; flex-direction: column; gap: 6px; }
.footer__contact a { color: #8ab4ff; font-weight: 400; transition: color .2s; }
.footer__contact a:hover { color: #fff; }
.footer__address { font-style: normal; color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.5; margin-top: 4px; }
.modal-fallback { padding: 30px 24px; text-align: center; color: var(--text-muted); font-size: 1.06rem; line-height: 1.75; }
.modal-fallback a { color: var(--accent); font-weight: 600; }
.footer__bottom { padding-top: 24px; color: rgba(255,255,255,0.5); font-size: 0.85rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,255,255,0.5); transition: color .2s ease; }
.footer__legal a:hover { color: #fff; }

/* ---------- Legal pages (Privacy / Terms) ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal > p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; margin: 0 0 1.1rem; }
.legal h2 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); margin: 2.4rem 0 0.9rem; color: var(--text); }
.legal h2:first-of-type { margin-top: 1rem; }
.legal ul { margin: 0 0 1.3rem; padding-left: 1.3rem; }
.legal li { color: var(--text-muted); font-size: 1.02rem; line-height: 1.7; margin-bottom: 0.6rem; }
.legal strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--accent-dark); }
.legal-callout { font-weight: 600; color: var(--text); background: var(--accent-soft); border-left: 3px solid var(--accent); border-radius: 10px; padding: 18px 22px; margin: 0 0 1.3rem; }

/* ---------- Booking Modal ---------- */
.booking-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.booking-modal.open { display: block; }
.booking-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px); }
.booking-modal__dialog {
  position: relative;
  width: calc(100% - 40px);
  max-width: 680px;
  margin: 5vh auto;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: modalIn .3s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.booking-modal__close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none;
  font-size: 1.9rem; line-height: 1;
  color: var(--text-muted); cursor: pointer; z-index: 2;
}
.booking-modal__close:hover { color: var(--text); }
.booking-modal__title { padding: 24px 26px 4px; color: var(--text); }
.booking-modal__subtitle { padding: 2px 26px 8px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.45; }
.booking-modal__body { padding: 10px 18px 22px; overflow-y: auto; }
.booking-modal__body iframe { width: 100%; min-height: 720px; display: block; }

/* ---------- Promo popup (professional teaser → opens calendar) ---------- */
.promo {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}
.promo.open { opacity: 1; visibility: visible; pointer-events: auto; }
.promo__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.55);
}
.promo__card {
  position: relative; width: 100%; max-width: 432px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 26px; padding: 40px 36px 30px; text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8, 22, 40, .28), 0 2px 0 rgba(255,255,255,.04) inset;
  /* premium slide-up + scale, eased like a high-end site */
  opacity: 0; transform: translateY(28px) scale(.96);
  transition: opacity .5s ease, transform .55s cubic-bezier(.16, 1, .3, 1);
  transition-delay: .08s;
}
.promo.open .promo__card { opacity: 1; transform: none; }
/* thin gradient accent bar across the top */
.promo__card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--btn-action), var(--btn-action-hover));
}
.promo__close {
  position: absolute; top: 14px; right: 16px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-soft); border: none; font-size: 1.4rem; line-height: 1;
  color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.promo__close:hover { background: var(--border); color: var(--text); }
.promo__badge {
  width: 66px; height: 66px; margin: 6px auto 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--btn-action), var(--btn-action-hover));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(22, 166, 252, .42);
}
.promo__badge svg { width: 32px; height: 32px; }
.promo__eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  padding: 5px 13px; border-radius: 999px; margin-bottom: 12px;
}
.promo__title { color: var(--text); font-size: 1.55rem; margin-bottom: 10px; }
.promo__text { color: var(--text-muted); font-size: 0.97rem; line-height: 1.55; margin: 0 auto 20px; max-width: 330px; }
.promo__perks {
  list-style: none; display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px 10px; margin-bottom: 24px;
}
.promo__perks li {
  font-size: 0.78rem; font-weight: 500; color: var(--text);
  background: var(--bg-soft); border: 1px solid var(--border);
  padding: 6px 12px 6px 26px; border-radius: 999px; position: relative;
}
.promo__perks li::before {
  content: ""; position: absolute; left: 9px; top: 50%; transform: translateY(-50%);
  width: 11px; height: 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A6FC' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5 11-11'/%3E%3C/svg%3E") no-repeat center / contain;
}
.promo__cta { width: 100%; justify-content: center; }
.promo__later {
  display: block; margin: 14px auto 0; background: none; border: none;
  color: var(--text-muted); font-size: 0.88rem; cursor: pointer;
}
.promo__later:hover { color: var(--text); text-decoration: underline; }

/* ---- Premium staggered entrance for the popup's inner content ---- */
.promo__badge, .promo__eyebrow, .promo__title, .promo__text, .promo__perks, .promo__later {
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .6s cubic-bezier(.16, 1, .3, 1);
}
.promo__cta {
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s ease, transform .35s cubic-bezier(.16, 1, .3, 1),
              background .25s ease, box-shadow .25s ease;
}
.promo__badge { transform: translateY(8px) scale(.65); }     /* badge pops in */
.promo.open .promo__badge   { opacity: 1; transform: none; transition-delay: .14s; }
.promo.open .promo__eyebrow { opacity: 1; transform: none; transition-delay: .22s; }
.promo.open .promo__title   { opacity: 1; transform: none; transition-delay: .29s; }
.promo.open .promo__text    { opacity: 1; transform: none; transition-delay: .36s; }
.promo.open .promo__perks   { opacity: 1; transform: none; transition-delay: .43s; }
.promo.open .promo__cta     { opacity: 1; transform: none; transition-delay: .50s; }
.promo.open .promo__later   { opacity: 1; transform: none; transition-delay: .57s; }
/* living glow on the badge once it has settled in */
.promo.open .promo__badge { animation: promoBadgePulse 2.8s ease-in-out 1s infinite; }
@keyframes promoBadgePulse {
  0%, 100% { box-shadow: 0 12px 26px rgba(22, 166, 252, .42); }
  50%      { box-shadow: 0 16px 40px rgba(22, 166, 252, .64); }
}

/* ---------- Reveal animation base (JS adds visibility) ---------- */
.reveal { opacity: 0; transform: translateY(44px); }

/* ============================================================
   Responsive — mobile-first across all device classes
   Base styles above target large desktop / laptop (≥1201px).
   Tiers below: laptop/iPad-landscape · tablet/iPad-portrait ·
   phone · small phone. Plus a short-landscape guard.
   ============================================================ */

/* ---------- Small laptop & iPad landscape (≤1200px) ---------- */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .hero { padding: 180px 0 110px; }
  .section, .voice, .leak { padding: 100px 0; }
  .voice__inner { gap: 48px; }
  .section__head { margin-bottom: 52px; }
}

/* ---------- iPad / tablet (portrait) & down (≤900px) ---------- */
@media (max-width: 900px) {
  /* nav → hamburger */
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav__menu.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 24px; gap: 18px;
    box-shadow: var(--shadow);
    border-top: 1px solid var(--border);
  }
  .nav__menu.open .nav__menu-cta { display: inline-flex; margin-top: 6px; }
  /* hamburger → X */
  .nav__toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

  .hero { padding: 160px 0 90px; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }
  .cards, .quotes { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .voice__inner { grid-template-columns: 1fr; gap: 40px; }
  .voice__visual { max-width: 460px; margin: 0 auto; }
  .leak__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  /* tighten vertical rhythm */
  .section, .voice, .leak, .stats { padding: 80px 0; }
  .cta { padding: 90px 0; }
}

/* ---------- Large phones (≤600px) ---------- */
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .nav__logo { font-size: 1.4rem; }
  .nav__logo img { height: 22px; }
  .hero { padding: 132px 0 72px; }
  .stats { padding: 64px 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .cards, .quotes, .steps { grid-template-columns: 1fr; }
  .section, .voice, .leak { padding: 70px 0; }
  .section__head { margin-bottom: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .voice__visual { padding: 36px 22px; }
  .phone { max-width: 100%; }
  .phone__hour { font-size: 3.2rem; }
  .leak__card { padding: 24px 20px; }
  .leak__big { font-size: 2.4rem; }
  .leak__big-icon { width: 28px; height: 28px; }
  .quote blockquote { font-size: 1.2rem; }
  .btn { padding: 13px 24px; }
  .btn--lg { padding: 16px 32px; }
}

/* ---------- Small phones (≤400px) ---------- */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  h1 { font-size: clamp(2rem, 11vw, 2.6rem); }
  .stats__grid { grid-template-columns: 1fr; gap: 28px; }
  .leak__row { grid-template-columns: 1fr; gap: 18px; }
  /* full-width stacked CTAs */
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .eyebrow { font-size: 0.72rem; }
}

/* ---------- Short landscape (phones turned sideways) ---------- */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding: 120px 0 70px; }
}

/* ---------- Respect reduced-motion preference ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .orb__pulse { animation: none; }
}

/* ============================================================
   Portfolio ("Our Work") + Case Study pages
   ============================================================ */

/* compact sub-page hero (Portfolio / Case Study) */
.hero--sub { padding: 180px 0 70px; text-align: left; }
.hero--sub .hero__inner { max-width: var(--max-width); margin: 0; }
.hero--sub .hero__sub { margin: 0 0 2rem; }
.hero--sub .hero__cta { justify-content: flex-start; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-weight: 400; font-size: 0.92rem;
  margin-bottom: 1.2rem;
}
.back-link:hover { color: var(--accent); }

/* ---- Projects grid ---- */
.projects { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.project-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent-soft); }
.project-card__body { padding: 20px 24px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.project-card__tag { color: var(--accent); font-size: 0.85rem; font-weight: 500; }
.project-card__arrow {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, color .25s ease;
}
.project-card:hover .project-card__arrow { background: var(--accent); color: #fff; }

/* ---- Demo image placeholder (swap with real image later) ---- */
.case-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex; align-items: flex-end;
  padding: 26px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  overflow: hidden;
}
.case-thumb::after { /* subtle pattern */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 45%);
}
.case-thumb--dark { background: linear-gradient(135deg, #0c1b2a, #243a52); }
.case-thumb--soft { background: linear-gradient(135deg, #eef4ff, #c9ddff); }
.case-thumb--soft .case-thumb__title, .case-thumb--soft .case-thumb__demo { color: #0c1b2a; }

/* real photo cover (background-image set inline per card) + readable overlay */
.case-thumb--photo {
  background-size: cover; background-position: center;
}
.case-thumb--photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to top, rgba(8,18,33,.88) 0%, rgba(8,18,33,.35) 50%, rgba(8,18,33,.12) 100%);
}
.case-thumb--photo::after { background: none; }  /* drop the gradient-only highlight */
.case-thumb--photo .case-thumb__title { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.45); }
.case-thumb__title { position: relative; z-index: 1; font-size: 1.9rem; line-height: 1.05; color: #fff; }
.case-thumb__demo {
  position: absolute; top: 14px; left: 16px; z-index: 1;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-family: "Poppins"; font-weight: 500;
}
.case-badge {
  position: absolute; bottom: 14px; right: 14px; z-index: 1;
  background: rgba(255,255,255,0.92); color: #0c1b2a;
  font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: 999px;
  font-family: "Poppins";
}

/* ---- Philosophy band ---- */
.philosophy__card {
  background: linear-gradient(135deg, #0c1b2a, #1d3349);
  border-radius: var(--radius);
  padding: 72px 48px;
  text-align: center;
}
[data-theme="dark"] .philosophy__card { background: linear-gradient(135deg, #11141b, #1b2533); border: 1px solid var(--border); }
.philosophy__card h2 { color: #fff; }
.philosophy__card p { color: rgba(255,255,255,0.72); max-width: 660px; margin: 1rem auto 0; font-size: 1.08rem; }

/* ============ Case study detail page ============ */
.case-hero__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.case-hero__media .case-thumb { aspect-ratio: 4 / 3; border-radius: var(--radius); }
.case-hero__media .case-thumb__title { font-size: 2.4rem; }

.case-block { max-width: 860px; }
.case-block .eyebrow { margin-bottom: 0.8rem; }
.case-block p { font-size: 1.08rem; }
.problem-statement {
  font-family: "Poppins";
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  color: var(--text);
  max-width: 900px;
}
.problem-statement .q { color: var(--btn-action); }

/* solution cards reuse .cards/.card; highlight AI card */
.card--ai { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.card--ai h3, .card--ai p { color: #fff; }
.card--ai p { opacity: 0.92; }
.card--ai .card__num { color: rgba(255,255,255,0.85); }

/* results grid with loop counters */
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px 24px; }
.result .stat-number { display: block; font-size: clamp(2rem, 4vw, 3rem); color: var(--text); line-height: 1; }
.result p { margin-top: 8px; font-size: 0.92rem; font-weight: 400; color: var(--text-muted); }

/* case testimonial */
.case-quote { max-width: 880px; margin: 0 auto; text-align: center; }
.case-quote blockquote {
  font-family: "Poppins";
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.4; color: var(--text);
}
.case-quote figcaption { margin-top: 1.4rem; color: var(--accent); font-weight: 500; font-family: "Poppins"; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .projects { grid-template-columns: 1fr; }
  .case-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy__card { padding: 56px 28px; }
}
@media (max-width: 600px) {
  .hero--sub { padding: 140px 0 56px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
}

/* ---- Featured case studies teaser (homepage) ---- */
.section__lead { color: var(--text-muted); font-size: 1.15rem; margin-top: 1rem; }
.section__lead .stat-inline {
  font-family: "Poppins";
  font-weight: 600;
  color: var(--accent);
  font-size: 1.55rem;
  margin: 0 2px;
}
.projects--3 { grid-template-columns: repeat(3, 1fr); }
.casework__cta { text-align: center; margin-top: 46px; }
@media (max-width: 900px) {
  .projects--3 { grid-template-columns: 1fr; }
}

/* ============================================================
   Futuristic scroll FX — neural network bg + data-flow rail
   ============================================================ */
/* neural canvas is confined to the hero box (no longer a full-page background) */
#neuralBg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.95;
}

.flowrail {
  position: fixed; top: 0; bottom: 0; left: 26px;
  width: 2px; z-index: 50; pointer-events: none;
}
.flowrail__track { position: absolute; inset: 0; width: 2px; background: var(--border); }
.flowrail__fill {
  position: absolute; top: 0; left: 0; width: 2px; height: 0%;
  background: linear-gradient(180deg, var(--accent), rgba(22,166,252,0));
  box-shadow: 0 0 8px var(--accent);
}
.flowrail__dot {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px 2px var(--accent);
}
.flowrail__node {
  position: absolute; left: 50%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.flowrail__node.lit {
  background: var(--accent);
  box-shadow: 0 0 10px 1px var(--accent);
  transform: translate(-50%, -50%) scale(1.3);
}

@media (max-width: 900px) {
  .flowrail { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  #neuralBg { display: none; }
  .flowrail__dot { box-shadow: none; }
}

/* ============================================================
   AI Voice — live call demo (transcript, FB review, appt cards)
   ============================================================ */
.call { position: relative; width: 100%; text-align: left; }
.call__head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.call__head .orb { width: 48px; height: 48px; margin: 0; flex-shrink: 0; }
.call__head .orb__label { font-size: 0.82rem; }
.call__meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.call__title { font-family: "Poppins"; font-weight: 500; color: var(--text); font-size: 0.98rem; }
.call__status { font-size: 0.82rem; color: var(--text-muted); }
.call__timer { font-variant-numeric: tabular-nums; font-weight: 500; color: var(--accent); font-size: 0.95rem; }

.call__transcript {
  height: 232px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 10px;
  padding: 6px 4px; margin-bottom: 14px;
}
.call__transcript:empty::before {
  content: "Press play to hear a real AI booking call.";
  color: var(--text-muted); font-size: 0.9rem; margin: auto; text-align: center; max-width: 60%;
}
.bubble {
  max-width: 86%; padding: 10px 14px; border-radius: 16px;
  font-size: 0.9rem; line-height: 1.45;
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}
.bubble.in { opacity: 1; transform: none; }
.bubble__who { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 3px; opacity: .7; font-family: "Poppins"; }
.bubble--ai { align-self: flex-start; background: var(--bg-soft); color: var(--text); border: 1px solid var(--border); border-bottom-left-radius: 5px; }
.bubble--patient { align-self: flex-end; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; border-bottom-right-radius: 5px; }
.bubble--patient .bubble__who { color: #fff; }

.call__btn {
  width: 100%; padding: 12px; border-radius: 12px; border: none; cursor: pointer;
  background: var(--accent); color: #fff;
  font-family: "Poppins"; font-weight: 500; font-size: 0.95rem;
  transition: background .2s ease, transform .2s ease;
}
.call__btn:hover { background: var(--accent-dark); transform: translateY(-1px); }

.orb.speaking .orb__pulse { animation-duration: 1s; }
.wave { transition: opacity .3s ease; }

/* Facebook 5-star review popup */
.fbcard {
  position: absolute; top: 60px; right: 6px; width: 238px; z-index: 7;
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 14px 16px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(-10px) scale(.94); pointer-events: none;
  transition: opacity .4s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}
.fbcard.show { opacity: 1; transform: none; }
.fbcard__top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.fbcard__logo { width: 32px; height: 32px; border-radius: 8px; background: #1877f2; color: #fff; font-weight: 700; font-family: Georgia, serif; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.fbcard__name { display: block; font-weight: 500; font-size: 0.84rem; color: var(--text); font-family: "Poppins"; }
.fbcard__sub { display: block; font-size: 0.72rem; color: var(--text-muted); }
.fbcard__stars { display: flex; gap: 3px; margin-bottom: 6px; }
.fbcard__star { color: var(--border); font-size: 1.1rem; transform: scale(.5); transition: color .25s ease, transform .3s cubic-bezier(.2,1.6,.4,1); }
.fbcard__star.lit { color: #ffb300; transform: scale(1); }
.fbcard__text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.4; }

/* Appointment summary cards (image style) — inline in transcript, non-blocking */
.appt {
  display: flex; flex-direction: column; gap: 10px;
  margin: 6px 0 2px; width: 100%;
}
.appt__card {
  display: flex; align-items: center; gap: 13px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 16px; box-shadow: var(--shadow);
  opacity: 0; transform: translateX(34px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}
.appt__card.in { opacity: 1; transform: none; }
.appt__icon { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.appt__icon svg { width: 22px; height: 22px; }
.appt__body { display: flex; flex-direction: column; min-width: 0; }
.appt__label { font-size: 0.72rem; color: var(--text-muted); }
.appt__val { font-weight: 500; color: var(--text); font-size: 0.9rem; font-family: "Poppins"; }
.appt__val i { color: var(--text-muted); font-style: normal; margin: 0 5px; }

@media (max-width: 600px) {
  .fbcard { width: 200px; top: 54px; }
  .call__transcript { height: 200px; }
}

/* ===== v2 stage: calendar / info cards / appointment confirmed ===== */
/* stage auto-resizes to the active card (height set by JS); content top-aligned */
.call__stage { position: relative; height: 0; overflow: hidden; margin: 2px 0 12px; transition: height .45s cubic-bezier(.2,.8,.2,1); }
.call__hint,
.call__stage > .cal,
.call__stage > .infocards,
.call__stage > .confirmed,
.call__stage > .fbreview,
.call__stage > .call__summary {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.call__hint { align-items: center; text-align: center; color: var(--text-muted); font-size: 0.92rem; padding: 16px 12px; }
.call__stage > .fbreview { align-items: center; }
.call__stage > .show, .call__hint.show { opacity: 1; transform: none; }

/* calendar */
.cal__title { font-family: "Poppins"; font-weight: 500; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.cal__slots { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.cal__slot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; border-radius: 12px;
  background: var(--bg-soft); border: 1px solid var(--border);
  font-size: 0.9rem; color: var(--text); font-weight: 400;
  opacity: 0; transform: translateX(20px);
  transition: opacity .4s ease, transform .4s ease, background .3s ease, border-color .3s ease;
}
.cal__slot.in { opacity: 1; transform: none; }
.cal__slot em { font-style: normal; font-size: 0.8rem; color: var(--text-muted); }
.cal__slot.is-booked { opacity: .55; }
.cal__slot.is-booked span { text-decoration: line-through; }
.cal__slot.is-booked em { color: #e0526e; }
.cal__slot.is-reserved { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-color: transparent; color: #fff; transform: scale(1.03); box-shadow: var(--shadow); }
.cal__slot.is-reserved em { color: #fff; font-weight: 600; }

/* info cards (image style) */
.infocards { gap: 12px !important; justify-content: center !important; }
.infocard {
  display: flex; align-items: center; gap: 13px;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 16px; padding: 12px 16px;
  opacity: 0; transform: translateX(28px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}
.infocard.in { opacity: 1; transform: none; }
.infocard__icon { width: 42px; height: 42px; border-radius: 12px; background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.infocard__icon svg { width: 22px; height: 22px; }
.infocard__body { display: flex; flex-direction: column; min-width: 0; }
.infocard__label { font-size: 0.75rem; color: var(--text-muted); }
.infocard__val { font-weight: 600; color: var(--accent); font-size: 0.98rem; font-family: "Poppins"; }

/* appointment confirmed */
.confirmed { align-items: center !important; text-align: center; }
.confirmed__check { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(22,166,252,.4); }
.confirmed.show .confirmed__check { animation: confpop .5s cubic-bezier(.2,1.5,.4,1); }
@keyframes confpop { 0% { transform: scale(0); } 70% { transform: scale(1.12); } 100% { transform: scale(1); } }
.confirmed__check svg { width: 32px; height: 32px; }
.confirmed__title { font-family: "Poppins"; font-weight: 600; font-size: 1.7rem; color: var(--text); margin-top: 4px; }
.confirmed__sub { color: var(--text-muted); font-size: 0.95rem; }

/* End-of-call summary + window close */
.call__head, .wave { transition: opacity .35s ease, max-height .45s ease, margin .45s ease; max-height: 220px; overflow: hidden; }
.call.ended .call__head, .call.ended .wave { opacity: 0; max-height: 0; margin: 0; pointer-events: none; }
.call__summary-title { font-family: "Poppins"; font-weight: 500; font-size: 0.85rem; color: var(--text-muted); letter-spacing: .02em; margin-bottom: 2px; }
.infocard__icon--fb { background: #1877f2; color: #fff; font-family: Georgia, serif; font-weight: 700; font-size: 1.4rem; }
.sum-stars { color: #ffb300; font-style: normal; letter-spacing: 1px; margin-left: 4px; }

/* Facebook 5-star review card */
.fbreview__card { width: 100%; max-width: 340px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 18px; padding: 18px 20px; box-shadow: var(--shadow); }
.fbreview__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.fbreview__logo { width: 40px; height: 40px; border-radius: 10px; background: #1877f2; color: #fff; font-weight: 700; font-family: Georgia, serif; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.fbreview__name { display: block; font-weight: 600; color: var(--text); font-family: "Poppins"; }
.fbreview__sub { display: block; font-size: 0.78rem; color: var(--text-muted); }
.fbreview__stars { display: flex; gap: 6px; margin-bottom: 10px; }
.fbreview__stars span { color: var(--border); font-size: 1.8rem; line-height: 1; transform: scale(.5); transition: color .25s ease, transform .3s cubic-bezier(.2,1.6,.4,1); }
.fbreview__stars span.lit { color: #ffb300; transform: scale(1); }
.fbreview__text { color: var(--text); font-size: 1.02rem; line-height: 1.4; }

/* ============================================================
   PACKAGES & PRICING
   ============================================================ */
.pricing__lead {
  max-width: 640px; margin: 16px auto 0;
  font-size: 1.12rem; color: var(--text-muted);
}
.pricing__fine {
  max-width: 720px; margin: 18px auto 0;
  font-size: 0.84rem; line-height: 1.6; color: var(--text-muted);
}
.pricing__fine strong { color: var(--text); font-weight: 500; }

.pricing__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: stretch; margin-top: 56px;
}

.price {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 30px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.price:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(12,27,42,.10); }

/* featured (Most Popular) — accent highlight + lift */
.price--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 60px rgba(22,166,252,.18);
  background: linear-gradient(180deg, var(--accent-soft), var(--bg-soft) 42%);
}
.price--featured:hover { transform: translateY(-10px); }
@media (min-width: 901px) { .price--featured { transform: translateY(-12px); } }

.price__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: "Poppins"; font-weight: 600;
  font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 22px rgba(22,166,252,.4);
}

.price__tier {
  font-family: "Poppins"; font-weight: 600;
  font-size: 0.74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.price__name { color: var(--text); margin-bottom: 10px; }
.price__desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; }

.price__cost { display: flex; align-items: baseline; gap: 8px; margin-top: 26px; }
.price__amt {
  font-family: "Poppins"; font-weight: 700;
  font-size: 3rem; line-height: 1; color: var(--text); letter-spacing: -0.02em;
}
.price__per { color: var(--text-muted); font-size: 1rem; font-weight: 400; }
.price__setup { font-size: 0.92rem; color: var(--text-muted); margin-top: 8px; }
.price__setup strong { color: var(--text); font-weight: 600; }
.price__setup span { color: var(--accent); font-weight: 600; font-size: 0.74rem; letter-spacing: .08em; text-transform: uppercase; margin-left: 4px; }

.price__feats {
  list-style: none; margin: 26px 0 30px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
}
.price__feats li {
  position: relative; padding-left: 30px;
  font-size: 0.93rem; line-height: 1.5; color: var(--text);
}
.price__feats li strong { font-weight: 600; }
.price__feats li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent-soft);
  /* accent check mark */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A6FC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5 11-11'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px 12px;
}
[data-theme="dark"] .price__feats li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316A6FC' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5 11-11'/%3E%3C/svg%3E");
}
/* "not included" feature — muted text, red cross (✕) marker */
.price__feat--off { color: var(--text-muted); }
.price__feat--off::before {
  background: rgba(242,95,124,0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f25f7c' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 11px 11px;
}

/* highlighted feature — stands out in brand blue + semibold */
.price__feat--hl { font-weight: 600; color: var(--accent); }

/* struck-through old price shown before the discounted amount */
.price__amt-old {
  align-self: center;
  font-weight: 600; font-size: 1.6rem;
  color: var(--text-muted); text-decoration: line-through;
  text-decoration-color: var(--danger); margin-right: 4px;
}

.price__btn { margin-top: auto; width: 100%; text-align: center; justify-content: center; }

.pricing__note { text-align: center; margin-top: 40px; color: var(--text-muted); font-size: 0.96rem; }
.pricing__note a { color: var(--accent); font-weight: 500; text-decoration: none; }
.pricing__note a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; gap: 32px; }
  .price--featured, .price--featured:hover { transform: none; }
}

/* ============================================================
   ROI CALCULATOR
   ============================================================ */
.roi__panel {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center;
  background: linear-gradient(135deg, var(--btn-action-hover), var(--btn-action));
  border-radius: 30px;
  padding: 54px 52px;
  box-shadow: 0 30px 70px rgba(22,166,252,.22);
  max-width: 100%;
}
/* grid children must be allowed to shrink, else sliders/long labels overflow on Android */
.roi__intro, .roi__calc { min-width: 0; }

/* ---- left intro ---- */
.roi__eyebrow {
  display: inline-block;
  font-family: "Poppins"; font-weight: 600;
  font-size: 0.72rem; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.16);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.roi__title { color: #fff; font-size: clamp(2rem, 3.4vw, 3rem); margin-bottom: 30px; }
.roi__hl { color: #bcd6ff; font-style: italic; }
.roi__points { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.roi__points li {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px; padding: 15px 18px;
}
.roi__points strong { display: block; color: #fff; font-weight: 600; font-family: "Poppins"; margin-bottom: 3px; }
.roi__points span { color: rgba(255,255,255,.82); font-size: 0.92rem; line-height: 1.45; }

/* ---- right calculator card ---- */
.roi__calc {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 20px 50px rgba(8,18,33,.25);
}
[data-theme="dark"] .roi__calc { background: #171b22; }
.roi__calc-title { display: block; font-family: "Poppins"; font-weight: 600; color: var(--text); font-size: 1.05rem; margin-bottom: 20px; }

.roi__field { margin-bottom: 16px; }
.roi__field label { display: block; font-family: "Poppins"; font-weight: 500; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 8px; }
.roi__slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
  height: 6px; border-radius: 999px;
  background: var(--accent-soft);
  accent-color: var(--accent);   /* themed filled track + thumb (modern browsers) */
  cursor: pointer; outline: none;
}
.roi__slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(8,18,33,.3);
}
[data-theme="dark"] .roi__slider::-webkit-slider-thumb { border-color: #171b22; }
.roi__slider::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
}

.roi__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 16px; }
.roi__tile {
  min-width: 0;
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 14px;
}
[data-theme="dark"] .roi__tile { background: rgba(255,255,255,.04); }
.roi__tile-label { display: block; font-family: "Poppins"; font-weight: 500; font-size: 0.66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px; overflow-wrap: anywhere; }
.roi__tile-val { font-family: "Poppins"; font-weight: 600; font-size: 1.25rem; color: var(--text); }

.roi__result {
  text-align: center; border-radius: 14px; padding: 18px 16px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
}
.roi__result-label { display: block; color: var(--text); font-size: 0.9rem; margin-bottom: 4px; }
.roi__result-val { font-family: "Poppins"; font-weight: 700; font-size: 2.4rem; color: var(--accent-dark); letter-spacing: -0.02em; }
[data-theme="dark"] .roi__result-val { color: #7fb0ff; }

@media (max-width: 900px) {
  .roi__panel { grid-template-columns: 1fr; gap: 32px; padding: 36px 26px; }
}
@media (max-width: 540px) {
  .roi__panel { padding: 28px 18px; }
  .roi__tiles { grid-template-columns: 1fr 1fr; }
  .roi__result-val { font-size: 2rem; }
}

