/* Absolute Hotel Voice — IVR & AI telephony product */

.hv {
  --hv-glow: rgba(201, 169, 98, 0.22);
}

/* ——— Hero ——— */
.hv-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 70% at 85% 20%, rgba(201, 169, 98, 0.14), transparent 55%),
    linear-gradient(165deg, #081422 0%, var(--mp-navy) 42%, #122845 100%);
  color: #fff;
}

.hv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("/assets/img/hotel-voice/hero-atmosphere.jpg") center/cover no-repeat;
  opacity: 0.22;
  z-index: -1;
}

.hv-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.hv-hero h1 {
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 1rem;
  font-weight: 800;
}

.hv-hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 36rem;
  margin: 0 0 1.35rem;
}

.hv-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.hv-hero .mp-micro {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.25rem;
}

.hv-hero .mp-micro strong { color: var(--mp-accent); }

.hv-hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.hv-hero-points li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

.hv-hero-points li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--mp-accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.18);
}

.hv-hero .mp-brand-mark { color: #fff; }
.hv-hero .mp-brand-mark span { color: var(--mp-accent); }

.hv-hero a.mp-btn-ghost,
.hv-hero button.mp-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.hv-hero a.mp-btn-ghost:hover,
.hv-hero button.mp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.hv-hero a.mp-btn-primary,
.hv-hero button.mp-btn-primary {
  background: var(--mp-accent);
  color: var(--mp-navy);
  border-color: var(--mp-accent);
}

.hv-hero a.mp-btn-primary:hover,
.hv-hero button.mp-btn-primary:hover {
  background: #d4b56f;
  color: var(--mp-navy);
  border-color: #d4b56f;
}

/* Hero live stage */
.hv-stage {
  position: relative;
  min-height: 420px;
}

.hv-stage-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(201, 169, 98, 0.2), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}

.hv-call-card {
  position: relative;
  background: linear-gradient(160deg, rgba(22, 48, 79, 0.92), rgba(8, 20, 34, 0.95));
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 22px;
  padding: 1.15rem 1.15rem 1.25rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.hv-call-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hv-call-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mp-accent);
}

.hv-call-live i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #3dcf8e;
  box-shadow: 0 0 0 0 rgba(61, 207, 142, 0.7);
  animation: hv-pulse 1.6s ease-out infinite;
  opacity: 1;
}

.hv-call-card[data-hv-demo] .hv-call-live i {
  animation: none;
  opacity: 0.55;
}

.hv-call-card[data-hv-demo] .hv-call-live.is-on i {
  opacity: 1;
  animation: hv-pulse 1.6s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hv-call-live i,
  .hv-call-card[data-hv-demo] .hv-call-live.is-on i {
    animation: none;
  }
}

.hv-demo-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 12px;
  background: var(--mp-accent);
  color: var(--mp-navy);
  font: inherit;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.hv-demo-play svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}

.hv-demo-play:hover {
  filter: brightness(1.05);
}

.hv-demo-play:active {
  transform: scale(0.98);
}

.hv-demo-play.is-playing {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hv-call-card.is-listening .hv-dialpad button.is-armed {
  border-color: rgba(201, 169, 98, 0.65);
  box-shadow: 0 0 0 1px rgba(201, 169, 98, 0.25);
}

.hv-call-card.is-listening .hv-dialpad button.is-armed:hover,
.hv-call-card.is-listening .hv-dialpad button.is-armed:focus-visible {
  background: rgba(201, 169, 98, 0.22);
}

.hv-dialpad button:disabled {
  opacity: 0.42;
  cursor: default;
}

.hv-call-card.is-listening .hv-dialpad button.is-armed:disabled {
  opacity: 1;
  cursor: pointer;
}

/* ——— Dedicated IVR demo section (below How) ——— */
.hv-demo-sec {
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, rgba(201, 169, 98, 0.12), transparent 55%),
    linear-gradient(165deg, #0a1628 0%, var(--mp-navy) 55%, #122845 100%);
  color: #fff;
}

.hv-demo-sec .mp-eyebrow { color: var(--mp-accent); }
.hv-demo-sec h2 { color: #fff; }
.hv-demo-sec .mp-lead { color: rgba(255, 255, 255, 0.78); }

.hv-demo-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.hv-demo-stage {
  position: relative;
  display: flex;
  justify-content: center;
}

.hv-demo-phone.hv-demo-phone,
.hv-demo-stage .hv-demo-phone {
  position: relative;
  width: min(100%, 360px);
}

/* Silver / white iPhone chrome — readable on the dark demo section */
.hv-demo-stage .hv-stage-glow {
  inset: 6% -4%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  filter: blur(18px);
  opacity: 0.85;
}

.hv-iphone {
  position: relative;
  padding: 11px;
  border-radius: 48px;
  background:
    linear-gradient(145deg, #f7f7f8 0%, #e4e5e8 38%, #c8cacf 72%, #b4b6bb 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65),
    0 0 0 1px rgba(60, 64, 72, 0.22),
    0 32px 64px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.hv-iphone-bezel {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  background: #f2f2f7;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hv-iphone-island {
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 5;
  width: 108px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0b0b0d;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hv-iphone-island::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 20px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #2a4a66, #0a1520 72%);
  box-shadow: 0 0 0 1.5px rgba(20, 20, 24, 0.9);
}

/* Realistic iOS Telegram banner — slides under Dynamic Island */
.hv-tg-banner {
  position: absolute;
  top: 46px;
  left: 10px;
  right: 10px;
  z-index: 8;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-120%) scale(0.96);
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.hv-tg-banner.is-on {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hv-tg-banner.is-out {
  opacity: 0;
  transform: translateY(-110%) scale(0.98);
  transition:
    opacity 0.32s ease,
    transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.hv-tg-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem 0.75rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 14px 36px rgba(15, 23, 42, 0.18),
    0 2px 6px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.hv-tg-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(42, 171, 238, 0.28);
}

.hv-tg-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hv-tg-copy {
  min-width: 0;
  flex: 1;
}

.hv-tg-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.1rem;
}

.hv-tg-app {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #6b7280;
}

.hv-tg-now {
  font-size: 0.68rem;
  color: #9ca3af;
  font-variant-numeric: tabular-nums;
}

.hv-tg-title {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #111827;
  line-height: 1.25;
}

.hv-tg-body {
  margin: 0.12rem 0 0;
  font-size: 0.8rem;
  color: #4b5563;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (prefers-reduced-motion: reduce) {
  .hv-tg-banner,
  .hv-tg-banner.is-on,
  .hv-tg-banner.is-out {
    transition: opacity 0.2s ease;
    transform: none;
  }
}

.hv-iphone-btn {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #d8d9dd, #aeb0b6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 0 0 0.5px rgba(80, 84, 92, 0.35);
  pointer-events: none;
}

.hv-iphone-btn.is-silent {
  top: 92px;
  left: -2px;
  height: 28px;
}

.hv-iphone-btn.is-vol-up {
  top: 140px;
  left: -2px;
  height: 52px;
}

.hv-iphone-btn.is-vol-down {
  top: 200px;
  left: -2px;
  height: 52px;
}

.hv-iphone-btn.is-power {
  top: 160px;
  right: -2px;
  height: 84px;
}

.hv-demo-stage .hv-call-card,
.hv-iphone .hv-call-card {
  margin: 0;
  border-radius: 0;
  border: 0;
  min-height: 640px;
  padding: 3.1rem 1.15rem 0.85rem;
  color: #1c1c1e;
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f2f7 48%, #ebebf0 100%);
  box-shadow: none;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
}

.hv-iphone .hv-call-live {
  color: #6b7280;
}

.hv-iphone .hv-call-timer {
  color: #8e8e93;
}

.hv-iphone .hv-call-from {
  margin-bottom: 0.15rem;
  color: #8e8e93;
}

.hv-iphone .hv-call-guest {
  margin-bottom: 0.75rem;
  min-height: 2.4em;
  color: #111827;
}

.hv-iphone .hv-demo-play {
  margin-bottom: 1.15rem;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  background: #34c759;
  color: #fff;
  box-shadow: 0 8px 18px rgba(52, 199, 89, 0.28);
}

.hv-iphone .hv-demo-play:hover {
  filter: brightness(1.04);
}

.hv-iphone .hv-demo-play.is-playing {
  background: #ff3b30;
  color: #fff;
  border: 0;
  box-shadow: 0 8px 18px rgba(255, 59, 48, 0.22);
}

/* Full-width Phone-app style keypad (light) */
.hv-iphone .hv-dialpad {
  width: 100%;
  max-width: none;
  margin: auto 0 0.55rem;
  padding: 0 0.35rem;
  gap: 0.7rem 1rem;
  box-sizing: border-box;
}

.hv-iphone .hv-dialpad button {
  width: 100%;
  max-width: 76px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e5e5ea;
  border: 0;
  color: #1c1c1e;
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: background 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, transform 0.12s ease;
}

.hv-iphone .hv-dialpad button:disabled {
  opacity: 0.34;
  color: #8e8e93;
  background: #ececef;
  box-shadow: none;
  cursor: default;
}

.hv-iphone .hv-dialpad button small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.hv-iphone .hv-dialpad button:disabled small {
  color: #a1a1a6;
}

.hv-iphone .hv-call-card.is-listening .hv-dialpad button.is-armed {
  opacity: 1;
  color: #111827;
  background: #ffffff;
  box-shadow:
    0 0 0 2.5px rgba(52, 199, 89, 0.75),
    0 4px 12px rgba(15, 23, 42, 0.08);
  border-color: transparent;
  cursor: pointer;
}

.hv-iphone .hv-call-card.is-listening .hv-dialpad button.is-armed small {
  color: #3a3a3c;
}

.hv-iphone .hv-call-card.is-listening .hv-dialpad button.is-armed:hover,
.hv-iphone .hv-call-card.is-listening .hv-dialpad button.is-armed:focus-visible {
  background: #f4f4f5;
}

.hv-iphone .hv-dialpad button.is-hit,
.hv-iphone .hv-dialpad button:not(:disabled):active {
  background: #d7d7dc;
  transform: scale(0.94);
}

.hv-iphone .hv-call-caption {
  margin: 0.15rem 0 0.25rem;
  font-size: 0.72rem;
  color: #8e8e93;
}

.hv-iphone-home {
  width: 118px;
  height: 5px;
  margin: 0.45rem auto 0.7rem;
  border-radius: 999px;
  background: #1c1c1e;
  opacity: 0.88;
}

.hv-demo-stage .hv-call-card {
  margin: 0;
}

@media (max-width: 400px) {
  .hv-demo-phone.hv-demo-phone,
  .hv-demo-stage .hv-demo-phone {
    width: min(100%, 100%);
  }

  .hv-iphone {
    padding: 9px;
    border-radius: 42px;
  }

  .hv-iphone-bezel {
    border-radius: 34px;
  }

  .hv-demo-stage .hv-call-card,
  .hv-iphone .hv-call-card {
    min-height: 580px;
    padding: 2.85rem 0.85rem 0.7rem;
  }

  .hv-iphone .hv-dialpad {
    gap: 0.55rem 0.7rem;
    padding: 0 0.15rem;
  }

  .hv-iphone .hv-dialpad button {
    max-width: 68px;
    font-size: 1.4rem;
  }
}

@media (max-width: 980px) {
  .hv-demo-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .hv-demo-sec .mp-head {
    text-align: center;
  }
}

@keyframes hv-pulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 207, 142, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(61, 207, 142, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 207, 142, 0); }
}

.hv-call-timer {
  font-variant-numeric: tabular-nums;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.hv-call-from {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 0.2rem;
}

.hv-call-guest {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.hv-ivr-flow {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.hv-ivr-step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.45;
  transform: translateX(-4px);
  transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.hv-ivr-step.is-on {
  opacity: 1;
  transform: none;
  background: rgba(201, 169, 98, 0.12);
  border-color: rgba(201, 169, 98, 0.45);
}

.hv-ivr-step b {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hv-ivr-step.is-on b { background: var(--mp-accent); color: var(--mp-navy); }

.hv-ivr-step span { font-size: 0.86rem; color: rgba(255, 255, 255, 0.88); }
.hv-ivr-step em {
  font-style: normal;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.hv-dialpad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  max-width: 220px;
  margin: 0 auto 0.85rem;
}

.hv-dialpad button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 12px;
  padding: 0.7rem 0;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.hv-dialpad button small {
  display: block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.15rem;
}

.hv-dialpad button.is-hit,
.hv-dialpad button:not(:disabled):active {
  background: rgba(201, 169, 98, 0.28);
  border-color: var(--mp-accent);
  transform: scale(0.96);
}

.hv-call-card[data-hv-demo] .hv-call-guest {
  min-height: 2.6em;
  line-height: 1.3;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.hv-call-caption {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Floating chips around stage */
.hv-float {
  position: absolute;
  z-index: 2;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--mp-navy);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
  animation: hv-float 5s ease-in-out infinite;
}

.hv-float.is-a { top: 4%; left: -2%; animation-delay: 0s; }
.hv-float.is-b { top: 18%; right: -4%; animation-delay: 1.2s; }
.hv-float.is-c { bottom: 8%; left: 4%; animation-delay: 2.1s; }

@keyframes hv-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ——— Proof strip ——— */
.hv-proof {
  background: var(--mp-navy);
  color: #fff;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
}

.hv-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
}

.hv-proof p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.hv-proof strong { color: var(--mp-accent); }

.hv-proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hv-proof-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: #e8d5a3;
}

/* ——— How it works ——— */
.hv-how {
  background: var(--mp-bg);
}

.hv-how .mp-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.hv-how .mp-lead {
  margin-inline: auto;
}

.hv-steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 58rem;
  position: relative;
}

.hv-steps::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 98, 0.45) 12%,
    rgba(201, 169, 98, 0.45) 88%,
    transparent
  );
  pointer-events: none;
}

.hv-step {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  padding: 0;
  background: transparent;
  border: 0;
}

.hv-step-num {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--mp-navy);
  background: #fff;
  border: 1.5px solid rgba(201, 169, 98, 0.7);
  box-shadow: 0 0 0 6px var(--mp-bg);
}

.hv-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: 16.5rem;
}

.hv-step h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--mp-navy);
}

.hv-step p {
  margin: 0;
  color: var(--mp-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 800px) {
  .hv-steps {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 26rem;
    margin-inline: auto;
  }

  .hv-steps::before {
    top: 1.15rem;
    bottom: 1.15rem;
    left: 1.15rem;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(201, 169, 98, 0.35),
      rgba(201, 169, 98, 0.15) 70%,
      transparent
    );
  }

  .hv-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1rem;
    padding: 0 0 1.65rem;
  }

  .hv-step:last-child {
    padding-bottom: 0;
  }

  .hv-step-body {
    max-width: none;
    padding-top: 0.2rem;
  }

  .hv-step h3 {
    font-size: 1.05rem;
  }
}

/* ——— Feature split ——— */
.hv-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hv-split.is-flip { grid-template-columns: 1.05fr 1fr; }
.hv-split.is-flip .hv-split-copy { order: 2; }
.hv-split.is-flip .hv-split-visual { order: 1; }

.hv-split-copy h2 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hv-split-copy .hv-lead {
  margin: 0 0 1.1rem;
  color: var(--mp-muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 36rem;
}

.hv-check {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.hv-check li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--mp-ink-2);
}

.hv-check li::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c1b33' stroke-width='2.4'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E")
    center/0.7rem no-repeat,
    var(--mp-accent);
}

.hv-visual-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--mp-line);
  box-shadow: var(--mp-shadow-lg);
  background: #fff;
}

.hv-visual-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hv-visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: var(--mp-navy);
  color: #fff;
  font-size: 0.82rem;
}

.hv-visual-caption strong { color: var(--mp-accent); font-weight: 700; }
.hv-visual-caption span { color: rgba(255, 255, 255, 0.65); }

.hv-channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 1.1rem;
  padding: 0;
  list-style: none;
}

.hv-channel-tags li {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 27, 51, 0.12);
  background: #f4f0e6;
  color: #0c1b33;
}

/* Tighter rhythm for consecutive feature splits */
.hv #control.mp-section,
.hv #ivr.mp-section,
.hv #agents.mp-section,
.hv #schedules.mp-section,
.hv #recordings.mp-section,
.hv #alerts.mp-section {
  padding: clamp(2.4rem, 4.5vw, 3.25rem) 0;
}

/* ——— AI band ——— */
.hv-ai {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 169, 98, 0.12), transparent 50%),
    linear-gradient(180deg, #0c1b33 0%, #10243f 48%, #0c1b33 100%);
  color: #fff;
  padding: 0 0 clamp(3rem, 6vw, 4.75rem);
}

.hv-ai .mp-eyebrow { color: var(--mp-accent); }
.hv-ai h2 { color: #fff; }
.hv-ai .hv-lead { color: rgba(255, 255, 255, 0.78); }
.hv-ai .hv-check li { color: rgba(255, 255, 255, 0.88); }
.hv-ai .hv-check li::before {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c1b33' stroke-width='2.4'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E")
    center/0.7rem no-repeat,
    var(--mp-accent);
}

.hv-ai-note {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: rgba(201, 169, 98, 0.08);
  font-size: 0.9rem;
  color: #e8d5a3;
  line-height: 1.45;
}

.hv-ai-note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.hv-ai .hv-metrics {
  background: transparent;
  padding: clamp(1.6rem, 3.5vw, 2.1rem) 0 clamp(1.35rem, 3vw, 1.85rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.hv-ai-body {
  padding-top: 0.15rem;
}

/* ——— Packages ——— */
.hv-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}

.hv-pkg {
  position: relative;
  background: var(--mp-surface);
  border: 1px solid var(--mp-line);
  border-radius: 18px;
  padding: 1.45rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
}

.hv-pkg.is-popular {
  border-color: var(--mp-accent);
  box-shadow: 0 18px 40px rgba(12, 27, 51, 0.1);
  transform: translateY(-6px);
}

.hv-pkg.is-intel {
  background: linear-gradient(180deg, #0f213a, #0c1b33);
  color: #fff;
  border-color: rgba(201, 169, 98, 0.45);
}

.hv-pkg-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--mp-accent);
  color: var(--mp-navy);
}

.hv-pkg-step {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--mp-accent);
  margin: 0 0 0.55rem;
}

.hv-pkg-name {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
}

.hv-pkg-tagline {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--mp-muted);
  line-height: 1.4;
  min-height: 2.6em;
}

.hv-pkg.is-intel .hv-pkg-tagline { color: rgba(255, 255, 255, 0.65); }

.hv-pkg-price {
  margin: 0 0 0.85rem;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hv-pkg-price small {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--mp-muted);
  margin-top: 0.15rem;
}

.hv-pkg.is-intel .hv-pkg-price small { color: rgba(255, 255, 255, 0.5); }

.hv-pkg-divider {
  border: 0;
  border-top: 1px solid var(--mp-line);
  margin: 0 0 1rem;
}

.hv-pkg.is-intel .hv-pkg-divider { border-color: rgba(255, 255, 255, 0.12); }

.hv-pkg-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

.hv-pkg-features li {
  font-size: 0.88rem;
  line-height: 1.35;
  padding-left: 1.1rem;
  position: relative;
  color: var(--mp-ink-2);
}

.hv-pkg.is-intel .hv-pkg-features li { color: rgba(255, 255, 255, 0.82); }

.hv-pkg-features li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--mp-accent);
  font-weight: 800;
}

.hv-pkg-features li.is-highlight { font-weight: 600; }
.hv-pkg-features li.is-bonus { color: #1f7a4d; }
.hv-pkg.is-intel .hv-pkg-features li.is-bonus { color: #8fd6b0; }

.hv-pkg .mp-btn { width: 100%; justify-content: center; }

.hv-setup-bar {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--mp-line);
}

.hv-setup-bar h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.hv-setup-bar p {
  margin: 0;
  color: var(--mp-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hv-setup-price {
  align-self: center;
  text-align: right;
}

.hv-setup-price strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.hv-setup-price span {
  font-size: 0.82rem;
  color: var(--mp-muted);
}

.hv-compare-note {
  margin: 1.25rem 0 0;
  font-size: 0.86rem;
  color: var(--mp-muted);
  line-height: 1.5;
  max-width: 52rem;
}

/* ——— Voice conversation demo (Canary-inspired, Absolute brand) ——— */
.hv-converse {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff;
}

.hv-converse-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hv-chat {
  display: grid;
  gap: 1.15rem;
  max-width: 34rem;
}

.hv-chat-row {
  display: grid;
  gap: 0.45rem;
}

.hv-chat-row.is-guest { justify-items: start; }
.hv-chat-row.is-ai { justify-items: end; }

.hv-chat-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hv-chat-row.is-guest .hv-chat-meta { color: #8a93a0; }
.hv-chat-row.is-ai .hv-chat-meta { color: var(--mp-navy); }

.hv-wave {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #eef1f5;
}

.hv-chat-row.is-ai .hv-wave {
  background: rgba(201, 169, 98, 0.18);
}

.hv-wave svg { width: 0.95rem; height: 0.95rem; }

.hv-wave-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 0.85rem;
}

.hv-wave-bars i {
  width: 2px;
  border-radius: 2px;
  background: #9aa3b0;
  display: block;
  animation: hv-wave 1.1s ease-in-out infinite;
}

.hv-chat-row.is-ai .hv-wave-bars i { background: var(--mp-accent); }

.hv-wave-bars i:nth-child(1) { height: 35%; animation-delay: 0s; }
.hv-wave-bars i:nth-child(2) { height: 70%; animation-delay: 0.12s; }
.hv-wave-bars i:nth-child(3) { height: 45%; animation-delay: 0.24s; }
.hv-wave-bars i:nth-child(4) { height: 90%; animation-delay: 0.08s; }
.hv-wave-bars i:nth-child(5) { height: 55%; animation-delay: 0.2s; }

@keyframes hv-wave {
  0%, 100% { transform: scaleY(0.65); }
  50% { transform: scaleY(1); }
}

.hv-bubble {
  max-width: 92%;
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  font-size: 0.98rem;
  line-height: 1.45;
  box-shadow: 0 10px 28px rgba(18, 24, 32, 0.07);
}

.hv-chat-row.is-guest .hv-bubble {
  background: #fff;
  border: 1px solid var(--mp-line);
  color: var(--mp-ink);
  border-bottom-left-radius: 6px;
}

.hv-chat-row.is-ai .hv-bubble {
  position: relative;
  background: linear-gradient(135deg, #16304f 0%, #0c1b33 100%);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.hv-chat-row.is-ai .hv-bubble::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--mp-accent);
  box-shadow: -0.55rem 0.35rem 0 -0.05rem rgba(201, 169, 98, 0.55), -0.2rem 0.7rem 0 -0.08rem rgba(201, 169, 98, 0.35);
}

.hv-converse-copy h2 {
  margin: 0.35rem 0 0.85rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--mp-navy);
}

.hv-converse-copy p {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--mp-muted);
  max-width: 28rem;
}

.hv-converse-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.hv-converse-points li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--mp-ink-2);
  line-height: 1.4;
}

.hv-converse-points li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--mp-accent);
  flex-shrink: 0;
}

/* ——— AI journey 3-step ——— */
.hv-journey {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--mp-bg);
  text-align: center;
}

.hv-journey .mp-head { margin-bottom: 2.5rem; }

.hv-journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.hv-journey-track::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 12%;
  right: 12%;
  border-top: 2px dashed rgba(12, 27, 51, 0.18);
  z-index: 0;
  pointer-events: none;
}

.hv-journey-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--mp-line);
  border-radius: 20px;
  padding: 1.35rem 1.25rem 1.5rem;
  box-shadow: 0 12px 30px rgba(18, 24, 32, 0.05);
}

.hv-journey-num {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--mp-navy);
  background: #fff;
  border: 2px solid var(--mp-accent);
  box-shadow: 0 0 0 6px rgba(201, 169, 98, 0.12);
}

.hv-journey-icon {
  height: 7.5rem;
  border-radius: 14px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 169, 98, 0.2), transparent 55%),
    linear-gradient(160deg, #f4f1ea, #e8edf3);
  color: var(--mp-navy);
}

.hv-journey-icon svg {
  width: 3.4rem;
  height: 3.4rem;
}

.hv-journey-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.hv-journey-card p {
  margin: 0;
  color: var(--mp-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

/* ——— Metrics band (inside AI) ——— */
.hv-metrics {
  color: #fff;
  padding: clamp(1.75rem, 4vw, 2.4rem) 0;
}

.hv-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hv-metric {
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
}

.hv-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.hv-metric strong {
  display: block;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.hv-metric span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  max-width: 11rem;
  margin-inline: auto;
}

/* Responsive additions */
@media (max-width: 980px) {
  .hv-converse-grid,
  .hv-journey-track { grid-template-columns: 1fr; }

  .hv-journey-track::before { display: none; }

  .hv-chat { max-width: none; }

  .hv-metrics-row { grid-template-columns: 1fr 1fr; gap: 1.25rem 0; }

  .hv-metric:nth-child(2)::after { display: none; }

  .hv-metric:nth-child(-n+2) { padding-bottom: 0.75rem; }
}

@media (max-width: 640px) {
  .hv-bubble { max-width: 100%; }

  .hv-metrics-row { grid-template-columns: 1fr; }

  .hv-metric:not(:last-child)::after { display: none; }

  .hv-metric {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hv-metric:last-child { border-bottom: 0; }
}

/* ——— Who ——— */
.hv-who-sec .mp-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.4rem);
}

.hv-who-sec .mp-lead {
  margin-inline: auto;
}

.hv-who {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hv-who-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem 0.2rem 1.2rem;
  border-top: 2px solid var(--mp-accent);
  background: transparent;
  transition: transform 0.22s ease;
}

.hv-who-card:hover {
  transform: translateY(-2px);
}

.hv-who-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(201, 169, 98, 0.14);
  color: var(--mp-navy);
  flex-shrink: 0;
}

.hv-who-mark svg {
  width: 1.35rem;
  height: 1.35rem;
}

.hv-who-label {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mp-accent);
}

.hv-who-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mp-navy);
}

.hv-who-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--mp-muted);
}

/* ——— Trust / Proven ——— */
.hv-trust-sec .mp-head {
  text-align: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.4rem);
}

.hv-trust-sec .mp-lead {
  margin-inline: auto;
}

.hv-trust {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.hv-trust-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--mp-line);
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 27, 51, 0.06);
}

.hv-trust-visual {
  padding: 1.35rem 1.25rem 1.4rem;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(201, 169, 98, 0.22), transparent 55%),
    linear-gradient(165deg, #16304f 0%, #0c1b33 100%);
  color: #fff;
}

.hv-trust-live {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mp-accent);
  margin-bottom: 0.85rem;
}

.hv-trust-live i {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #3dcf8e;
  box-shadow: 0 0 0 0 rgba(61, 207, 142, 0.55);
  animation: hv-pulse 1.6s ease-out infinite;
}

.hv-trust-brand {
  margin: 0 0 1.1rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hv-trust-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.hv-trust-stack li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hv-trust-stack li.is-on {
  border-color: rgba(201, 169, 98, 0.35);
  background: rgba(201, 169, 98, 0.1);
}

.hv-trust-stack b {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--mp-accent);
}

.hv-trust-stack span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
}

.hv-trust-copy {
  padding: 1.45rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hv-trust-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--mp-navy);
}

.hv-trust-copy > p {
  margin: 0 0 1rem;
  color: var(--mp-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.hv-trust-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hv-trust-meta span {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--mp-accent-soft);
  color: var(--mp-navy);
}

.hv-trust-rails {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.hv-trust-rail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 0.15rem 0.85rem;
  border-top: 2px solid var(--mp-accent);
  background: transparent;
}

.hv-trust-rail strong {
  display: block;
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--mp-navy);
  letter-spacing: -0.01em;
}

.hv-trust-rail p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--mp-muted);
}

@media (max-width: 980px) {
  .hv-who { grid-template-columns: 1fr 1fr; }

  .hv-trust,
  .hv-trust-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hv-who { grid-template-columns: 1fr; }

  .hv-who-card:hover { transform: none; }
}

/* Final CTA tweaks */
.hv .mp-final {
  background:
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(201, 169, 98, 0.18), transparent 50%),
    var(--mp-navy);
}

/* ——— FAQ ——— */
.hv .hv-faq-list {
  max-width: 820px;
}

.hv .hv-faq-group {
  margin: 1.5rem 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mp-muted);
}

.hv .hv-faq-group:first-child {
  margin-top: 0;
}

.hv .mp-faq-item {
  background: #fff;
}

.hv .mp-faq-a p {
  margin: 0;
}

.hv .mp-faq-a strong {
  color: var(--mp-ink);
  font-weight: 700;
}

.hv .mp-faq .mp-lead a {
  color: var(--mp-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 980px) {
  .hv-hero-grid,
  .hv-split,
  .hv-split.is-flip,
  .hv-setup-bar {
    grid-template-columns: 1fr;
  }

  .hv-split.is-flip .hv-split-copy,
  .hv-split.is-flip .hv-split-visual { order: initial; }

  .hv-packages { grid-template-columns: 1fr 1fr; }

  .hv-pkg.is-popular { transform: none; }

  .hv-float { display: none; }

  .hv-setup-price { text-align: left; }
}

@media (max-width: 640px) {
  .hv-packages { grid-template-columns: 1fr; }

  .hv-stage { min-height: 0; }

  .hv-hero { padding-top: 2rem; }

  .hv-hero h1 {
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
  }

  .hv-hero-lead {
    font-size: 0.98rem;
  }

  .hv-hero-ctas .mp-btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hv-call-card {
    padding: 1rem 0.95rem 1.1rem;
  }

  .hv-ivr-step {
    padding: 0.55rem 0.65rem;
  }

  .hv-ivr-step span {
    font-size: 0.8rem;
  }

  .hv-dialpad {
    max-width: 100%;
  }

  .hv-proof-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .hv-split-copy h2 {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .hv-visual-frame {
    border-radius: 14px;
  }

  .hv-pkg {
    padding: 1.15rem 1.05rem 1.2rem;
  }

  .hv-setup-bar {
    padding: 1.1rem 1rem;
  }
}

@media (max-width: 420px) {
  .hv-hero-points li {
    font-size: 0.86rem;
  }
}
