/* ═══════════════════════════════════════════════════════════
   ZORU AI — EDITORIAL DESIGN SYSTEM
═══════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

:root {
  --bg: #f5f4ff;
  --ink: #1a1626;
  --ink-muted: #6b6478;
  --ink-faint: #b4acbd;
  --purple: #7a4dff;
  --purple-dark: #6a3ee8;
  --purple-light: rgba(122, 77, 255, 0.1);
  --border: rgba(26, 22, 38, 0.1);
  --border-muted: rgba(26, 22, 38, 0.06);
  --card-bg: #ffffff;
  --dark-bg: #16121f;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(26, 22, 38, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 22, 38, 0.1);
  --shadow-lg: 0 20px 60px rgba(26, 22, 38, 0.14);
}

/* ── RESET ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
img {
  display: block;
  max-width: 100%;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--narrow {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── GLOBAL TYPE ───────────────────────────────────────── */
.za-h2 {
  font-family: "Inter", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.za-h2--light {
  color: #faf8f2;
}
.za-h2--bold {
  font-weight: 900;
}
.za-hl {
  color: var(--purple);
}

.za-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.25rem;
}
.za-eyebrow--light {
  color: rgba(250, 248, 242, 0.55);
}

.za-sub {
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 52ch;
  margin-top: 1rem;
}

.za-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink-faint);
  flex-shrink: 0;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.za-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.za-btn .material-symbols-outlined {
  font-size: 1.125rem;
}

.za-btn--primary {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 16px rgba(122, 77, 255, 0.3);
}
.za-btn--primary:hover {
  background: var(--purple-dark);
  box-shadow: 0 6px 22px rgba(122, 77, 255, 0.4);
  transform: translateY(-1px);
}

.za-btn--secondary {
  background: #111111;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.za-btn--secondary:hover {
  background: #2a2a2a;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.za-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.za-btn--ghost:hover {
  border-color: rgba(26, 22, 38, 0.3);
}

.za-btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.za-btn--outline:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes zaPing {
  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes zaFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes zaMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════════════════════════════════════════
   NAV — editorial mix-blend-mode → floating pill on scroll
═══════════════════════════════════════════════════════════ */
.za-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition:
    top 0.4s ease,
    padding 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease,
    border-radius 0.4s ease;
}

/* Floating pill nav — active after scrolling into page */
.za-nav--scrolled {
  top: 0.75rem;
  left: 0;
  right: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.375rem 0.375rem 0.375rem 1.5rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  mix-blend-mode: normal;
}
.za-nav--scrolled .za-nav__links a {
  color: var(--ink-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.875rem;
}
.za-nav--scrolled .za-nav__links a:hover {
  color: var(--ink);
  opacity: 1;
}
.za-nav--scrolled .za-nav__cta {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: none;
}
.za-nav--scrolled .za-nav__cta:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: #fff;
}

.za-nav__brand {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.za-nav__logo-img {
  display: block;
  height: 30px;
  width: auto;
}
.za-nav__wordmark {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-transform: uppercase;
  display: none;
}
.za-nav__sub {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-top: 2px;
  display: none;
}

.za-nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}
.za-nav__links a {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity 0.15s;
}
.za-nav__links a:hover {
  opacity: 0.6;
}

.za-nav__actions {
  margin-left: 1.5rem;
  flex-shrink: 0;
}
.za-nav__cta {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  transition: all 0.2s ease;
}
.za-nav__cta:hover {
  background: var(--ink);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   HERO — scroll collapse + morphing keyword
═══════════════════════════════════════════════════════════ */
.za-hero-collapse {
  height: 300vh;
  position: relative;
}
.za-hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #fafafe;
}

/* ── HERO GRID MESH ── */
.za-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(108, 71, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108, 71, 255, 0.13) 1px, transparent 1px);
  background-size: 44px 44px;
  /* Visible at center, fades to nothing at all edges */
  -webkit-mask-image: radial-gradient(
    ellipse 72% 65% at 50% 44%,
    black 15%,
    transparent 72%
  );
  mask-image: radial-gradient(
    ellipse 72% 65% at 50% 44%,
    black 15%,
    transparent 72%
  );
}

/* ── PREMIUM AURORA MESH ── */
.za-hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.za-aurora-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
  transform: translateZ(0);
}

.za-aurora-blob--1 {
  width: 90vw;
  height: 90vw;
  max-width: 1100px;
  max-height: 1100px;
  top: -35%;
  left: -20%;
  background: radial-gradient(
    circle,
    rgba(108, 71, 255, 0.38) 0%,
    rgba(108, 71, 255, 0) 65%
  );
  filter: blur(90px);
  animation: zaAuBlob1 26s ease-in-out infinite;
}

.za-aurora-blob--2 {
  width: 80vw;
  height: 80vw;
  max-width: 1000px;
  max-height: 1000px;
  top: -25%;
  right: -22%;
  background: radial-gradient(
    circle,
    rgba(79, 54, 210, 0.3) 0%,
    rgba(79, 54, 210, 0) 65%
  );
  filter: blur(100px);
  animation: zaAuBlob2 32s ease-in-out infinite;
}

.za-aurora-blob--3 {
  width: 85vw;
  height: 85vw;
  max-width: 1050px;
  max-height: 1050px;
  bottom: -38%;
  left: 12%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.28) 0%,
    rgba(139, 92, 246, 0) 65%
  );
  filter: blur(95px);
  animation: zaAuBlob1 38s 4s ease-in-out infinite;
}

@keyframes zaAuBlob1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -50px) scale(1.1);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes zaAuBlob2 {
  0% {
    transform: translate(0, 0) scale(1.04);
  }
  50% {
    transform: translate(-70px, 40px) scale(1.14);
  }
  100% {
    transform: translate(0, 0) scale(1.04);
  }
}

/* Noise texture overlay */
.za-hero-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Background image — starts fully hidden, expands on scroll */
.za-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  clip-path: inset(50% 50% 50% 50% round 0px);
  will-change: clip-path;
}
.za-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  will-change: transform;
}
.za-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22, 18, 31, 0.25) 0%,
    rgba(22, 18, 31, 0.6) 100%
  );
}

/* Initial content — centered, fades out on scroll */
.za-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 4vw 4rem;
  text-align: center;
  will-change: transform, opacity;
}

/* Hide badge, body and buttons — heading only on first load */
.za-hero-content .za-hero-badge,
.za-hero-content .za-hero-body,
.za-hero-content .za-hero-actions {
  display: none;
}

/* Meta copy and hint CSS */
.za-hero-meta {
  position: absolute;
  inset: 0;
  z-index: 3;
  will-change: opacity;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.5rem 5rem;
  text-align: center;
  opacity: 0;
  will-change: opacity;
}
.za-hero-meta__tag {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}
.za-hero-meta__body {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.za-hero-meta__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.za-hero-meta__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}
.za-hero-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  z-index: 3;
  will-change: opacity;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  will-change: opacity;
}
.za-hero-hint__label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple);
}
.za-hero-hint__line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: zaHintBob 1.6s ease-in-out infinite;
  transform-origin: top center;
  border-radius: 2px;
}
@keyframes zaHintBob {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(0.45);
    opacity: 1;
  }
}

/* Eyebrow badge */
.za-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  background: rgba(122, 77, 255, 0.07);
  border: 1px solid rgba(122, 77, 255, 0.2);
  padding: 0.4rem 1rem 0.4rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.za-hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* Main heading */
.za-hero-heading {
  font-family: "Satoshi", sans-serif;
  font-weight: 900;
  font-size: clamp(2.75rem, 6vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.za-hero-heading .za-hl {
  background: linear-gradient(90deg, #4f36d2, #7a4dff, #b06fff, #4f36d2);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: zaHeroGradient 5s linear infinite;
}

@keyframes zaHeroGradient {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 200% 50%;
  }
}

/* Body copy */
.za-hero-body {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}

/* CTA row */
.za-hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Trust line */
.za-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.za-hero-meta .za-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}
.za-hero-meta .za-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════════ */
.za-marquee {
  overflow: hidden;
  background: var(--purple);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.za-marquee::before,
.za-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.za-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--purple) 0%, transparent 100%);
}
.za-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--purple) 0%, transparent 100%);
}
.za-marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: zaMarquee 36s linear infinite;
}
.za-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.za-marquee__item .material-symbols-outlined {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-variation-settings: "FILL" 1;
}
.za-marquee__sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════
   PROBLEM
═══════════════════════════════════════════════════════════ */
.za-problem {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background-color: #f5f4ff;
  background-image:
    radial-gradient(
      circle 1.5px at 0 0,
      rgba(122, 77, 255, 0.22) 0%,
      transparent 80%
    ),
    linear-gradient(rgba(122, 77, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 77, 255, 0.1) 1px, transparent 1px);
  background-size: 64px 64px;
}
/* Trace lines — glowing pulses travelling along individual mesh lines */
.za-trace {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.za-trace--h {
  left: 0;
  right: 0;
  height: 0;
}
.za-trace--v {
  top: 0;
  bottom: 0;
  width: 0;
}
.za-trace--h::before,
.za-trace--v::before {
  content: "";
  position: absolute;
  border-radius: 4px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: var(--dur, 5s);
  animation-delay: var(--delay, 0s);
}
.za-trace--h::before {
  top: 0;
  left: -420px;
  width: 420px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(122, 77, 255, 0.3) 50%,
    transparent 100%
  );
  box-shadow: none;
  animation-name: traceH;
}
.za-trace--v::before {
  left: 0;
  top: -420px;
  width: 1px;
  height: 420px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(122, 77, 255, 0.3) 50%,
    transparent 100%
  );
  box-shadow: none;
  animation-name: traceV;
}
.za-trace--rev::before {
  animation-direction: reverse;
}
@keyframes traceH {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100vw + 420px));
  }
}
@keyframes traceV {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(900px);
  }
}
.za-problem .container {
  position: relative;
  z-index: 1;
}
.za-problem__header {
  text-align: center;
  margin-bottom: 4rem;
}
.za-problem__header .za-sub {
  margin-inline: auto;
}

/* ── STATS GRID ── */
.za-problem__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(122, 77, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.za-problem__stat {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(122, 77, 255, 0.1);
  background: #fafbff;
  position: relative;
  z-index: 1;
}
.za-problem__stat:last-child {
  border-right: none;
}

.za-problem__stat-body {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Icon ── */
.za-problem__stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(122, 77, 255, 0.18) 0%,
    rgba(122, 77, 255, 0.06) 100%
  );
  border: 1px solid rgba(122, 77, 255, 0.18);
}
.za-problem__stat-icon .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--purple);
  font-variation-settings:
    "FILL" 1,
    "wght" 500;
}

/* ── Coloured footer strip ── */
.za-problem__stat-footer {
  background: rgb(var(--ac));
  height: 10px;
}

.za-problem__stat-body strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}

.za-problem__stat-num {
  font-family: "Inter", sans-serif;
  font-size: clamp(3rem, 4.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.05em;
  color: var(--num-color, #1A1626);
  -webkit-text-fill-color: var(--num-color, #1A1626);
}
.za-problem__stat-pre {
  font-size: 0.5em;
  font-weight: 700;
}
.za-problem__stat-suf {
  font-size: 0.38em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.za-problem__stat-body p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════ */
.za-features {
  padding: 6rem 0;
}
.za-features__header {
  text-align: center;
  margin-bottom: 5rem;
}

/* Feature row */
.za-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-muted);
}
.za-feat:last-child {
  border-bottom: none;
}
.za-feat--reverse .za-feat__text {
  order: 2;
}
.za-feat--reverse .za-feat__mock {
  order: 1;
}

.za-feat__label {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}
.za-feat__text h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.625rem, 2.75vw, 2.375rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.za-feat__text p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.za-feat__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.za-feat__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}
.za-feat__list .material-symbols-outlined {
  font-size: 1.125rem;
  color: var(--purple);
  flex-shrink: 0;
}

/* ── MOCK UIs ──────────────────────────────────────────── */

/* Chat mock */
.za-mock-chat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.za-mock-chat__hdr {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-muted);
  background: rgba(250, 248, 242, 0.8);
}
.za-mock-chat__av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.za-mock-chat__name {
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--ink);
}
.za-mock-chat__status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 2px;
}
.za-mock-chat__status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.za-mock-chat__msgs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
}
.za-mock-msg {
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 85%;
}
.za-mock-msg--in {
  background: rgba(26, 22, 38, 0.05);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.za-mock-msg--out {
  background: var(--purple);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}
.za-mock-msg--ok {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border-radius: 8px;
  font-weight: 500;
  align-self: stretch;
  max-width: 100%;
}
.za-mock-msg--ok .material-symbols-outlined {
  font-size: 1rem;
}
.za-mock-stat {
  margin: 0 1.25rem 1.25rem;
  padding: 0.625rem 1rem;
  background: var(--purple-light);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple);
  text-align: center;
}

/* Automation mock */
.za-mock-auto {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.za-mock-auto__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(250, 248, 242, 0.8);
}
.za-mock-auto__badge {
  background: var(--purple-light);
  color: var(--purple);
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.za-mock-auto__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-muted);
  font-size: 0.8125rem;
}
.za-mock-auto__row:last-child {
  border-bottom: none;
}
.za-mock-auto__row .material-symbols-outlined {
  font-size: 1.125rem;
  flex-shrink: 0;
}
.za-mock-auto__row--done .material-symbols-outlined {
  color: #22c55e;
}
.za-mock-auto__row--done span:nth-child(2) {
  color: var(--ink);
  font-weight: 500;
}
.za-mock-auto__row--pending .material-symbols-outlined {
  color: var(--ink-faint);
}
.za-mock-auto__row--pending span:nth-child(2) {
  color: var(--ink-muted);
}
.za-mock-auto__row span:last-child {
  font-size: 0.75rem;
  color: var(--ink-faint);
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

/* Payments mock */
.za-mock-pay {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.za-mock-pay__hdr {
  background: var(--purple);
  color: #fff;
  padding: 1.5rem 1.25rem;
}
.za-mock-pay__title {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.375rem;
}
.za-mock-pay__amt {
  font-family: "Inter", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.za-mock-pay__up {
  font-size: 0.8125rem;
  opacity: 0.75;
}
.za-mock-pay__rows {
  padding: 0.375rem 0;
}
.za-mock-pay__row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-muted);
}
.za-mock-pay__row:last-child {
  border-bottom: none;
}
.za-mock-pay__av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.za-mock-pay__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.za-mock-pay__sub {
  font-size: 0.75rem;
  color: var(--ink-muted);
}
.za-mock-pay__val {
  margin-left: auto;
  text-align: right;
}
.za-mock-pay__val > div:first-child {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
}
.za-mock-pay__pill {
  font-size: 0.6875rem;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  margin-top: 3px;
  display: inline-block;
}

/* Retention ring mock */
.za-mock-ret {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.za-mock-ret__ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.za-mock-ret__ring p {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.za-mock-ret__stats {
  display: flex;
  gap: 1rem;
}
.za-mock-ret__stats > div {
  flex: 1;
  background: rgba(26, 22, 38, 0.04);
  border-radius: var(--radius-sm);
  padding: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.za-mock-ret__stats strong {
  font-family: "Inter", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--purple);
}
.za-mock-ret__stats span {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════════════════ */
.za-industries {
  padding: 6rem 0;
  border-top: 1px solid var(--border-muted);
}
.za-industries__header {
  text-align: center;
  margin-bottom: 3rem;
}
.za-industries__pills {
  position: relative;
  height: 220px;
  max-width: 860px;
  margin-inline: auto;
}

@keyframes pillFall {
  0% {
    opacity: 0;
    transform: translateY(-260px) rotate(var(--rot));
  }
  65% {
    opacity: 1;
  }
  82% {
    transform: translateY(10px) rotate(var(--rot));
  }
  100% {
    opacity: 1;
    transform: translateY(0px) rotate(var(--rot));
  }
}

.za-pill {
  position: absolute;
  left: var(--pl);
  bottom: var(--pb);
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  background: var(--bg);
  color: var(--fg);
  border: var(--bdr, none);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-260px) rotate(var(--rot));
  animation: pillFall 1.1s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  animation-delay: var(--delay);
  animation-play-state: paused;
}
.za-industries.is-visible .za-pill {
  animation-play-state: running;
}

/* ═══════════════════════════════════════════════════════════
   RESULTS — DARK SECTION
═══════════════════════════════════════════════════════════ */
.za-results {
  position: relative;
  overflow: hidden;
  background: var(--dark-bg);
  padding: 7rem 0;
}
.za-results__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.za-results__orb--1 {
  width: 550px;
  height: 550px;
  background: rgba(122, 77, 255, 0.22);
  top: -120px;
  left: -100px;
}
.za-results__orb--2 {
  width: 420px;
  height: 420px;
  background: rgba(79, 70, 229, 0.18);
  bottom: -90px;
  right: -90px;
}
.za-results .container {
  position: relative;
  z-index: 1;
}
.za-results__header {
  text-align: center;
  margin-bottom: 4rem;
}
.za-results__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.za-results__stat {
  padding: 2rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}
.za-results__stat:first-child {
  padding-left: 0;
  text-align: left;
}
.za-results__stat:last-child {
  border-right: none;
  padding-right: 0;
  text-align: right;
}

.za-results__num {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.za-results__stat p {
  font-size: 0.9rem;
  color: rgba(250, 248, 242, 0.5);
  line-height: 1.55;
  max-width: 18ch;
}
.za-results__stat:first-child p {
  margin-left: 0;
}
.za-results__stat:last-child p {
  margin-left: auto;
}
.za-results__stat:nth-child(2) p,
.za-results__stat:nth-child(3) p {
  margin-inline: auto;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.za-pricing {
  padding: 5rem 0 6rem;
  position: relative;
  background: #f5f1ff;
  color: #1A1626;
  overflow: hidden;
}
.za-pricing::before {
  content: '';
  position: absolute;
  inset: -44px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(108,71,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,71,255,.14) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 72% 90% at 50% 50%, black 20%, transparent 80%);
  mask-image: radial-gradient(ellipse 72% 90% at 50% 50%, black 20%, transparent 80%);
  z-index: 0;
  animation: pricingGridMove 12s linear infinite;
}
@keyframes pricingGridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 44px 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .za-pricing::before { animation: none; }
}
.za-pricing .container {
  position: relative;
  z-index: 1;
}
.za-pricing__header {
  text-align: center;
  padding: 0 1.5rem 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.za-pricing__header .za-sub {
  margin-inline: auto;
  max-width: 54ch;
  margin-bottom: 1.75rem;
}
.za-pricing__annual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #C8EE00;
  color: #1A2233;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
}

.za-pricing__toggle {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  width: fit-content;
  margin: 0 auto 2.5rem;
  padding: 0.3rem;
  background: #fff;
  border: 1px solid rgba(26,22,38,.1);
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(26,22,38,.07);
}
.za-pricing__toggle-btn {
  min-height: 44px;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 100px;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6B6478;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.za-pricing__toggle-btn--active {
  background: #7A4DFF;
  color: #fff;
  box-shadow: 0 2px 10px rgba(122,77,255,.3);
}
@media (prefers-reduced-motion: reduce) {
  .za-pricing__toggle-btn { transition: none; }
}

.za-pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem 0;
}

/* ── Plan card base ── */
.za-plan {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid rgba(26,22,38,.08);
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  box-shadow: none;
  position: relative;
}
.za-plan__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1.125rem;
}
.za-plan__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(122,77,255,.08);
  border-radius: 10px;
  padding: 5px;
  box-sizing: border-box;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}
.za-plan__tier {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #B4ACBD;
  margin-bottom: 0.5rem;
}
.za-plan__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.375rem;
  min-height: 2.75rem;
}
.za-plan__amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: #1A1626;
  letter-spacing: -0.04em;
}
.za-plan__per {
  font-size: 0.825rem;
  color: #6B6478;
}
.za-plan__pill {
  align-self: center;
  margin-left: 0.25rem;
  background: #C8EE00;
  color: #1A2233;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}
.za-plan__fee {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  background: rgba(122,77,255,.07);
  color: #7A4DFF;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  border-bottom: none;
}
.za-plan__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  margin-bottom: 1.5rem;
}
.za-plan__group {
  padding-top: 0.875rem;
  border-top: 1px solid rgba(26,22,38,.07);
}
.za-plan__group:first-child {
  padding-top: 0;
  border-top: none;
}
.za-plan__inherits {
  display: inline-flex;
  align-items: center;
  background: rgba(122,77,255,.09);
  color: #7A4DFF;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
  text-transform: none;
}
.za-plan__group-label {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9B92A8;
  margin-bottom: 0.5rem;
}
.za-plan__soon {
  background: #fafac0;
  color: #4a4800;
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.1rem 0.38rem;
  border-radius: 5px;
  white-space: nowrap;
  margin-left: 0.25rem;
}
.za-plan__features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.25rem;
}
.za-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #1A1626;
  line-height: 1.45;
}
.za-plan__features li::before {
  content: '';
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 1px;
  border-radius: 50%;
  background-color: rgba(122,77,255,.12);
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 7.5l2 2 4-4' stroke='%237A4DFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.za-plan__features li:has(.za-plan__soon) {
  color: #B4ACBD;
}
.za-plan__features li:has(.za-plan__soon)::before {
  background-color: rgba(200,238,0,.25);
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.5' cy='7.5' r='4.5' stroke='%235a5800' stroke-width='1.2'/%3E%3Cpath d='M7.5 5v3l1.5.9' stroke='%235a5800' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.za-plan .za-btn {
  width: 100%;
  margin-top: auto;
}

/* ── Featured card (Growth) ── */
.za-plan--featured {
  background: linear-gradient(145deg, #3A18A8 0%, #5528DD 28%, #7A4DFF 58%, #9B6FFF 82%, #6B38F7 100%);
  border: 1.5px solid rgba(255,255,255,.28);
  box-shadow: none;
  transform: translateY(-14px) scale(1.02);
  z-index: 2;
}
.za-plan--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  pointer-events: none;
  z-index: 1;
}
.za-plan--featured::after {
  content: '';
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse 75% 55% at 50% 55%, rgba(122,77,255,.55) 0%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
}
.za-plan--featured > * { position: relative; z-index: 1; }
.za-plan--featured .za-plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #C8EE00;
  color: #1A2233;
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: none;
  margin-bottom: 0;
}
.za-plan--featured .za-plan__icon { background: rgba(255,255,255,.18); }
[data-plan-code="pro"] .za-plan__icon { background: linear-gradient(135deg, #0D0720 0%, #1E0A4A 100%); color: #fff; }
.za-plan--featured .za-plan__tier { color: rgba(255,255,255,.6); }
.za-plan--featured .za-plan__amount { color: #fff; }
.za-plan--featured .za-plan__per { color: rgba(255,255,255,.65); }
.za-plan--featured .za-plan__pill { background: #C8EE00; color: #1A2233; }
.za-plan--featured .za-plan__fee { background: rgba(255,255,255,.15); color: #fff; }
.za-plan--featured .za-plan__inherits { background: rgba(255,255,255,.15); color: #fff; }
.za-plan--featured .za-plan__group { border-top-color: rgba(255,255,255,.15); }
.za-plan--featured .za-plan__group-label { color: rgba(255,255,255,.7); }
.za-plan--featured .za-plan__features li { color: rgba(255,255,255,.95); }
.za-plan--featured .za-plan__features li::before {
  background-color: rgba(255,255,255,.2);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7l2 2 4-4' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.za-plan--featured .za-plan__features li:has(.za-plan__soon) { color: rgba(255,255,255,.75); }
.za-plan--featured .za-plan__features li:has(.za-plan__soon)::before {
  background-color: rgba(200,238,0,.25);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7' cy='7' r='4.5' stroke='%23C8EE00' stroke-width='1.2'/%3E%3Cpath d='M7 4.5v2.8l1.5.9' stroke='%23C8EE00' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.za-plan--featured .za-plan__soon { background: rgba(200,238,0,.25); color: #C8EE00; }
.za-plan--featured .za-btn {
  background: #fff !important;
  color: #7A4DFF !important;
  border-color: transparent !important;
  box-shadow: 0 4px 16px rgba(255,255,255,.25);
}

/* ── Pro card ── */
.za-plan--pro {
  background: #fff;
  border-color: rgba(26,22,38,.08);
  box-shadow: none;
}

/* ── Fee note ── */
.za-pricing__fee-note {
  max-width: 1240px;
  margin: 2rem auto 0;
  padding: 1.375rem 1.75rem;
  background: #fff;
  border: 1.5px solid rgba(122,77,255,.18);
  border-radius: 16px;
  font-size: 0.8125rem;
  color: #6B6478;
  line-height: 1.65;
  text-align: left;
}
.za-pricing__fee-note strong { color: #1A1626; }

/* ── Add-ons ── */
.za-addons {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 1.5rem;
}
.za-addons__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.za-addons__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1A1626;
  line-height: 1.1;
  margin-bottom: 0;
}
.za-addons__note {
  font-size: 0.82rem;
  color: #6B6478;
  margin-bottom: 0;
  margin-top: 0.4rem;
}
.za-addons__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.za-addons__row {
  position: relative;
  background: var(--bg);
  border-radius: 18px;
  padding: 1.5rem 1.25rem 1.375rem;
  border: 1px solid rgba(123,97,255,.15);
  box-shadow: 0 2px 12px rgba(123,97,255,.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.za-addons__row::before { display: none; }
.za-addons__row::after { display: none; }
.za-addons__row:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(123,97,255,.12);
}
.za-addons__row:has(.za-plan__soon) { opacity: 0.5; }
.za-addons__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(123,97,255,.08);
  border-radius: 11px;
  color: var(--purple);
  flex-shrink: 0;
  margin-bottom: 1rem;
}
.za-addons__icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.za-addons__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  flex: 1;
}
.za-addons__price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--purple);
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: none;
  padding: 0;
}

/* ── Trust bar ── */
.za-pricing__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6B6478;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.za-faq {
  padding: 5rem 1.5rem 7rem;
}
.za-faq__inner {
  max-width: 70rem;
  margin: 0 auto;
  position: relative;
}
.za-faq__header {
  background: var(--purple);
  border-radius: 20px;
  padding: 4rem 3rem 9rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.za-faq__eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.za-faq__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* ── White questions card — overlaps purple header ── */
.za-faq__questions {
  background: #fff;
  position: relative;
  overflow: hidden;
  margin-top: -5rem;
  border-radius: 20px;
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
}

/* Brush stroke: anchored to top-right corner of white card */
.za-faq__brush {
  position: absolute;
  right: -2%;
  top: 0;
  width: 76%;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.9;
  z-index: 0;
}

/* ── Question rows ── */
.za-faq__item {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(26,22,38,0.07);
}
.za-faq__item:first-child { border-top: 1px solid rgba(26,22,38,0.07); }

.za-faq__item summary {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.625rem 3rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.za-faq__item summary::-webkit-details-marker { display: none; }
.za-faq__item summary:hover .za-faq__q { color: var(--purple); }


.za-faq__star {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  width: 26px;
  height: 26px;
}

.za-faq__q {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.za-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  transition: transform 0.3s ease;
}
.za-faq__item[open] .za-faq__icon {
  transform: rotate(90deg);
}

.za-faq__answer {
  padding: 0 3rem 1.75rem calc(3rem + 1.2rem + 1.25rem);
  position: relative;
  z-index: 1;
}
.za-faq__answer p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .za-faq__header { padding: 3.5rem 0 7rem; }
  .za-faq__questions { margin-top: -4rem; }
  .za-faq__item summary { padding: 1.375rem 1.5rem; gap: 1rem; }
  .za-faq__answer { padding: 0 1.5rem 1.5rem calc(1.5rem + 1rem + 1.2rem); }
  .za-faq__brush { width: 95%; top: 0; opacity: 0.75; }
  .za-faq__q { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════ */
/* ── FINAL CTA ── */
.za-cta { padding: 0; }

.za-cta__scroll-wrap {
  height: 300vh;
  position: relative;
}

.za-cta__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f4ff 0%, #faf9ff 50%, #fce8ff 100%);
  overflow: hidden;
}

.za-cta__sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(122, 77, 255, 0.08), transparent);
  pointer-events: none;
}

.za-cta__scroll-inner {
  text-align: center;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.za-cta__scroll-inner .za-eyebrow {
  display: block;
  margin-bottom: 1.5rem;
}

/* All lines: blur + slide reveal */
.za-cta__scroll-line {
  display: block;
  opacity: 0;
  transform: translateY(52px);
  filter: blur(10px);
  will-change: transform, opacity, filter;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.za-cta__scroll-line.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Heading lines — same animation, larger offset for drama */
h2.za-cta__scroll-line {
  transform: translateY(90px);
  filter: blur(14px);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(4.5rem, 11vw, 9.5rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.za-cta__scroll-line--hl { color: var(--purple); }

/* Subtitle */
.za-cta__scroll-sub {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--ink-muted);
  margin: 1.75rem auto 0;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

/* CTA buttons */
.za-cta__scroll-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Trust badges */
.za-cta__scroll-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  transition-delay: 0.14s;
}
.za-cta__scroll-trust span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.875rem;
  color: var(--ink-muted);
}
.za-cta__scroll-trust svg { color: var(--purple); flex-shrink: 0; }

/* Scroll progress bar */
.za-cta__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), #a78bfa);
  border-radius: 0 2px 0 0;
  opacity: 0.55;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   COMING SOON — Numbered Feature Rows
═══════════════════════════════════════════════════════════ */

.za-coming {
  background: #f5f4ff;
  padding: 7rem 0;
}

.za-coming__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.za-coming__pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--purple);
  position: relative;
  flex-shrink: 0;
}
.za-coming__pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(122, 77, 255, 0.5);
  animation: zaPing 1.6s ease-out infinite;
}

.za-coming__sub {
  margin-top: 1.25rem;
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 60ch;
  margin-inline: auto;
}

/* Feature list */
.za-coming__list {
  display: flex;
  flex-direction: column;
}

.za-cf {
  display: grid;
  grid-template-columns: 72px 1fr 240px;
  gap: 0 3rem;
  align-items: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(26, 22, 38, 0.08);
}
.za-cf:last-child {
  border-bottom: 1px solid rgba(26, 22, 38, 0.08);
}

.za-cf__num {
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 2.75rem;
  font-weight: 900;
  color: rgba(122, 77, 255, 0.18);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  align-self: start;
  padding-top: 4px;
}

.za-cf__info {
  min-width: 0;
}

.za-cf__title {
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.za-cf__tagline {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.za-cf__body {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--ink-muted);
}

.za-cf__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Icon wrap ── */
.za-coming-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(var(--accent), 0.1);
  border: 1px solid rgba(var(--accent), 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.9rem;
}
.za-coming-card__icon-wrap .material-symbols-outlined {
  font-size: 1.3rem;
  color: rgb(var(--accent));
  font-variation-settings:
    "FILL" 1,
    "wght" 400;
}

/* ── Badge ── */
.za-coming-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(122, 77, 255, 0.08);
  border: 1px solid rgba(122, 77, 255, 0.18);
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.875rem;
}
.za-coming-card__badge span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}

/* ── Phone mockup ── */
.za-phone-mock {
  width: 155px;
  background: rgba(12, 9, 20, 0.92);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 20px;
  padding: 12px 10px 10px;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(56, 189, 248, 0.06);
}
.za-phone-mock__pill {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  margin: 0 auto 10px;
}
.za-phone-mock__stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  margin-bottom: 8px;
}
.za-phone-mock__stat {
  background: rgba(56, 189, 248, 0.07);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 8px;
  padding: 6px 7px;
}
.za-phone-mock__stat span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.475rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2px;
}
.za-phone-mock__stat strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgb(56, 189, 248);
}
.za-phone-mock__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 42px;
  margin-bottom: 7px;
}
.za-phone-mock__bars div {
  flex: 1;
  height: var(--h);
  background: linear-gradient(
    to top,
    rgba(56, 189, 248, 0.58),
    rgba(56, 189, 248, 0.1)
  );
  border-radius: 2px 2px 0 0;
}
.za-phone-mock__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.za-phone-mock__list div {
  height: 5px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

/* ── Voice bars ── */
.za-voice-bars {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 72px;
  width: 100%;
}
.za-voice-bars span {
  flex: 1;
  height: var(--h);
  background: rgba(52, 211, 153, 0.5);
  border-radius: 3px;
  animation: zaVoiceWave 1.6s ease-in-out infinite;
  animation-delay: var(--delay);
}
@keyframes zaVoiceWave {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.35;
  }
  50% {
    transform: scaleY(1);
    opacity: 0.9;
  }
}

/* ── Browser mini ── */
.za-browser-mini {
  width: 100%;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.za-browser-mini__bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  background: rgba(167, 139, 250, 0.07);
  border-bottom: 1px solid rgba(167, 139, 250, 0.12);
}
.za-browser-mini__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.4);
  display: block;
  font-style: normal;
}
.za-browser-mini__bar div {
  flex: 1;
  height: 6px;
  border-radius: 4px;
  background: rgba(167, 139, 250, 0.12);
  margin-left: 4px;
}
.za-browser-mini__hero {
  height: 52px;
  background: linear-gradient(
    135deg,
    rgba(167, 139, 250, 0.18) 0%,
    rgba(122, 77, 255, 0.08) 100%
  );
  margin: 8px;
  border-radius: 6px;
}
.za-browser-mini__body {
  padding: 0 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.za-browser-mini__body div {
  height: 5px;
  background: rgba(167, 139, 250, 0.12);
  border-radius: 3px;
}

/* ── Bar chart mini ── */
.za-bar-chart-mini {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 72px;
  width: 100%;
}
.za-bar-chart-mini div {
  flex: 1;
  height: var(--h);
  background: linear-gradient(
    to top,
    rgba(251, 191, 36, 0.52),
    rgba(251, 191, 36, 0.1)
  );
  border-radius: 4px 4px 0 0;
}
.za-bar-chart-mini__peak {
  background: linear-gradient(
    to top,
    rgba(251, 191, 36, 0.95),
    rgba(251, 191, 36, 0.32)
  ) !important;
}

/* ── Network SVG ── */
.za-network-svg {
  width: 100%;
  height: auto;
  max-width: 200px;
}

/* Scroll reveal */
.za-coming__header,
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
[data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}
[data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}
[data-reveal]:nth-child(5) {
  transition-delay: 0.32s;
}

.za-coming__header.za-revealed,
[data-reveal].za-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 860px) {
  .za-cf {
    grid-template-columns: 52px 1fr;
    align-items: start;
  }
  .za-cf__visual {
    grid-column: 2;
    margin-top: 1.75rem;
    justify-content: flex-start;
  }
}
@media (max-width: 540px) {
  .za-cf {
    grid-template-columns: 1fr;
    gap: 0.75rem 0;
  }
  .za-cf__num {
    font-size: 2rem;
  }
  .za-cf__visual {
    grid-column: 1;
    margin-top: 1.25rem;
  }
  .za-phone-mock {
    width: 140px;
  }
  .za-network-svg {
    max-width: 160px;
  }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.za-footer {
  background: var(--dark-bg);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.za-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(122,77,255,0.7) 35%, rgba(205,242,58,0.55) 65%, transparent 100%);
}

.za-footer__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,77,255,0.11) 0%, transparent 65%);
  top: -280px;
  right: -120px;
  pointer-events: none;
}

/* Statement */
.za-footer__statement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 4rem;
}
.za-footer__statement-left { flex: 1; }
.za-footer__statement-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
  flex-shrink: 0;
}

.za-footer__kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(122,77,255,0.85);
  margin-bottom: 1.25rem;
}

.za-footer__big {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: rgba(250,248,242,0.95);
  margin-bottom: 2.25rem;
}

.za-footer__cta-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.za-footer__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(250,248,242,0.38);
}

.za-footer__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cdf23a;
  box-shadow: 0 0 8px rgba(205,242,58,0.65);
  flex-shrink: 0;
}

/* Rule */
.za-footer__rule {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 3.5rem;
}


/* Columns */
.za-footer__cols {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.za-footer__logo { height: 30px; width: auto; margin-bottom: 1.25rem; display: block; }
.za-footer__brand p {
  font-size: 0.875rem;
  color: rgba(250,248,242,0.4);
  line-height: 1.75;
  max-width: 32ch;
  margin-bottom: 1.5rem;
}

/* Social icons */
.za-footer__social {
  display: flex;
  gap: 0.625rem;
}
.za-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(250,248,242,0.5);
  transition: background 0.2s, color 0.2s;
}
.za-footer__social-link:hover {
  background: rgba(122,77,255,0.25);
  color: #fff;
}

.za-footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,242,0.28);
  margin-bottom: 1.125rem;
}
.za-footer__col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(250,248,242,0.52);
  margin-bottom: 0.6rem;
  transition: color 0.15s;
}
.za-footer__col a:hover { color: rgba(250,248,242,0.95); }

/* Bottom bar */
.za-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: rgba(250,248,242,0.22);
}
.za-footer__bottom-links { display: flex; gap: 1.5rem; }
.za-footer__bottom a { color: inherit; transition: color 0.15s; }
.za-footer__bottom a:hover { color: rgba(250,248,242,0.65); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .za-pricing__grid {
    grid-template-columns: 1fr 1fr;
  }
  .za-addons__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .za-results__stats {
    grid-template-columns: 1fr 1fr;
  }
  .za-results__stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center !important;
  }
  .za-results__stat:nth-child(2) {
    border-right: none;
  }
  .za-results__stat:nth-child(3),
  .za-results__stat:nth-child(4) {
    border-bottom: none;
  }
  .za-results__stat:nth-child(3) {
    padding-left: 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }
  .za-results__stat p {
    margin-inline: auto !important;
  }
}

@media (max-width: 768px) {
  /* Hero collapse — reduce height on mobile */
  .za-hero-collapse {
    height: 240vh;
  }
  .za-hero-heading {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .za-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .za-hero-actions .za-btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
  .za-hero-meta {
    padding: 0 1.25rem 4rem;
  }
  .za-hero-meta__btns {
    flex-direction: column;
    align-items: center;
  }
  .za-hero-meta__btns .za-btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }

  /* Nav */
  .za-nav {
    padding: 1rem 1.25rem;
  }
  .za-nav__links {
    display: none;
  }
  .za-nav__sub {
    display: none;
  }

  .za-problem__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .za-problem__stat:nth-child(2) {
    border-right: none;
  }
  .za-problem__stat:nth-child(1),
  .za-problem__stat:nth-child(2) {
    border-bottom: 1px solid rgba(122, 77, 255, 0.1);
  }

  .za-feat {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0;
  }
  .za-feat--reverse .za-feat__text {
    order: 0;
  }
  .za-feat--reverse .za-feat__mock {
    order: 1;
  }

  .za-results__stats {
    grid-template-columns: 1fr;
  }
  .za-results__stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  }
  .za-results__stat:last-child {
    border-bottom: none !important;
  }
  .za-results__stat:nth-child(3) {
    border-right: none !important;
  }

  .za-pricing__grid {
    grid-template-columns: 1fr;
  }
  .za-addons__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .za-nav__links {
    display: none;
  }

  .za-footer__cols { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .za-footer__brand { grid-column: 1 / -1; }
  .za-footer__big { font-size: clamp(2rem, 7vw, 3rem); }

}


@media (max-width: 480px) {
  .za-industries__chips { gap: 0.5rem; }
  .za-chip { font-size: 0.875rem; padding: 0.5rem 1rem; }
  .za-footer__statement { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .za-footer__statement-right { align-items: flex-start; }
  .za-footer__cta-row { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .za-problem__stats { grid-template-columns: 1fr; }
  .za-problem__stat { border-right: none !important; border-bottom: 1px solid rgba(122,77,255,0.1); }
  .za-problem__stat:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════
   COMING NEXT — STACKED CARDS
═══════════════════════════════════════════════════════════ */
@keyframes cfFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes cfFloat2 {
  0%,100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-6px) rotate(-4deg); }
}
@keyframes cfVoiceWave {
  0%,100% { transform: scaleY(0.2); opacity: .3; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes cfBlink {
  0%,100% { opacity: 1; }
  50% { opacity: .35; }
}
@keyframes cfBarBreath {
  0%,100% { opacity: .55; }
  50% { opacity: 1; }
}
@keyframes cfSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cfFadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 860px) {
  [data-cf-card] { grid-template-columns: 72px 1fr !important; }
  [data-cf-card] > *:last-child { grid-column: 2; margin-top: 1.5rem; }
}
@media (max-width: 560px) {
  [data-cf-card] { grid-template-columns: 1fr !important; padding: 1.75rem !important; }
  [data-cf-card] > *:last-child { grid-column: 1; }
}


/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════════ */
@media (pointer: fine) {
  *,
  *::before,
  *::after {
    cursor: none !important;
  }
}

.za-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #7a4dff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  will-change: transform;
  transition: opacity 0.2s;
}

.za-cursor-ring {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE PHONE CARDS — What Zoru actually does
═══════════════════════════════════════════════════════════ */
.za-features {
  background: #f5f4ff;
}

.za-feat-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
  padding: 1rem 0 2rem;
}

.za-feat-phone {
  border-radius: 28px;
  border: 2px solid rgba(122, 77, 255, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 20px 56px rgba(109, 51, 247, 0.13),
    0 4px 12px rgba(109, 51, 247, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.za-feat-phone:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 72px rgba(109, 51, 247, 0.2),
    0 6px 18px rgba(109, 51, 247, 0.1);
}
.za-feat-phone--raised {
  transform: translateY(-20px);
}
.za-feat-phone--raised:hover {
  transform: translateY(-26px);
}

.za-feat-phone__screen {
  background: #fff;
  flex: 1;
  padding: 1.25rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.za-feat-phone__topbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-family: "Inter", sans-serif;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(122, 77, 255, 0.1);
}
.za-feat-phone__topbar .material-symbols-outlined {
  font-size: 1rem;
  color: var(--purple);
}
.za-feat-phone__live {
  margin-left: auto;
  color: #22c55e;
  font-weight: 700;
  font-size: 0.68rem;
}

.za-feat-phone__accent {
  background: rgb(var(--ac));
  padding: 1.5rem 1.375rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.za-feat-phone__accent .material-symbols-outlined {
  font-size: 1.5rem;
  opacity: 0.85;
}
.za-feat-phone__accent strong {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

/* ── Mock Chat ── */
.za-mock-chat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.za-mock-bubble {
  font-size: 0.79rem;
  font-family: "Inter", sans-serif;
  padding: 0.5rem 0.75rem;
  border-radius: 14px;
  line-height: 1.45;
  max-width: 86%;
}
.za-mock-bubble--in {
  background: #f3f4f6;
  color: #374151;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.za-mock-bubble--out {
  background: rgba(122, 77, 255, 0.09);
  color: #4f36d2;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.za-mock-bubble--done {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.za-mock-bubble--done .material-symbols-outlined {
  font-size: 0.95rem;
}

/* ── Mock Notifications ── */
.za-mock-notifs {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.za-mock-notif {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f9fafb;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(122, 77, 255, 0.08);
}
.za-mock-notif__body {
  flex: 1;
  font-size: 0.75rem;
  font-family: "Inter", sans-serif;
  color: #374151;
  line-height: 1.35;
}
.za-mock-notif__body strong {
  display: block;
  font-size: 0.79rem;
  color: #111827;
}

/* ── Shared Avatar ── */
.za-mock-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(122, 77, 255, 0.13);
  color: var(--purple);
  font-size: 0.62rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* ── Shared Tags ── */
.za-mock-tag {
  font-size: 0.63rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.za-mock-tag--sent {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}
.za-mock-tag--green {
  background: rgba(34, 197, 94, 0.12);
  color: #16a34a;
}
.za-mock-tag--purple {
  background: rgba(122, 77, 255, 0.12);
  color: var(--purple);
}

/* ── Mock Recovery ── */
.za-mock-recovery {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.za-mock-recover-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #f9fafb;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(122, 77, 255, 0.08);
}
.za-mock-recover-info {
  flex: 1;
  font-size: 0.75rem;
  font-family: "Inter", sans-serif;
  line-height: 1.35;
}
.za-mock-recover-info strong {
  display: block;
  font-size: 0.79rem;
  color: #111827;
}
.za-mock-recover-info span {
  color: var(--ink-muted);
}
.za-mock-recover-stat {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122, 77, 255, 0.07);
  border-radius: 12px;
  padding: 0.75rem;
  font-size: 0.79rem;
  font-family: "Inter", sans-serif;
  color: var(--purple);
  font-weight: 600;
}
.za-mock-recover-stat .material-symbols-outlined {
  font-size: 1.1rem;
}
.za-mock-recover-stat strong {
  font-size: 1.1rem;
  font-weight: 800;
}

/* ═══════════════════════════════════════════════════════════
   VIDEO — How it works
═══════════════════════════════════════════════════════════ */
.za-video {
  padding: 6rem 0;
  background: #f5f4ff;
}
.za-video__header {
  text-align: center;
  margin-bottom: 3rem;
}
.za-video__wrap {
  max-width: 900px;
  margin-inline: auto;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 24px 64px -16px rgba(122, 77, 255, 0.18),
    0 4px 16px rgba(0, 0, 0, 0.06);
  background: #ede8ff;
}
.za-video__wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.za-video__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #ede8ff 0%, #ddd0ff 100%);
}
.za-video__play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(122, 77, 255, 0.4);
  transition: transform 0.2s;
  cursor: pointer;
}
.za-video__play:hover {
  transform: scale(1.07);
}
.za-video__play .material-symbols-outlined {
  font-size: 2.25rem;
  color: #fff;
}
.za-video__placeholder p {
  color: rgba(60, 40, 120, 0.55);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════
   BENTO — Everything you need
═══════════════════════════════════════════════════════════ */
.za-bento {
  padding: 6rem 0;
  border-top: 1px solid var(--border-muted);
}
.za-bento__header {
  text-align: center;
  margin-bottom: 4rem;
}
.za-bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.za-bcard {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.za-bcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.za-bcard__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.za-bcard__icon .material-symbols-outlined {
  font-size: 1.375rem;
}
.za-bcard__icon--purple {
  background: rgba(122, 77, 255, 0.12);
}
.za-bcard__icon--purple .material-symbols-outlined {
  color: var(--purple);
}
.za-bcard__icon--blue {
  background: rgba(14, 165, 233, 0.1);
}
.za-bcard__icon--blue .material-symbols-outlined {
  color: #0ea5e9;
}
.za-bcard__icon--green {
  background: rgba(34, 197, 94, 0.1);
}
.za-bcard__icon--green .material-symbols-outlined {
  color: #16a34a;
}
.za-bcard__icon--amber {
  background: rgba(245, 158, 11, 0.1);
}
.za-bcard__icon--amber .material-symbols-outlined {
  color: #f59e0b;
}
.za-bcard__icon--rose {
  background: rgba(244, 63, 94, 0.1);
}
.za-bcard__icon--rose .material-symbols-outlined {
  color: #f43f5e;
}
.za-bcard__icon--teal {
  background: rgba(20, 184, 166, 0.1);
}
.za-bcard__icon--teal .material-symbols-outlined {
  color: #14b8a6;
}
.za-bcard__icon--slate {
  background: rgba(71, 85, 105, 0.1);
}
.za-bcard__icon--slate .material-symbols-outlined {
  color: #64748b;
}
.za-bcard__name {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.za-bcard h4 {
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.za-bcard p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION — split view
═══════════════════════════════════════════════════════════ */
.za-contact {
  padding: 0 0 5rem;
  background: #f5f4ff;
  border-top: 1px solid var(--border-muted);
  position: relative;
  overflow: hidden;
}

.za-contact__split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 0;
}

/* ── Visual panel (left) ── */
.za-contact__visual {
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

.za-contact__vis-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.za-contact__vis-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(85,40,221,.55) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.za-contact__vis-figure {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 88%;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
}

.za-contact__vis-copy {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 3;
}

.za-contact__vis-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 100px;
  margin-bottom: .875rem;
}

@keyframes zaContactDotBlink { 0%,100%{opacity:1} 50%{opacity:.3} }
.za-contact__vis-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: zaContactDotBlink 1.5s infinite;
  flex-shrink: 0;
}

.za-contact__vis-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin: 0 0 .5rem;
}

.za-contact__vis-hl {
  color: #e9d5ff;
}

.za-contact__vis-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  line-height: 1.65;
  max-width: 34ch;
  margin: 0;
}

/* ── Form panel (right) ── */
.za-contact__form-side {
  background: #f5f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
}

.za-contact__form-deco {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(122,77,255,.08), transparent 65%);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.za-contact__form-card {
  width: 100%;
  max-width: 660px;
  background: #fff;
  border: 1px solid rgba(122,77,255,.12);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}

.za-contact__form-accent {
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #7A4DFF, transparent);
  border-radius: 0 0 4px 4px;
}

.za-contact__form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #1A1626;
  letter-spacing: -.03em;
  margin: 0 0 .375rem;
}

.za-contact__form-desc {
  font-size: .875rem;
  color: #6B6478;
  margin: 0 0 2rem;
}


/* ── CTA button group ──────────────────────────────────── */
.za-cta__btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.za-cta__btns .za-btn--primary {
  font-size: 1.0625rem;
  padding: 1rem 2.5rem;
}
.za-cta__btns .za-btn--outline {
  font-size: 1.0625rem;
  padding: 1rem 2.5rem;
}

/* ═══════════════════════════════════════════════════════════
   BENTO GRID — What Zoru actually does
═══════════════════════════════════════════════════════════ */

/* ── Grid wrapper ── */
.za-feat-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 280px 220px;
  grid-template-areas:
    "slot   slot   notif  risk"
    "recall img    img    risk"
    "recall locs   omni   omni";
  gap: 1rem;
}

/* ── Base card ── */
.za-bc {
  border-radius: 24px;
  padding: 1.75rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.za-bc .za-eyebrow {
  margin-bottom: 0.5rem;
}
.za-bc h3 {
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0.625rem;
}
.za-bc p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Shared: header row (icon + eyebrow on same line) ── */
.za-bc__header-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
.za-bc__header-row .za-eyebrow {
  margin-bottom: 0;
}

/* ── Shared: icon square ── */
.za-bc__icon-sq {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}
.za-bc__icon-sq .material-symbols-outlined {
  font-size: 1.375rem;
}
.za-bc__header-row .za-bc__icon-sq {
  margin-bottom: 0;
}

/* ── 1. Slot Recovery ── */
.za-bc--slot {
  grid-area: slot;
  background: #cdf23a;
  flex-direction: row;
  align-items: stretch;
  gap: 1.5rem;
}
.za-bc--slot .za-bc__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.za-bc__icon-sq--slot {
  background: #1a2233;
  color: #cdf23a;
}
.za-bc--slot h3 {
  color: #1a2233;
  font-size: 1.4rem;
  margin-bottom: 0.375rem;
}
.za-bc--slot .za-eyebrow {
  color: rgba(26, 34, 51, 0.55);
}

.za-slot-stat {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  margin-top: 0.5rem;
}
.za-slot-stat__num {
  font-size: 2.6rem;
  font-weight: 900;
  color: #1a2233;
  letter-spacing: -0.05em;
  line-height: 1;
}
.za-slot-stat__label {
  font-size: 0.78rem;
  color: rgba(26, 34, 51, 0.55);
}

.za-slot-illustration {
  flex-shrink: 0;
  width: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.za-slot-sparkle {
  position: absolute;
  color: rgba(26, 34, 51, 0.65);
  user-select: none;
  pointer-events: none;
  font-style: normal;
}
.za-slot-sparkle--1 {
  font-size: 1.5rem;
  top: 16%;
  left: 10%;
}
.za-slot-sparkle--2 {
  font-size: 0.9rem;
  top: 10%;
  right: 14%;
}
.za-slot-cards {
  position: relative;
  width: 108px;
  height: 74px;
}
.za-slot-card {
  position: absolute;
  width: 100px;
  height: 65px;
  border-radius: 12px;
  top: 0;
  left: 0;
}
.za-slot-card--back {
  background: #1a2233;
  transform: rotate(-11deg) translate(3px, 8px);
}
.za-slot-card--mid {
  background: #7a4dff;
  transform: rotate(-5deg) translate(1px, 3px);
}
.za-slot-card--front {
  background: #fff;
  transform: rotate(4deg) translate(4px, -3px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.2);
}
.za-slot-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a2233;
  display: flex;
  align-items: center;
  justify-content: center;
}
.za-slot-card__icon .material-symbols-outlined {
  font-size: 1.3rem;
  color: #cdf23a;
}

/* ── 2. Notifications ── */
.za-bc--notif {
  grid-area: notif;
  background: #bfe3fb;
  justify-content: space-between;
}
.za-bc__icon-sq--notif {
  background: #2563eb;
  color: #fff;
  margin-bottom: 0;
}
.za-notif-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.za-notif-header h3 {
  color: #1a2233;
  font-size: 1.5rem;
  line-height: 1.2;
  flex: 1;
  margin-bottom: 0;
}

.za-notif-ring {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.za-notif-ring__donut {
  position: relative;
  flex-shrink: 0;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.za-notif-ring__donut svg {
  position: absolute;
  top: 0;
  left: 0;
}
.za-notif-ring__overlay {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  font-weight: 900;
  color: #1a2233;
  letter-spacing: -0.03em;
  line-height: 1;
}
.za-notif-ring__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.za-notif-ring__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a2233;
}
.za-notif-ring__sub {
  font-size: 0.72rem;
  color: rgba(26, 34, 51, 0.55);
}

/* ── 3. Image ── */
.za-bc--img {
  grid-area: img;
  padding: 1.5rem;
  background: #8b5cf6;
  overflow: visible;
  z-index: 5;
  align-items: flex-start;
  justify-content: flex-start;
}
.za-bc--img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(
    circle at 50% 70%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.za-img-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.35rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.za-bc--img img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 130%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  z-index: 1;
}

/* ── 4. Recall & Retention ── */
.za-bc--recall {
  grid-area: recall;
  background: #8b5cf6;
  border: none;
}
.za-bc--recall h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.za-bc--recall .za-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.za-bc__icon-sq--recall {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.za-recall-ring {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 0 0 0.75rem;
}
.za-recall-ring__donut {
  flex-shrink: 0;
}
.za-recall-ring__donut svg {
  display: block;
}
.za-recall-ring__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.za-recall-ring__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.za-recall-ring__sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
}
.za-recall-ring__sub strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.za-recall-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}
.za-recall-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
  border-radius: 12px;
  cursor: default;
  border: none;
  min-height: 68px;
}
.za-recall-btn__icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.za-recall-btn__icon svg {
  display: block;
}
.za-recall-btn__label {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}
.za-recall-btn--remind {
  background: #cdf23a;
  color: #1a2233;
}
.za-recall-btn--remind .za-recall-btn__icon {
  background: rgba(26, 34, 51, 0.12);
  color: #1a2233;
}
.za-recall-btn--winback {
  background: #ff5d4d;
  color: #fff;
}
.za-recall-btn--winback .za-recall-btn__icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.za-recall__list {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 0.5rem;
}
.za-recall__row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.za-recall__row:first-child {
  border-top: none;
}
.za-bc--recall.is-visible .za-recall__row:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.za-bc--recall.is-visible .za-recall__row:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}

.za-recall__av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.za-recall__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.za-recall__info strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}
.za-recall__info span {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.55);
}

.za-recall__arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.za-recall__arrow--lime {
  color: #cdf23a;
}
.za-recall__arrow--coral {
  color: #ffb3ad;
}

/* ── 5. Risk Score ── */
.za-bc--risk {
  grid-area: risk;
  background: #ff5d4d;
  color: #fff;
  border: none;
}
.za-bc--risk .za-eyebrow {
  color: rgba(255, 255, 255, 0.65);
}
.za-bc--risk h3 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.za-bc__icon-sq--risk {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.za-risk-slider {
  margin-top: auto;
  margin-bottom: 0.625rem;
}
.za-risk-slider__track {
  height: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.28);
  position: relative;
}
.za-risk-slider__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 52%;
  border-radius: 8px;
  background: #fff;
}
.za-risk-slider__dot {
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1a2233;
  border: 4px solid #fff;
}
.za-risk-slider__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
.za-risk-slider__labels span {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}
.za-risk-slider__mid {
  font-weight: 700 !important;
  color: #fff !important;
}

.za-risk-detail {
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.za-risk-detail__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.za-risk-detail__key {
  font-size: 0.75rem;
  color: rgba(26, 34, 51, 0.55);
}
.za-risk-detail__val {
  font-size: 1.1rem;
  font-weight: 900;
  color: #1a2233;
  letter-spacing: -0.02em;
}
.za-risk-detail__drop {
  font-size: 0.72rem;
  font-weight: 700;
  color: #059669;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.za-risk-detail__drop .material-symbols-outlined {
  font-size: 0.875rem;
}

/* ── 6. Multiple Locations ── */
.za-bc--locs {
  grid-area: locs;
  background: #f6f0e2;
  border: none;
}
.za-bc__icon-sq--locs {
  background: #ff5d4d;
  color: #fff;
}

.za-locs-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.za-locs-header .za-bc__icon-sq {
  margin-bottom: 0;
}
.za-locs-header__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.za-locs-header__line {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2233;
  line-height: 1.3;
}

.za-locs-stats-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  flex: 1;
}
.za-locs-stat {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.85;
}
.za-locs-stat__num {
  font-size: 2.75rem;
  font-weight: 800;
  color: #1a2233;
  letter-spacing: -0.03em;
  line-height: 1;
}
.za-locs-stat__trend {
  font-size: 0.72rem;
  font-weight: 800;
  color: #15803d;
  margin-top: 5px;
}

.za-locs-cols {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 44px;
}
.za-locs-col {
  width: 11px;
  border-radius: 4px;
  height: 0;
  transition: height 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.za-locs-col--light {
  background: #cdbcf5;
}
.za-locs-col--dark {
  background: #8b5cf6;
}
.za-bc--locs.is-visible .za-locs-col:nth-child(1) {
  height: var(--h, 22px);
  transition-delay: 0.05s;
}
.za-bc--locs.is-visible .za-locs-col:nth-child(2) {
  height: var(--h, 32px);
  transition-delay: 0.15s;
}
.za-bc--locs.is-visible .za-locs-col:nth-child(3) {
  height: var(--h, 26px);
  transition-delay: 0.25s;
}
.za-bc--locs.is-visible .za-locs-col:nth-child(4) {
  height: var(--h, 44px);
  transition-delay: 0.35s;
}
.za-bc--locs.is-visible .za-locs-col:nth-child(5) {
  height: var(--h, 36px);
  transition-delay: 0.45s;
}

/* ── 7. Omnichannel ── */
.za-bc--omni {
  grid-area: omni;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}
.za-omni-text {
  flex: 1;
  min-width: 0;
}
.za-omni-text h3 {
  color: #1a2233;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.za-omni-text p {
  color: rgba(26, 34, 51, 0.5);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}
.za-omni-text .za-eyebrow {
  color: rgba(26, 34, 51, 0.5);
}

.za-omni-icons {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.za-omni-icon-sq {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.za-omni-icon-sq svg {
  display: block;
}
.za-bc--omni.is-visible .za-omni-icon-sq:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}
.za-bc--omni.is-visible .za-omni-icon-sq:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}
.za-bc--omni.is-visible .za-omni-icon-sq:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}
.za-omni-icon-sq--phone {
  background: #bfe3fb;
  color: #2563eb;
}
.za-omni-icon-sq--chat {
  background: #ede9ff;
  color: #7a4dff;
}
.za-omni-icon-sq--mail {
  background: #ffe0db;
  color: #ff5d4d;
}
.za-omni-arrow {
  color: rgba(26, 34, 51, 0.3);
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.za-bc--omni.is-visible .za-omni-arrow {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}
.za-omni-cal {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #cdf23a;
  color: #1a2233;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.za-bc--omni.is-visible .za-omni-cal {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}
.za-omni-cal svg {
  display: block;
}

/* ── Hover description overlay ── */
.za-bc__desc {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: flex-end;
  background: rgba(10, 12, 24, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
  z-index: 20;
}
.za-bc__desc p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  margin: 0;
}
.za-bc:hover .za-bc__desc,
.za-bc:focus .za-bc__desc {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .za-feat-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "slot   slot"
      "notif  risk"
      "recall img"
      "locs   omni";
  }
  .za-bc--slot {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .za-bc--recall {
    min-height: 300px;
  }
  .za-bc--risk {
    min-height: 280px;
  }
  .za-bc--omni {
    flex-direction: column;
    align-items: flex-start;
  }
  .za-omni-icons {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .za-feat-bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "slot"
      "notif"
      "risk"
      "recall"
      "img"
      "locs"
      "omni";
  }
  .za-bc--img {
    height: 260px;
  }
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRY CARDS
═══════════════════════════════════════════════════════════ */
.za-industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
.za-industry-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.za-industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.za-industry-card__emoji {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.za-industry-card h4 {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.za-industry-card p {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   INDUSTRIES — Morphing Mosaic
═══════════════════════════════════════════════════════════ */

.za-indf {
  background: #f5f4ff;
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vh, 7rem) 0 clamp(4rem, 8vh, 6rem);
}

.za-indf__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vh, 4rem);
  padding: 0 var(--container-pad, 1.25rem);
  position: relative;
  z-index: 1;
}

.za-indf__header .za-h2 {
  margin-top: 0.75rem;
}

.za-indf__track {
  display: flex;
  gap: 12px;
  height: clamp(380px, 50vh, 520px);
  padding: 0 clamp(1rem, 4vw, 3rem);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Panel base ── */
.za-indf__panel {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.6, 0.05, 0.1, 1);
}

.za-indf__panel.is-active {
  flex: 4.2 1 0%;
}

/* ── Photo background ── */
.za-indf__panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.25) brightness(1.08);
  transition: filter 0.5s ease;
}

.za-indf__panel.is-active .za-indf__panel-bg {
  filter: saturate(1.4) brightness(1.12);
}

/* ── Overlay — light scrim, heavier only at the bottom for text ── */
.za-indf__panel-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.1) 45%,
    rgba(0, 0, 0, 0.62) 100%
  );
  transition: opacity 0.5s ease;
}

.za-indf__panel.is-active .za-indf__panel-ov {
  opacity: 1;
}

/* ── Vertical label (inactive only) ── */
.za-indf__panel-vert {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.za-indf__panel.is-active .za-indf__panel-vert {
  opacity: 0;
}

/* ── Detail block (active only) ── */
.za-indf__panel-detail {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  opacity: 0;
  transition: opacity 0.5s ease 0.15s;
  z-index: 2;
  pointer-events: none;
}

.za-indf__panel.is-active .za-indf__panel-detail {
  opacity: 1;
}

.za-indf__panel-icon {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 10px;
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.za-indf__panel-name {
  font-family: "Satoshi", "Inter", sans-serif;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.za-indf__panel-stat {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.za-indf__panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.za-indf__tag {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* ── Mobile: stack vertically ── */
@media (max-width: 768px) {
  .za-indf__track {
    flex-direction: column;
    height: 640px;
    padding: 0 1rem;
  }
  .za-indf__panel-vert {
    writing-mode: horizontal-tb;
    left: 18px;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM — new class names
═══════════════════════════════════════════════════════════ */
.za-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.za-contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.125rem;
}
.za-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.za-contact__field label {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1A1626;
  letter-spacing: 0.01em;
}

.za-contact__input-wrap {
  position: relative;
}
.za-contact__input-icon {
  position: absolute;
  left: .9rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  color: #a78bfa;
  pointer-events: none;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  transition: color 0.15s;
}
.za-contact__input-icon--top {
  top: 1rem;
  transform: none;
}

.za-contact__field input,
.za-contact__field textarea {
  padding: .9rem 1rem .9rem 2.875rem;
  border: 1.5px solid rgba(122,77,255,.15);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: .9375rem;
  color: #1A1626;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.za-contact__field input::placeholder,
.za-contact__field textarea::placeholder {
  color: #c4bcd0;
}
.za-contact__field input:focus,
.za-contact__field textarea:focus {
  border-color: #7A4DFF;
  box-shadow: 0 0 0 4px rgba(122,77,255,.1);
}
.za-contact__field textarea { resize: none; min-height: 100px; }

.za-contact__submit {
  width: 100%;
  padding: 1.05rem;
  border-radius: 100px;
  border: none;
  background: #7A4DFF;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-shadow: 0 8px 28px rgba(122,77,255,.32);
  transition: transform .2s, box-shadow .2s;
}
.za-contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(122,77,255,.42);
}

.za-contact__form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: .78rem;
  color: #b4acbd;
  font-weight: 500;
  margin: 0;
}
.za-contact__form-note .material-symbols-outlined {
  font-size: .9rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

/* ── Footer brand heading ──────────────────────────────── */
.za-footer__heading {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: rgba(250, 248, 242, 0.92);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.875rem;
}

/* ── Extra responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .za-industry-cards { grid-template-columns: repeat(2, 1fr); }
  .za-bento__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .za-industry-cards { grid-template-columns: 1fr; }
  .za-bento__grid { grid-template-columns: 1fr; }
  .za-contact__split { grid-template-columns: 1fr; }
  .za-contact__visual { min-height: 420px; }
  .za-contact__vis-figure { height: 90%; }
  .za-contact__vis-copy { left: 1.5rem; right: 1.5rem; bottom: 1.5rem; }
  .za-contact__form-side { padding: 2.5rem 1.5rem; }
  .za-contact__row { grid-template-columns: 1fr; }
  .za-form-row { grid-template-columns: 1fr; }
  .za-contact__form-card { padding: 1.75rem 1.5rem; }
  .za-cta__scroll-btns { flex-direction: column; align-items: center; }
  .za-cta__scroll-btns .za-btn { width: 100%; max-width: 280px; }
  .za-cta__scroll-trust { gap: 0.75rem; }
}
