/* ============================================================
   Client Network — site design system
   Palette extracted from brand assets: charcoal UI cards,
   mint/teal accents, off-white base, halftone dot-waves.
   ============================================================ */

:root {
  --ink: #16181d;
  --ink-2: #1b1e25;
  --ink-3: #23272f;
  --ink-footer: #0e1116;
  --paper: #f2f5f4;
  --paper-2: #ffffff;
  --mint: #9dd7d4;
  --mint-soft: #e6f4f1;
  --teal: #24a588;
  --teal-deep: #157a67;
  --green: #3ebf9e;
  --red: #e74c5c;
  --red-soft: #fdecec;
  --amber: #f59e0b;
  --txt: #1a212b;
  --txt-2: #4e5964;
  --txt-3: #8a94a0;
  --txt-on-dark: #e8ecef;
  --txt-2-on-dark: #a7b0b9;
  --line: #e2e8e6;
  --line-dark: rgba(255, 255, 255, 0.08);
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(15, 26, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 26, 46, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 26, 46, 0.1);
  --shadow-xl: 0 24px 70px rgba(15, 26, 46, 0.14);
  --glow: 0 8px 30px rgba(62, 191, 158, 0.28);
  --font: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--txt);
  background: var(--paper);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; font-weight: 750; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; padding: 0; }
.icon { width: 1.15em; height: 1.15em; flex: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; position: relative; }
.section-tight { padding: 80px 0; }

/* dot-wave backdrops */
.wave-wrap { position: relative; overflow: hidden; }
.wave-wrap > .container { position: relative; z-index: 1; }
.wave-tr, .wave-bl {
  position: absolute; width: 640px; max-width: 70vw; opacity: 0.55;
  pointer-events: none; user-select: none; z-index: 0;
}
.wave-tr { top: -60px; right: -120px; }
.wave-bl { bottom: -80px; left: -140px; }

/* ---------- type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-deep);
  background: var(--mint-soft); border: 1px solid rgba(36, 165, 136, 0.18);
  padding: 7px 14px; border-radius: 999px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.eyebrow--red { color: #b8322f; background: var(--red-soft); border-color: rgba(231, 76, 92, 0.2); }
.eyebrow--red::before { background: var(--red); }

.section-head { max-width: 820px; margin: 0 auto 38px; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2.3rem, 4.8vw, 3.7rem); }
.section-head p { margin-top: 16px; color: var(--txt-2); font-size: 1.16rem; }
.section-head--left { margin: 0 0 36px; text-align: left; }
.dot { color: var(--green); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-weight: 650; font-size: 1rem; letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn .icon { transition: transform 0.25s var(--ease); }
.btn:hover .icon { transform: translateX(3px); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: var(--shadow-md); }
.btn-dark .icon { color: var(--mint); }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg), var(--glow); }
.btn-light {
  background: var(--paper-2); color: var(--ink);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn-light:hover { border-color: var(--green); color: var(--teal-deep); transform: translateY(-2px); }
.btn-glass {
  background: #fff; color: var(--teal-deep);
  border: 1.5px solid var(--mint); box-shadow: 0 0 0 4px rgba(157, 215, 212, 0.15);
}
.btn-glass:hover { transform: translateY(-2px); box-shadow: 0 0 0 6px rgba(157, 215, 212, 0.22), var(--glow); }
.btn-sm { padding: 10px 20px; font-size: 0.92rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(242, 245, 244, 0.82);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); background: rgba(242, 245, 244, 0.92); }
.nav-inner { display: flex; align-items: center; gap: 32px; width: 100%; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 30px; height: 30px; border-radius: 9px; object-fit: cover; }
.brand-word {
  font-family: "Fira Code", var(--font-mono); font-weight: 700; font-size: 1.08rem;
  letter-spacing: -0.02em; color: var(--ink);
}
.brand-word .dot { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav-links a { font-weight: 550; font-size: 0.97rem; color: var(--txt-2); transition: color 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav .btn { margin-left: 4px; }
.nav-burger { display: none; margin-left: auto; width: 42px; height: 42px; border-radius: 12px; background: #fff; border: 1px solid var(--line); align-items: center; justify-content: center; }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(242, 245, 244, 0.98);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line); padding: 18px 24px 26px;
}
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 12px 4px; font-weight: 600; color: var(--txt); border-bottom: 1px solid var(--line); }
.nav-mobile a:last-of-type { border-bottom: 0; }
.nav-mobile .btn { width: 100%; margin-top: 14px; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  min-height: min(100vh, 940px); padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(56% 48% at 90% 8%, rgba(157, 215, 212, 0.4), transparent 70%),
    radial-gradient(44% 40% at 2% 88%, rgba(157, 215, 212, 0.3), transparent 70%),
    linear-gradient(180deg, #f6f9f8 0%, var(--paper) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.24fr 0.9fr; gap: 56px; align-items: center;
  flex: 1; position: relative; z-index: 1; padding-top: 44px; padding-bottom: 36px;
}
.hero-grid > div { min-width: 0; }
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: #15803d; background: #dcfce7; border-radius: 999px; padding: 5px 12px;
}
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: #16a34a; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.45; transform: scale(0.8); } }

.hero-trust { display: inline-flex; align-items: center; gap: 10px; row-gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-avatars { display: flex; }
.hero-avatars img { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; }
.hero-avatars img + img { margin-left: -9px; }
.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars .icon { width: 15px; height: 15px; }
.hero-trust span { font-size: 0.92rem; font-weight: 600; color: var(--txt-2); }
.hero h1 { font-size: clamp(2.7rem, 4.2vw, 3.9rem); white-space: nowrap; }
.hero h1 .line { display: inline; }
.hero-copy > * { animation: heroFade 0.8s var(--ease) backwards; }
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.28s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.4s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.52s; }
.hero-journey { animation: heroFade 0.9s var(--ease) 0.35s backwards; }
@keyframes heroFade { from { opacity: 0; transform: translateY(22px); } }
.hero-sub { margin: 20px 0 26px; color: var(--txt-2); font-size: 1.3rem; max-width: 30em; }
.hero-copy .stat-strip { margin-bottom: 26px; max-width: 430px; border-radius: 14px; }
.hero-copy .stat-strip > div { padding: 10px 8px; }
.hero-copy .stat-strip b { font-size: 1.12rem; }
.hero-copy .stat-strip small { font-size: 0.55rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- hero journey card (ad -> quiz -> delivered) ---------- */
.journey {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  box-shadow: var(--shadow-xl); padding: 20px;
}
.journey-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.journey-tabs span {
  flex: 1; text-align: center;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--txt-3); background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 6px; white-space: nowrap;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.journey-tabs span.active { background: var(--ink); color: var(--mint); border-color: var(--ink); }
.journey-stages { position: relative; height: 480px; }
.jstage { position: absolute; inset: 0; display: none; flex-direction: column; }
.jstage.active { display: flex; animation: stageIn 0.55s var(--ease) both; }
@keyframes stageIn { from { opacity: 0; transform: translateY(20px) scale(0.98); } }

/* generic inner card for journey stages */
.jcard {
  border: 1px solid var(--line); border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; gap: 14px; height: 100%;
  box-shadow: var(--shadow-sm); background: #fff;
}
.jtag {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-deep);
}

/* stage 1: the ad (traffic channels) */
.src-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.src-tile {
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
  background: #fafcfb; display: flex; flex-direction: column; gap: 10px;
}
.src-tile i {
  width: 40px; height: 40px; border-radius: 12px; background: var(--ink);
  color: var(--mint); display: flex; align-items: center; justify-content: center;
}
.src-tile i .icon { width: 20px; height: 20px; }
.src-tile b { font-size: 1rem; letter-spacing: -0.01em; }
.jstage-ad.active .src-tile { animation: cardIn 0.45s var(--ease) backwards; animation-delay: calc(var(--i, 0) * 0.18s + 0.1s); }
.src-note {
  margin-top: auto; border: 1.5px solid var(--mint); background: var(--mint-soft);
  border-radius: 14px; padding: 14px 16px; font-weight: 600; font-size: 0.95rem;
  opacity: 0;
}
.jstage-ad.active .src-note { animation: fadeUp 0.5s var(--ease) 1s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* stage 2: quick quiz + IVR screener timeline */
.quiz-quick { display: flex; gap: 10px; }
.qq { flex: 1; border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; }
.qq small {
  display: block; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-3);
}
.qq b { font-size: 1.05rem; }
.jstage-quiz.active .qq { animation: cardIn 0.4s var(--ease) backwards; animation-delay: calc(var(--i, 0) * 0.15s + 0.1s); }
.ivr { position: relative; margin: 6px 0 0 9px; padding-left: 26px; }
.ivr::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 14px; width: 2px; background: var(--line); }
.ivr-fill { position: absolute; left: 0; top: 8px; width: 2px; height: 0; background: var(--green); box-shadow: 0 0 8px rgba(62, 191, 158, 0.6); }
.jstage-quiz.active .ivr-fill { animation: ivrFill 2.2s linear 0.7s both; }
@keyframes ivrFill { to { height: calc(100% - 22px); } }
.ivr-node { position: relative; padding-bottom: 20px; }
.ivr-node:last-child { padding-bottom: 0; }
.ivr-dot {
  position: absolute; left: -34px; top: 2px; width: 18px; height: 18px;
  border-radius: 50%; border: 2px solid var(--line); background: #fff;
}
.jstage-quiz.active .ivr-node:nth-child(2) .ivr-dot { animation: nodeOn 0.3s var(--ease) 0.9s both; }
.jstage-quiz.active .ivr-node:nth-child(3) .ivr-dot { animation: nodeOn 0.3s var(--ease) 1.8s both; }
.jstage-quiz.active .ivr-node:nth-child(4) .ivr-dot { animation: nodeOn 0.3s var(--ease) 2.7s both; }
@keyframes nodeOn { to { border-color: var(--green); background: var(--green); box-shadow: 0 0 10px rgba(62, 191, 158, 0.55), inset 0 0 0 3px #fff; } }
.ivr-node b { display: flex; align-items: center; gap: 8px; font-size: 0.99rem; }
.ivr-node b .icon { width: 15px; height: 15px; color: var(--teal); opacity: 0; }
.jstage-quiz.active .ivr-node:nth-child(2) b .icon { animation: fadeUp 0.3s 1s both; }
.jstage-quiz.active .ivr-node:nth-child(3) b .icon { animation: fadeUp 0.3s 1.9s both; }
.jstage-quiz.active .ivr-node:nth-child(4) b .icon { animation: fadeUp 0.3s 2.8s both; }
.ivr-node span { display: block; color: var(--txt-2); font-size: 0.88rem; margin-top: 2px; }

/* stage 3: delivered */
.jstage-call { justify-content: center; gap: 16px; }
.crm-toast {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--mint); border-radius: 14px;
  padding: 13px 16px; box-shadow: var(--shadow-md);
  font-weight: 600; font-size: 0.95rem; opacity: 0;
}
.crm-toast .icon { color: var(--teal); }
.jstage-call.active .crm-toast { animation: fadeUp 0.5s var(--ease) 1.5s both; }


/* live call card (right column) */
.call-stack { display: grid; gap: 18px; }
.call-card {
  background: linear-gradient(160deg, #1b1e25, #14161c);
  border: 1px solid var(--line-dark); border-radius: 20px;
  padding: 22px 24px 0; color: var(--txt-on-dark);
  box-shadow: var(--shadow-xl);
}
.call-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.call-card-top .label { display: inline-flex; align-items: center; gap: 8px; font-size: 0.95rem; color: #cdd4da; }
.call-card-top .label i { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); animation: pulse 1.4s infinite; }
.call-tag {
  font-size: 0.78rem; font-weight: 650; color: var(--mint);
  border: 1px solid rgba(62, 191, 158, 0.45); border-radius: 999px; padding: 5px 12px;
  box-shadow: 0 0 14px rgba(62, 191, 158, 0.18);
}
.call-card-main { display: flex; align-items: center; gap: 16px; padding-bottom: 22px; }
.call-avatar {
  width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: #2a2f38; border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center; color: #77818c;
}
.call-avatar .icon { width: 26px; height: 26px; }
.call-id { min-width: 0; }
.call-name { font-size: 1.35rem; font-weight: 750; color: #fff; letter-spacing: -0.01em; }
.call-meta { display: flex; align-items: center; gap: 10px; margin-top: 4px; flex-wrap: wrap; }
.call-num { font-family: var(--font-mono); font-size: 0.9rem; color: #98a1ab; }
.call-src {
  font-size: 0.78rem; font-weight: 650; color: #0f3d33;
  background: var(--mint); border-radius: 999px; padding: 3px 10px;
}
.call-btn {
  margin-left: auto; width: 54px; height: 54px; border-radius: 50%; flex: none;
  background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 8px rgba(62, 191, 158, 0.14), 0 0 24px rgba(62, 191, 158, 0.4);
}
.call-card-foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.88rem; color: #8a94a0;
  background: rgba(255, 255, 255, 0.04); border-top: 1px solid var(--line-dark);
  margin: 0 -24px; padding: 12px; border-radius: 0 0 20px 20px;
}
.stat-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: #fff; border: 1.5px solid var(--mint); border-radius: 18px;
  box-shadow: var(--shadow-md); overflow: hidden;
}
.stat-strip > div { padding: 16px 10px; text-align: center; }
.stat-strip > div + div { border-left: 1px solid var(--line); }
.stat-strip b { display: block; font-size: 1.35rem; font-weight: 800; color: var(--teal-deep); letter-spacing: -0.02em; }
.stat-strip small { font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--txt-3); }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.74rem; font-weight: 650; letter-spacing: 0.04em;
  color: var(--txt-2); background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px;
}
.chip .icon { width: 14px; height: 14px; color: var(--teal); }

/* ---------- marquee ---------- */
.marquee {
  margin-top: 0; padding: 16px 0; position: relative; z-index: 1;
  background: var(--ink); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 44px;
  font-family: var(--font-mono); font-size: 0.85rem; font-weight: 650;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint); white-space: nowrap;
}
.marquee-track span::after { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px rgba(62, 191, 158, 0.8); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- programs: image-topped cards ---------- */
.pcards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.pcard {
  background: #14161c; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl), var(--glow); border-color: rgba(62, 191, 158, 0.4); }
.pcard-img { width: 100%; height: 300px; object-fit: cover; display: block; }
.pcard-body {
  padding: 34px 32px 36px; display: flex; flex-direction: column; gap: 16px; flex: 1;
  background: linear-gradient(165deg, #1c1f27, #14161c); color: var(--txt-on-dark);
}
.pcard-body h3 { font-size: 1.9rem; color: #fff; }
.pcard-body > p { color: var(--txt-2-on-dark); font-size: 1.04rem; }
.pcard-body .check-list { margin: 4px 0 8px; }
.pcard-body .check-list li { color: var(--txt-2-on-dark); }
.pcard-body .eyebrow {
  align-self: flex-start; color: var(--mint);
  background: rgba(62, 191, 158, 0.08); border-color: rgba(62, 191, 158, 0.4);
}
.pcard-body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- products ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md); display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card > img { height: 220px; width: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.product-card:hover > img { transform: scale(1.04); }
.product-body { padding: 26px 28px 30px; }
.ptag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-deep);
  margin-bottom: 10px;
}
.ptag .icon { width: 14px; height: 14px; }
.product-body h3 { font-size: 1.35rem; margin-bottom: 8px; }
.product-body p { color: var(--txt-2); font-size: 0.99rem; }

/* ---------- problem ---------- */
.problem { background: linear-gradient(180deg, #f0f0f0, #f6f6f6 50%, var(--paper)); }
.problem-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.reveal.in .pain-list li { animation: rise 0.5s var(--ease) backwards; animation-delay: calc(var(--i, 0) * 0.12s + 0.2s); }
@keyframes rise { from { opacity: 0; transform: translateX(-16px); } }
.problem-callout {
  border-left: 3px solid var(--red); background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow-sm);
  padding: 18px 22px; font-weight: 600; margin: 26px 0;
}
.pain-title { font-weight: 700; margin-bottom: 14px; }
.pain-list { display: grid; gap: 12px; }
.pain-list li {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 18px; color: var(--txt-2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pain-list li:hover { transform: translateX(5px); box-shadow: var(--shadow-sm); }
.pain-list .icon { color: var(--red); margin-top: 3px; }
.problem-visual { position: relative; }
.problem-visual > img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  transform: rotate(-1.5deg); transition: transform 0.4s var(--ease);
}
.problem-visual:hover > img { transform: rotate(0); }
.float-badge {
  position: absolute; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 16px 20px; animation: floaty 4s ease-in-out infinite;
}
.float-badge b { display: block; font-size: 1.5rem; color: var(--red); letter-spacing: -0.02em; }
.float-badge small { color: var(--txt-2); font-size: 0.88rem; }
.float-badge--tl { top: -18px; left: -26px; }
.float-badge--br { bottom: -18px; right: -14px; animation-delay: 2s; }
@keyframes floaty { 50% { transform: translateY(-8px); } }

/* ---------- why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  position: relative; overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9); outline: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), outline-color 0.3s var(--ease);
}
.why-card::before {
  content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(157, 215, 212, 0.3), transparent);
  transform: skewX(-18deg); transition: left 0.7s var(--ease); pointer-events: none;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), var(--glow); outline-color: var(--green); }
.why-card:hover::before { left: 135%; }
.why-grid.reveal.in .why-card { animation: cardIn 0.65s var(--ease) backwards; animation-delay: calc(var(--i, 0) * 0.15s); }
@keyframes cardIn { from { opacity: 0; transform: translateY(34px); } }
.why-icon {
  width: 58px; height: 58px; border-radius: 17px;
  background: var(--ink); color: var(--mint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.why-icon .icon { width: 27px; height: 27px; }
.why-card:hover .why-icon { animation: iconPop 0.45s var(--ease); }
@keyframes iconPop { 40% { transform: scale(1.14) rotate(-5deg); } }
.why-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.why-card p { color: var(--txt-2); font-size: 1.04rem; }

/* ---------- how it works (sticky) ---------- */
.hiw-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 70px; }
.hiw-left { position: sticky; top: calc(var(--nav-h) + 40px); align-self: start; }
.hiw-left .eyebrow { margin-bottom: 18px; }
.hiw-left h2 { font-size: clamp(2.2rem, 4vw, 3.3rem); }
.hiw-left p { margin: 18px 0 28px; color: var(--txt-2); font-size: 1.08rem; }
.hiw-cards { display: grid; gap: 26px; }
.hiw-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.hiw-card img { height: 210px; width: 100%; object-fit: cover; }
.hiw-card-body { padding: 26px 28px 30px; }
.hiw-num {
  font-family: var(--font-mono); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--teal-deep); background: var(--mint-soft); border-radius: 999px; padding: 5px 12px;
  display: inline-block; margin-bottom: 12px;
}
.hiw-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.hiw-card p { color: var(--txt-2); font-size: 0.99rem; }

/* ---------- benefits ---------- */
.benefits-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 84px; align-items: center; }
.benefit-list { display: grid; gap: 30px; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.reveal.in .benefit-item { animation: rise 0.5s var(--ease) backwards; animation-delay: calc(var(--i, 0) * 0.12s + 0.15s); }
.benefit-check {
  width: 42px; height: 42px; border-radius: 50%; flex: none; margin-top: 2px;
  background: var(--ink); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.benefit-check .icon { width: 20px; height: 20px; }
.benefit-item h3 { font-size: 1.35rem; margin-bottom: 7px; }
.benefit-item p { color: var(--txt-2); font-size: 1.05rem; }
.benefits-grid { align-items: stretch; }
.benefits-visual { display: flex; }
.win-card {
  flex: 1; display: flex; flex-direction: column; gap: 24px;
  background: linear-gradient(165deg, #1c1f27, #14161c);
  border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  padding: 46px 42px; color: var(--txt-on-dark); box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.win-card::before {
  content: ""; position: absolute; top: -40px; right: -70px; width: 420px; height: 320px;
  background: url(/assets/img/dotwave-right.svg) no-repeat center / contain;
  opacity: 0.5; pointer-events: none;
}
.win-tag {
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--mint);
}
.win-card h3 { font-size: clamp(1.9rem, 2.6vw, 2.5rem); color: #fff; position: relative; }
.win-item { display: flex; gap: 14px; align-items: flex-start; position: relative; }
.win-item i {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: rgba(62, 191, 158, 0.14); border: 1px solid rgba(62, 191, 158, 0.4);
  color: var(--green); display: flex; align-items: center; justify-content: center;
}
.win-item i .icon { width: 16px; height: 16px; }
.win-item p { color: var(--txt-2-on-dark); font-size: 1.05rem; font-weight: 500; }
.win-card .btn { margin-top: auto; align-self: flex-start; position: relative; }

/* ---------- comparison ---------- */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.compare { width: 100%; min-width: 760px; border-collapse: separate; border-spacing: 0; background: #fff; }
.compare th, .compare td { padding: 18px 22px; text-align: center; border-bottom: 1px solid var(--line); font-size: 0.97rem; }
.compare thead th { font-weight: 700; background: #fafcfb; }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody th { text-align: left; font-weight: 650; color: var(--txt-2); white-space: nowrap; }
.compare .cn-col { background: var(--ink); color: #fff; font-weight: 650; }
.compare thead .cn-col { font-size: 1.02rem; }
.compare td.cn-col { border-bottom-color: rgba(255, 255, 255, 0.1); }
.compare .yes { color: var(--green); }
.compare td:not(.cn-col) .yes { color: var(--teal); }
.compare .no { color: var(--red); }
.compare .icon { width: 20px; height: 20px; margin: 0 auto; }
.compare td small { display: block; color: inherit; opacity: 0.75; font-size: 0.85rem; }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 940px; margin: 0 auto; }
.testi-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 18px;
}
.testi-card blockquote { margin: 0; color: var(--txt-2); font-size: 1.02rem; }
.testi-who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi-who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.testi-who b { display: block; font-size: 0.98rem; }
.testi-who small { color: var(--txt-3); font-size: 0.85rem; }

/* ---------- faq ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s var(--ease); }
.faq-item.open { border-color: var(--green); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  text-align: left; font-weight: 650; font-size: 1.05rem; padding: 20px 24px;
}
.faq-q .icon { color: var(--txt-3); transition: transform 0.3s var(--ease); flex: none; }
.faq-item.open .faq-q .icon { transform: rotate(180deg); color: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--txt-2); }

/* ---------- final CTA ---------- */
.cta-panel {
  background: linear-gradient(160deg, #1c1f27, #101318);
  border-radius: 28px; padding: 80px 40px; text-align: center;
  position: relative; overflow: hidden; color: var(--txt-on-dark);
  box-shadow: var(--shadow-xl);
}
.cta-panel::before {
  content: ""; position: absolute; inset: auto -20% -60%; height: 120%;
  background: radial-gradient(closest-side, rgba(62, 191, 158, 0.22), transparent);
  pointer-events: none;
}
.cta-panel h2 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); color: #fff; position: relative; }
.cta-panel p { margin: 20px auto 34px; max-width: 34em; color: var(--txt-2-on-dark); font-size: 1.12rem; position: relative; }
.cta-panel .btn { position: relative; }
.cta-note { margin-top: 18px; font-size: 0.9rem; color: #77818c; position: relative; }

/* ---------- footer ---------- */
.footer { background: var(--ink-footer); color: var(--txt-2-on-dark); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 54px; }
.footer .brand-word { color: #fff; }
.footer-blurb { margin-top: 16px; font-size: 0.97rem; max-width: 30em; }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-col a { display: block; padding: 6px 0; font-size: 0.95rem; color: var(--txt-2-on-dark); transition: color 0.2s; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom {
  border-top: 1px solid var(--line-dark); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 0.87rem; color: #77818c;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding: calc(var(--nav-h) + 84px) 0 40px; text-align: center; position: relative; overflow: hidden; }
.section-snug { padding-top: 40px; }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); max-width: 18em; margin: 0 auto; }
.page-hero p { margin: 22px auto 0; max-width: 36em; color: var(--txt-2); font-size: clamp(1.25rem, 1.9vw, 1.5rem); }

/* prose blocks (about / privacy) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.7rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--txt-2); }
.prose ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin: 14px 0; }

/* split feature rows (services/about) */
.feature-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: 76px; align-items: center; }
.feature-row + .feature-row { margin-top: 90px; }
.feature-row img { border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-xl); }
.feature-row .eyebrow { margin-bottom: 20px; }
.feature-row h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.feature-row > div > p { margin: 20px 0 28px; color: var(--txt-2); font-size: 1.22rem; }
.check-list { display: grid; gap: 14px; }
.feature-row .check-list { gap: 18px; }
.feature-row .check-list li { font-size: 1.13rem; }
.feature-row .check-list .icon { width: 1.25em; height: 1.25em; }
.check-list li { display: flex; gap: 11px; align-items: flex-start; color: var(--txt-2); }
.check-list .icon { color: var(--teal); margin-top: 4px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; padding-top: 28px; }
  .pcards { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .hiw-grid { grid-template-columns: 1fr; gap: 40px; }
  .hiw-left { position: static; }
  .problem-grid, .benefits-grid, .feature-row { grid-template-columns: 1fr; gap: 44px; }
  .feature-row.flip { direction: ltr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* centred mobile hero with tighter hierarchy */
  .hero-grid { gap: 40px; padding-top: 24px; }
  .hero-copy { text-align: center; }
  .hero-trust {
    justify-content: center; flex-wrap: nowrap; gap: 7px; margin-bottom: 16px;
  }
  .hero-trust span { font-size: 0.76rem; }
  .stars .icon { width: 11px; height: 11px; }
  .hero-avatars img { width: 22px; height: 22px; }
  .hero h1 { font-size: clamp(3.1rem, 10vw, 3.6rem); white-space: normal; }
  .hero-sub { font-size: 1.12rem; margin: 16px auto 22px; max-width: 26em; }
  .hero-copy .stat-strip { margin: 0 auto 22px; }
  .hero-ctas { justify-content: center; }

  /* compact journey card */
  .journey { padding: 12px; }
  .journey-tabs { gap: 6px; margin-bottom: 12px; }
  .journey-tabs span { font-size: 0.58rem; padding: 7px 4px; }
  .journey-stages { height: 400px; }
  .jcard { padding: 16px; gap: 11px; border-radius: 15px; }
  .src-grid { gap: 9px; }
  .src-tile { padding: 12px 14px; gap: 7px; border-radius: 13px; }
  .src-tile i { width: 32px; height: 32px; border-radius: 10px; }
  .src-tile i .icon { width: 16px; height: 16px; }
  .src-tile b { font-size: 0.92rem; }
  .src-note { padding: 11px 13px; font-size: 0.86rem; border-radius: 12px; }
  .qq { padding: 8px 12px; }
  .qq b { font-size: 0.95rem; }
  .quiz-q { font-size: 1.05rem; }
  .ivr-node { padding-bottom: 14px; }
  .ivr-node b { font-size: 0.92rem; }
  .ivr-node span { font-size: 0.82rem; }
  .call-card { padding: 16px 18px 0; }
  .call-card-foot { margin: 0 -18px; }
  .call-name { font-size: 1.15rem; }
  .call-avatar, .call-btn { width: 46px; height: 46px; }

  .win-card { padding: 32px 26px; }
  .benefits-grid { gap: 44px; }
  .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .section-head p { font-size: 1.06rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .float-badge--tl { left: -8px; }
  .float-badge--br { right: -4px; }
  .product-grid { grid-template-columns: 1fr; }
  .pcard-body { padding: 26px 22px 30px; }
  .pcard-img { height: 220px; }
  .cta-panel { padding: 60px 24px; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .hero-ctas .btn { width: 100%; }
  .hero h1 { font-size: 3.1rem; }
  .hero-copy .stat-strip { max-width: 360px; }
  .hero-copy .stat-strip b { font-size: 0.98rem; }
  .hero-copy .stat-strip small { font-size: 0.5rem; }
  .journey-stages { height: 385px; }
  .footer-grid { grid-template-columns: 1fr; }
  .marquee-track { gap: 30px; }
  .marquee-track span { gap: 30px; font-size: 0.78rem; }
}
