/* ==========================================================================
   MSP Process — WhatsApp Messaging page
   Green-led with cyan accents (dual-brand, matches the home page).
   Reuses sa-hero / sa-section / sa-head primitives. All page-specific
   styles are wa-* namespaced. Non-boxy world-class typography — minimal
   card chrome on body sections; deliberate sim card on the hero.
   ========================================================================== */

/* --- Hero overrides — green gradient, dual-brand glow ------------------- */
.wa-hero .sa-hero__title-grad {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.wa-hero .sa-hero__pulse-eyebrow {
  color: var(--brand-green);
  background: rgba(10, 154, 86, 0.10);
  border: 1px solid rgba(10, 154, 86, 0.30);
}
.wa-hero .sa-hero__pulse-eyebrow .sa-pulse {
  background: var(--brand-green);
  box-shadow: 0 0 10px var(--brand-green), 0 0 0 4px rgba(10, 154, 86, 0.18);
}
.wa-hero .sa-hero__glow { background: rgba(10, 154, 86, 0.30); }

.wa-grad {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* --- Hero simulator — WhatsApp-style chat thread ----------------------- */
.wa-sim {
  position: relative;
  background: var(--card-grad);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: var(--card-shadow), 0 30px 60px -22px rgba(10, 154, 86, 0.35);
  overflow: hidden; isolation: isolate;
  padding: 14px;
}
.wa-sim::before {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 154, 86, 0.18), transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.wa-sim-inner { position: relative; z-index: 1; }
.wa-sim-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 2px 4px 10px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 12px;
}
.wa-sim-dots { display: flex; gap: 6px; }
.wa-sim-dot { width: 10px; height: 10px; border-radius: 50%; }
.wa-sim-step {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10.5px; letter-spacing: 0.10em; font-weight: 800;
  color: var(--brand-green);
  text-transform: uppercase;
}

/* WhatsApp business chat header */
.wa-chat-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 10px 10px 0 0;
  border-bottom: 0;
}
.wa-chat-head__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), #128c7e);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.wa-chat-head__meta { flex: 1; min-width: 0; }
.wa-chat-head__name {
  color: var(--heading); font-size: 13.5px; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.wa-chat-head__verified {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand-green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
  flex-shrink: 0;
}
.wa-chat-head__sub {
  color: var(--text);
  font-size: 11px;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  letter-spacing: 0.04em;
}

/* WhatsApp chat thread area */
.wa-thread {
  display: flex; flex-direction: column; gap: 6px;
  /* Fixed height so the card never resizes as bubbles stream in. */
  height: 380px;
  overflow: hidden;
  padding: 12px 10px;
  /* Pin newest bubble to the bottom; older content scrolls up under the top edge. */
  justify-content: flex-end;
  background:
    radial-gradient(rgba(10, 154, 86, 0.04) 1px, transparent 1px) 0 0 / 14px 14px,
    var(--surface);
  border: 1px solid var(--hairline);
  border-top: 0;
  border-bottom: 0;
}
.wa-bubble-wrap {
  display: flex; flex-direction: column;
  max-width: 78%;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
.wa-bubble-wrap.is-show { opacity: 1; transform: translateY(0); }
.wa-bubble-wrap.in { align-self: flex-start; align-items: flex-start; }
.wa-bubble-wrap.out { align-self: flex-end; align-items: flex-end; }

.wa-bubble {
  padding: 7px 10px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.42;
  word-wrap: break-word;
  font-family: var(--font-brand);
  position: relative;
  font-weight: 500;
}
.wa-bubble-wrap.in .wa-bubble {
  background: var(--card-grad);
  border: 1px solid var(--hairline);
  color: var(--heading);
  border-top-left-radius: 0;
}
.wa-bubble-wrap.out .wa-bubble {
  background: linear-gradient(135deg, #d9fdd3, #c8f5be);
  color: #0b1230;
  border-top-right-radius: 0;
}
[data-theme="dark"] .wa-bubble-wrap.out .wa-bubble {
  background: linear-gradient(135deg, #005c4b, #007d68);
  color: #fff;
}
.wa-bubble-meta {
  position: absolute; right: 8px; bottom: 2px;
  font-size: 9.5px;
  color: rgba(11, 18, 48, 0.55);
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
}
.wa-bubble-wrap.in .wa-bubble-meta { color: var(--text); }
[data-theme="dark"] .wa-bubble-wrap.out .wa-bubble-meta { color: rgba(255, 255, 255, 0.55); }
.wa-bubble-meta .tick { color: #34b7f1; font-size: 11px; margin-left: 2px; }

/* Verify card variant — outgoing bubble with embedded action */
.wa-verify {
  display: block;
  padding: 10px 12px 16px;
  border-radius: 8px;
  border-top-right-radius: 0;
  background: linear-gradient(135deg, #d9fdd3, #c8f5be);
  color: #0b1230;
  font-family: var(--font-brand);
  position: relative;
  max-width: 100%;
}
[data-theme="dark"] .wa-verify { background: linear-gradient(135deg, #005c4b, #007d68); color: #fff; }
.wa-verify__panel {
  background: rgba(0, 0, 0, 0.04);
  border-left: 3px solid var(--brand-green);
  border-radius: 6px;
  padding: 8px 10px;
  margin-bottom: 8px;
}
[data-theme="dark"] .wa-verify__panel { background: rgba(255, 255, 255, 0.08); }
.wa-verify__label {
  font-size: 9.5px; letter-spacing: 0.10em; font-weight: 800;
  color: rgba(11, 18, 48, 0.65);
  text-transform: uppercase;
  margin-bottom: 4px;
}
[data-theme="dark"] .wa-verify__label { color: rgba(255, 255, 255, 0.65); }
.wa-verify__text { font-size: 12px; font-weight: 600; line-height: 1.35; }
.wa-verify__btn {
  width: 100%;
  background: var(--brand-green);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 7px;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  cursor: default;
  transition: background 0.25s, color 0.25s, border 0.25s;
}
.wa-verify__btn.is-confirmed {
  background: #fff;
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
}
[data-theme="dark"] .wa-verify__btn.is-confirmed {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-green);
}

/* Typing indicator */
.wa-typing {
  display: inline-flex; gap: 4px;
  padding: 10px 14px;
  background: var(--card-grad);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  border-top-left-radius: 0;
}
.wa-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--text);
  animation: waTyping 1.2s infinite ease-in-out;
}
.wa-typing span:nth-child(2) { animation-delay: 0.18s; }
.wa-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes waTyping {
  0%, 80%, 100% { opacity: 0.4; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

/* WhatsApp chat input bar */
.wa-chat-foot {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}
.wa-chat-foot__input {
  flex: 1;
  background: var(--bg-alt);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-brand);
  font-size: 11px;
  color: var(--text);
}
.wa-chat-foot__send {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  flex-shrink: 0;
}

.wa-sim-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; margin-top: 10px;
}
.wa-sim-foot-left { display: flex; gap: 10px; flex-wrap: wrap; }
.wa-foot-chip {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 9.5px; letter-spacing: 0.10em;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 4px 9px; border-radius: 999px;
  font-weight: 700; text-transform: uppercase;
}

.wa-sim-result {
  position: absolute; inset: 0;
  display: none; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 32px;
  background:
    radial-gradient(ellipse at center, rgba(10, 154, 86, 0.18), transparent 60%),
    color-mix(in srgb, var(--card-grad) 96%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 5; opacity: 0;
  transition: opacity 0.45s;
}
.wa-sim-result.is-open { display: flex; opacity: 1; }
.wa-sim-result-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; margin-bottom: 14px;
  box-shadow: 0 0 0 8px rgba(10, 154, 86, 0.12);
}
.wa-sim-result h4 {
  color: var(--heading); font-family: var(--font-brand);
  font-size: 22px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.3px;
}
.wa-sim-result p {
  color: var(--text); font-size: 13.5px; margin: 0;
  line-height: 1.55; max-width: 400px;
}

/* --- Compare (bad vs good) — left-accent timelines -------------------- */
.wa-compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.wa-compare__col {
  position: relative;
  padding: 26px 8px 26px 26px;
  border-left: 3px solid rgba(255, 255, 255, 0.10);
  background: transparent;
}
.wa-compare__col--bad  { border-left-color: rgba(255, 94, 94, 0.55); }
.wa-compare__col--good { border-left-color: var(--brand-green); }
.wa-compare__tag {
  display: inline-block; margin-bottom: 6px;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.14em; font-weight: 800; text-transform: uppercase;
}
.wa-compare__col--bad  .wa-compare__tag { color: #ff5e5e; }
.wa-compare__col--good .wa-compare__tag { color: #00b557; }
.wa-compare__h {
  font-family: var(--font-brand); font-weight: 600;
  font-size: clamp(1.25rem, 0.9rem + 1vw, 1.5rem);
  line-height: 1.2; letter-spacing: -0.3px;
  color: var(--heading); margin: 0 0 18px;
}
.wa-compare__steps { position: relative; padding-left: 22px; display: flex; flex-direction: column; gap: 12px; }
.wa-compare__steps::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px;
  width: 2px;
}
.wa-compare__col--bad  .wa-compare__steps::before { background: linear-gradient(180deg, rgba(255, 94, 94, 0.4), rgba(255, 94, 94, 0.15)); }
.wa-compare__col--good .wa-compare__steps::before { background: linear-gradient(180deg, rgba(10, 154, 86, 0.4), rgba(10, 154, 86, 0.15)); }
.wa-compare__step {
  position: relative;
  display: grid; grid-template-columns: max-content 1fr; gap: 4px 14px;
  align-items: start;
}
.wa-compare__step::before {
  content: ""; position: absolute; left: -22px; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  border: 3px solid var(--bg);
  background: var(--text);
}
.wa-compare__col--bad  .wa-compare__step::before { background: #ff5e5e; box-shadow: 0 0 0 1px rgba(255, 94, 94, 0.5); }
.wa-compare__col--good .wa-compare__step::before { background: var(--brand-green); box-shadow: 0 0 0 1px rgba(10, 154, 86, 0.5); }
.wa-compare__num {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 11px; letter-spacing: 0.12em; font-weight: 800;
  color: var(--text); padding-top: 1px;
}
.wa-compare__text { font-size: 13.5px; line-height: 1.5; color: var(--heading); font-weight: 500; }
@media (max-width: 900px) { .wa-compare { grid-template-columns: 1fr; } }

/* --- Capability list — non-boxy left-accent green --------------------- */
.wa-feats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px clamp(1.5rem, 2.5vw, 2rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.wa-feat {
  position: relative;
  padding: 22px 4px 22px 22px;
  display: flex; flex-direction: column; gap: 11px;
  border-left: 2px solid rgba(10, 154, 86, 0.20);
  background: transparent; box-shadow: none;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.wa-feat:hover { border-left-color: var(--brand-green); transform: translateX(2px); }
.wa-feat__icon {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  color: var(--brand-green);
  background: linear-gradient(135deg, rgba(10, 154, 86, 0.12), rgba(10, 154, 86, 0.03));
  border: 1px solid rgba(10, 154, 86, 0.24);
}
.wa-feat__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wa-feat__title { font-family: var(--font-brand); font-weight: 600; font-size: 16.5px; line-height: 1.25; letter-spacing: -0.2px; color: var(--heading); margin: 0; }
.wa-feat__desc { font-weight: 300; font-size: 13.5px; line-height: 1.55; color: var(--text); margin: 0; }
.wa-feat__tag { align-self: flex-start; font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace); font-size: 10px; letter-spacing: 0.12em; font-weight: 800; text-transform: uppercase; color: var(--brand-green); }
@media (max-width: 960px) { .wa-feats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wa-feats { grid-template-columns: 1fr; } }

/* --- 5-step connected-spine flow — green → cyan ---------------------- */
.wa-flow {
  --node: 64px; --line: 3px;
  position: relative; list-style: none;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding: calc(var(--node) / 2 + 22px) 0 0;
}
.wa-flow::before {
  content: ""; position: absolute;
  top: calc(var(--node) / 2 + 22px); left: 10%; right: 10%;
  height: var(--line); transform: translateY(-50%);
  background: linear-gradient(90deg, var(--brand-green), var(--brand-cyan));
  border-radius: 999px;
  pointer-events: none;
}
.wa-flow__step { position: relative; text-align: center; }
.wa-flow__node {
  position: relative;
  width: var(--node); height: var(--node); border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  font-family: var(--font-brand); font-weight: 700; font-size: 20px; color: #fff;
  background: linear-gradient(150deg, var(--brand-green), #5af6a8);
  box-shadow: 0 10px 22px -8px rgba(10, 154, 86, 0.55), 0 0 0 6px var(--bg);
  z-index: 2;
}
.wa-flow__step--final .wa-flow__node {
  background: linear-gradient(150deg, var(--brand-cyan), var(--brand-green));
  box-shadow: 0 10px 22px -8px rgba(0, 186, 251, 0.55), 0 0 0 6px var(--bg);
}
.wa-flow__speed {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.12em; font-weight: 800; text-transform: uppercase;
  color: var(--brand-green); margin: 0 0 6px;
}
.wa-flow__step--final .wa-flow__speed { color: var(--brand-cyan); }
.wa-flow__name { font-family: var(--font-brand); font-weight: 600; font-size: 16px; line-height: 1.25; letter-spacing: -0.2px; color: var(--heading); margin: 0 0 8px; }
.wa-flow__body { font-weight: 300; font-size: 13px; line-height: 1.55; color: var(--text); margin: 0; max-width: 24ch; margin-inline: auto; }
@keyframes waFlowPulse {
  0%, 100% { box-shadow: 0 10px 22px -8px rgba(10, 154, 86, 0.55), 0 0 0 6px var(--bg); }
  50% { box-shadow: 0 10px 22px -8px rgba(10, 154, 86, 0.85), 0 0 0 6px var(--bg), 0 0 0 14px rgba(10, 154, 86, 0.12); }
}
@media (prefers-reduced-motion: no-preference) {
  .wa-flow__node { animation: waFlowPulse 3.4s ease-in-out infinite; }
  .wa-flow__step:nth-child(2) .wa-flow__node { animation-delay: 0.25s; }
  .wa-flow__step:nth-child(3) .wa-flow__node { animation-delay: 0.50s; }
  .wa-flow__step:nth-child(4) .wa-flow__node { animation-delay: 0.75s; }
  .wa-flow__step:nth-child(5) .wa-flow__node { animation-delay: 1.00s; }
}
@media (max-width: 1080px) {
  .wa-flow { grid-template-columns: repeat(2, 1fr); padding-top: 0; gap: 32px 22px; }
  .wa-flow::before { display: none; }
  .wa-flow__step { padding-top: 8px; }
}
@media (max-width: 540px) { .wa-flow { grid-template-columns: 1fr; } }

/* --- Use cases — 2-col typographic ----------------------------------- */
.wa-uses {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1100px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.wa-use {
  position: relative;
  display: grid; grid-template-columns: 40px 1fr; gap: 16px;
  padding: 18px 4px 18px 22px;
  border-left: 2px solid rgba(10, 154, 86, 0.20);
  background: transparent;
  align-items: start;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.wa-use:hover { border-left-color: var(--brand-green); transform: translateX(2px); }
.wa-use__num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(10, 154, 86, 0.10);
  border: 1px solid rgba(10, 154, 86, 0.30);
  color: var(--brand-green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.wa-use__title { font-family: var(--font-brand); font-weight: 600; font-size: 15.5px; color: var(--heading); margin: 0 0 6px; line-height: 1.25; letter-spacing: -0.2px; }
.wa-use__body { font-weight: 300; font-size: 13.5px; line-height: 1.55; color: var(--text); margin: 0; }
@media (max-width: 900px) { .wa-uses { grid-template-columns: 1fr; } }

/* --- Deployment — 4-step left-accent feature list --------------------- */
.wa-deploy {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px clamp(1.5rem, 3vw, 2rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.wa-deploy__step {
  position: relative;
  padding: 22px 4px 22px 22px;
  border-left: 2px solid rgba(10, 154, 86, 0.30);
  background: transparent;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.wa-deploy__step:hover { border-left-color: var(--brand-green); transform: translateX(2px); }
.wa-deploy__day {
  display: inline-block;
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10px; letter-spacing: 0.14em; font-weight: 800; text-transform: uppercase;
  color: var(--brand-green);
  padding: 4px 10px;
  background: rgba(10, 154, 86, 0.10);
  border: 1px solid rgba(10, 154, 86, 0.30);
  border-radius: 999px; margin-bottom: 14px;
}
.wa-deploy__h { font-family: var(--font-brand); font-weight: 600; font-size: 16px; color: var(--heading); margin: 0 0 8px; line-height: 1.25; letter-spacing: -0.2px; }
.wa-deploy__b { font-weight: 300; font-size: 13.25px; line-height: 1.55; color: var(--text); margin: 0; }
@media (max-width: 1080px) { .wa-deploy { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .wa-deploy { grid-template-columns: 1fr; } }

/* --- Impact — outcomes pattern (dual-brand) -------------------------- */
.wa-outcomes {
  position: relative;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  max-width: 1180px;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
}
.wa-outcomes::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; max-width: 110%; height: 320px;
  background: radial-gradient(ellipse at center, rgba(10, 154, 86, 0.10), rgba(0, 186, 251, 0.07) 55%, transparent 70%);
  filter: blur(60px); pointer-events: none; z-index: 0;
}
.wa-stat {
  position: relative; z-index: 1;
  padding: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2.2vw, 2rem);
  text-align: center;
}
.wa-stat + .wa-stat::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hairline) 30%, var(--hairline) 70%, transparent);
  pointer-events: none;
}
.wa-stat__num-wrap {
  position: relative;
  display: inline-flex; justify-content: center; align-items: center;
  margin-bottom: clamp(0.625rem, 1.2vw, 1rem);
}
.wa-stat__num-glow {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(160px, 18vw, 220px); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 154, 86, 0.28), transparent 65%);
  filter: blur(34px);
  pointer-events: none; z-index: 0;
}
.wa-stat__num-glow--cyan { background: radial-gradient(circle, rgba(0, 186, 251, 0.28), transparent 65%); }
.wa-stat__num {
  position: relative; z-index: 1;
  font-family: var(--font-brand); font-weight: 700;
  font-size: clamp(2.5rem, 1.5rem + 3vw, 4rem);
  line-height: 0.95; letter-spacing: -2px;
  background: linear-gradient(135deg, var(--brand-green) 0%, #5af6a8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin: 0;
}
.wa-stat__num--dual {
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wa-stat__lbl { font-family: var(--font-brand); font-weight: 600; font-size: clamp(0.95rem, 0.86rem + 0.3vw, 1.0625rem); line-height: 1.3; letter-spacing: -0.2px; color: var(--heading); margin-bottom: 8px; max-width: 240px; margin-inline: auto; }
.wa-stat__meta { font-weight: 300; font-size: 13.5px; line-height: 1.55; color: var(--text); max-width: 260px; margin-inline: auto; }
@media (max-width: 960px) {
  .wa-outcomes { grid-template-columns: repeat(2, 1fr); row-gap: clamp(2.25rem, 5vw, 3rem); }
  .wa-stat + .wa-stat::before { display: none; }
}
@media (max-width: 480px) { .wa-outcomes { grid-template-columns: 1fr; } }

/* --- Compliance strip ------------------------------------------------- */
.wa-compliance {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  max-width: 1080px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: 22px 4px 22px 24px;
  border-left: 2px solid rgba(10, 154, 86, 0.25);
}
.wa-compliance__h { font-family: var(--font-brand); font-weight: 600; font-size: clamp(1.25rem, 0.9rem + 1vw, 1.5rem); color: var(--heading); margin: 0 0 10px; line-height: 1.25; letter-spacing: -0.2px; }
.wa-compliance__p { font-weight: 300; font-size: 14.5px; line-height: 1.55; color: var(--text); margin: 0; }
.wa-compliance__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.wa-compliance__chip {
  font-family: var(--font-mono, 'JetBrains Mono', ui-monospace, monospace);
  font-size: 10.5px; letter-spacing: 0.10em; color: var(--brand-green);
  background: rgba(10, 154, 86, 0.10);
  border: 1px solid rgba(10, 154, 86, 0.30);
  padding: 6px 12px; border-radius: 999px;
  font-weight: 800; text-transform: uppercase;
}
@media (max-width: 900px) { .wa-compliance { grid-template-columns: 1fr; } }

/* --- Testimonials — 3-up left-accent --------------------------------- */
.wa-tm {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.wa-tm__card {
  position: relative;
  padding: 22px 4px 22px 24px;
  border-left: 2px solid rgba(10, 154, 86, 0.25);
  background: transparent;
  display: flex; flex-direction: column; gap: 18px;
}
.wa-tm__quote { font-size: 14.5px; font-style: normal; line-height: 1.6; color: var(--heading); margin: 0; flex: 1; }
.wa-tm__quote::before {
  content: "\201C"; font-family: var(--font-brand);
  font-size: 2.4em; color: var(--brand-green);
  line-height: 0; vertical-align: -0.32em;
  margin-right: 6px; opacity: 0.55;
}
.wa-tm__foot { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--hairline); }
.wa-tm__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 700; font-size: 13px;
}
.wa-tm__name { font-family: var(--font-brand); font-weight: 600; font-size: 14px; color: var(--heading); }
.wa-tm__meta { font-size: 12px; color: var(--text); }
@media (max-width: 1080px) { .wa-tm { grid-template-columns: repeat(2, 1fr); max-width: 720px; } }
@media (max-width: 700px) { .wa-tm { grid-template-columns: 1fr; max-width: 540px; } }

/* --- Related channels — 3-up left-accent cards ----------------------- */
.wa-related {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px clamp(1.5rem, 2.5vw, 2rem);
  max-width: 1180px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}
.wa-related__card {
  position: relative;
  padding: 22px 4px 22px 22px;
  border-left: 2px solid rgba(0, 186, 251, 0.22);
  background: transparent;
  display: flex; flex-direction: column; gap: 8px;
  text-decoration: none;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.wa-related__card:hover { border-left-color: var(--brand-cyan); transform: translateX(2px); }
.wa-related__head { display: flex; align-items: center; gap: 12px; }
.wa-related__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  color: var(--brand-cyan);
  background: rgba(0, 186, 251, 0.08);
  border: 1px solid rgba(0, 186, 251, 0.28);
  flex-shrink: 0;
}
.wa-related__icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.wa-related__title { font-family: var(--font-brand); font-weight: 600; font-size: 16px; color: var(--heading); margin: 0; line-height: 1.25; letter-spacing: -0.2px; }
.wa-related__body { font-weight: 300; font-size: 13px; line-height: 1.55; color: var(--text); margin: 0; }
@media (max-width: 900px) { .wa-related { grid-template-columns: 1fr; max-width: 540px; } }

/* --- Final CTA -------------------------------------------------------- */
.wa-final {
  position: relative; overflow: hidden;
  max-width: 1080px; margin-inline: auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 22px; text-align: center;
  background: linear-gradient(135deg, rgba(10, 154, 86, 0.10), rgba(0, 186, 251, 0.04));
  border: 1px solid rgba(10, 154, 86, 0.22);
}
.wa-final::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 900px; max-width: 130%; height: 280px;
  background: rgba(10, 154, 86, 0.14); filter: blur(110px); border-radius: 700px;
  pointer-events: none;
}
.wa-final__inner { position: relative; z-index: 1; }
.wa-final__title { font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem); font-weight: 500; line-height: 1.12; letter-spacing: -0.4px; margin: 0 0 14px; }
.wa-final__sub { font-weight: 300; font-size: 15.5px; line-height: 1.55; color: var(--text); max-width: 640px; margin: 0 auto 24px; }
.wa-final__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
