/* ============================================================
   DoctorReview Pro - Core Styles
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { height: 100%; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--mint-200); color: var(--ink-900); }

/* ---------- Body ---------- */
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--ink-700);
  background: var(--white);
  overflow-x: hidden;
}

/* ---------- Custom scrollbar ---------- */
html { scrollbar-width: thin; scrollbar-color: var(--ink-200) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: 999px; border: 2px solid var(--white); }
::-webkit-scrollbar-thumb:hover { background: var(--teal-500); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-weight: 700;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); letter-spacing: var(--tracking-snug); font-weight: 600; }

p { color: var(--ink-500); line-height: var(--lh-relaxed); }
.lead { font-size: var(--fs-body-lg); color: var(--ink-500); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  padding: 6px 12px;
  background: var(--mint-100);
  border: 1px solid rgba(0,194,168,0.18);
  border-radius: var(--r-pill);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(0,194,168,0.15); }

.grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: var(--section-y) 0; position: relative; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto var(--space-12); }
.section-head h2 {
  margin: 12px 0 10px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}
.section-head p { font-size: var(--fs-body-lg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,194,168,0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,194,168,0.34), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn-primary::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 700ms var(--ease-out);
}
.btn-primary:hover::after { transform: translateX(100%); }

.btn-secondary {
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid var(--hairline-2);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--teal-500); color: var(--teal-700); transform: translateY(-1px); }

.btn-ghost { color: var(--ink-700); padding: 9px 14px; }
.btn-ghost:hover { color: var(--teal-700); }

.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 13px 24px; font-size: 0.95rem; }

/* ---------- NAVBAR ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  transition: background var(--dur-base) var(--ease-out), backdrop-filter var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), padding var(--dur-base) var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 9px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; color: #000; font-size: 1.15rem; letter-spacing: -0.01em; }
.nav.is-scrolled .nav-brand { color: #000; }
.nav-brand .brand-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--grad-brand);
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(0,194,168,0.30), inset 0 1px 0 rgba(255,255,255,0.30);
}
.nav-brand .brand-mark svg { width: 24px; height: 24px; color: #fff; }
.nav-brand .brand-logo { height: 42px; width: auto; display: block; }
.foot-brand .nav-brand .brand-logo { height: 46px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 10px 14px;
  border-radius: var(--r-pill);
  color: #000;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: #0B7E6D; background: rgba(11, 126, 109, 0.1); }
.nav.is-scrolled .nav-links a {
  color: #000;
}
.nav.is-scrolled .nav-links a:hover { color: #0B7E6D; background: rgba(11, 126, 109, 0.08); }

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

.nav-burger { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--hairline-2); align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 16px; height: 1.5px; background: var(--ink-700); position: relative; }
.nav-burger span::before, .nav-burger span::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink-700); }
.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

/* ---------- HERO (white background) ---------- */
.hero {
  position: relative;
  padding: 40px 0 60px;
  overflow: visible;
  text-align: left;
  background: #FFFFFF;
}

/* sky decorations - hidden */
.hero-sky { display: none; }
.hero-dome { display: none; }
.dome-ring { display: none; }
.dome-ring .ring-base { display: none; }
.dome-ring .orbit { display: none; }
.dome-ring .star { display: none; }
.dome-ring .star.twinkle { display: none; }
.cloud {
  display: none;
}
.cloud.c1 { display: none; }
.cloud.c2 { display: none; }
.cloud.c3 { display: none; }
.cloud.c4 { display: none; }
.cloud.c5 { display: none; }

/* ---------- HERO abstract animated background ---------- */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  color: var(--teal-500);
}
.hero-bg .hb-icon { position: absolute; display: block; will-change: transform, opacity; }

/* twinkling stars */
.hb-star { animation: hb-twinkle 5s ease-in-out infinite; }
.hb-s1 { width: 26px; height: 26px; top: 12%; left: 7%;  animation-delay: 0s; }
.hb-s2 { width: 34px; height: 34px; top: 20%; right: 13%; animation-delay: .8s; }
.hb-s3 { width: 20px; height: 20px; bottom: 16%; left: 16%; animation-delay: 1.6s; }
.hb-s4 { width: 28px; height: 28px; top: 56%; right: 6%;  animation-delay: 2.3s; }

/* floating people icons */
.hb-person { opacity: 0.16; }
.hb-p1 { width: 34px; height: 34px; top: 30%; left: 24%; animation: hb-float 7s ease-in-out infinite; }
.hb-p2 { width: 40px; height: 40px; bottom: 20%; right: 22%; animation: hb-float 8.5s ease-in-out infinite .5s; }
.hb-p3 { width: 46px; height: 46px; top: 13%; right: 31%; animation: hb-float2 9s ease-in-out infinite 1s; }

/* drifting lines */
.hb-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(0,194,168,0.55), transparent);
  opacity: 0.22;
  will-change: transform;
}
.hb-l1 { width: 130px; top: 40%; left: 3%;  --r: -18deg; animation: hb-drift 11s ease-in-out infinite; }
.hb-l2 { width: 170px; top: 70%; right: 9%; --r: 14deg;  animation: hb-drift 13s ease-in-out infinite 1.5s; }
.hb-l3 { width: 100px; top: 16%; left: 42%; --r: 7deg;   animation: hb-drift 12s ease-in-out infinite 3s; }

@keyframes hb-twinkle {
  0%, 100% { opacity: 0.10; transform: scale(0.85) rotate(0deg); }
  50%      { opacity: 0.32; transform: scale(1.15) rotate(18deg); }
}
@keyframes hb-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-22px); }
}
@keyframes hb-float2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(16px) translateX(12px); }
}
@keyframes hb-drift {
  0%, 100% { transform: translateX(0) rotate(var(--r, 0deg)); opacity: 0.12; }
  50%      { transform: translateX(28px) rotate(var(--r, 0deg)); opacity: 0.28; }
}
@media (prefers-reduced-motion: reduce) {
  .hb-star, .hb-person, .hb-line { animation: none; }
}

.hero-wrapper {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 80px;
  align-items: center;
  min-height: 550px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  margin-top: 48px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* rating pill */
.hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 10px 7px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.30);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.84rem; font-weight: 500;
  transition: background var(--dur-fast) var(--ease-out);
}
.hero-pill:hover { background: rgba(255,255,255,0.24); }
.hero-pill strong { font-weight: 700; }
.hero-pill .hp-stars { color: #FFD56B; }
.hero-pill svg { width: 14px; height: 14px; margin-left: 3px; opacity: .9; }

/* headline */
.hero-title {
  color: #0C8A72;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 18px 0;
  text-align: left;
}
.hero-title .ht-line {
  display: block;
  margin-top: 6px;
  font-size: 1em; font-weight: 800; letter-spacing: -0.02em;
  color: #0C8A72;
}
/* Google brand colors for the word "Google" */
.hero-title .g-word { letter-spacing: -0.01em; }
.hero-title .g-b { color: #4285F4; }
.hero-title .g-r { color: #EA4335; }
.hero-title .g-y { color: #FBBC05; }
.hero-title .g-g { color: #34A853; }
@media (max-width: 480px) { .hero-title .ht-line { white-space: normal; } }
.hero-title .ht-badge {
  display: inline-grid; place-items: center;
  width: 0.92em; height: 0.92em; vertical-align: -0.08em;
  margin: 0 0.04em;
  border-radius: 0.24em;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
}
.hero-title .ht-badge svg { width: 60%; height: 60%; }

.hero-sub {
  color: #2D5F59;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 22px;
  text-align: left;
  max-width: 600px;
}

/* hero feature checks */
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 4px 0 0;
  max-width: 620px;
}
.hero-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-700);
}
.hero-checks li .hc-tick {
  width: 20px; height: 20px; flex: none; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
}
.hero-checks li .hc-tick svg { width: 11px; height: 11px; }

/* email capture */
.hero-email {
  margin: 0; max-width: 540px;
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.32);
  padding: 7px;
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero-email input {
  flex: 1; border: 0; background: #fff;
  border-radius: var(--r-pill);
  padding: 13px 22px; font-size: 0.95rem; color: var(--ink-800);
  outline: none; min-width: 0;
}
.hero-email input::placeholder { color: var(--ink-400); }
.hero-cta {
  margin: 28px 0 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  justify-content: flex-start;
}
.btn-getstarted {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border-radius: var(--r-pill);
  padding: 15px 28px;
  background: var(--grad-brand);
  color: #fff; font-weight: 600; font-size: 1rem; letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(0, 194, 168, 0.30), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.btn-getstarted svg { width: 18px; height: 18px; transition: transform var(--dur-base) var(--ease-out); }
.btn-getstarted:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(0, 194, 168, 0.38), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn-getstarted:hover svg { transform: translateX(3px); }

/* ghost / secondary hero CTA */
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--hairline-2);
  color: var(--ink-800); font-weight: 600; font-size: 0.95rem;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.btn-hero-ghost:hover { border-color: var(--teal-500); color: var(--teal-700); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-hero-ghost .hcl-free {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--teal-700); background: var(--mint-100);
  padding: 3px 9px; border-radius: var(--r-pill);
}

/* Google compliance trust badge */
.hero-trust {
  display: flex; align-items: center; gap: 11px;
  margin-top: 22px;
  font-size: 0.85rem; color: var(--ink-400);
}
.hero-trust-logo { height: 32px; width: auto; display: block; object-fit: contain; }

/* CTA Logo (legacy) */
.cta-logo {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Hero media (mobile mockup image) */
.hero-media {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  transform: scale(1.1);
  transform-origin: center right;
}

/* navbar button styling */
.nav .btn-ghost { color: #000; }
.nav .btn-ghost:hover { color: #0B7E6D; }
.nav .btn-primary {
  background: var(--grad-brand); color: #fff;
  box-shadow: 0 8px 20px rgba(0, 194, 168, 0.25);
}
.nav .btn-primary:hover { background: var(--grad-brand); transform: translateY(-1px); }
/* Logo swap: show dark-text logo */
.nav-brand .brand-logo--light { display: none; }
.nav .brand-logo--dark { display: block; }
.nav .brand-logo--light { display: none; }
.nav .nav-burger { border-color: rgba(0, 0, 0, 0.2); }
.nav .nav-burger span,
.nav .nav-burger span::before,
.nav .nav-burger span::after { background: #000; }

/* ---------- HERO DASHBOARD PREVIEW ---------- */
.hero-dash-wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: 1180px;
  margin: 56px auto 0;
  padding: 0 var(--gutter);
}
.dash {
  display: flex;
  background: #fff;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  box-shadow: 0 44px 90px rgba(7, 58, 50, 0.30), 0 10px 26px rgba(7,58,50,0.14);
  overflow: hidden;
  text-align: left;
  min-height: 520px;
}

/* sidebar */
.dash-side {
  width: 224px; flex: none;
  border-right: 1px solid var(--hairline);
  padding: 18px 14px 14px;
  display: flex; flex-direction: column;
  background: #fff;
}
.ds-brand { padding: 2px 8px 16px; }
.ds-brand img { height: 26px; width: auto; }
.ds-nav { display: flex; flex-direction: column; gap: 2px; }
.ds-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 0.84rem; color: var(--ink-500); font-weight: 500;
}
.ds-item svg { width: 17px; height: 17px; flex: none; color: var(--ink-400); }
.ds-item.active { background: var(--mint-50); color: var(--teal-700); }
.ds-item.active svg { color: var(--teal-600); }
.ds-soon {
  margin-left: auto; font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink-400); background: var(--surface-2);
  padding: 2px 6px; border-radius: 999px;
}
.ds-foot { margin-top: auto; padding: 12px 10px 2px; font-size: 0.74rem; color: var(--ink-400); border-top: 1px solid var(--hairline); }
.ds-foot b { color: var(--teal-700); font-weight: 700; }

/* main */
.dash-main { flex: 1; min-width: 0; padding: 16px 22px 26px; background: var(--surface-1); }
.dm-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; border-bottom: 1px solid var(--hairline); margin-bottom: 20px;
}
.dm-crumb { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--ink-600); font-weight: 600; }
.dm-crumb svg { width: 16px; height: 16px; color: var(--ink-400); }
.dm-user { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--ink-600); }
.dm-av { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-size: 0.74rem; font-weight: 700; }

.dm-welcome h3 { font-size: 1.5rem; letter-spacing: -0.02em; color: var(--ink-900); }
.dm-welcome p { margin-top: 4px; font-size: 0.92rem; color: var(--ink-400); }

.dm-stats {
  margin-top: 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.stat-card {
  border: 1px solid var(--hairline); border-radius: 14px;
  padding: 16px; background: #fff;
}
.sc-ic { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--hairline); display: grid; place-items: center; color: var(--ink-400); margin-bottom: 14px; }
.sc-ic svg { width: 16px; height: 16px; }
.sc-label { font-size: 0.78rem; color: var(--ink-400); }
.sc-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; line-height: 1.1; margin: 2px 0 10px; }
.sc-foot { display: flex; align-items: center; gap: 6px; font-size: 0.74rem; color: var(--ink-400); }
.sc-foot svg { width: 13px; height: 13px; color: var(--teal-600); flex: none; }

/* checklist */
.dm-checklist { margin-top: 24px; }
.dc-title { font-size: 1.05rem; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; margin-bottom: 12px; }
.dc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 18px; margin-bottom: 10px;
  border: 1px solid var(--hairline); border-radius: 12px;
  background: #fff;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.dc-item:hover { border-color: var(--mint-200); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.dc-num { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--mint-50); color: var(--teal-700); display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; border: 1px solid var(--mint-200); }
.dc-body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dc-body b { font-size: 0.9rem; color: var(--ink-900); font-weight: 600; }
.dc-body span { font-size: 0.8rem; color: var(--ink-400); }
.dc-arrow { width: 18px; height: 18px; color: var(--ink-300); flex: none; }

/* ---------- FEAR SECTION ---------- */
.fear-section { background: var(--surface-2); position: relative; overflow: hidden; }
.fear-section::before {
  content: ""; position: absolute; inset: auto 0 -10% 0; height: 60%;
  background: var(--grad-mint-glow); pointer-events: none;
}
.fear-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }

.fear-callout {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  border-left: 3px solid var(--warn-soft);
  border-radius: var(--r-md);
}
.fear-callout p { margin: 0; color: var(--ink-700); font-weight: 500; font-size: var(--fs-body); line-height: 1.5; }
.fear-callout-highlight { color: var(--warn-ink); font-weight: 700; }

/* Right-side image */
.fear-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.fear-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-2xl);
}

/* ---------- GOOGLE-SAFE SECTION ---------- */
.safe-section { background: var(--white); }

.safe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.safe-card {
  padding: 30px 28px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.safe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint-200);
}

.safe-check {
  width: 40px; height: 40px; flex: none; border-radius: 12px;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  margin-bottom: 20px;
}
.safe-check svg { width: 20px; height: 20px; }

.safe-card h3 {
  font-size: 1.2rem;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 10px;
}
.safe-card p {
  font-size: 0.95rem;
  color: var(--ink-500);
  line-height: 1.6;
}

.safe-closing {
  margin: 48px auto 0;
  text-align: center;
  max-width: 720px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: var(--tracking-tight);
  line-height: 1.3;
  color: var(--ink-700);
}

/* ---------- BUILT FOR CLINICS SECTION ---------- */
.clinics-section { background: var(--surface-2); }

.clinics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.clinic-card {
  padding: 26px 24px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.clinic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--mint-200);
}
.clinic-card .ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--mint-100); color: var(--teal-700);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.clinic-card .ic svg { width: 21px; height: 21px; }
.clinic-card h3 {
  font-size: 1.08rem;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 8px;
  line-height: 1.3;
}
.clinic-card p {
  font-size: 0.92rem;
  color: var(--ink-500);
  line-height: 1.55;
}

/* ---------- WHY NOW SECTION ---------- */
.whynow-section { background: var(--white); }
.whynow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.whynow-title {
  margin: 16px 0 8px;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: var(--tracking-tight);
  line-height: 1.18;
}

.whynow-points {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}
.whynow-points li {
  position: relative;
  padding-left: 30px;
  font-size: 1.0625rem;
  color: var(--ink-600);
  line-height: 1.55;
}
.whynow-points li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 0 4px rgba(0,194,168,0.12);
}

.whynow-visual { position: relative; }
.whynow-img-ph {
  width: 100%;
  aspect-ratio: 1 / 0.92;
  border-radius: var(--r-2xl);
  background: var(--surface-2);
  border: 1px dashed var(--hairline-2);
  display: grid;
  place-items: center;
  color: var(--ink-300);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.whynow-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-2xl);
}

/* ---------- HONEST PROOF (Founding Clinics) ---------- */
.proof-section { background: var(--surface-2); padding: clamp(44px, 5vw, 72px) 0; }

/* animated running-light border frame */
@property --proof-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.proof-frame {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 3px;                 /* border thickness */
  border-radius: var(--r-3xl);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 30px 80px rgba(0,194,168,0.18), 0 8px 24px rgba(15,23,42,0.06);
}
/* the rotating conic light that becomes the visible border */
.proof-frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: -60%;
  background: conic-gradient(
    from var(--proof-angle),
    transparent 0deg,
    transparent 200deg,
    rgba(0,194,168,0.35) 250deg,
    var(--teal-500) 300deg,
    var(--gold) 330deg,
    #fff 345deg,
    var(--teal-500) 360deg
  );
  animation: proof-spin 4.5s linear infinite;
}
/* soft static base ring so the border is always tinted, not just on the light */
.proof-frame::after {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  border-radius: var(--r-3xl);
  padding: 3px;
  background: linear-gradient(135deg, rgba(0,194,168,0.25), rgba(245,183,0,0.18));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
@keyframes proof-spin {
  to { --proof-angle: 360deg; }
}
/* fallback for browsers without @property: rotate the element instead */
@supports not (background: conic-gradient(from var(--proof-angle), #000, #fff)) {
  .proof-frame::before { animation: proof-spin-fallback 4.5s linear infinite; }
  @keyframes proof-spin-fallback { to { transform: rotate(360deg); } }
}

.proof-card {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 3.6vw, 44px);
  background: var(--white);
  border-radius: calc(var(--r-3xl) - 3px);
  text-align: center;
  overflow: hidden;
}
.proof-frame.is-visible .proof-card {
  animation: proof-pop 760ms var(--ease-spring) both;
}
.proof-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 55%;
  background: var(--grad-mint-glow); pointer-events: none;
}

/* entrance "pop" */
@keyframes proof-pop {
  0%   { transform: scale(0.96); opacity: 0; }
  60%  { transform: scale(1.012); }
  100% { transform: scale(1); opacity: 1; }
}

/* corner gift ribbon */
.proof-ribbon {
  position: absolute; top: 22px; right: -54px;
  width: 200px;
  transform: rotate(45deg);
  background: var(--grad-brand);
  box-shadow: 0 6px 16px rgba(0,194,168,0.30), inset 0 1px 0 rgba(255,255,255,0.3);
  z-index: 4;
  text-align: center;
}
.proof-ribbon span {
  display: block;
  padding: 7px 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* shine sweep across the card */
.proof-shine {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden; border-radius: inherit;
}
.proof-shine::after {
  content: "";
  position: absolute; top: -60%; left: -40%;
  width: 50%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: rotate(18deg);
  animation: proof-sheen 5.5s ease-in-out infinite;
}
@keyframes proof-sheen {
  0%, 18%   { left: -45%; opacity: 0; }
  30%       { opacity: 1; }
  48%, 100% { left: 130%; opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .proof-frame::before,
  .proof-card,
  .proof-shine::after { animation: none; }
  .proof-frame::before { opacity: 0.6; }
}

.proof-head { position: relative; }
.proof-head .eyebrow { margin-bottom: 14px; }
.proof-head h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: var(--tracking-tight);
  line-height: 1.2;
  margin-bottom: 12px;
}
.proof-head .lead {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--ink-500);
}
.proof-instead {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-700);
}
.proof-instead b { color: var(--teal-700); font-weight: 700; }

.proof-points {
  position: relative;
  max-width: 560px;
  margin: 22px auto 0;
  display: grid;
  gap: 9px;
  text-align: left;
}
.proof-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  background: var(--surface-2);
  border: var(--border);
  border-radius: var(--r-md);
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.45;
}
.proof-points li .chk {
  width: 24px; height: 24px; flex: none; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
}
.proof-points li .chk svg { width: 13px; height: 13px; }
.proof-points li b { color: var(--ink-900); font-weight: 700; }

/* countdown timer (compact) */
.proof-timer {
  position: relative;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.pt-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-400);
}
.pt-units {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.pt-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 40px;
  padding: 7px 6px 5px;
  background: var(--ink-900);
  border-radius: var(--r-xs);
  box-shadow: 0 6px 14px rgba(11,18,32,0.18), inset 0 1px 0 rgba(255,255,255,0.08);
}
.pt-unit b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.pt-unit span {
  font-size: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-500);
}
.pt-sep {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  font-style: normal;
  color: var(--ink-200);
  line-height: 1;
  align-self: flex-start;
  padding-top: 9px;
}

.proof-cta {
  position: relative;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.proof-counter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--ink-500);
  font-weight: 500;
}
.proof-counter b { color: var(--ink-900); font-weight: 700; }
.proof-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(0,194,168,0.18);
  animation: pb-pulse 2.2s ease-in-out infinite;
}

/* ---------- PRICING SECTION ---------- */
.pricing-section { background: var(--white); }

/* value anchor */
.anchor-block {
  max-width: 860px;
  margin: 0 auto 56px;
}
.anchor-lead {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--ink-900);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 22px;
}
.anchor-table {
  border: var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
}
.at-head, .at-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.2fr;
  gap: 16px;
  padding: 14px 22px;
  align-items: center;
}
.at-head {
  background: var(--surface-2);
  border-bottom: var(--border);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-400);
}
.at-row { border-bottom: 1px solid var(--hairline); transition: background var(--dur-fast) var(--ease-out); }
.at-row:last-child { border-bottom: 0; }
.at-row:hover { background: var(--mint-50); }
.at-spec { font-weight: 700; color: var(--ink-900); font-size: 0.96rem; }
.at-worth { color: var(--ink-600); font-size: 0.92rem; }
.at-worth b { color: var(--ink-900); font-weight: 700; }
.at-covers { font-weight: 700; color: var(--teal-700); font-size: 0.92rem; }

.anchor-close {
  margin-top: 22px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-600);
}
.anchor-close b { color: var(--ink-900); font-weight: 700; }

/* plan cards */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mint-200);
}
.plan-popular {
  border-color: var(--teal-500);
  box-shadow: 0 24px 60px rgba(0,194,168,0.18);
}
.plan-popular:hover { border-color: var(--teal-600); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-brand); color: #fff;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: var(--r-pill);
  box-shadow: 0 8px 18px rgba(0,194,168,0.30);
  white-space: nowrap;
}

.plan-top { margin-bottom: 16px; }
.plan-name { font-size: 1.4rem; letter-spacing: var(--tracking-tight); }
.plan-for { display: block; margin-top: 4px; font-size: 0.85rem; color: var(--ink-400); font-weight: 500; }

.plan-price { display: flex; align-items: baseline; gap: 4px; }
.plan-price b { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--ink-900); letter-spacing: -0.02em; }
.plan-price span { font-size: 0.95rem; color: var(--ink-400); font-weight: 500; }
.plan-price .plan-from { font-size: 0.85rem; color: var(--ink-400); align-self: center; }
.plan-alt { display: block; margin-top: 4px; font-size: 0.84rem; color: var(--ink-400); }

.plan-feats { margin: 22px 0; display: grid; gap: 11px; flex: 1; }
.plan-feats li {
  display: flex; align-items: center; gap: 11px;
  font-size: 0.92rem; color: var(--ink-700); line-height: 1.4;
}
.plan-feats li .chk {
  width: 20px; height: 20px; flex: none; border-radius: 50%;
  background: var(--mint-100); color: var(--teal-700);
  display: grid; place-items: center;
}
.plan-feats li .chk svg { width: 11px; height: 11px; }
.plan-popular .plan-feats li .chk { background: var(--grad-brand); color: #fff; }

.plan-btn { width: 100%; margin-top: auto; }

.pricing-fine {
  margin: 36px auto 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-400);
}
.pricing-audit {
  margin: 10px auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--ink-600);
}
.pricing-audit a { color: var(--teal-700); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.pricing-audit a:hover { color: var(--teal-800); }

/* ---------- FOUNDER NOTE SECTION ---------- */
.founder-section { background: var(--surface-2); }
.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-16);
  align-items: center;
}

.founder-visual { display: flex; flex-direction: column; gap: 16px; }
.founder-photo-ph {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: var(--r-2xl);
  background: var(--surface-3);
  border: 1px dashed var(--hairline-2);
  display: grid; place-items: center;
  color: var(--ink-300);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
}
.founder-photo {
  width: 100%; height: auto; display: block;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
}

.founder-wa {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.founder-wa:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #25D366; }
.fw-ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(37,211,102,0.30);
}
.fw-ic svg { width: 24px; height: 24px; }
.fw-txt { display: flex; flex-direction: column; line-height: 1.3; }
.fw-txt b { font-size: 0.95rem; color: var(--ink-900); font-weight: 700; }
.fw-txt span { font-size: 0.92rem; color: var(--ink-500); font-variant-numeric: tabular-nums; }

.founder-title {
  margin: 14px 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: var(--tracking-tight);
}
.founder-note { display: grid; gap: 14px; }
.founder-note p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-600);
}
.founder-sign {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 3px;
}
.fs-name { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink-900); }
.fs-meta { font-size: 0.9rem; color: var(--ink-400); }

/* ---------- FREE AUDIT SECTION ---------- */
.audit-section { background: var(--white); }

/* one soft panel containing two columns */
.audit-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 5vw, 64px);
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3xl);
  box-shadow: var(--shadow-md);
}

/* ----- left: info column ----- */
.audit-info { align-self: center; }
.audit-kicker {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-400);
  margin-bottom: 16px;
}
.audit-h {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: var(--tracking-tight);
  line-height: 1.12;
  font-weight: 700;
  color: var(--ink-900);
}
.audit-h b { font-weight: 800; }
.audit-intro {
  margin-top: 16px;
  max-width: 42ch;
  font-size: 1rem;
  color: var(--ink-500);
  line-height: 1.6;
}

.audit-gets { margin-top: 22px; display: grid; gap: 13px; }
.audit-gets li {
  display: flex; align-items: center; gap: 13px;
  font-size: 0.98rem; color: var(--ink-700); line-height: 1.4; font-weight: 500;
}
.audit-gets li .chk {
  width: 24px; height: 24px; flex: none; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 5px 12px rgba(0,194,168,0.22);
}
.audit-gets li .chk svg { width: 12px; height: 12px; }

.audit-contacts { margin-top: 30px; display: grid; gap: 16px; }
.audit-contact {
  display: inline-flex; align-items: center; gap: 14px;
  width: fit-content;
}
.ac-ic {
  width: 44px; height: 44px; flex: none; border-radius: 12px;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(0,194,168,0.26);
  transition: transform var(--dur-base) var(--ease-out);
}
.ac-ic svg { width: 20px; height: 20px; }
.audit-contact:hover .ac-ic { transform: translateY(-2px); }
.ac-txt { display: flex; flex-direction: column; line-height: 1.3; }
.ac-txt span { font-size: 0.78rem; color: var(--ink-400); font-weight: 600; }
.ac-txt b { font-size: 1rem; color: var(--ink-900); font-weight: 700; }

/* ----- right: white form card ----- */
.audit-form {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 16px;
}

.af-field { display: grid; gap: 7px; }
.af-field label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink-600);
}
.af-field input,
.af-select select {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--ink-900);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.af-field input::placeholder { color: var(--ink-300); }
.af-field input:focus,
.af-select select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(0,194,168,0.14);
}

/* custom select */
.af-select { position: relative; }
.af-select select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 42px; cursor: pointer;
}
.af-select select:invalid { color: var(--ink-300); }
.af-chevron {
  position: absolute; right: 15px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--ink-400); pointer-events: none;
}

/* pill submit with circular arrow - matches reference */
.audit-submit {
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 12px;
  align-self: start;
  padding: 8px 26px 8px 8px;
  background: var(--grad-brand);
  color: #fff; font-weight: 600; font-size: 0.98rem;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 26px rgba(0,194,168,0.30);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.audit-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,194,168,0.38); }
.as-arrow {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: grid; place-items: center;
}
.as-arrow svg { width: 18px; height: 18px; }

.af-trust {
  display: flex; align-items: center; gap: 8px;
  margin-top: 4px;
  font-size: 0.82rem; color: var(--ink-400);
}
.af-trust svg { width: 14px; height: 14px; color: var(--teal-600); flex: none; }

/* honeypot - visually hidden, off-screen, not focusable */
.af-hp {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); overflow: hidden;
}

/* submit status message */
.af-status {
  margin-top: 2px;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.4;
}
.af-status.is-loading { color: var(--ink-500); }
.af-status.is-ok { color: var(--teal-700); }
.af-status.is-warn { color: var(--warn-ink); }
.af-status.is-error { color: #d32f2f; }
.audit-submit.is-loading { opacity: 0.7; pointer-events: none; }

/* ---------- NOT FOR EVERYONE SECTION (timeline layout) ---------- */
.notfor-section {
  background:
    linear-gradient(180deg, var(--surface-2) 0%, var(--white) 70%);
}

.notfor-head { text-align: center; max-width: 760px; margin: 0 auto; }
.notfor-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: var(--tracking-tight);
  line-height: 1.08;
}
.notfor-sub {
  margin-top: 16px;
  font-size: var(--fs-body-lg);
  color: var(--ink-400);
}

/* pill + connector rail */
.nf-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(40px, 6vw, 72px) 0 28px;
}
.nf-rail::before {
  content: "";
  position: absolute;
  left: 16.66%; right: 16.66%;
  bottom: 5px;
  height: 2px;
  background: var(--hairline-2);
  z-index: 0;
}
.nf-railitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.nf-pill {
  padding: 8px 20px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-400);
  background: var(--surface-3);
}
.nf-pill.is-active {
  color: var(--ink-900);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.nf-node {
  position: relative; z-index: 1;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink-200);
}
.nf-node.is-active {
  background: var(--teal-500);
  border-color: var(--teal-500);
  box-shadow: 0 0 0 5px rgba(0,194,168,0.16);
}

/* media cards + text below */
.notfor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.notfor-col { text-align: center; }
.nf-card {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.nf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.nf-media {
  aspect-ratio: 4 / 3.1;
  border-radius: var(--r-lg);
  background: var(--surface-2);
  border: 1px dashed var(--hairline-2);
  display: grid; place-items: center;
  color: var(--ink-300);
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.02em;
}
.nf-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); display: block; }
.notfor-col h3 {
  margin-top: 24px;
  font-size: 1.3rem;
  letter-spacing: var(--tracking-tight);
  line-height: 1.3;
}
.notfor-col p {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 34ch;
  margin-left: auto; margin-right: auto;
}

.notfor-cta { margin-top: clamp(36px, 5vw, 56px); text-align: center; }

/* ---------- TRUST / SPECIALTY MARQUEE ---------- */
.trust { padding: 56px 0 28px; overflow: hidden; }
.trust-eyebrow { text-align: center; color: var(--ink-400); font-size: 0.82rem; letter-spacing: var(--tracking-wide); text-transform: uppercase; font-weight: 600; margin-bottom: 26px; }

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee + .marquee { margin-top: 14px; }
.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee-x 42s linear infinite;
  will-change: transform;
}
.marquee-rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.m-card {
  flex: none;
  display: inline-flex; align-items: center; gap: 10px;
  margin-right: 14px;
  padding: 12px 20px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
  font-size: 0.9rem; font-weight: 600; color: var(--ink-700);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.m-card:hover { border-color: rgba(0,194,168,0.35); box-shadow: var(--shadow-sm); }
.m-card .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 4px rgba(0,194,168,0.12); flex: none; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- PROBLEM (green panel) ---------- */
.problem { background: var(--white); }
.problem-panel {
  position: relative;
  border-radius: var(--r-3xl);
  padding: clamp(30px, 4.4vw, 62px);
  background: radial-gradient(130% 130% at 0% 0%, #27BBA1 0%, #1DA48C 44%, #137F6C 100%);
  box-shadow: 0 40px 90px rgba(15, 120, 102, 0.30), inset 0 1px 0 rgba(255,255,255,0.18);
  overflow: hidden;
}
.p-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.p-blob.b1 { width: 460px; height: 460px; right: -130px; top: -150px; background: radial-gradient(closest-side, rgba(255,255,255,0.20), transparent 70%); }
.p-blob.b2 { width: 380px; height: 380px; left: -130px; bottom: -170px; background: radial-gradient(closest-side, rgba(255,255,255,0.12), transparent 70%); }

/* ----- header row (eyebrow + split heading + supporting copy) ----- */
.pb-head {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(20px, 4vw, 56px); align-items: end;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.pb-head .eyebrow {
  color: #fff; background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.30);
}
.pb-head .eyebrow .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.22); }
.pb-title { margin: 16px 0 0; display: grid; line-height: 1.04; letter-spacing: var(--tracking-tight); }
.pb-title-mute { color: rgba(255,255,255,0.55); font-weight: 600; }
.pb-title-strong { color: #fff; font-weight: 800; }
.pb-head-r { color: rgba(255,255,255,0.82); font-size: var(--fs-sm); line-height: 1.55; max-width: 34ch; }

/* ----- bento grid ----- */
.pb-bento {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 0.92fr 1.16fr;
  grid-template-areas:
    "people reasons dark"
    "stat   reasons dark"
    "stat   status  dark";
  gap: 14px;
}
.pb-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 20px 22px;
  box-shadow: 0 18px 40px rgba(8, 80, 68, 0.20);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.pb-card:hover { transform: translateY(-3px); box-shadow: 0 26px 56px rgba(8, 80, 68, 0.28); }
.pb-card-top { display: block; font-size: 0.95rem; font-weight: 600; color: var(--ink-700); line-height: 1.4; }

/* people / avatars */
.pb-people { grid-area: people; display: flex; align-items: center; gap: 16px; }
.pb-avatars { display: flex; flex: none; }
.pb-avatars .av {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2.5px solid #fff; margin-left: -12px;
  box-shadow: 0 2px 6px rgba(8,80,68,0.18);
}
.pb-avatars .av:first-child { margin-left: 0; }
.pb-avatars .a1 { background: linear-gradient(135deg, #00C2A8, #009F8A); }
.pb-avatars .a2 { background: linear-gradient(135deg, #5BD1BE, #1DA48C); }
.pb-avatars .a3 { background: linear-gradient(135deg, #9CEBDC, #00B099); }
.pb-avatars .a4 { background: linear-gradient(135deg, #0E7E6B, #11806C); }
.pb-avatars .a5 { background: linear-gradient(135deg, #BFF5EB, #00C2A8); }
.pb-people-label { font-size: 0.95rem; font-weight: 600; color: var(--ink-700); line-height: 1.35; }

/* big stat */
.pb-stat { grid-area: stat; display: flex; flex-direction: column; }
.pb-stat .pb-stat-num { margin-top: auto; display: flex; align-items: flex-start; gap: 2px; line-height: 1; }
.pb-stat-num b {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 6vw, 4.4rem); color: var(--ink-900);
  letter-spacing: -0.03em;
}
.pb-stat-unit { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 2rem); color: var(--green); margin-top: 0.35em; }
.pb-stat-sub { margin-top: 8px; font-size: 0.9rem; color: var(--ink-500); line-height: 1.4; }

/* reasons list */
.pb-reasons { grid-area: reasons; }
.pb-reason-list { margin-top: 16px; display: grid; gap: 10px; }
.pb-reason { display: flex; align-items: flex-start; gap: 11px; font-size: 0.9rem; color: var(--ink-700); line-height: 1.35; }
.pb-reason-ic {
  width: 24px; height: 24px; flex: none; border-radius: 7px;
  background: var(--warn-bg); color: var(--warn-ink);
  display: grid; place-items: center; margin-top: -1px;
}
.pb-reason-ic svg { width: 13px; height: 13px; }

/* status pill */
.pb-status { grid-area: status; display: flex; align-items: center; gap: 10px; padding: 16px 22px; }
.pb-status span:last-child { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-600); }
.pb-status-dot {
  width: 10px; height: 10px; border-radius: 50%; flex: none;
  background: var(--teal-500); box-shadow: 0 0 0 4px rgba(0,194,168,0.18);
  animation: pb-pulse 2.2s ease-in-out infinite;
}
@keyframes pb-pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(0,194,168,0.20); } 50% { box-shadow: 0 0 0 7px rgba(0,194,168,0.05); } }

/* dark accent card */
.pb-dark {
  grid-area: dark; overflow: hidden;
  background: radial-gradient(130% 130% at 100% 0%, #0E7E6B 0%, #0A5E50 60%, #073F36 100%);
  color: #fff; display: flex; flex-direction: column;
  box-shadow: 0 28px 60px rgba(7, 50, 42, 0.40);
}
.pb-arrow { position: absolute; right: 18px; top: 34%; width: 46%; height: auto; color: rgba(255,255,255,0.07); pointer-events: none; }
.pb-dark-text { position: relative; font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.5; color: rgba(255,255,255,0.92); max-width: 26ch; }
.pb-dark-text b { color: #fff; }
.pb-dark-foot { position: relative; margin-top: auto; padding-top: 24px; display: flex; align-items: flex-end; gap: 16px; }
.pb-rating { display: flex; align-items: baseline; }
.pb-rating-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); letter-spacing: -0.03em; }
.pb-rating-den { font-size: 1.1rem; color: rgba(255,255,255,0.6); font-weight: 600; margin-left: 2px; }
.pb-rating-meta { display: grid; gap: 3px; padding-bottom: 8px; }
.pb-stars { color: var(--gold); letter-spacing: 1px; font-size: 0.95rem; }
.pb-trust { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.7); line-height: 1.3; max-width: 18ch; }

/* responsive bento */
@media (max-width: 900px) {
  .pb-head { grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .pb-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "people people"
      "stat   reasons"
      "stat   reasons"
      "status status"
      "dark   dark";
  }
}
@media (max-width: 600px) {
  .pb-bento {
    grid-template-columns: 1fr;
    grid-template-areas: "people" "stat" "reasons" "status" "dark";
  }
}

/* ---------- SOLUTION ---------- */
.solution { background: var(--surface-2); position: relative; overflow: hidden; }
.solution::before {
  content: ""; position: absolute; inset: auto 0 -10% 0; height: 60%;
  background: var(--grad-mint-glow); pointer-events: none;
}
.solution-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.solution-points { margin-top: 24px; display: grid; gap: 10px; }
.solution-points li {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 16px;
  background: var(--white); border: var(--border); border-radius: var(--r-md);
  font-weight: 500; color: var(--ink-800);
}
.solution-points li .chk { width: 22px; height: 22px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; flex: none; }
.solution-points li .chk svg { width: 12px; height: 12px; }

.solution-visual { position: relative; aspect-ratio: 1 / 0.95; }
.solution-visual .mock {
  position: absolute;
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: var(--r-2xl); box-shadow: var(--shadow-xl); overflow: hidden;
}
.solution-visual .mock-flow { inset: 0; background: #fff; }
.solution-visual .mock-flow img { width: 100%; height: 100%; object-fit: contain; display: block; }

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--white); }
.steps {
  position: relative;
  display: grid;
  gap: clamp(56px, 6vw, 88px);
}
.steps::before {
  content: "";
  position: absolute;
  left: 50%; top: 60px; bottom: 60px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--mint-200) 0 6px, transparent 6px 12px);
  transform: translateX(-50%);
  z-index: 0;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.step.flip .step-copy { order: 2; }
.step.flip .step-visual { order: 1; }

.step-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  background: var(--white); border: 1px solid var(--hairline-2); border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  font-size: 0.8rem; color: var(--ink-500); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.step-badge .num { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-size: 0.78rem; }

.step h3 { margin: 14px 0 10px; font-size: clamp(1.35rem, 2vw, 1.7rem); letter-spacing: -0.02em; }
.step p  { font-size: 0.96rem; max-width: 460px; }
.step .step-tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.step .step-tags li {
  font-size: 0.82rem; font-weight: 500;
  padding: 8px 12px; background: var(--surface-2);
  border: var(--border); border-radius: var(--r-pill); color: var(--ink-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.step .step-tags li .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); }

/* Step visual frame */
.step-visual {
  position: relative;
  aspect-ratio: 1 / 0.95;
}
.step-visual .frame {
  position: absolute; inset: 0;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.step-visual .frame::before {
  content: "";
  position: absolute; inset: -1px;
  background: var(--grad-mint-glow);
  pointer-events: none;
  z-index: 0;
}
.step-visual .frame .frame-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; z-index: 1;
}

/* Step 1 - Reception / QR */
.reception {
  position: absolute; inset: 0;
  display: grid; grid-template-rows: 1fr auto;
  padding: 22px;
  z-index: 1;
}
.reception .desk {
  background: linear-gradient(180deg, var(--mint-50), #fff);
  border-radius: var(--r-xl);
  border: 1px dashed var(--mint-200);
  position: relative; overflow: hidden;
}
.reception .desk .desk-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.reception .desk::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 26%;
  background: linear-gradient(180deg, #FFFFFF00, #F8FAFC);
}
.reception .qr-stand {
  position: absolute; left: 50%; bottom: 26%; transform: translateX(-50%);
  width: 130px; padding: 12px; background: #fff; border-radius: 14px; border: 1px solid var(--hairline); box-shadow: var(--shadow-md);
  text-align: center;
}
.reception .qr-stand .qr {
  width: 100%; aspect-ratio: 1; border-radius: 8px;
  background-color: #fff;
  border: 1px solid var(--hairline);
}
.reception .qr-stand .stand-base { width: 20px; height: 14px; background: var(--ink-300); margin: 8px auto 0; border-radius: 4px 4px 8px 8px; }
.reception .qr-stand .label { font-size: 0.74rem; font-weight: 600; color: var(--ink-700); margin-top: 8px; }

.reception .scan-bar { padding: 14px 16px; margin-top: 14px; border-radius: 14px; background: var(--white); border: var(--border); display: flex; align-items: center; gap: 12px; }
.reception .scan-bar .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-500); box-shadow: 0 0 0 0 rgba(0,194,168,0.5); animation: pulse 1.6s var(--ease-out) infinite; }
.reception .scan-bar .txt { font-size: 0.86rem; color: var(--ink-700); font-weight: 500; }

.float-prescription {
  position: absolute; right: -4%; top: -6%;
  width: 170px; padding: 14px; border-radius: 14px;
  background: var(--white); border: var(--border); box-shadow: var(--shadow-lg); z-index: 5;
}
.float-prescription .hdr { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.float-prescription .hdr .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); }
.float-prescription .hdr span { font-size: 0.74rem; font-weight: 700; color: var(--ink-900); }
.float-prescription .lines i { display: block; height: 6px; background: var(--surface-3); border-radius: 4px; margin-bottom: 5px; }
.float-prescription .lines i:nth-child(1) { width: 90%; }
.float-prescription .lines i:nth-child(2) { width: 70%; }
.float-prescription .lines i:nth-child(3) { width: 60%; }
.float-prescription .mini-qr { width: 44px; height: 44px; border-radius: 6px; background: #fff; margin-top: 10px; padding: 4px; border: 1px solid var(--hairline); }
.float-prescription .mini-qr i {
  display:block; width:100%; height:100%;
  background:
    linear-gradient(#0B1220 0 0) 0 0 / 30% 30% no-repeat,
    linear-gradient(#0B1220 0 0) 70% 0 / 30% 30% no-repeat,
    linear-gradient(#0B1220 0 0) 0 70% / 30% 30% no-repeat;
}

.float-whatsapp {
  position: absolute; left: -4%; bottom: 10%;
  width: 200px; padding: 14px; border-radius: 14px;
  background: var(--white); border: var(--border); box-shadow: var(--shadow-lg); z-index: 5;
}
.float-whatsapp .hdr { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.float-whatsapp .hdr .badge { width: 22px; height: 22px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; }
.float-whatsapp .hdr span { font-size: 0.78rem; font-weight: 600; color: var(--ink-900); }
.float-whatsapp .msg { background: var(--surface-2); border-radius: 12px; padding: 10px 12px; font-size: 0.78rem; color: var(--ink-700); line-height: 1.45; }
.float-whatsapp .msg b { color: var(--teal-700); }

/* Step 2 - Smart review page (HEAVY visuals) */
.review-mobile {
  position: absolute;
  width: 62%; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: var(--ink-900);
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(15,23,42,0.25);
}
.review-mobile .screen { background: #fff; border-radius: 30px; overflow: hidden; aspect-ratio: 9/18.5; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.review-mobile .clinic { display: flex; align-items: center; gap: 10px; }
.review-mobile .clinic .logo { width: 32px; height: 32px; border-radius: 8px; background: var(--grad-brand); display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 0.85rem; }
.review-mobile .clinic .info { display: flex; flex-direction: column; }
.review-mobile .clinic .info b { font-size: 0.85rem; color: var(--ink-900); }
.review-mobile .clinic .info span { font-size: 0.7rem; color: var(--ink-400); }
.review-mobile .question { font-size: 0.92rem; color: var(--ink-900); font-weight: 700; line-height: 1.3; }
.review-mobile .emojis { display: flex; justify-content: space-between; padding: 6px 0; }
.review-mobile .emojis .e { width: 38px; height: 38px; border-radius: 50%; background: var(--surface-2); display: grid; place-items: center; font-size: 1.05rem; transition: transform var(--dur-base) var(--ease-spring); }
.review-mobile .emojis .e.active { background: var(--mint-100); transform: scale(1.12); box-shadow: 0 0 0 2px var(--teal-500); }
.review-mobile .dropdown {
  padding: 11px 13px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--ink-700);
}
.review-mobile .chips { display: flex; flex-wrap: wrap; gap: 5px; }
.review-mobile .chips span { font-size: 0.66rem; padding: 4px 8px; border-radius: 999px; background: var(--mint-100); color: var(--teal-700); font-weight: 600; }
.review-mobile .review-card { background: var(--surface-2); border: 1px solid var(--hairline); border-radius: 12px; padding: 10px 12px; font-size: 0.74rem; color: var(--ink-700); line-height: 1.45; }
.review-mobile .review-card.active { background: linear-gradient(135deg, var(--mint-100), #fff); border-color: var(--teal-500); box-shadow: 0 6px 14px rgba(0,194,168,0.20); }
.review-mobile .review-card .typing { display: inline-block; width: 6px; height: 12px; background: var(--teal-500); margin-left: 2px; vertical-align: middle; animation: caret 1s steps(1) infinite; }
.review-mobile .cta-btn {
  margin-top: auto;
  background: var(--grad-brand); color: #fff;
  border-radius: 12px; padding: 11px;
  font-size: 0.82rem; font-weight: 600; text-align: center;
}

.float-ai {
  position: absolute; left: -6%; top: 18%;
  width: 210px;
  background: var(--white); border: var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px; z-index: 4;
}
.float-ai .head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.float-ai .head .ic { width: 22px; height: 22px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; }
.float-ai .head .ic svg { width: 12px; height: 12px; }
.float-ai .head span { font-size: 0.78rem; font-weight: 700; color: var(--ink-900); }
.float-ai .sugg { font-size: 0.74rem; color: var(--ink-700); line-height: 1.5; padding: 8px 10px; background: var(--mint-50); border-radius: 8px; border: 1px solid var(--mint-200); }

.float-keywords {
  position: absolute; right: -6%; top: 14%;
  width: 200px;
  background: var(--white); border: var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px; z-index: 4;
}
.float-keywords .head { font-size: 0.72rem; font-weight: 700; color: var(--teal-700); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.float-keywords .kw { display: flex; flex-wrap: wrap; gap: 5px; }
.float-keywords .kw span { font-size: 0.7rem; padding: 4px 8px; border-radius: 999px; background: var(--mint-100); color: var(--teal-700); font-weight: 600; }

.float-templates {
  position: absolute; right: -4%; bottom: 12%;
  width: 220px;
  background: var(--white); border: var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px; z-index: 4;
}
.float-templates .head { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: 0.74rem; font-weight: 700; color: var(--ink-900); }
.float-templates .head .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500); }
.float-templates .tpl { font-size: 0.72rem; color: var(--ink-600); padding: 8px 10px; background: var(--surface-2); border-radius: 8px; margin-bottom: 6px; line-height: 1.45; border-left: 2px solid var(--mint-200); }
.float-templates .tpl:last-child { margin-bottom: 0; border-left-color: var(--teal-500); background: var(--mint-50); color: var(--ink-800); }

.float-typing {
  position: absolute; left: -4%; bottom: 8%;
  width: 200px;
  background: var(--white); border: var(--border); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 12px; z-index: 4;
}
.float-typing .head { font-size: 0.74rem; font-weight: 700; color: var(--ink-900); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.float-typing .head .live { width: 6px; height: 6px; border-radius: 50%; background: #EF4444; animation: pulse 1.4s infinite; }
.float-typing .text { font-size: 0.72rem; color: var(--ink-700); line-height: 1.5; }
.float-typing .text i { display: inline-block; width: 4px; height: 11px; background: var(--teal-500); animation: caret 1s steps(1) infinite; vertical-align: middle; margin-left: 1px; }

/* Step 3 - Google redirect */
.google-mock {
  position: absolute; inset: 0; padding: 28px;
  display: flex; flex-direction: column; gap: 14px; z-index: 1;
}
.google-mock .bar { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--white); border: var(--border); border-radius: 999px; box-shadow: var(--shadow-sm); }
.google-mock .bar .g { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.google-mock .bar .g .b { color: #4285F4; } .google-mock .bar .g .r { color: #EA4335; } .google-mock .bar .g .y { color: #FBBC05; } .google-mock .bar .g .g1 { color: #34A853; }
.google-mock .bar .url { font-size: 0.78rem; color: var(--ink-400); margin-left: auto; }

.google-card { background: var(--white); border: var(--border); border-radius: var(--r-lg); padding: 18px; box-shadow: var(--shadow-md); }
.google-card .title { font-size: 1rem; font-weight: 700; color: var(--ink-900); margin-bottom: 4px; }
.google-card .meta { font-size: 0.78rem; color: var(--ink-400); margin-bottom: 12px; }
/* Cycling Google reviews - 5 cards shuffle in one by one from the side */
.google-card .g-reviews { position: relative; height: 138px; }
.g-review {
  position: absolute; inset: 0; opacity: 0;
  background: var(--surface-2); border-radius: 12px; padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  animation: g-rev-cycle 17.5s linear infinite both;
}
.g-review:nth-child(1) { animation-delay: 0s; }
.g-review:nth-child(2) { animation-delay: 3.5s; }
.g-review:nth-child(3) { animation-delay: 7s; }
.g-review:nth-child(4) { animation-delay: 10.5s; }
.g-review:nth-child(5) { animation-delay: 14s; }

.g-rev-top { display: flex; align-items: center; gap: 10px; }
.g-rev-av {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  object-fit: cover; display: grid; place-items: center;
  color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 2px 6px rgba(8,80,68,0.18);
}
.g-rev-av.av1 { background: linear-gradient(135deg, #00C2A8, #009F8A); }
.g-rev-av.av2 { background: linear-gradient(135deg, #5BD1BE, #1DA48C); }
.g-rev-av.av3 { background: linear-gradient(135deg, #0E7E6B, #11806C); }
.g-rev-av.av4 { background: linear-gradient(135deg, #9CEBDC, #00B099); }
.g-rev-av.av5 { background: linear-gradient(135deg, #BFF5EB, #00C2A8); }
.g-rev-id { display: grid; line-height: 1.2; margin-right: auto; }
.g-rev-id b { font-size: 0.84rem; color: var(--ink-900); font-weight: 700; }
.g-rev-id span { font-size: 0.7rem; color: var(--ink-400); }
.g-rev-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; flex: none; }
.g-rev-text { font-size: 0.82rem; color: var(--ink-700); line-height: 1.5; margin: 0; }
.g-rev-text b { color: var(--ink-900); }

@keyframes g-rev-cycle {
  0%   { opacity: 0; transform: translateX(34px) scale(0.97); }
  3%   { opacity: 1; transform: translateX(0) scale(1); }
  17%  { opacity: 1; transform: translateX(0) scale(1); }
  20%  { opacity: 0; transform: translateX(-34px) scale(0.97); }
  100% { opacity: 0; transform: translateX(-34px) scale(0.97); }
}
@media (prefers-reduced-motion: reduce) {
  .g-review { animation: none; }
  .g-review:first-child { opacity: 1; }
}

.float-success {
  position: absolute; right: -4%; top: 72%;
  background: var(--white); border: var(--border); border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--shadow-lg); z-index: 4;
  display: flex; align-items: center; gap: 12px;
}
.float-success .chk { width: 36px; height: 36px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-glow); }
.float-success .chk svg { width: 18px; height: 18px; }
.float-success .lbl b { display: block; font-size: 0.9rem; color: var(--ink-900); font-weight: 700; }
.float-success .lbl span { font-size: 0.78rem; color: var(--ink-500); }
.float-success .lbl .g-stars { color: var(--gold); font-style: normal; letter-spacing: 0.5px; }

.float-arrow {
  position: absolute; left: -4%; bottom: 16%;
  background: var(--white); border: var(--border); border-radius: 999px;
  padding: 8px 14px; box-shadow: var(--shadow-lg); z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; color: var(--teal-700);
}
.float-arrow svg { width: 14px; height: 14px; }

/* Step 4 - Private feedback */
.private-mock { position: absolute; inset: 0; padding: 24px; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.private-mock .shield-wrap {
  display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: 14px;
}
.private-mock .shield-wrap .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; }
.private-mock .shield-wrap .ic svg { width: 18px; height: 18px; }
.private-mock .shield-wrap .lbl b { display: block; font-weight: 700; color: var(--ink-900); font-size: 0.92rem; }
.private-mock .shield-wrap .lbl span { font-size: 0.78rem; color: var(--ink-500); }

.inbox { background: var(--white); border: var(--border); border-radius: var(--r-lg); overflow: hidden; flex: 1; display: flex; flex-direction: column; }
.inbox .head { padding: 12px 16px; border-bottom: var(--border); display: flex; justify-content: space-between; align-items: center; }
.inbox .head b { font-size: 0.92rem; color: var(--ink-900); }
.inbox .head .count { background: var(--warn-bg); color: var(--warn-ink); padding: 3px 9px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.inbox-item { padding: 12px 16px; border-bottom: 1px solid var(--surface-3); display: flex; align-items: flex-start; gap: 12px; transition: background var(--dur-fast); }
.inbox-item:last-child { border-bottom: 0; }
.inbox-item:hover { background: var(--surface-2); }
.inbox-item .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; margin-top: 6px; }
.inbox-item .dot.warn { background: var(--warn-soft); box-shadow: 0 0 0 4px rgba(245,158,107,0.16); }
.inbox-item .dot.ok { background: var(--teal-500); box-shadow: 0 0 0 4px rgba(0,194,168,0.16); }
.inbox-item .body { flex: 1; }
.inbox-item .body .name { font-size: 0.84rem; font-weight: 600; color: var(--ink-900); }
.inbox-item .body .msg { font-size: 0.78rem; color: var(--ink-500); margin-top: 2px; }
.inbox-item .time { font-size: 0.7rem; color: var(--ink-400); flex: none; }

.float-protect {
  position: absolute; right: -4%; top: 58%;
  background: var(--white); border: var(--border); border-radius: var(--r-md);
  padding: 12px 14px; box-shadow: var(--shadow-lg); z-index: 4;
}
.float-protect .head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.float-protect .head svg { color: var(--teal-600); width: 16px; height: 16px; }
.float-protect .head b { font-size: 0.8rem; color: var(--ink-900); }
.float-protect .bar { width: 160px; height: 8px; background: var(--surface-3); border-radius: 999px; overflow: hidden; }
.float-protect .bar i {
  display: block; width: 0; height: 100%;
  background-color: #E11D48; border-radius: 999px;
}
.step.is-visible .float-protect .bar i { animation: protect-fill 3.2s var(--ease-out) 0.3s forwards; }
.step.is-visible .float-protect .pct b { animation: protect-color 3.2s var(--ease-out) 0.3s forwards; }
@keyframes protect-fill {
  0%   { width: 0;   background-color: #E11D48; }
  55%  {             background-color: #F5B700; }
  100% { width: 89%; background-color: #00C2A8; }
}
@keyframes protect-color {
  0%   { color: #E11D48; }
  55%  { color: #F5B700; }
  100% { color: #009F8A; }
}
.float-protect .pct { font-size: 0.72rem; color: var(--ink-500); margin-top: 6px; }
.float-protect .pct b { color: #E11D48; }

/* Step 5 - Analytics dashboard */
.dash-mock {
  position: absolute; inset: 0; padding: 22px;
  display: grid; grid-template-rows: auto 1fr auto; gap: 14px; z-index: 1;
}
.dash-mock .top { display: flex; justify-content: space-between; align-items: center; }
.dash-mock .top .title { font-weight: 700; color: var(--ink-900); font-size: 0.95rem; }
.dash-mock .top .filters { display: flex; gap: 6px; }
.dash-mock .top .filters span { font-size: 0.7rem; padding: 5px 9px; background: var(--surface-2); border: var(--border); border-radius: 999px; color: var(--ink-500); font-weight: 600; }
.dash-mock .top .filters span.active { background: var(--mint-100); color: var(--teal-700); border-color: var(--mint-200); }

.kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kpi {
  background: var(--white); border: var(--border); border-radius: var(--r-md); padding: 12px; box-shadow: var(--shadow-xs);
}
.kpi .lbl { font-size: 0.7rem; color: var(--ink-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.kpi .val { font-family: var(--font-display); font-weight: 700; color: var(--ink-900); font-size: 1.3rem; margin-top: 4px; letter-spacing: -0.02em; }
.kpi .trend { display: inline-flex; align-items: center; gap: 4px; font-size: 0.72rem; font-weight: 600; padding: 3px 7px; border-radius: 999px; background: var(--mint-100); color: var(--teal-700); margin-top: 6px; }
.kpi .trend svg { width: 10px; height: 10px; }

.chart {
  background: var(--white); border: var(--border); border-radius: var(--r-md); padding: 14px;
  position: relative; overflow: hidden;
}
.chart .ch-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.chart .ch-head b { font-size: 0.82rem; color: var(--ink-900); }
.chart .ch-head .legend { display: flex; gap: 10px; font-size: 0.7rem; color: var(--ink-500); }
.chart .ch-head .legend i { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 4px; }
.chart svg { width: 100%; height: 100%; }

.bottom-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.branch-list { background: var(--white); border: var(--border); border-radius: var(--r-md); padding: 12px; }
.branch-list .head { display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--ink-900); font-weight: 700; margin-bottom: 8px; }
.branch-list .row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--surface-3); }
.branch-list .row:first-of-type { border-top: 0; }
.branch-list .row .nm { font-size: 0.78rem; color: var(--ink-700); flex: 1; }
.branch-list .row .ct { font-size: 0.78rem; color: var(--ink-900); font-weight: 700; }
.branch-list .row .bar { width: 60px; height: 6px; background: var(--surface-3); border-radius: 999px; overflow: hidden; }
.branch-list .row .bar i { display: block; height: 100%; background: var(--grad-brand); }

.float-scan {
  position: absolute; left: -5%; top: 16%;
  background: var(--white); border: var(--border); border-radius: var(--r-md);
  padding: 12px 14px; box-shadow: var(--shadow-lg); z-index: 4;
  display: flex; align-items: center; gap: 12px;
}
.float-scan .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--mint-100); color: var(--teal-700); display: grid; place-items: center; }
.float-scan .ic svg { width: 18px; height: 18px; }
.float-scan .lbl b { display: block; font-size: 0.9rem; color: var(--ink-900); font-weight: 700; }
.float-scan .lbl span { font-size: 0.74rem; color: var(--ink-500); }

.float-conv {
  position: absolute; right: -5%; bottom: 14%;
  background: var(--white); border: var(--border); border-radius: var(--r-md);
  padding: 12px 14px; box-shadow: var(--shadow-lg); z-index: 4;
  width: 200px;
}
.float-conv .head { font-size: 0.72rem; color: var(--ink-400); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.float-conv .val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; }
.float-conv .ring {
  width: 36px; height: 36px; border-radius: 50%;
  background: conic-gradient(var(--teal-500) 0 78%, var(--surface-3) 0);
  display: grid; place-items: center; float: right; margin-top: -32px;
}
.float-conv .ring i { width: 24px; height: 24px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: 0.62rem; font-weight: 700; color: var(--ink-900); }

/* ---------- FEATURES (Bento) ---------- */
.features {
  position: relative;
  background:
    radial-gradient(150% 82% at 50% -10%,
      #0B7E6D 0%,
      #129A80 22%,
      #2FB6A0 44%,
      #79D8C7 66%,
      #C7F0E9 84%,
      #FFFFFF 100%);
}
/* heading sits over the dark part of the gradient → light text */
.features .section-head { max-width: 900px; }
.features .section-head .eyebrow {
  color: #fff; background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.30);
}
.features .section-head .eyebrow .dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.22); }
.features .section-head h2 {
  color: #fff;
  white-space: nowrap;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
}
.features .section-head h2 .grad-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #C7F0E9 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.features .section-head p { color: rgba(255,255,255,0.85); }

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
/* card: light shell with an inner white visual on top + text below */
.bento-card {
  background: var(--surface-2);
  border: var(--border);
  border-radius: var(--r-2xl);
  padding: 14px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  box-shadow: var(--shadow-md);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(0,194,168,0.20); }

.bento-visual {
  flex: 1;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 20px;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: center;
}
.bento-text { padding: 2px 8px 8px; }
.bento-text h3 { font-size: 1.05rem; letter-spacing: -0.01em; color: var(--ink-900); margin-bottom: 5px; }
.bento-text p { font-size: 0.9rem; color: var(--ink-500); line-height: 1.5; }

/* QR locations - 2×2 image placeholders */
.qr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; width: 100%; }
.qr-tile {
  background: var(--surface-2); border: var(--border); border-radius: 14px;
  padding: 10px; display: flex; flex-direction: column; gap: 8px;
}
.qr-tile .qr-ph, .qr-tile .qr-img {
  width: 100%; height: clamp(64px, 7vw, 86px); border-radius: 10px; display: block;
}
.qr-tile .qr-img { object-fit: cover; }
.qr-tile .qr-ph {
  display: grid; place-items: center;
  background: #fff; border: 1px dashed var(--hairline-2); color: var(--ink-300);
}
.qr-tile .qr-ph svg { width: 30%; height: 30%; }
.qr-tile .l { font-size: 0.92rem; font-weight: 700; color: var(--ink-800); text-align: center; letter-spacing: -0.01em; }

/* humanized review pills */
.review-list { display: grid; gap: 10px; width: 100%; }
.review-pill { background: var(--surface-2); border-radius: 10px; padding: 11px 13px; font-size: 0.82rem; color: var(--ink-700); line-height: 1.5; border-left: 3px solid var(--mint-200); }
.review-pill:last-child { border-left-color: var(--teal-500); background: var(--mint-50); }

/* AI reply mock */
.reply-mock { width: 100%; display: flex; flex-direction: column; font-size: 0.82rem; color: var(--ink-700); }
.reply-mock .in { padding: 9px 11px; border-radius: 10px 10px 10px 4px; background: var(--surface-2); border: var(--border); margin-bottom: 8px; }
.reply-mock .ai-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 0.66rem; font-weight: 700; padding: 3px 8px; background: var(--mint-100); color: var(--teal-700); border-radius: 999px; margin-bottom: 8px; align-self: flex-start; }
.reply-mock .out { padding: 9px 11px; border-radius: 10px 10px 4px 10px; background: var(--grad-brand); color: #fff; align-self: flex-end; }

/* private feedback mock */
.private-mock { width: 100%; display: flex; flex-direction: column; gap: 12px; }
.private-mock .pm-head { display: flex; align-items: center; gap: 10px; }
.private-mock .pm-ic { width: 34px; height: 34px; flex: none; border-radius: 9px; background: var(--mint-100); color: var(--teal-700); display: grid; place-items: center; }
.private-mock .pm-ic svg { width: 17px; height: 17px; }
.private-mock .pm-id { display: grid; line-height: 1.25; }
.private-mock .pm-id b { font-size: 0.85rem; color: var(--ink-900); }
.private-mock .pm-id span { font-size: 0.72rem; color: var(--ink-400); }
.private-mock .pm-msg { background: var(--warn-bg); border: 1px solid var(--warn-line); border-radius: 10px; padding: 10px 12px; font-size: 0.82rem; color: var(--ink-700); line-height: 1.5; }

/* ---------- BENEFITS ---------- */
.benefits { background: var(--white); }
.bn-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bn-card {
  padding: 24px; border: var(--border); border-radius: var(--r-lg); background: var(--white);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  position: relative; overflow: hidden;
}
.bn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bn-card .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--mint-100); color: var(--teal-700); display: grid; place-items: center; margin-bottom: 14px; }
.bn-card .ic svg { width: 19px; height: 19px; }
.bn-card h3 { font-size: 1.02rem; margin-bottom: 7px; }
.bn-card p { font-size: 0.9rem; }

.stats-strip { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--surface-2); border-radius: var(--r-lg); padding: 26px; border: var(--border); }
.stat { text-align: center; border-right: 1px solid var(--hairline); padding: 0 14px; }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--ink-900); letter-spacing: -0.02em; }
.stat .num span { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-size: 0.86rem; color: var(--ink-500); margin-top: 4px; }

/* ---------- EMOTIONAL ---------- */
.emotional {
  background: var(--surface-2); position: relative; overflow: hidden; text-align: center;
}
.emotional::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-mesh);
  pointer-events: none;
}
.emotional .container { position: relative; z-index: 1; max-width: 820px; }
.emotional h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); line-height: 1.18; }
.emotional .lead { margin: 20px auto 32px; font-size: 1.0625rem; max-width: 620px; }

.testimonial-float { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.t-card {
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
  text-align: left;
}
.t-card .stars { color: var(--gold); margin-bottom: 8px; font-size: 0.9rem; }
.t-card .quote { font-size: 0.92rem; color: var(--ink-700); line-height: 1.55; }
.t-card .author { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.t-card .author .av { width: 32px; height: 32px; border-radius: 50%; background: var(--mint-100); color: var(--teal-700); display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; }
.t-card .author .info b { display: block; font-size: 0.84rem; color: var(--ink-900); }
.t-card .author .info span { font-size: 0.74rem; color: var(--ink-400); }

/* ---------- USE CASES ---------- */
.usecases { background: var(--white); }
.uc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.uc-card {
  padding: 20px; background: var(--white); border: var(--border); border-radius: var(--r-md);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  position: relative; overflow: hidden;
}
.uc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(0,194,168,0.30); }
.uc-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.uc-card:hover::after { transform: scaleX(1); }
.uc-card .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--mint-100); color: var(--teal-700); display: grid; place-items: center; margin-bottom: 12px; }
.uc-card .ic svg { width: 20px; height: 20px; }
.uc-card h4 { font-size: 0.96rem; color: var(--ink-900); }
.uc-card span { font-size: 0.82rem; color: var(--ink-500); margin-top: 4px; display: block; }

.uc-note { text-align: center; margin-top: 28px; color: var(--ink-500); font-size: 0.95rem; }

/* ---------- RESULTS / BEFORE AFTER ---------- */
.results { background: var(--surface-2); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; position: relative; }
.results-grid::before {
  content: "VS"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-weight: 800; font-size: 0.86rem; letter-spacing: 0.1em;
  background: var(--white); color: var(--ink-700); width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center; box-shadow: var(--shadow-md); border: var(--border);
  z-index: 2;
}
.r-card { padding: 24px; background: var(--white); border: var(--border); border-radius: var(--r-lg); }
.r-card.before { background: var(--white); }
.r-card.after { background: linear-gradient(180deg, var(--mint-50), #fff); border-color: var(--mint-200); }
.r-card .tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.r-card.before .tag { background: var(--surface-3); color: var(--ink-500); }
.r-card.after  .tag { background: var(--mint-100); color: var(--teal-700); }
.r-card h3 { margin: 12px 0 16px; font-size: 1.15rem; }
.r-card ul { display: grid; gap: 12px; }
.r-card li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--ink-700); }
.r-card.before li .x { width: 22px; height: 22px; border-radius: 50%; background: #FFF1EB; color: #B5471A; display: grid; place-items: center; flex: none; }
.r-card.after  li .v { width: 22px; height: 22px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; flex: none; }
.r-card .x svg, .r-card .v svg { width: 12px; height: 12px; }
.r-card .mini-chart { margin-top: 22px; padding: 14px; background: var(--surface-2); border-radius: 12px; }
.r-card .mini-chart .lbl { font-size: 0.74rem; color: var(--ink-500); font-weight: 600; margin-bottom: 8px; display: flex; justify-content: space-between; }
.r-card .mini-chart .lbl b { color: var(--ink-900); }
.r-card.after .mini-chart { background: #fff; border: 1px solid var(--mint-200); }
.r-card .bars { display: flex; align-items: flex-end; gap: 6px; height: 56px; }
.r-card .bars i { flex: 1; border-radius: 4px 4px 0 0; }
.r-card.before .bars i { background: #FCE7DA; }
.r-card.after  .bars i { background: var(--grad-brand); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-wrap { max-width: 820px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
  background: var(--white); border: var(--border); border-radius: var(--r-md); overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.faq-item:hover { border-color: rgba(0,194,168,0.25); }
.faq-item.open { border-color: var(--teal-500); box-shadow: 0 8px 24px rgba(0,194,168,0.10); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; text-align: left;
  font-family: var(--font-display); font-weight: 600; color: var(--ink-900); font-size: 0.96rem;
  letter-spacing: -0.005em;
}
.faq-q .pm {
  width: 28px; height: 28px; border-radius: 50%; background: var(--surface-2); color: var(--teal-700);
  display: grid; place-items: center; flex: none; transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.faq-item.open .faq-q .pm { background: var(--grad-brand); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-a .inner { padding: 0 22px 20px; color: var(--ink-500); font-size: 0.95rem; line-height: 1.65; }

/* ---------- FINAL CTA ---------- */
.final {
  background: var(--white); position: relative; overflow: hidden;
}
.final-card {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  background: linear-gradient(180deg, #fff, var(--mint-50));
  border: 1px solid var(--mint-200);
  border-radius: var(--r-3xl);
  padding: clamp(40px, 6vw, 80px);
  text-align: center;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.7);
  overflow: hidden;
}
.final-card::before {
  content: ""; position: absolute; left: 50%; top: -40%;
  width: 900px; height: 600px;
  background: radial-gradient(closest-side, rgba(0,194,168,0.20), transparent 70%);
  transform: translateX(-50%); filter: blur(20px); pointer-events: none;
}
.final-card::after {
  content: ""; position: absolute; right: -10%; bottom: -40%;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, rgba(0,159,138,0.16), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.final-card .inner { position: relative; z-index: 1; }
.final-card h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); letter-spacing: -0.03em; line-height: 1.1; }
.final-card .lead { margin: 20px auto 12px; max-width: 600px; }
.final-card .punch { display: flex; gap: 24px; justify-content: center; margin: 16px 0 28px; font-family: var(--font-display); font-weight: 700; color: var(--ink-900); font-size: 1rem; letter-spacing: -0.01em; }
.final-card .punch span { display: inline-flex; align-items: center; gap: 8px; }
.final-card .punch span::before { content: "•"; color: var(--teal-500); font-size: 1.4rem; }
.final-card .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final-card .micro { margin-top: 28px; display: flex; justify-content: center; gap: 24px; color: var(--ink-500); font-size: 0.86rem; flex-wrap: wrap; }
.final-card .micro span { display: inline-flex; align-items: center; gap: 6px; }
.final-card .micro svg { color: var(--teal-600); width: 14px; height: 14px; }

/* floating mini cards inside final */
.final-card .float-mini {
  position: absolute;
  background: var(--white); border: var(--border); border-radius: var(--r-md);
  padding: 10px 12px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 8px; font-size: 0.78rem;
  z-index: 2;
}
.final-card .float-mini .stars { color: var(--gold); font-size: 0.78rem; letter-spacing: -1px; }
.final-card .float-mini.fm-1 { left: 3%; top: 14%; }
.final-card .float-mini.fm-2 { right: 4%; top: 20%; }
.final-card .float-mini.fm-3 { left: 6%; bottom: 12%; }
.final-card .float-mini.fm-4 { right: 3%; bottom: 18%; }

/* ---------- FOOTER ---------- */
.footer { padding: 52px 0 28px; background: var(--white); border-top: var(--border); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.foot-brand .lead { font-size: 0.92rem; color: var(--ink-500); margin: 16px 0; max-width: 320px; }
.foot-socials { display: flex; gap: 8px; }
.foot-socials a {
  width: 36px; height: 36px; border-radius: 10px; border: var(--border);
  display: grid; place-items: center; color: var(--ink-500);
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}
.foot-socials a:hover { color: var(--teal-700); border-color: var(--mint-200); background: var(--mint-50); }
.foot-socials svg { width: 16px; height: 16px; }

.foot-col h5 { font-family: var(--font-display); font-size: 0.84rem; color: var(--ink-900); margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.foot-col a { display: block; padding: 6px 0; color: var(--ink-500); font-size: 0.92rem; transition: color var(--dur-fast); }
.foot-col a:hover { color: var(--teal-700); }

.foot-bottom { margin-top: 48px; padding-top: 22px; border-top: var(--border); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot-bottom small { color: var(--ink-400); font-size: 0.82rem; }
.foot-legal { display: flex; gap: 18px; }
.foot-legal a { font-size: 0.82rem; color: var(--ink-500); }
.foot-legal a:hover { color: var(--teal-700); }

/* ============================================================
   CHATBOT
   ============================================================ */
.chatbot { position: fixed; right: 22px; bottom: 22px; z-index: 600; }

.cb-launcher {
  position: relative;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px rgba(0,194,168,0.40), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.cb-launcher:hover { transform: translateY(-2px) scale(1.04); }
.cb-launcher svg { width: 26px; height: 26px; position: absolute; transition: opacity var(--dur-fast), transform var(--dur-fast); }
.cb-ic-close { opacity: 0; transform: rotate(-90deg) scale(0.6); }
.cb-launcher.is-open .cb-ic-chat { opacity: 0; transform: rotate(90deg) scale(0.6); }
.cb-launcher.is-open .cb-ic-close { opacity: 1; transform: rotate(0) scale(1); }
.cb-badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px;
  background: #EF4444; color: #fff; font-size: 0.7rem; font-weight: 700;
  display: grid; place-items: center; border: 2px solid #fff;
}

.cb-panel {
  position: absolute; right: 0; bottom: 74px;
  width: 360px; max-width: calc(100vw - 32px);
  height: 520px; max-height: calc(100vh - 120px);
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2xl);
  box-shadow: 0 30px 80px rgba(15,23,42,0.22), 0 8px 24px rgba(15,23,42,0.10);
  overflow: hidden;
  animation: cb-pop 280ms var(--ease-spring) both;
}
.cb-panel[hidden] { display: none; }
@keyframes cb-pop { 0% { opacity: 0; transform: translateY(16px) scale(0.96); } 100% { opacity: 1; transform: none; } }

.cb-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px;
  background: radial-gradient(120% 120% at 0% 0%, #0E7E6B, #0A5E50);
  color: #fff;
}
.cb-head-id { display: flex; align-items: center; gap: 11px; }
.cb-avatar {
  width: 40px; height: 40px; border-radius: 12px; flex: none;
  background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.25);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 0.9rem;
}
.cb-head-txt b { display: block; font-size: 0.95rem; }
.cb-head-txt span { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: rgba(255,255,255,0.82); }
.cb-dot { width: 7px; height: 7px; border-radius: 50%; background: #4ADE80; box-shadow: 0 0 0 3px rgba(74,222,128,0.25); }
.cb-close { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; }
.cb-close:hover { background: rgba(255,255,255,0.14); }
.cb-close svg { width: 18px; height: 18px; }

.cb-body {
  flex: 1; min-height: 0; overflow-y: auto;
  padding: 16px; display: flex; flex-direction: column; gap: 10px;
  background: var(--surface-2);
  scrollbar-width: thin;
  scrollbar-color: var(--ink-200) transparent;
}
.cb-body::-webkit-scrollbar { width: 6px; }
.cb-body::-webkit-scrollbar-track { background: transparent; }
.cb-body::-webkit-scrollbar-thumb { background: var(--ink-200); border-radius: 999px; }
.cb-body::-webkit-scrollbar-button { display: none; height: 0; width: 0; }
.cb-msg {
  max-width: 82%; padding: 10px 13px; font-size: 0.9rem; line-height: 1.45;
  border-radius: 14px;
}
.cb-bot { align-self: flex-start; background: #fff; border: 1px solid var(--hairline); color: var(--ink-800); border-bottom-left-radius: 5px; }
.cb-user { align-self: flex-end; background: var(--grad-brand); color: #fff; border-bottom-right-radius: 5px; }
.cb-msg b { font-weight: 700; }
.cb-bot b { color: var(--teal-700); }

.cb-typing { display: inline-flex; gap: 4px; }
.cb-typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-300); animation: cb-blink 1.1s infinite both; }
.cb-typing span:nth-child(2) { animation-delay: .18s; }
.cb-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes cb-blink { 0%, 80%, 100% { opacity: .3; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }

/* quick-reply chips live inside the chat body */
.cb-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.cb-chip {
  font-size: 0.82rem; font-weight: 500; line-height: 1.2;
  padding: 8px 13px; border-radius: var(--r-pill);
  background: #fff; color: var(--teal-700); border: 1px solid var(--mint-200);
  box-shadow: var(--shadow-xs);
  transition: background var(--dur-fast), transform var(--dur-fast), border-color var(--dur-fast);
}
.cb-chip:hover { background: var(--mint-50); border-color: var(--teal-500); transform: translateY(-1px); }
.cb-chip-wa { color: var(--ink-600); border-color: var(--hairline-2); }
.cb-chip-wa:hover { border-color: var(--ink-300); background: var(--surface-2); }

.cb-foot { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--hairline); background: var(--white); }
.cb-foot input {
  flex: 1; min-width: 0; border: 1px solid var(--hairline-2); border-radius: var(--r-pill);
  padding: 11px 16px; font-size: 0.9rem; color: var(--ink-900); background: var(--surface-2);
}
.cb-foot input:focus { outline: none; border-color: var(--teal-500); background: #fff; box-shadow: 0 0 0 3px rgba(0,194,168,0.12); }
.cb-send { width: 40px; height: 40px; flex: none; border-radius: 50%; background: var(--grad-brand); color: #fff; display: grid; place-items: center; }
.cb-send svg { width: 17px; height: 17px; }

.cb-wa {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px; background: #25D366; color: #fff; font-weight: 600; font-size: 0.9rem;
}
.cb-wa:hover { background: #1eb858; }
.cb-wa svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
  .chatbot { right: 16px; bottom: 16px; }
  .cb-panel { bottom: 70px; height: 70vh; }
}
