/* =========================================================
   WebsDocs AI Voice Agent Page
   Path: /product-ai/css/voice-agent.css
========================================================= */

:root {
  --wva-ink: #2a0146;
  --wva-ink-dark: #09031f;
  --wva-purple: #5a13c7;
  --wva-purple-dark: #3b0764;
  --wva-orange: #ff8a00;
  --wva-orange-2: #ffb000;
  --wva-blue: #23a8ff;
  --wva-green: #b7df52;
  --wva-white: #ffffff;
  --wva-muted: #6d6478;
  --wva-text: #30213f;
  --wva-soft: rgba(255, 255, 255, 0.12);
  --wva-border: rgba(255, 255, 255, 0.18);
  --wva-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  --wva-shadow-soft: 0 22px 60px rgba(42, 1, 70, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.wva-shell {
  width: min(1820px, calc(100% - 44px));
  margin: 0 auto;
}

/* =========================================================
   Hero
========================================================= */

.wva-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--wva-white);
  background: var(--wva-ink-dark);
  isolation: isolate;
}

.wva-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 36%, rgba(255, 138, 0, 0.26), transparent 34%),
    linear-gradient(135deg, #09031f 0%, #111b47 46%, #2a0146 100%);
}

.wva-hero-img,
.wva-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wva-hero-img {
  opacity: 1;
  transform: scale(1.01);
}

.wva-hero-video {
  opacity: 0;
  transition: opacity 900ms ease;
}

.wva-hero.is-video-active .wva-hero-video {
  opacity: 1;
}

.wva-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(7, 3, 29, 0.95) 0%,
      rgba(8, 3, 31, 0.82) 40%,
      rgba(8, 3, 31, 0.42) 72%,
      rgba(8, 3, 31, 0.24) 100%
    ),
    radial-gradient(circle at 76% 38%, rgba(255, 138, 0, 0.22), transparent 34%),
    radial-gradient(circle at 58% 76%, rgba(35, 168, 255, 0.15), transparent 32%);
}

.wva-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 180px;
  background: linear-gradient(to top, rgba(8, 3, 31, 0.84), transparent);
  pointer-events: none;
}

.wva-hero .wva-shell {
  position: relative;
  z-index: 4;
}

.wva-hero-grid {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 0.72fr);
  gap: 58px;
  align-items: center;
  padding: 92px 0 76px;
}

/* =========================================================
   Hero copy
========================================================= */

.wva-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0;
  padding: 9px 14px;
  border: 1px solid rgba(255, 176, 0, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #ffd7a6;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wva-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wva-orange-2);
  box-shadow: 0 0 18px rgba(255, 176, 0, 0.9);
}

.wva-hero-copy h1 {
  max-width: 12.5ch;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: clamp(3.25rem, 6.4vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 950;
  text-wrap: balance;
}

.wva-hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.wva-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.wva-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  font-size: 0.94rem;
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.wva-btn:hover,
.wva-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.wva-btn-primary {
  color: #180028;
  background: linear-gradient(135deg, var(--wva-orange-2), var(--wva-orange));
  box-shadow: 0 18px 38px rgba(255, 138, 0, 0.28);
}

.wva-btn-primary:hover,
.wva-btn-primary:focus-visible {
  box-shadow: 0 22px 44px rgba(255, 138, 0, 0.36);
}

.wva-btn-soft {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wva-btn-soft-1 {
  color: #180028;
  background: rgba(255, 255, 255, 0.33);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.wva-btn-ghost {
  color: #ffffff;
  background: rgba(90, 19, 199, 0.22);
  border-color: rgba(255, 255, 255, 0.16);
}



.wva-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.wva-hero-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.82rem;
  font-weight: 850;
}

/* =========================================================
   Hero visual
========================================================= */

.wva-hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-content: center;
  justify-items: center;
}

/* AI orb */

.wva-voice-orb-wrap {
  position: absolute;
  top: 0px;
  right: 200px;
  width: min(199px, 74vw);
  aspect-ratio: 1;
  z-index: 2;
}

.wva-voice-orb {
  position: absolute;
  inset: 18%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 14%),
    radial-gradient(circle at 68% 70%, rgba(35, 168, 255, 0.95), transparent 34%),
    radial-gradient(circle at 30% 68%, rgba(183, 223, 82, 0.78), transparent 32%),
    radial-gradient(circle at 62% 30%, rgba(255, 138, 0, 0.64), transparent 28%),
    linear-gradient(135deg, #ffffff, #23a8ff 48%, #5a13c7);
  box-shadow:
    0 0 70px rgba(35, 168, 255, 0.34),
    0 0 100px rgba(255, 138, 0, 0.24),
    inset 0 0 42px rgba(255, 255, 255, 0.38);
  animation: wvaOrbFloat 6s ease-in-out infinite;
}

.wva-orb-ring {
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: wvaRingPulse 4.8s ease-in-out infinite;
}

.wva-orb-ring-two {
  inset: 0;
  border-color: rgba(255, 176, 0, 0.16);
  animation-delay: 900ms;
}

@keyframes wvaOrbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -14px, 0) scale(1.025);
  }
}

@keyframes wvaRingPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.42;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.88;
  }
}

/* Large human/operator image */

.wva-operator-card {
  position: absolute;
  left: -34px;
  top: 168px;
  z-index: 5;
  width: 132px;
  height: 238px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 176, 0, 0.28);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.28),
    0 0 42px rgba(255, 138, 0, 0.12);
}

.wva-operator-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product console */

.wva-console-card {
  position: relative;
  z-index: 4;
  width: min(520px, 100%);
  margin-top: 155px;
  padding: 18px;
  border-radius: 30px;
  color: var(--wva-text);
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.14), transparent 32%),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: var(--wva-shadow);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.wva-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(42, 1, 70, 0.10);
}

.wva-console-dots {
  display: inline-flex;
  gap: 6px;
}

.wva-console-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(42, 1, 70, 0.28);
}

.wva-console-head strong {
  color: var(--wva-ink);
  font-size: 0.9rem;
}

.wva-console-head em {
  padding: 6px 9px;
  border-radius: 999px;
  color: #355900;
  background: rgba(183, 223, 82, 0.24);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
}

/* Small human handoff card */

.wva-human-card {
  position: absolute;
  right: -78px;
  top: 94px;
  z-index: 6;
  width: 184px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 138, 0, 0.24);
  box-shadow: 0 18px 40px rgba(42, 1, 70, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-human-card img {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255, 138, 0, 0.22);
}

.wva-human-card strong {
  display: block;
  color: var(--wva-ink);
  font-size: 0.72rem;
  line-height: 1.15;
}

.wva-human-card span {
  display: block;
  margin-top: 4px;
  color: var(--wva-muted);
  font-size: 0.64rem;
  line-height: 1.25;
}

/* Agent preview content */

.wva-agent-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 16px;
}

.wva-agent-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--wva-ink), var(--wva-purple), var(--wva-orange));
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(42, 1, 70, 0.18);
}

.wva-agent-row strong {
  display: block;
  color: var(--wva-ink);
  font-size: 1rem;
}

.wva-agent-row p {
  margin: 4px 0 0;
  color: var(--wva-muted);
  font-size: 0.84rem;
}

.wva-bubble {
  max-width: 90%;
  margin-top: 15px;
  padding: 13px 15px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.wva-bubble-user {
  margin-left: auto;
  color: #ffffff;
  background: linear-gradient(135deg, var(--wva-purple), var(--wva-ink));
  border-bottom-right-radius: 6px;
}

.wva-bubble-ai {
  color: var(--wva-text);
  background: #ffffff;
  border: 1px solid rgba(255, 138, 0, 0.18);
  border-bottom-left-radius: 6px;
}

.wva-mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.wva-mini-metrics div {
  padding: 12px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid rgba(255, 138, 0, 0.18);
}

.wva-mini-metrics span {
  display: block;
  color: #9a4f00;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wva-mini-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--wva-ink);
  font-size: 0.82rem;
  line-height: 1.25;
}

/* Enterprise note */

.wva-enterprise-note {
  position: relative;
  z-index: 4;
  width: min(450px, 92%);
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  color: #ffffff;
  background: rgba(42, 1, 70, 0.62);
  border: 1px solid rgba(255, 176, 0, 0.28);
  box-shadow: var(--wva-shadow-soft);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-enterprise-note strong {
  display: block;
  color: #ffd7a6;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.wva-enterprise-note span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  line-height: 1.48;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1180px) {
  .wva-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 76px;
  }

  .wva-hero-copy h1 {
    max-width: 13.5ch;
  }

  .wva-hero-visual {
    min-height: 580px;
    justify-items: center;
  }

  .wva-voice-orb-wrap {
    top: -70px;
    right: 8%;
    width: min(290px, 58vw);
  }

  .wva-operator-card {
    left: 4%;
    top: 176px;
    width: 120px;
    height: 210px;
  }

  .wva-console-card {
    margin-top: 165px;
  }

  .wva-human-card {
    right: 18px;
    top: 86px;
  }
}

@media (max-width: 760px) {
  .wva-shell {
    width: calc(100% - 20px);
  }

  .wva-hero {
    min-height: auto;
  }

  .wva-hero-grid {
    min-height: auto;
    padding: 56px 0 42px;
  }

  .wva-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 13vw, 3.6rem);
    line-height: 0.96;
  }

  .wva-hero-lead {
    font-size: 0.98rem;
  }

  .wva-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wva-btn {
    width: 100%;
  }

  .wva-hero-points {
    gap: 8px;
  }

  .wva-hero-points span {
    font-size: 0.76rem;
  }

  .wva-hero-visual {
    min-height: 540px;
    justify-items: center;
  }

  .wva-voice-orb-wrap {
    top: -52px;
    right: 50%;
    width: min(260px, 76vw);
    transform: translateX(50%);
  }

  .wva-operator-card {
    left: 10px;
    top: 154px;
    width: 92px;
    height: 152px;
    border-radius: 20px;
  }

  .wva-console-card {
    width: 100%;
    margin-top: 178px;
    border-radius: 24px;
  }

  .wva-human-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin: 14px 0 0;
  }

  .wva-mini-metrics {
    grid-template-columns: 1fr;
  }

  .wva-enterprise-note {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .wva-kicker {
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .wva-hero-visual {
    min-height: 500px;
  }

  .wva-voice-orb-wrap {
    top: -38px;
    width: min(230px, 78vw);
  }

  .wva-operator-card {
    display: none;
  }

  .wva-console-card {
    margin-top: 150px;
  }

  .wva-console-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wva-bubble {
    max-width: 100%;
  }
}

/* =========================================================
   Intro / Value Strip
========================================================= */

.wva-intro {
  position: relative;
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 138, 0, 0.12), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(90, 19, 199, 0.10), transparent 32%),
    linear-gradient(180deg, #fffaf4 0%, #fbf6ff 54%, #ffffff 100%);
  color: var(--wva-text);
  overflow: hidden;
}

.wva-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 19, 199, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 78%);
  pointer-events: none;
}

.wva-intro .wva-shell {
  position: relative;
  z-index: 2;
}

.wva-kicker-light {
  background: rgba(255, 255, 255, 0.82);
  color: #9a4f00;
  border-color: rgba(255, 138, 0, 0.28);
  box-shadow: 0 12px 28px rgba(42, 1, 70, 0.06);
}

.wva-intro-head {
  max-width: 1200px;
  margin-bottom: 34px;
}

.wva-intro-head h2 {
  margin: 18px 0 0;
  color: var(--wva-ink);
  font-size: clamp(2.1rem, 4vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
  text-wrap: balance;
}

.wva-intro-head > p:not(.wva-kicker) {
  max-width: 1400px;
  margin: 20px 0 0;
  color: var(--wva-muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}

.wva-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wva-intro-card {
  min-height: 245px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(90, 19, 199, 0.12);
  box-shadow: 0 18px 52px rgba(42, 1, 70, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-intro-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--wva-ink);
  background: linear-gradient(135deg, var(--wva-orange-2), var(--wva-orange));
  font-size: 0.82rem;
  font-weight: 950;
}

.wva-intro-card h3 {
  margin: 20px 0 0;
  color: var(--wva-ink);
  font-size: 1.16rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.wva-intro-card p {
  margin: 12px 0 0;
  color: var(--wva-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

/* Intro responsive */

@media (max-width: 1180px) {
  .wva-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .wva-intro {
    padding: 64px 0;
  }

  .wva-intro-head h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .wva-intro-grid {
    grid-template-columns: 1fr;
  }

  .wva-intro-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }
}

/* =========================================================
   Voice Agent Plans + Plan Finder + Usage Popup
========================================================= */

.wva-plans {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 138, 0, 0.13), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(90, 19, 199, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 46%, #fbf6ff 100%);
  color: var(--wva-text);
  overflow: hidden;
}

.wva-plans::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 19, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.wva-plans .wva-shell {
  position: relative;
  z-index: 2;
}

.wva-plans-head {
  max-width: 1200px;
  margin-bottom: 36px;
}

.wva-plans-head h2 {
  margin: 18px 0 0;
  color: var(--wva-ink);
  font-size: clamp(2.15rem, 4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
  text-wrap: balance;
}

.wva-plans-head > p:not(.wva-kicker) {
  max-width: 1300px;
  margin: 20px 0 0;
  color: var(--wva-muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}


/* =========================================================
   Plan Finder
========================================================= */

.wva-plan-finder {
  margin: 34px 0 30px;
  padding: 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 19, 199, 0.12);
  box-shadow: 0 24px 68px rgba(42, 1, 70, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-plan-finder-head {
  max-width: 1200px;
  margin-bottom: 22px;
}

.wva-plan-finder-head h3 {
  margin: 16px 0 0;
  color: var(--wva-ink);
  font-size: clamp(1.8rem, 3vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.052em;
  font-weight: 950;
}

.wva-plan-finder-head > p:not(.wva-kicker) {
  margin: 16px 0 0;
  color: var(--wva-muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

.wva-plan-finder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.wva-finder-meter,
.wva-finder-result {
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(90, 19, 199, 0.1);
  box-shadow: 0 14px 36px rgba(42, 1, 70, 0.06);
}

.wva-finder-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.wva-finder-topline strong {
  color: var(--wva-ink);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.wva-finder-topline span,
.wva-finder-label {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: #9a4f00;
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.18);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wva-finder-range {
  width: 100%;
  accent-color: var(--wva-orange);
}

.wva-finder-scale {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  color: var(--wva-muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.wva-finder-help {
  margin: 14px 0 0;
  color: var(--wva-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.wva-finder-result {
  display: flex;
  flex-direction: column;
}

.wva-finder-result > strong {
  display: block;
  margin-top: 14px;
  color: var(--wva-ink);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.wva-finder-result > p {
  margin: 12px 0 0;
  color: var(--wva-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.wva-finder-grant {
  padding: 12px;
  border-radius: 16px;
  background: #fff7ed;
  border: 1px solid rgba(255, 138, 0, 0.18);
  color: #7c3f00 !important;
  font-weight: 850;
}

.wva-finder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.wva-finder-signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.wva-finder-group {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 19, 199, 0.1);
}

.wva-finder-group > p {
  margin: 0 0 10px;
  color: var(--wva-ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wva-finder-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-top: 8px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--wva-muted);
  background: #ffffff;
  border: 1px solid rgba(90, 19, 199, 0.1);
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.wva-finder-chip input {
  accent-color: var(--wva-orange);
}

.wva-finder-chip.is-selected {
  color: var(--wva-ink);
  background: #fff7ed;
  border-color: rgba(255, 138, 0, 0.32);
}


/* =========================================================
   Billing Toggle
========================================================= */

.wva-billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0 28px;
}

.wva-billing-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 19, 199, 0.12);
  box-shadow: 0 14px 36px rgba(42, 1, 70, 0.08);
}

.wva-billing-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--wva-muted);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 950;
  cursor: pointer;
}

.wva-billing-btn span {
  padding: 4px 7px;
  border-radius: 999px;
  color: #7c3f00;
  background: rgba(255, 138, 0, 0.14);
  font-size: 0.68rem;
  font-weight: 950;
}

.wva-billing-btn.is-active {
  color: var(--wva-ink);
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  box-shadow: 0 8px 18px rgba(42, 1, 70, 0.08);
}


/* ================= VOICE CHECKOUT INTAKE ================= */

.wva-checkout-intake {
  margin: 34px 0 28px;
  padding: 26px;
  border: 1px solid rgba(80, 35, 120, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 166, 43, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 238, 0.88));
  box-shadow: 0 22px 60px rgba(42, 1, 70, 0.08);
}

.wva-checkout-intake-head {
  max-width: 980px;
  margin-bottom: 18px;
}

.wva-checkout-intake-head h3 {
  margin: 8px 0 8px;
  color: #23013a;
  font-size: clamp(1.25rem, 2.2vw, 1.85rem);
  line-height: 1.18;
}

.wva-checkout-intake-head p {
  margin: 0;
  color: rgba(35, 1, 58, 0.72);
  line-height: 1.65;
}

.wva-checkout-fields {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
  align-items: end;
}

.wva-checkout-field {
  display: grid;
  gap: 7px;
}

.wva-checkout-field span {
  color: rgba(35, 1, 58, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.wva-checkout-field input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(80, 35, 120, 0.18);
  border-radius: 14px;
  background: #fff;
  color: #23013a;
  padding: 0 14px;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.wva-checkout-field input:focus {
  border-color: rgba(255, 166, 43, 0.8);
  box-shadow:
    0 0 0 4px rgba(255, 166, 43, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.wva-checkout-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: rgba(35, 1, 58, 0.72);
  font-weight: 700;
}

.wva-checkout-status[data-status="error"] {
  color: #b42318;
}

.wva-checkout-status[data-status="ok"] {
  color: #067647;
}

.wva-checkout-status[data-status="loading"] {
  color: #7a3f00;
}

.wva-plan-btn[disabled],
.wva-plan-btn[aria-busy="true"] {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}

@media (max-width: 900px) {
  .wva-checkout-fields {
    grid-template-columns: 1fr;
  }

  .wva-checkout-intake {
    padding: 20px;
    border-radius: 22px;
  }
}

/* =========================================================
   Plan Grid + Cards
========================================================= */

.wva-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.wva-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 19, 199, 0.12);
  box-shadow: 0 22px 60px rgba(42, 1, 70, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-plan-featured {
  border-color: rgba(255, 138, 0, 0.46);
  box-shadow:
    0 28px 74px rgba(42, 1, 70, 0.14),
    0 0 0 1px rgba(255, 138, 0, 0.08);
  transform: translateY(-10px);
}

.wva-plan-enterprise {
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(42, 1, 70, 0.96), rgba(22, 0, 56, 0.96));
  border-color: rgba(255, 176, 0, 0.28);
}

.wva-plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #2a0146;
  background: linear-gradient(135deg, var(--wva-orange-2), var(--wva-orange));
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wva-plan-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #9a4f00;
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wva-plan-enterprise .wva-plan-label {
  color: #ffd7a6;
  background: rgba(255, 138, 0, 0.14);
  border-color: rgba(255, 176, 0, 0.28);
}

.wva-plan-top h3 {
  margin: 18px 0 0;
  color: var(--wva-ink);
  font-size: 1.55rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.wva-plan-enterprise .wva-plan-top h3 {
  color: #ffffff;
}

.wva-plan-top p {
  margin: 12px 0 0;
  color: var(--wva-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.wva-plan-enterprise .wva-plan-top p {
  color: rgba(255, 255, 255, 0.76);
}

.wva-price {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(90, 19, 199, 0.1);
}

.wva-plan-enterprise .wva-price {
  border-color: rgba(255, 255, 255, 0.12);
}

.wva-price strong {
  display: block;
  color: var(--wva-ink);
  font-size: clamp(1.85rem, 2.5vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.wva-plan-enterprise .wva-price strong {
  color: #ffffff;
}

.wva-price span,
.wva-included-minutes span {
  display: block;
  margin-top: 5px;
  color: var(--wva-muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.wva-plan-enterprise .wva-price span,
.wva-plan-enterprise .wva-included-minutes span {
  color: rgba(255, 255, 255, 0.62);
}

.wva-billing-note {
  margin: 14px 0 0;
  color: var(--wva-muted);
  font-size: 0.84rem;
  line-height: 1.56;
}

.wva-plan-enterprise .wva-billing-note {
  color: rgba(255, 255, 255, 0.68);
}

.wva-included-minutes {
  margin-top: 18px;
  padding: 15px;
  border-radius: 20px;
  background: #fff7ed;
  border: 1px solid rgba(255, 138, 0, 0.18);
}

.wva-plan-enterprise .wva-included-minutes {
  background: rgba(255, 138, 0, 0.12);
  border-color: rgba(255, 176, 0, 0.24);
}

.wva-included-minutes strong {
  display: block;
  color: var(--wva-ink);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.wva-plan-enterprise .wva-included-minutes strong {
  color: #ffffff;
}

.wva-promo-minutes {
  margin-top: 10px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(183, 223, 82, 0.16);
  border: 1px solid rgba(183, 223, 82, 0.28);
}

.wva-plan-enterprise .wva-promo-minutes {
  background: rgba(183, 223, 82, 0.12);
  border-color: rgba(183, 223, 82, 0.22);
}

.wva-promo-minutes strong {
  display: block;
  color: #355900;
  font-size: 0.9rem;
  line-height: 1.25;
}

.wva-plan-enterprise .wva-promo-minutes strong {
  color: #dafb7d;
}

.wva-promo-minutes span {
  display: block;
  margin-top: 5px;
  color: var(--wva-muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.wva-plan-enterprise .wva-promo-minutes span {
  color: rgba(255, 255, 255, 0.68);
}

.wva-plan-features {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.wva-plan-features li {
  position: relative;
  padding-left: 24px;
  color: #4b3d5a;
  font-size: 0.9rem;
  line-height: 1.48;
}

.wva-plan-enterprise .wva-plan-features li {
  color: rgba(255, 255, 255, 0.78);
}

.wva-plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wva-orange-2), var(--wva-orange));
  box-shadow: 0 0 14px rgba(255, 138, 0, 0.38);
}

.wva-plan-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 24px;
}

.wva-plan-actions .wva-btn {
  width: 100%;
}

.wva-plan-link,
.wva-plan-link-button,
.wva-inline-popup-link {
  display: inline-flex;
  justify-content: center;
  color: var(--wva-ink);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.wva-plan-link:hover,
.wva-plan-link-button:hover,
.wva-inline-popup-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wva-plan-enterprise .wva-plan-link,
.wva-plan-enterprise .wva-plan-link-button {
  color: #ffd7a6;
}

.wva-plan-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--wva-muted);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(90, 19, 199, 0.11);
  box-shadow: 0 14px 38px rgba(42, 1, 70, 0.06);
  font-size: 0.92rem;
  line-height: 1.62;
}

.wva-plan-note strong {
  color: var(--wva-ink);
}

.wva-inline-popup-link {
  display: inline;
  margin-left: 4px;
  padding: 0;
  color: #9a4f00;
}


/* =========================================================
   Usage Popup
========================================================= */

body.wva-popup-open {
  overflow: hidden;
}

.wva-popup[hidden] {
  display: none !important;
}

.wva-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
}

.wva-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 3, 31, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wva-popup-panel {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  padding: 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.13), transparent 34%),
    #ffffff;
  border: 1px solid rgba(255, 176, 0, 0.24);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.wva-popup-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.wva-popup-head h2 {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--wva-ink);
  font-size: clamp(1.9rem, 3.4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.wva-popup-close {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(90, 19, 199, 0.14);
  color: var(--wva-ink);
  background: #ffffff;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(42, 1, 70, 0.08);
}

.wva-popup-body {
  display: grid;
  gap: 20px;
}

.wva-usage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wva-usage-card {
  padding: 20px;
  border-radius: 24px;
  background: #fffaf4;
  border: 1px solid rgba(255, 138, 0, 0.16);
}

.wva-usage-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--wva-ink);
  background: linear-gradient(135deg, var(--wva-orange-2), var(--wva-orange));
  font-size: 0.78rem;
  font-weight: 950;
}

.wva-usage-card h3 {
  margin: 16px 0 0;
  color: var(--wva-ink);
  font-size: 1.05rem;
  line-height: 1.2;
}

.wva-usage-card p {
  margin: 10px 0 0;
  color: var(--wva-muted);
  font-size: 0.86rem;
  line-height: 1.56;
}

.wva-credit-table-wrap {
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid rgba(90, 19, 199, 0.11);
  background: #ffffff;
}

.wva-credit-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.wva-credit-table th,
.wva-credit-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(90, 19, 199, 0.09);
  font-size: 0.88rem;
}

.wva-credit-table th {
  color: var(--wva-ink);
  background: #fff7ed;
  font-weight: 950;
  white-space: nowrap;
}

.wva-credit-table td {
  color: #4b3d5a;
}

.wva-credit-table tbody tr:last-child td {
  border-bottom: 0;
}

.wva-usage-note {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wva-usage-note div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(90, 19, 199, 0.1);
  box-shadow: 0 14px 34px rgba(42, 1, 70, 0.05);
}

.wva-usage-note strong {
  display: block;
  color: var(--wva-ink);
  font-size: 1rem;
}

.wva-usage-note p {
  margin: 9px 0 0;
  color: var(--wva-muted);
  font-size: 0.86rem;
  line-height: 1.58;
}


/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1180px) {
  .wva-plan-finder-grid,
  .wva-plan-grid,
  .wva-usage-note {
    grid-template-columns: 1fr;
  }

  .wva-finder-signals,
  .wva-usage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wva-plan-featured {
    transform: none;
  }

  .wva-finder-actions .wva-btn {
    width: auto;
  }
}

@media (max-width: 760px) {
  .wva-plans {
    padding: 64px 0;
  }

  .wva-plans-head h2,
  .wva-plan-finder-head h3,
  .wva-popup-head h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .wva-plan-finder,
  .wva-plan-card,
  .wva-popup-panel {
    padding: 20px;
    border-radius: 24px;
  }

  .wva-plan-finder-grid,
  .wva-finder-signals,
  .wva-plan-grid,
  .wva-usage-grid,
  .wva-usage-note {
    grid-template-columns: 1fr;
  }

  .wva-finder-topline,
  .wva-popup-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wva-finder-actions {
    flex-direction: column;
  }

  .wva-finder-actions .wva-btn,
  .wva-plan-actions .wva-btn {
    width: 100%;
  }

  .wva-billing-toggle {
    width: 100%;
    border-radius: 24px;
    flex-direction: column;
  }

  .wva-billing-btn {
    justify-content: center;
    width: 100%;
  }

  .wva-plan-badge {
    position: static;
    width: fit-content;
    margin-bottom: 12px;
  }

  .wva-price strong {
    font-size: 2.1rem;
  }

  .wva-included-minutes strong {
    font-size: 2rem;
  }

  .wva-popup {
    padding: 12px;
    align-items: start;
  }

  .wva-popup-panel {
    max-height: calc(100vh - 24px);
  }
}

@media (max-width: 460px) {
  .wva-finder-topline strong {
    font-size: 1.15rem;
  }

  .wva-price strong {
    font-size: 1.85rem;
  }

  .wva-credit-table th,
  .wva-credit-table td {
    padding: 12px;
    font-size: 0.82rem;
  }
}

/* =========================================================
   How It Works
========================================================= */

.wva-flow {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 138, 0, 0.12), transparent 30%),
    radial-gradient(circle at 88% 26%, rgba(90, 19, 199, 0.12), transparent 34%),
    linear-gradient(180deg, #fbf6ff 0%, #ffffff 48%, #fffaf4 100%);
  color: var(--wva-text);
  overflow: hidden;
}

.wva-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 19, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.wva-flow .wva-shell {
  position: relative;
  z-index: 2;
}

.wva-flow-head {
  max-width: 1300px;
  margin-bottom: 34px;
}

.wva-flow-head h2 {
  margin: 18px 0 0;
  color: var(--wva-ink);
  font-size: clamp(2.15rem, 4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
  text-wrap: balance;
}

.wva-flow-head > p:not(.wva-kicker) {
  max-width: 880px;
  margin: 20px 0 0;
  color: var(--wva-muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}

.wva-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wva-flow-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 19, 199, 0.12);
  box-shadow: 0 18px 52px rgba(42, 1, 70, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-flow-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: var(--wva-ink);
  background: linear-gradient(135deg, var(--wva-orange-2), var(--wva-orange));
  font-size: 0.82rem;
  font-weight: 950;
}

.wva-flow-card h3 {
  margin: 20px 0 0;
  color: var(--wva-ink);
  font-size: 1.22rem;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.wva-flow-card p {
  margin: 12px 0 0;
  color: var(--wva-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.wva-flow-card code {
  padding: 2px 6px;
  border-radius: 7px;
  color: #7c3f00;
  background: #fff2df;
  font-size: 0.84em;
  font-weight: 850;
}

.wva-flow-cta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(42, 1, 70, 0.96), rgba(22, 0, 56, 0.96));
  border: 1px solid rgba(255, 176, 0, 0.26);
  box-shadow: 0 24px 70px rgba(42, 1, 70, 0.16);
  color: #ffffff;
}

.wva-flow-cta strong {
  display: block;
  color: #ffd7a6;
  font-size: 1.15rem;
}

.wva-flow-cta p {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.58;
}

.wva-flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

/* How It Works responsive */

@media (max-width: 1180px) {
  .wva-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wva-flow-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .wva-flow {
    padding: 64px 0;
  }

  .wva-flow-head h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .wva-flow-grid {
    grid-template-columns: 1fr;
  }

  .wva-flow-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .wva-flow-actions,
  .wva-flow-actions .wva-btn {
    width: 100%;
  }
}

/* =========================================================
   Live Voice Demo
========================================================= */

.wva-demo {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 138, 0, 0.13), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(35, 168, 255, 0.13), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #fbf6ff 48%, #ffffff 100%);
  color: var(--wva-text);
  overflow: hidden;
}

.wva-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 19, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.wva-demo .wva-shell {
  position: relative;
  z-index: 2;
}

.wva-demo-head {
  max-width: 1300px;
  margin-bottom: 34px;
}

.wva-demo-head h2 {
  margin: 18px 0 0;
  color: var(--wva-ink);
  font-size: clamp(2.15rem, 4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
  text-wrap: balance;
}

.wva-demo-head > p:not(.wva-kicker) {
  max-width: 890px;
  margin: 20px 0 0;
  color: var(--wva-muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}

.wva-demo-card {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(90, 19, 199, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 19, 199, 0.12);
  box-shadow: 0 26px 74px rgba(42, 1, 70, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-demo-preview {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
}

.wva-demo-orb-wrap {
  position: absolute;
  top: -18px;
  right: 10%;
  width: min(260px, 68vw);
  aspect-ratio: 1;
  z-index: 1;
}

.wva-demo-orb {
  position: absolute;
  inset: 22%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 15%),
    radial-gradient(circle at 66% 72%, rgba(35, 168, 255, 0.95), transparent 36%),
    radial-gradient(circle at 32% 70%, rgba(183, 223, 82, 0.78), transparent 34%),
    radial-gradient(circle at 68% 30%, rgba(255, 138, 0, 0.72), transparent 30%),
    linear-gradient(135deg, #ffffff, #23a8ff 46%, #5a13c7);
  box-shadow:
    0 0 70px rgba(35, 168, 255, 0.34),
    0 0 92px rgba(255, 138, 0, 0.22),
    inset 0 0 42px rgba(255, 255, 255, 0.38);
  animation: wvaDemoOrbFloat 6s ease-in-out infinite;
}

.wva-demo-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(42, 1, 70, 0.12);
  animation: wvaDemoRingPulse 4.8s ease-in-out infinite;
}

.wva-demo-ring-one {
  inset: 12%;
}

.wva-demo-ring-two {
  inset: 0;
  border-color: rgba(255, 138, 0, 0.18);
  animation-delay: 900ms;
}

@keyframes wvaDemoOrbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -12px, 0) scale(1.025);
  }
}

@keyframes wvaDemoRingPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.42;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.88;
  }
}

.wva-demo-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 18px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 0, 0.22), transparent 34%),
    radial-gradient(circle at 0% 0%, rgba(90, 19, 199, 0.28), transparent 34%),
    linear-gradient(180deg, #160038 0%, #09031f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 58px rgba(11, 16, 32, 0.32);
}

.wva-demo-windowbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.wva-demo-dots {
  display: inline-flex;
  gap: 7px;
}

.wva-demo-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.wva-demo-dots span:nth-child(1) {
  background: var(--wva-orange);
}

.wva-demo-dots span:nth-child(2) {
  background: var(--wva-purple);
}

.wva-demo-dots span:nth-child(3) {
  background: var(--wva-blue);
}

.wva-demo-windowbar strong {
  min-width: 0;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wva-demo-windowbar em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffd7a6;
  background: rgba(255, 138, 0, 0.16);
  border: 1px solid rgba(255, 138, 0, 0.28);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wva-demo-conversation {
  display: grid;
  gap: 14px;
  padding-top: 18px;
}

.wva-demo-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wva-demo-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--wva-orange), var(--wva-purple));
  font-weight: 950;
}

.wva-demo-agent strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
}

.wva-demo-agent span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.wva-demo-bubble {
  padding: 14px 15px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.wva-demo-bubble-ai {
  max-width: 88%;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 6px;
}

.wva-demo-bubble-user {
  max-width: 82%;
  margin-left: auto;
  color: var(--wva-ink);
  background: #ffffff;
  border-bottom-right-radius: 6px;
}

.wva-demo-meter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.wva-demo-meter div {
  min-height: 72px;
  padding: 12px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.wva-demo-meter span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wva-demo-meter strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 0.84rem;
  line-height: 1.25;
}

.wva-demo-copy {
  min-width: 0;
}

.wva-demo-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #9a4f00;
  background: rgba(255, 138, 0, 0.12);
  border: 1px solid rgba(255, 138, 0, 0.18);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wva-demo-copy h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--wva-ink);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
  text-wrap: balance;
}

.wva-demo-copy p {
  margin: 14px 0 0;
  color: var(--wva-muted);
  line-height: 1.72;
  max-width: 68ch;
}

.wva-demo-limit {
  display: grid;
  gap: 5px;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid rgba(255, 138, 0, 0.20);
}

.wva-demo-limit strong {
  color: var(--wva-ink);
  font-size: 0.92rem;
}

.wva-demo-limit span {
  color: #7c3f00;
  font-size: 0.86rem;
  line-height: 1.4;
}

.wva-demo-mount {
  margin-top: 18px;
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px dashed rgba(90, 19, 199, 0.24);
  box-shadow: 0 14px 34px rgba(42, 1, 70, 0.06);
}

.wva-demo-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(35, 168, 255, 0.10), transparent 34%),
    #fbf6ff;
}

.wva-demo-placeholder-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--wva-purple), var(--wva-orange));
}

.wva-demo-placeholder strong {
  display: block;
  color: var(--wva-ink);
  font-size: 0.96rem;
}

.wva-demo-placeholder span {
  display: block;
  margin-top: 4px;
  color: var(--wva-muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.wva-demo-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.wva-demo-link {
  color: var(--wva-ink);
  font-size: 0.88rem;
  font-weight: 950;
  text-decoration: none;
}

.wva-demo-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wva-demo-privacy {
  margin-top: 16px !important;
  color: #7a7087 !important;
  font-size: 0.82rem;
  line-height: 1.58 !important;
}

/* Demo responsive */

@media (max-width: 1180px) {
  .wva-demo-card {
    grid-template-columns: 1fr;
  }

  .wva-demo-preview {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  .wva-demo {
    padding: 64px 0;
  }

  .wva-demo-head h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .wva-demo-card {
    padding: 20px;
    border-radius: 24px;
  }

  .wva-demo-preview {
    min-height: 360px;
  }

  .wva-demo-orb-wrap {
    top: -20px;
    right: 50%;
    width: min(230px, 76vw);
    transform: translateX(50%);
  }

  .wva-demo-window {
    border-radius: 24px;
  }

  .wva-demo-windowbar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .wva-demo-windowbar em {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .wva-demo-meter {
    grid-template-columns: 1fr;
  }

  .wva-demo-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wva-demo-actions .wva-btn,
  .wva-demo-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.wva-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.wva-demo-actions .wva-btn {
  gap: 9px;
}

.wva-demo-actions .wva-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95em;
  line-height: 1;
}

@media (max-width: 680px) {
  .wva-demo-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wva-demo-actions .wva-btn,
  .wva-demo-actions .wva-demo-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* =========================================================
   Force Voice Demo End Call Button Visibility
========================================================= */

#voiceDemoEndCallBtn[hidden],
#voiceDemoEndBtn[hidden] {
  display: none !important;
}

#voiceDemoEndCallBtn:not([hidden]),
#voiceDemoEndBtn:not([hidden]) {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff !important;
  background: linear-gradient(135deg, #b42318, #ff4d2e) !important;
  border: 1px solid rgba(180, 35, 24, 0.28) !important;
  box-shadow: 0 16px 34px rgba(180, 35, 24, 0.18);
  font-size: 0.92rem;
  font-weight: 950;
  text-decoration: none;
}

#voiceDemoEndCallBtn:not([hidden]) i,
#voiceDemoEndCallBtn:not([hidden]) span,
#voiceDemoEndBtn:not([hidden]) i,
#voiceDemoEndBtn:not([hidden]) span {
  display: inline-flex !important;
  align-items: center;
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#voiceDemoEndCallBtn:not([hidden]):hover,
#voiceDemoEndBtn:not([hidden]):hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* =========================================================
   Voice CRM Dashboard Preview
========================================================= */

.wva-crm {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 138, 0, 0.12), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(90, 19, 199, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbf6ff 50%, #fffaf4 100%);
  color: var(--wva-text);
  overflow: hidden;
}

.wva-crm::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 19, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.wva-crm .wva-shell {
  position: relative;
  z-index: 2;
}

.wva-crm-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.wva-crm-copy h2 {
  margin: 18px 0 0;
  color: var(--wva-ink);
  font-size: clamp(2.15rem, 4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
  text-wrap: balance;
}

.wva-crm-copy > p:not(.wva-kicker) {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--wva-muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}

.wva-crm-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.wva-crm-link {
  color: var(--wva-ink);
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
}

.wva-crm-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wva-crm-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.wva-crm-feature-list span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #7c3f00;
  background: #fff7ed;
  border: 1px solid rgba(255, 138, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
}

.wva-crm-visual {
  position: relative;
  min-height: 610px;
}

.wva-crm-window {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.15), transparent 34%),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(90, 19, 199, 0.13);
  box-shadow: 0 34px 90px rgba(42, 1, 70, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-crm-windowbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(42, 1, 70, 0.1);
}

.wva-crm-dots {
  display: inline-flex;
  gap: 7px;
}

.wva-crm-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.wva-crm-dots span:nth-child(1) {
  background: var(--wva-orange);
}

.wva-crm-dots span:nth-child(2) {
  background: var(--wva-purple);
}

.wva-crm-dots span:nth-child(3) {
  background: var(--wva-blue);
}

.wva-crm-windowbar strong {
  color: var(--wva-ink);
  font-size: 0.9rem;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wva-crm-windowbar em {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #355900;
  background: rgba(183, 223, 82, 0.24);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wva-crm-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.wva-crm-stats div {
  min-height: 112px;
  padding: 14px;
  border-radius: 20px;
  background: #fff7ed;
  border: 1px solid rgba(255, 138, 0, 0.18);
}

.wva-crm-stats span {
  display: block;
  color: #9a4f00;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wva-crm-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--wva-ink);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wva-crm-stats small {
  display: block;
  margin-top: 8px;
  color: var(--wva-muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

.wva-crm-main {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.wva-crm-rail {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(90, 19, 199, 0.12), transparent 34%),
    #fbf6ff;
  border: 1px solid rgba(90, 19, 199, 0.1);
}

.wva-crm-rail span {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--wva-muted);
  background: #ffffff;
  border: 1px solid rgba(90, 19, 199, 0.08);
  font-size: 0.78rem;
  font-weight: 850;
}

.wva-crm-rail span.is-active {
  color: var(--wva-ink);
  background: #fff7ed;
  border-color: rgba(255, 138, 0, 0.24);
}

.wva-crm-panel {
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(90, 19, 199, 0.1);
  box-shadow: 0 12px 30px rgba(42, 1, 70, 0.06);
}

.wva-crm-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.wva-crm-panel-head span {
  color: var(--wva-muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wva-crm-panel-head strong {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #7c3f00;
  background: #fff7ed;
  font-size: 0.72rem;
  font-weight: 950;
}

.wva-crm-chat-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 10px;
}

.wva-crm-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--wva-purple), var(--wva-orange));
  font-size: 0.74rem;
  font-weight: 950;
}

.wva-crm-chat-row-ai .wva-crm-avatar {
  background: linear-gradient(135deg, var(--wva-blue), var(--wva-purple));
}

.wva-crm-chat-row p {
  margin: 0;
  padding: 12px 13px;
  border-radius: 16px;
  color: #4b3d5a;
  background: #fbf6ff;
  border: 1px solid rgba(90, 19, 199, 0.08);
  font-size: 0.86rem;
  line-height: 1.55;
}

.wva-crm-chat-row-ai p {
  background: #fff7ed;
  border-color: rgba(255, 138, 0, 0.16);
}

.wva-crm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.wva-crm-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #4b3d5a;
  background: rgba(183, 223, 82, 0.16);
  border: 1px solid rgba(183, 223, 82, 0.26);
  font-size: 0.72rem;
  font-weight: 850;
}

.wva-crm-floating-card {
  position: absolute;
  z-index: 4;
  width: 220px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(42, 1, 70, 0.82);
  color: #ffffff;
  border: 1px solid rgba(255, 176, 0, 0.26);
  box-shadow: 0 22px 54px rgba(42, 1, 70, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-crm-floating-card strong {
  display: block;
  color: #ffd7a6;
  font-size: 0.82rem;
}

.wva-crm-floating-card span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.42;
}

.wva-crm-floating-one {
  left: -18px;
  bottom: 72px;
}

.wva-crm-floating-two {
  right: -18px;
  bottom: 18px;
}

.wva-crm-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.wva-crm-card {
  min-height: 230px;
  padding: 22px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 19, 199, 0.12);
  box-shadow: 0 18px 52px rgba(42, 1, 70, 0.08);
}

.wva-crm-card span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: var(--wva-ink);
  background: linear-gradient(135deg, var(--wva-orange-2), var(--wva-orange));
  font-size: 0.78rem;
  font-weight: 950;
}

.wva-crm-card h3 {
  margin: 18px 0 0;
  color: var(--wva-ink);
  font-size: 1.12rem;
  line-height: 1.18;
}

.wva-crm-card p {
  margin: 11px 0 0;
  color: var(--wva-muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

/* CRM responsive */

@media (max-width: 1180px) {
  .wva-crm-grid {
    grid-template-columns: 1fr;
  }

  .wva-crm-visual {
    min-height: auto;
  }

  .wva-crm-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wva-crm-floating-one {
    left: 18px;
  }

  .wva-crm-floating-two {
    right: 18px;
  }
}

@media (max-width: 760px) {
  .wva-crm {
    padding: 64px 0;
  }

  .wva-crm-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .wva-crm-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wva-crm-actions .wva-btn,
  .wva-crm-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .wva-crm-window {
    padding: 14px;
    border-radius: 24px;
  }

  .wva-crm-windowbar {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .wva-crm-windowbar em {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .wva-crm-stats,
  .wva-crm-main,
  .wva-crm-card-grid {
    grid-template-columns: 1fr;
  }

  .wva-crm-floating-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .wva-crm-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .wva-crm-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }
}

/* =========================================================
   Voice Agent FAQ
========================================================= */

.wva-faq {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 138, 0, 0.12), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(90, 19, 199, 0.12), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #ffffff 48%, #fbf6ff 100%);
  color: var(--wva-text);
  overflow: hidden;
}

.wva-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 19, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.wva-faq .wva-shell {
  position: relative;
  z-index: 2;
}

.wva-faq-head {
  max-width: 980px;
  margin-bottom: 34px;
}

.wva-faq-head h2 {
  margin: 18px 0 0;
  color: var(--wva-ink);
  font-size: clamp(2.15rem, 4vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 950;
  text-wrap: balance;
}

.wva-faq-head > p:not(.wva-kicker) {
  max-width: 880px;
  margin: 20px 0 0;
  color: var(--wva-muted);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.72;
}

.wva-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wva-faq-item {
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(90, 19, 199, 0.12);
  box-shadow: 0 16px 44px rgba(42, 1, 70, 0.07);
  overflow: hidden;
}

.wva-faq-item summary {
  list-style: none;
  position: relative;
  cursor: pointer;
  padding: 20px 54px 20px 20px;
  color: var(--wva-ink);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.28;
}

.wva-faq-item summary::-webkit-details-marker {
  display: none;
}

.wva-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--wva-ink);
  background: #fff7ed;
  border: 1px solid rgba(255, 138, 0, 0.18);
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 950;
}

.wva-faq-item[open] summary::after {
  content: "–";
}

.wva-faq-item div {
  padding: 0 20px 20px;
}

.wva-faq-item p {
  margin: 0;
  color: var(--wva-muted);
  font-size: 0.92rem;
  line-height: 1.66;
}

.wva-faq-item code {
  padding: 2px 6px;
  border-radius: 7px;
  color: #7c3f00;
  background: #fff2df;
  font-size: 0.84em;
  font-weight: 850;
}

.wva-faq-cta {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(42, 1, 70, 0.96), rgba(22, 0, 56, 0.96));
  border: 1px solid rgba(255, 176, 0, 0.26);
  box-shadow: 0 24px 70px rgba(42, 1, 70, 0.16);
}

.wva-faq-cta strong {
  display: block;
  color: #ffd7a6;
  font-size: 1.16rem;
}

.wva-faq-cta p {
  max-width: 720px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.58;
}

.wva-faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 0 0 auto;
}

/* FAQ responsive */

@media (max-width: 1180px) {
  .wva-faq-grid {
    grid-template-columns: 1fr;
  }

  .wva-faq-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .wva-faq {
    padding: 64px 0;
  }

  .wva-faq-head h2 {
    font-size: clamp(2.1rem, 11vw, 3.25rem);
    line-height: 1;
  }

  .wva-faq-item {
    border-radius: 20px;
  }

  .wva-faq-item summary {
    padding: 18px 52px 18px 18px;
  }

  .wva-faq-item div {
    padding: 0 18px 18px;
  }

  .wva-faq-actions,
  .wva-faq-actions .wva-btn {
    width: 100%;
  }
}
/* =========================================================
   Final CTA
========================================================= */

.wva-final-cta {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 138, 0, 0.14), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(90, 19, 199, 0.14), transparent 34%),
    linear-gradient(180deg, #fbf6ff 0%, #09031f 100%);
  color: #ffffff;
  overflow: hidden;
}

.wva-final-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 34px;
  align-items: center;
  min-height: 520px;
  padding: 42px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, 0.20), transparent 36%),
    linear-gradient(145deg, rgba(42, 1, 70, 0.96), rgba(9, 3, 31, 0.98));
  border: 1px solid rgba(255, 176, 0, 0.28);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.wva-final-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.wva-final-orb {
  position: absolute;
  right: 12%;
  top: 12%;
  width: 260px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.9), transparent 14%),
    radial-gradient(circle at 68% 70%, rgba(35, 168, 255, 0.82), transparent 34%),
    radial-gradient(circle at 30% 68%, rgba(183, 223, 82, 0.68), transparent 32%),
    radial-gradient(circle at 62% 30%, rgba(255, 138, 0, 0.66), transparent 28%),
    linear-gradient(135deg, #ffffff, #23a8ff 48%, #5a13c7);
  opacity: 0.22;
  filter: blur(1px);
}

.wva-final-glow {
  position: absolute;
  width: 360px;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(55px);
  opacity: 0.38;
}

.wva-final-glow-one {
  left: -120px;
  top: -120px;
  background: rgba(255, 138, 0, 0.8);
}

.wva-final-glow-two {
  right: -130px;
  bottom: -130px;
  background: rgba(35, 168, 255, 0.7);
}

.wva-final-copy,
.wva-final-panel {
  position: relative;
  z-index: 2;
}

.wva-final-copy h2 {
  max-width: 13ch;
  margin: 22px 0 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 5.5vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 950;
  text-wrap: balance;
}

.wva-final-copy > p:not(.wva-kicker) {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.28vw, 1.15rem);
  line-height: 1.72;
}

.wva-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.wva-final-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.wva-final-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 850;
}

.wva-final-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.wva-final-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 68px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.wva-final-step strong {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #180028;
  background: linear-gradient(135deg, var(--wva-orange-2), var(--wva-orange));
  font-size: 0.82rem;
  font-weight: 950;
}

.wva-final-step span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 900;
}

/* Final CTA responsive */

@media (max-width: 1180px) {
  .wva-final-card {
    grid-template-columns: 1fr;
  }

  .wva-final-copy h2 {
    max-width: 14ch;
  }
}

@media (max-width: 760px) {
  .wva-final-cta {
    padding: 64px 0;
  }

  .wva-final-card {
    min-height: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .wva-final-copy h2 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    line-height: 0.96;
  }

  .wva-final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wva-final-actions .wva-btn {
    width: 100%;
  }

  .wva-final-panel {
    border-radius: 24px;
  }

  .wva-final-step {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .wva-final-step strong {
    width: 42px;
    height: 42px;
  }
}

/* =========================================================
   Home AI Voice Agent Bridge
========================================================= */

.home-voice-section {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 138, 0, 0.13), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(90, 19, 199, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffaf4 48%, #fbf6ff 100%);
}

.home-voice-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90, 19, 199, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 138, 0, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.home-voice-section .site-shell {
  position: relative;
  z-index: 2;
}

.home-voice-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 48px;
  align-items: center;
}

.home-voice-copy h2 {
  margin: 18px 0 0;
  color: #2a0146;
  font-size: clamp(2.35rem, 4.8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 950;
  text-wrap: balance;
}

.home-voice-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: #62546f;
  font-size: 1rem;
  line-height: 1.7;
}

.home-voice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.home-voice-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 900;
  text-decoration: none;
}

.home-voice-btn-primary {
  color: #180028;
  background: linear-gradient(135deg, #ffb000, #ff8a00);
  box-shadow: 0 16px 34px rgba(255, 138, 0, 0.22);
}

.home-voice-btn-secondary {
  color: #2a0146;
  background: #ffffff;
  border: 1px solid rgba(90, 19, 199, 0.14);
}

.home-voice-link {
  color: #2a0146;
  font-size: 0.9rem;
  font-weight: 950;
  text-decoration: none;
}

.home-voice-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.home-voice-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.home-voice-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #7c3f00;
  background: #fff7ed;
  border: 1px solid rgba(255, 138, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 850;
}

.home-voice-visual {
  position: relative;
  min-height: 610px;
  display: grid;
  align-content: center;
}

.home-voice-orb-wrap {
  position: absolute;
  top: -150px;
  right: 18%;
  width: min(300px, 58vw);
  aspect-ratio: 1;
  z-index: 1;
}

.home-voice-orb {
  position: absolute;
  inset: 22%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 15%),
    radial-gradient(circle at 66% 72%, rgba(35, 168, 255, 0.95), transparent 36%),
    radial-gradient(circle at 32% 70%, rgba(183, 223, 82, 0.78), transparent 34%),
    radial-gradient(circle at 68% 30%, rgba(255, 138, 0, 0.72), transparent 30%),
    linear-gradient(135deg, #ffffff, #23a8ff 46%, #5a13c7);
  box-shadow:
    0 0 70px rgba(35, 168, 255, 0.34),
    0 0 92px rgba(255, 138, 0, 0.22),
    inset 0 0 42px rgba(255, 255, 255, 0.38);
  animation: homeVoiceOrbFloat 6s ease-in-out infinite;
}

.home-voice-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(42, 1, 70, 0.12);
  animation: homeVoiceRingPulse 4.8s ease-in-out infinite;
}

.home-voice-ring-one {
  inset: 12%;
}

.home-voice-ring-two {
  inset: 0;
  border-color: rgba(255, 138, 0, 0.18);
  animation-delay: 900ms;
}

@keyframes homeVoiceOrbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -12px, 0) scale(1.025);
  }
}

@keyframes homeVoiceRingPulse {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.42;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.88;
  }
}

.home-voice-console {
  position: relative;
  z-index: 3;
  overflow: hidden;
  max-width: 620px;
  margin-left: auto;
  padding: 20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 138, 0, 0.22), transparent 34%),
    radial-gradient(circle at 0% 0%, rgba(90, 19, 199, 0.28), transparent 34%),
    linear-gradient(180deg, #160038 0%, #09031f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(42, 1, 70, 0.28);
}

.home-voice-console-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.home-voice-dots {
  display: inline-flex;
  gap: 7px;
}

.home-voice-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.home-voice-dots span:nth-child(1) {
  background: #ff8a00;
}

.home-voice-dots span:nth-child(2) {
  background: #5a13c7;
}

.home-voice-dots span:nth-child(3) {
  background: #23a8ff;
}

.home-voice-console-top strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-voice-console-top em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ffd7a6;
  background: rgba(255, 138, 0, 0.16);
  border: 1px solid rgba(255, 138, 0, 0.28);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-voice-agent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.home-voice-avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff8a00, #5a13c7);
  font-weight: 950;
}

.home-voice-agent-row strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.home-voice-agent-row span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.home-voice-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 86px;
  margin: 18px 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-voice-wave span {
  width: 9px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb000, #23a8ff);
  animation: homeVoiceWave 1.2s ease-in-out infinite;
}

.home-voice-wave span:nth-child(2) { animation-delay: 120ms; height: 48px; }
.home-voice-wave span:nth-child(3) { animation-delay: 240ms; height: 64px; }
.home-voice-wave span:nth-child(4) { animation-delay: 360ms; height: 42px; }
.home-voice-wave span:nth-child(5) { animation-delay: 480ms; height: 56px; }
.home-voice-wave span:nth-child(6) { animation-delay: 600ms; height: 34px; }

@keyframes homeVoiceWave {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.62;
  }

  50% {
    transform: scaleY(1.18);
    opacity: 1;
  }
}

.home-voice-bubble {
  width: fit-content;
  max-width: 86%;
  padding: 14px 15px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-voice-bubble-user {
  margin-left: auto;
  color: #2a0146;
  background: #ffffff;
  border-bottom-right-radius: 6px;
}

.home-voice-bubble-ai {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom-left-radius: 6px;
}

.home-voice-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.home-voice-mini-grid article {
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.home-voice-mini-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-voice-mini-grid strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1.25;
}

.home-voice-side-card {
  position: absolute;
  z-index: 4;
  width: 238px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(42, 1, 70, 0.84);
  color: #ffffff;
  border: 1px solid rgba(255, 176, 0, 0.26);
  box-shadow: 0 22px 54px rgba(42, 1, 70, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-voice-side-card strong {
  display: block;
  color: #ffd7a6;
  font-size: 0.84rem;
}

.home-voice-side-card span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.42;
}

.home-voice-side-card-one {
  left: 10px;
  bottom: 118px;
}

.home-voice-side-card-two {
  right: 0;
  bottom: 36px;
}

@media (max-width: 1180px) {
  .home-voice-grid {
    grid-template-columns: 1fr;
  }

  .home-voice-visual {
    min-height: 560px;
  }

  .home-voice-console {
    margin: 140px auto 0;
  }

  .home-voice-side-card-one {
    left: 24px;
  }

  .home-voice-side-card-two {
    right: 24px;
  }
}

@media (max-width: 760px) {
  .home-voice-section {
    padding: 68px 0;
  }

  .home-voice-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.55rem);
    line-height: 0.98;
  }

  .home-voice-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-voice-btn,
  .home-voice-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .home-voice-visual {
    min-height: auto;
  }

  .home-voice-orb-wrap {
    top: -10px;
    right: 50%;
    width: min(245px, 74vw);
    transform: translateX(50%);
  }

  .home-voice-console {
    margin-top: 150px;
    border-radius: 26px;
  }

  .home-voice-console-top {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .home-voice-console-top em {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .home-voice-mini-grid {
    grid-template-columns: 1fr;
  }

  .home-voice-side-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }
}

/* Voice section button icon spacing */
.home-voice-btn {
  gap: 9px;
}

.home-voice-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95em;
  line-height: 1;
  flex: 0 0 auto;
}

.home-voice-btn span {
  display: inline-flex;
  align-items: center;
}