/* ============================================================
   ZeroDenial — Stylesheet
   Ported from eCareLTC theme. Container width: 1480px max.
   ============================================================ */

:root {
  /* Colors */
  --primary: #0C4C75;
  --primary-hover: #093A5C;
  --accent: #1B6FA6;
  --accent-soft: #E8F1F8;
  --soft: #F1F7FC;
  --gold: #A8C7E2;
  --brand-light: #A8C7E2;
  --green: #10B981;
  --brand-gradient: linear-gradient(135deg, #1F578F 0%, #091929 100%);
  --brand-gradient-soft: linear-gradient(135deg, #2A6BAA 0%, #163A5A 100%);
  --heading: #0F172A;
  --body: #475569;
  --muted: #94A3B8;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-gray: #F8FAFC;
  --t-xs: 12px;
  --t-sm: 14px;
  --t-base: 16px;
  --t-md: 18px;
  --t-lg: 24px;
  --t-xl: 32px;
  --t-2xl: 42px;
  --t-3xl: 56px;
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 80px;
  --s-7: 96px;
  --s-8: 120px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --sh-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --sh-md: 0 8px 24px rgba(12, 76, 117, .08), 0 2px 6px rgba(12, 76, 117, .04);
  --sh-lg: 0 24px 48px rgba(12, 76, 117, .12), 0 8px 16px rgba(12, 76, 117, .06);
  --header-h: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body);
  line-height: 1.6;
  background-color: #fff;
  background-image: radial-gradient(ellipse 80% 60% at 0% 100%, rgba(168, 201, 228, 0.45) 0%, rgba(168, 201, 228, 0.12) 35%, transparent 70%), radial-gradient(ellipse 70% 50% at 0% 0%, rgba(189, 213, 234, 0.5) 0%, rgba(189, 213, 234, 0.15) 40%, transparent 75%), radial-gradient(ellipse 60% 40% at 100% 30%, rgba(217, 229, 239, 0.35) 0%, transparent 65%), linear-gradient(180deg, rgb(221, 231, 240) 0%, rgb(232, 240, 247) 35%, rgb(245, 249, 252) 70%, rgb(255, 255, 255) 100%);
  background-size: 100% 1200px, 100% 880px, 100% 880px, 100% 880px;
  background-repeat: no-repeat;
  background-position: 0 1100px, 0 0, 0 0, 0 0;
  font-size: var(--t-md);
  -webkit-font-smoothing: antialiased
}

@media(max-width:768px) {
  body {
    background-size: 100% 1100px
  }
}

img,
svg {
  display: block;
  max-width: 100%
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s
}

a:hover {
  color: var(--primary)
}

button {
  font-family: inherit;
  cursor: pointer
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em
}

h1 {
  font-size: var(--t-3xl);
  letter-spacing: -.02em
}

h2 {
  font-size: var(--t-2xl)
}

h3 {
  font-size: var(--t-lg)
}

h4 {
  font-size: var(--t-md)
}

p {
  margin: 0
}

@media(max-width:768px) {
  h1 {
    font-size: var(--t-xl)
  }

  h2 {
    font-size: var(--t-lg)
  }

  h3 {
    font-size: var(--t-md)
  }
}

/* Container — 1480px */
.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto
}

@media(min-width:576px) {
  .container {
    max-width: 540px
  }
}

@media(min-width:768px) {
  .container {
    max-width: 720px
  }
}

@media(min-width:992px) {
  .container {
    max-width: 960px
  }
}

@media(min-width:1200px) {
  .container {
    max-width: 1140px
  }
}

@media(min-width:1400px) {
  .container {
    max-width: 1320px
  }
}

@media(min-width:1600px) {
  .container {
    max-width: 1480px !important
  }
}

section {
  padding: var(--s-6) 0
}

section#faq {
  padding: var(--s-7) 0;
  background: #ffffff;
  position: relative
}

@media(max-width:768px) {
  section {
    padding: 56px 0
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  padding: 14px 24px;
  font-weight: 600;
  font-size: var(--t-sm);
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  transition: all .2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap
}

.btn.lg {
  padding: 18px 32px;
  font-size: var(--t-base);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(12, 76, 117, .25)
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(12, 76, 117, .32)
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary)
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff
}

.btn-light {
  background: #fff;
  color: var(--primary);
  border-color: #fff
}

.btn-light:hover {
  background: var(--accent-soft);
  transform: translateY(-1px)
}

/* Header (floating pill) */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 22px 12px;
  display: block
}

header.site.scrolled {
  padding-top: 18px;
  padding-bottom: 18px
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 14px 18px 14px 24px;
  gap: var(--s-3);
  background: #fff;
  border-radius: 80px;
  box-shadow: 0 6px 24px rgba(12, 76, 117, .08), 0 1px 3px rgba(12, 76, 117, .04);
  border: 1px solid rgba(255, 255, 255, .6);
  transition: box-shadow .25s
}

header.site.scrolled .nav-wrap {
  box-shadow: 0 8px 28px rgba(12, 76, 117, .12)
}

@media(min-width:576px) {
  .nav-wrap {
    max-width: 540px
  }
}

@media(min-width:768px) {
  .nav-wrap {
    max-width: 720px
  }
}

@media(min-width:992px) {
  .nav-wrap {
    max-width: 960px
  }
}

@media(min-width:1200px) {
  .nav-wrap {
    max-width: 1140px
  }
}

@media(min-width:1400px) {
  .nav-wrap {
    max-width: 1320px
  }
}

@media(min-width:1600px) {
  .nav-wrap {
    max-width: 1480px
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--heading)
}

.logo:hover {
  color: var(--primary)
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0
}

.brand-text {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--heading);
  line-height: 1
}

.brand-text span {
  color: var(--primary);
  font-weight: 800
}

nav.main {
  display: flex;
  align-items: center;
  gap: 2px
}

nav.main a {
  color: var(--heading);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all .2s
}

nav.main a:hover {
  background: var(--accent-soft);
  color: var(--primary)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px
}

@media(max-width:1024px) {
  nav.main {
    display: none
  }

  .menu-toggle {
    display: block
  }
}

@media(max-width:600px) {
  .nav-actions .btn-outline {
    display: none
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  z-index: 200;
  backdrop-filter: blur(4px)
}

.mobile-nav.open {
  display: block;
  animation: fade .25s
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, .1)
}

.mobile-panel .mhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px
}

.mobile-nav a {
  display: block;
  padding: 14px 12px;
  color: var(--heading);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--border)
}

.mobile-nav .btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  justify-content: center
}

@keyframes fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* Hero (PDF-EXACT, full-bleed image right edge, eCareLTC pattern) */
.hero {
  padding: var(--s-5) 0 var(--s-6);
  background: transparent;
  position: relative;
  overflow: hidden;
  min-height: 620px
}

.hero .container {
  position: relative;
  z-index: 2
}

/* Full-bleed image attached to right edge of viewport — left edge fades into background */
.hero-image-bleed {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 54vw;
  max-width: 1180px;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  z-index: 1;
  pointer-events: none;
  /* Soft fade on left + bottom edges so the image merges seamlessly into the page gradient */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .15) 8%, rgba(0, 0, 0, .55) 18%, #000 32%, #000 100%), linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .15) 8%, rgba(0, 0, 0, .55) 18%, #000 32%, #000 100%), linear-gradient(to bottom, #000 60%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect
}

@media(min-width:1600px) {
  .hero-image-bleed {
    width: 50vw
  }
}

@media(max-width:1199px) {
  .hero {
    min-height: 0
  }

  .hero-image-bleed {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: var(--s-3);
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: var(--r-lg);
    box-shadow: 0 24px 64px rgba(12, 76, 117, .18)
  }

  .hero .container {
    z-index: 1
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: center;
  position: relative;
  min-height: 520px
}

@media(max-width:1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    min-height: 0
  }
}

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--s-2)
}

.hero h1 {
  margin-bottom: var(--s-2);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05
}

.hero h1 .accent {
  color: var(--primary);
  display: inline
}

.hero h1 .accent::after {
  display: none;
  content: none
}

.hero .lead {
  font-size: var(--t-md);
  color: var(--body);
  margin-bottom: var(--s-4);
  max-width: 560px
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--s-2)
}

.trial-note {
  font-size: var(--t-sm);
  color: var(--muted);
  margin-bottom: var(--s-3);
  display: flex;
  align-items: center;
  gap: 6px
}

.trial-note svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0
}

/* Trust row — eCareLTC pattern (borderless inline, badges + ratings) */
.hero-trust {
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(12, 76, 117, .12);
  position: relative;
  z-index: 2
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  padding: 6px 0
}

.badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #E4ECF3;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(12, 76, 117, .06);
  transition: transform .2s, box-shadow .2s
}

.badge:hover .badge-pill {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(12, 76, 117, .12)
}

.badge-pill svg {
  flex-shrink: 0
}

.badge-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px
}

.badge-stack strong {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .4px;
  font-family: 'Manrope', sans-serif
}

.badge-stack em {
  font-size: 9.5px;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .4px;
  text-transform: uppercase
}

.trust-divider {
  width: 1px;
  height: 38px;
  background: rgba(12, 76, 117, .18);
  margin: 0 4px;
  flex-shrink: 0
}

.rating-cluster {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid #E4ECF3;
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(12, 76, 117, .06);
  transition: transform .2s, box-shadow .2s
}

.rating-cluster:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(12, 76, 117, .12)
}

.rating-stars {
  display: inline-flex;
  gap: 1px
}

.rating-brand {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .2px;
  font-family: 'Manrope', sans-serif
}

@media(max-width:600px) {
  .trust-row {
    gap: 8px
  }

  .badge-pill {
    padding: 5px 10px;
    gap: 6px
  }

  .badge-stack strong {
    font-size: 10.5px
  }

  .badge-stack em {
    font-size: 8.5px
  }

  .trust-divider {
    height: 30px
  }

  .rating-cluster {
    padding: 5px 10px
  }
}

/* Stats band (under hero) */
.stats-band {
  padding: var(--s-5) 0;
  background: linear-gradient(135deg, #0C4C75 0%, #1B6FA6 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-top: -12px
}

.stats-band::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.stats-band::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(168, 199, 226, .12), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1
}

@media(max-width:900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
  }
}

@media(max-width:560px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }
}

.stat-item {
  text-align: center;
  padding: 0 12px;
  position: relative
}

.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, .18)
}

@media(max-width:900px) {
  .stat-item:not(:last-child)::after {
    display: none
  }
}

.stat-num {
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 10px
}

.stat-num .unit {
  font-size: .55em;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
  margin-left: 2px
}

.stat-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, .86);
  font-weight: 600;
  line-height: 1.4;
  max-width: 220px;
  margin: 0 auto
}

/* Section intro */
.sec-intro {
  text-align: left;
  max-width: 1100px;
  margin: 0 0 var(--s-5)
}

.sec-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px
}

.sec-intro h2 {
  margin-bottom: 12px
}

.sec-intro h2 .accent {
  color: var(--primary);
  font-weight: 800
}

.sec-intro p {
  font-size: var(--t-md);
  color: var(--body);
  max-width: 820px
}

/* Outcomes section (used for The Problem + Outcomes) */
.outcomes-section {
  padding: var(--s-7) 0;
  background: linear-gradient(180deg, #FAFCFE 0%, #F4F8FB 100%);
  position: relative;
  border-top: 1px solid #EDF2F6
}

.outcomes-section .sec-intro {
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto
}

.outcomes-section .sec-intro p {
  margin-left: auto;
  margin-right: auto
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: var(--s-3)
}

@media(max-width:1100px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .outcomes-grid {
    grid-template-columns: 1fr
  }
}

.outcome-card {
  background: linear-gradient(135deg, #0C4C75 0%, #1B6FA6 100%);
  color: #fff;
  border-radius: 18px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(12, 76, 117, .18);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden
}

.outcome-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 76, 117, .28)
}

.outcome-num {
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  font-family: 'Manrope', sans-serif
}

.outcome-sym {
  font-size: .5em;
  font-weight: 700;
  margin-left: 2px;
  color: rgba(255, 255, 255, .85)
}

.outcome-label {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .1px;
  line-height: 1.3
}

.outcome-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
  line-height: 1.45
}

/* Solutions tabbed */
.sol-tabs-row {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
  background: #fff;
  padding: 6px;
  border-radius: 100px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  max-width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%)
}

.sol-tabs-row::-webkit-scrollbar {
  display: none
}

.sol-tab-btn {
  flex-shrink: 0;
  background: transparent;
  border: 0;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .3px;
  white-space: nowrap
}

.sol-tab-btn:hover {
  color: var(--primary);
  background: var(--accent-soft)
}

.sol-tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(12, 76, 117, .28)
}

.sol-tab-btn .tab-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
  padding: 7px
}

.sol-tab-btn.active .tab-icon {
  background: rgba(255, 255, 255, .18)
}

.sol-tab-btn .tab-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary);
  transition: color .25s
}

.sol-tab-btn.active .tab-icon svg {
  color: #fff
}

.sol-tab-btn .tab-num {
  font-size: 11px;
  opacity: .55;
  font-weight: 700;
  letter-spacing: .6px;
  margin-right: -4px
}

.sol-tab-btn.active .tab-num {
  opacity: .85
}

@media(max-width:768px) {
  .sol-tab-btn {
    padding: 8px 16px;
    font-size: 13px;
    gap: 8px
  }

  .sol-tab-btn .tab-icon {
    width: 32px;
    height: 32px
  }
}

.sol-rows {
  display: block;
  position: relative;
  min-height: 420px
}

.sol-row {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  animation: solFade .4s ease
}

.sol-row.active {
  display: grid
}

@keyframes solFade {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:900px) {
  .sol-row {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .sol-row.reverse .sol-row-text {
    order: 1
  }

  .sol-row.reverse .sol-row-visual {
    order: 2
  }
}

.sol-row-text {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.sol-row-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: var(--sh-sm)
}

.sol-row-tag .tag-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800
}

.sol-row-text h3 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0;
  color: var(--heading);
  letter-spacing: -.02em;
  font-weight: 800
}

@media(max-width:768px) {
  .sol-row-text h3 {
    font-size: 28px
  }
}

.sol-row-text h3 .accent {
  color: var(--primary);
  display: inline
}

.sol-row-text h3 .accent::after {
  display: none;
  content: none
}

.sol-row-text>p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
  max-width: 540px
}

.sol-row-features {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px
}

@media(max-width:560px) {
  .sol-row-features {
    grid-template-columns: 1fr
  }
}

.sol-row-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.4;
  font-weight: 500
}

.sol-row-features li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px
}

.sol-row-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap
}

.sol-row-link {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s
}

.sol-row-link:hover {
  border-bottom-color: var(--primary)
}

.sol-row-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s
}

.sol-row-link:hover svg {
  transform: translateX(4px)
}

.sol-row-visual {
  position: relative
}

.sol-row-visual .frame {
  position: relative;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 100%);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: var(--sh-md);
  border: 1px solid #DCE7F0;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center
}

.sol-row-visual .frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(27, 111, 166, .08), transparent 60%);
  pointer-events: none
}

.sol-row-visual .frame img {
  width: auto;
  height: auto;
  display: block;
  position: relative;
  z-index: 1
}

.sol-row-visual .stat-pill {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(12, 76, 117, .18);
  border: 1px solid var(--border);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px
}

.sol-row-visual .stat-pill .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sol-row-visual .stat-pill .ico svg {
  width: 18px;
  height: 18px
}

.sol-row-visual .stat-pill .stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  letter-spacing: -.02em
}

.sol-row-visual .stat-pill .stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 3px
}

.sol-row-visual .stat-pill.tl {
  top: 8px;
  left: -20px
}

.sol-row-visual .stat-pill.br {
  bottom: 18px;
  right: -20px
}

@media(max-width:1100px) {
  .sol-row-visual .stat-pill.tl {
    left: 8px
  }

  .sol-row-visual .stat-pill.br {
    right: 8px
  }
}

@media(max-width:560px) {
  .sol-row-visual .stat-pill {
    display: none
  }
}

/* CTA strip */
.cta-strip {
  background: var(--brand-gradient);
  color: #fff;
  padding: var(--s-6) 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  margin: var(--s-2) 0
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%
}

.cta-strip .container {
  position: relative;
  z-index: 1
}

.cta-strip-inner {
  max-width: 780px
}

.cta-strip blockquote {
  margin: 0 0 6px;
  font-size: var(--t-md);
  font-style: italic;
  color: #fff;
  opacity: .95;
  font-weight: 500
}

.cta-strip blockquote::before {
  content: '"';
  display: inline-block;
  font-size: 32px;
  line-height: 0;
  vertical-align: -12px;
  color: #A8C7E2;
  margin-right: 6px;
  font-style: normal;
  font-weight: 700
}

.cta-strip .cite {
  font-size: var(--t-sm);
  color: #BFD8E8;
  margin-bottom: var(--s-3);
  font-weight: 600;
  letter-spacing: .3px
}

.cta-strip h2 {
  color: #fff;
  font-size: var(--t-xl);
  margin-bottom: var(--s-3);
  max-width: 680px;
  line-height: 1.15
}

.cta-strip h2 .accent {
  color: #A8C7E2
}

.cta-strip .sub {
  color: #BFD8E8;
  font-size: var(--t-sm);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.cta-strip .sub svg {
  width: 16px;
  height: 16px;
  color: #A8C7E2;
  flex-shrink: 0
}

/* Testimonials V5 carousel */
.v5t-section {
  background: #fff;
  position: relative;
  overflow: hidden
}

.v5t-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(27, 111, 166, .05), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.v5t-section::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(168, 199, 226, .08), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.v5t-stage {
  position: relative;
  margin-top: 24px
}

.v5t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #D5E3EF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 6px 18px rgba(15, 42, 71, .10);
  z-index: 5
}

.v5t-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05)
}

.v5t-arrow.prev {
  left: -24px
}

.v5t-arrow.next {
  right: -24px
}

.v5t-arrow svg {
  width: 20px;
  height: 20px
}

@media(max-width:768px) {
  .v5t-arrow.prev {
    left: 8px
  }

  .v5t-arrow.next {
    right: 8px
  }

  .v5t-arrow {
    width: 40px;
    height: 40px
  }
}

.v5t-track-wrap {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md)
}

.v5t-track {
  display: flex;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1)
}

.v5t-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  overflow: hidden;
  min-height: 540px;
  align-items: stretch
}

@media(max-width:900px) {
  .v5t-card {
    grid-template-columns: 1fr;
    min-height: 0
  }
}

.v5t-content {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  background: #fff;
  min-width: 0
}

@media(max-width:768px) {
  .v5t-content {
    padding: 32px 28px;
    gap: 18px
  }
}

.v5t-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  background: #E8F1F8;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid #D5E3EF;
  width: fit-content
}

.v5t-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary)
}

.v5t-stars {
  display: flex;
  gap: 3px;
  color: #F0941B
}

.v5t-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor
}

.v5t-quote {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: #0F2A47;
  margin: 0;
  font-style: italic;
  font-weight: 500;
  flex: 1;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--primary)
}

.v5t-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.v5t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .5px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 42, 71, .14);
  border: 2.5px solid #fff;
  font-family: 'Manrope', sans-serif
}

.v5t-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0
}

.v5t-author-name {
  font-size: 15px;
  font-weight: 800;
  color: #0F2A47;
  line-height: 1.2
}

.v5t-author-role {
  font-size: 13px;
  color: #5A7388;
  font-weight: 500;
  line-height: 1.4
}

.v5t-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px dashed #DCE7F0
}

.v5t-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: #F1F7FC;
  border: 1px solid #D5E3EF;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #1F3A5C;
  line-height: 1;
  white-space: nowrap
}

.v5t-pill .num {
  font-weight: 800;
  color: var(--primary)
}

.v5t-case {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: linear-gradient(135deg, #F5F9FC 0%, #E8F1F8 100%);
  border-left: 1px solid rgba(12, 76, 117, .08);
  position: relative;
  overflow: hidden;
  justify-content: space-between
}

.v5t-case::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(27, 111, 166, .08), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

@media(max-width:900px) {
  .v5t-case {
    padding: 32px 28px;
    border-left: 0;
    border-top: 1px solid rgba(12, 76, 117, .08)
  }
}

.v5t-title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.2;
  position: relative;
  z-index: 1
}

.v5t-cr {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1
}

.v5t-col-label {
  font-size: 11px;
  font-weight: 700;
  color: #5A7388;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.v5t-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.v5t-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #1F3A5C;
  line-height: 1.5;
  font-weight: 500
}

.v5t-icn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px
}

.v5t-icn svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.v5t-list-neg .v5t-icn {
  background: #FCE3E3;
  color: #D14545
}

.v5t-list-pos .v5t-icn {
  background: #DCEAF4;
  color: var(--accent)
}

.v5t-stats {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: center;
  box-shadow: 0 4px 16px rgba(15, 42, 71, .06);
  position: relative;
  z-index: 1
}

@media(max-width:768px) {
  .v5t-stats {
    grid-template-columns: 1fr;
    padding: 16px 20px
  }
}

.v5t-stat {
  text-align: center;
  border-right: 1px solid #E1E8ED;
  padding: 4px 8px
}

.v5t-stat:last-child {
  border-right: 0
}

@media(max-width:768px) {
  .v5t-stat {
    border-right: 0;
    border-bottom: 1px solid #E1E8ED;
    padding: 12px 0
  }

  .v5t-stat:last-child {
    border-bottom: 0
  }
}

.v5t-stat-num {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px
}

.v5t-stat-label {
  font-size: 10px;
  color: #5A7388;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3
}

.v5t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px
}

.v5t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CFD6DD;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all .25s
}

.v5t-dot.active {
  width: 32px;
  background: var(--primary);
  border-radius: 8px
}

/* FAQ */
.faq-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--s-4);
  align-items: flex-start
}

@media(max-width:900px) {
  .faq-wrap {
    grid-template-columns: 1fr
  }
}

.faq-side {
  background: var(--brand-gradient-soft);
  color: #fff;
  padding: var(--s-4);
  border-radius: var(--r-lg);
  position: sticky;
  top: calc(var(--header-h) + var(--s-2));
  box-shadow: var(--sh-md)
}

.faq-side h3 {
  color: #fff;
  margin-bottom: 10px
}

.faq-side p {
  color: #D4E5F0;
  font-size: var(--t-sm);
  margin-bottom: var(--s-3);
  line-height: 1.6
}

.faq-side .btn {
  width: 100%
}

.faq-items {
  display: grid;
  gap: 10px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: var(--sh-sm)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px var(--s-3);
  background: none;
  border: 0;
  text-align: left;
  font-weight: 600;
  color: var(--heading);
  font-size: var(--t-base);
  line-height: 1.4
}

.faq-q:hover {
  color: var(--primary)
}

.faq-q .ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s;
  margin-left: 12px
}

.faq-item.open .faq-q .ico {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 var(--s-3)
}

.faq-item.open .faq-a {
  max-height: 800px;
  padding: 0 var(--s-3) 18px
}

.faq-a p {
  font-size: var(--t-sm);
  color: var(--body);
  line-height: 1.65
}

/* Footer */
footer.site {
  background: var(--brand-gradient);
  color: #BFD8E8;
  padding: 64px 0 24px;
  position: relative;
  overflow: hidden
}

footer.site::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(168, 199, 226, .05), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.foot-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  z-index: 1
}

@media(max-width:900px) {
  .foot-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 36px;
    margin-bottom: 36px
  }
}

.foot-cta h3 {
  color: #fff;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 8px;
  font-weight: 800
}

.foot-cta h3 .accent {
  color: #A8C7E2
}

.foot-cta p {
  color: #A8C2D6;
  font-size: 15px;
  margin: 0;
  max-width: 520px
}

.foot-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end
}

@media(max-width:900px) {
  .foot-cta-actions {
    justify-content: flex-start
  }
}

.foot-nav {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  z-index: 1
}

@media(max-width:1100px) {
  .foot-nav {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px
  }
}

@media(max-width:900px) {
  .foot-nav {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px 20px
  }
}

@media(max-width:560px) {
  .foot-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px
  }
}

.foot-brand .logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px
}

.foot-brand .logo-mark .brand-text {
  color: #fff
}

.foot-brand .logo-mark .brand-text span {
  color: #A8C7E2
}

.foot-brand .sub {
  color: #A8C2D6;
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
  margin-bottom: 18px
}

.foot-brand-contact {
  display: grid;
  gap: 8px;
  margin-bottom: 18px
}

.foot-brand-contact div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #A8C2D6;
  line-height: 1.5
}

.foot-brand-contact svg {
  width: 14px;
  height: 14px;
  color: #A8C7E2;
  flex-shrink: 0;
  margin-top: 3px
}

.foot-brand-contact a {
  color: #A8C2D6;
  text-decoration: none
}

.foot-brand-contact a:hover {
  color: #fff
}

@media(max-width:900px) {
  .foot-brand {
    grid-column: span 3
  }

  .foot-brand .sub {
    max-width: 540px
  }
}

@media(max-width:560px) {
  .foot-brand {
    grid-column: span 2
  }
}

.foot-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .8px;
  display: flex;
  align-items: center;
  gap: 8px
}

/* .foot-col h4::before {
  content: "";
  width: 14px;
  height: 2px;
  background: #A8C7E2;
  display: inline-block
} */

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px
}

.foot-col a {
  color: #A8C2D6;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4
}

.foot-col a:hover {
  color: #fff;
  padding-left: 4px
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  position: relative;
  z-index: 1
}

.foot-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}

.foot-badge-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: .4px
}

.foot-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #88A4B8
}

.foot-meta a {
  color: #88A4B8;
  text-decoration: none;
  transition: color .2s
}

.foot-meta a:hover {
  color: #fff
}

.social-row {
  display: flex;
  gap: 6px
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  color: #fff
}

.social-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.social-link:hover {
  background: #A8C7E2;
  border-color: #A8C7E2;
  color: #091929;
  transform: translateY(-2px)
}

/* To-top */
.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(12, 76, 117, .3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  z-index: 90;
  transition: opacity .3s, transform .3s
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.to-top svg {
  width: 18px;
  height: 18px
}

/* Mobile polish */
body {
  max-width: 100%;
  overflow-x: clip
}

@media(max-width:900px) {
  .hero {
    padding: 24px 0 32px
  }

  .hero h1 {
    font-size: clamp(28px, 5vw, 40px) !important;
    line-height: 1.15
  }

  .hero .lead {
    font-size: 15px;
    max-width: none
  }

  .hero-cta {
    flex-wrap: wrap
  }

  .hero-cta .btn {
    flex: 1 1 auto;
    min-width: 160px
  }
}

@media(max-width:600px) {
  section {
    padding: 48px 0 !important
  }

  .hero {
    padding: 16px 0 24px
  }

  .hero h1 {
    font-size: 28px !important
  }

  .cta-strip h2 {
    font-size: 24px !important;
    line-height: 1.2
  }

  .cta-strip blockquote {
    font-size: 14px
  }

  .sec-intro h2 {
    font-size: 24px !important;
    line-height: 1.25
  }

  .sec-intro p {
    font-size: 14px
  }
}

/* ============================================================
   Inner page styles — about, contact, pricing, blog stubs
   (used by sub-pages, harmless on home)
   ============================================================ */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, #E8F0F7 0%, #FFFFFF 100%);
  text-align: center
}

.page-hero .container {
  max-width: 840px
}

.page-hero h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  margin: 14px 0 16px;
  line-height: 1.1
}

.page-hero h1 .accent {
  color: var(--primary)
}

.page-hero .lead {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 28px
}

.page-hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.legal-main {
  padding: 60px 0 100px;
  background: #fff
}

.legal-container {
  max-width: 880px;
  margin: 0 auto
}

.legal-body {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 8px 24px rgba(12, 76, 117, .06)
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  margin: 32px 0 12px;
  line-height: 1.3
}

.legal-body h2:first-child {
  margin-top: 0
}

.legal-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 14px
}

.legal-body ul {
  padding-left: 22px;
  margin: 0 0 14px
}

.legal-body li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  margin-bottom: 6px
}

@media(max-width:560px) {
  .legal-body {
    padding: 28px 22px
  }

  .legal-body h2 {
    font-size: 18px
  }
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 36px 0
}

@media(max-width:760px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s, box-shadow .25s
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10)
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary)
}

.contact-icon svg {
  width: 24px;
  height: 24px
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin: 6px 0 4px
}

.contact-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  margin: 0
}

.contact-card a {
  color: var(--primary);
  font-weight: 700
}

.contact-card-cta {
  background: linear-gradient(135deg, var(--primary), #0A3E60);
  color: #fff;
  border-color: transparent
}

.contact-card-cta h3,
.contact-card-cta p {
  color: #fff
}

.contact-card-cta .contact-icon {
  background: rgba(255, 255, 255, .18);
  color: #fff
}

.contact-card-cta .btn {
  align-self: flex-start;
  margin-top: 10px
}

/* Pricing tiers (for pricing.html) */
.pricing-section {
  padding: var(--s-7) 0;
  background: #fff
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto
}

@media(max-width:1000px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 520px
  }
}

.pricing-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform .25s, box-shadow .25s
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(12, 76, 117, .10)
}

.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(12, 76, 117, .18);
  background: linear-gradient(180deg, #F7FBFE 0%, #FFFFFF 60%)
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px
}

.pricing-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center
}

.pricing-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.pricing-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  margin: 0
}

.pricing-tagline {
  font-size: 14px;
  color: var(--body);
  margin: 0;
  line-height: 1.5
}

.pricing-features {
  list-style: none;
  padding: 18px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 1px solid var(--border);
  flex: 1
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--heading);
  line-height: 1.5;
  font-weight: 500
}

.pricing-features li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #DCEAF4 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B6FA6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
  margin-top: 2px
}

/* Blog stub */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto
}

@media(max-width:900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .blog-grid {
    grid-template-columns: 1fr
  }
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 76, 117, .10)
}

.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary)
}

.blog-thumb svg {
  width: 64px;
  height: 64px;
  opacity: .45
}

.blog-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.blog-cat {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1.2px;
  text-transform: uppercase
}

.blog-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
  margin: 0
}

.blog-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0
}

.blog-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.blog-meta a {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px
}

/* ============================================================
   Subpage extensions — tables, step cards, code cards, ROI, addons
   ============================================================ */

/* Numbered step cards (used on agents, ehr pages) */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: var(--s-4)
}

@media(max-width:1100px) {
  .step-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .step-grid {
    grid-template-columns: 1fr
  }
}

.step-card-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, box-shadow .25s;
  position: relative
}

.step-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10);
  border-color: rgba(27, 111, 166, .35)
}

.step-card-v2 .step-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.03em;
  line-height: 1;
  font-family: 'Manrope', sans-serif;
  opacity: .5
}

.step-card-v2 .step-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1.4px;
  text-transform: uppercase
}

.step-card-v2 h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
  margin: 4px 0 6px
}

.step-card-v2 p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  margin: 0
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px
}

.step-tags span {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  background: var(--accent-soft);
  border: 1px solid #D5E3EF;
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .2px
}

/* Generic data tables */
.zd-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--sh-sm);
  background: #fff;
  margin-top: var(--s-4)
}

.zd-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px
}

.zd-table th {
  text-align: left;
  padding: 14px 18px;
  background: #F4F8FB;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border)
}

.zd-table td {
  padding: 14px 18px;
  color: var(--body);
  border-bottom: 1px solid #EEF2F6;
  line-height: 1.5
}

.zd-table tr:last-child td {
  border-bottom: 0
}

.zd-table tr:hover td {
  background: #FAFCFE
}

.zd-table .tdgood {
  color: #10843E;
  font-weight: 700;
  background: rgba(16, 132, 62, .05)
}

.zd-table .trtotal td {
  background: #F1F7FC;
  font-size: 15px
}

/* Denial distribution bars */
.denial-dist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--s-3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 28px;
  box-shadow: var(--sh-sm)
}

.dist-row {
  display: flex;
  align-items: center;
  gap: 16px
}

.dist-label {
  flex: 0 0 200px;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading)
}

@media(max-width:600px) {
  .dist-label {
    flex-basis: 140px;
    font-size: 13px
  }
}

.dist-bar {
  flex: 1;
  height: 36px;
  background: #F1F7FC;
  border-radius: 10px;
  overflow: hidden;
  position: relative
}

.dist-fill {
  height: 100%;
  background: linear-gradient(90deg, #0C4C75, #1B6FA6);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .3px
}

/* CARC/RARC code cards */
.code-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: var(--s-4)
}

@media(max-width:1000px) {
  .code-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .code-grid {
    grid-template-columns: 1fr
  }
}

.code-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.code-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .08);
  border-color: var(--accent)
}

.code-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: linear-gradient(135deg, #0C4C75, #1B6FA6);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif
}

.code-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
  margin: 2px 0
}

.code-card p {
  font-size: 13px;
  color: var(--body);
  line-height: 1.5;
  margin: 0
}

.code-action {
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed #DCE7F0;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary)
}

/* EDI raw + interpretation grid */
.edi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: var(--s-4)
}

@media(max-width:900px) {
  .edi-grid {
    grid-template-columns: 1fr
  }
}

.edi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--sh-sm)
}

.edi-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px
}

.edi-code {
  background: #091929;
  color: #A8C7E2;
  padding: 18px;
  border-radius: 10px;
  font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  overflow-x: auto;
  margin: 0;
  white-space: pre
}

.edi-interp {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.edi-line {
  padding: 10px 12px;
  background: #F4F8FB;
  border-left: 3px solid var(--primary);
  border-radius: 6px;
  font-size: 13px;
  color: var(--heading);
  line-height: 1.5
}

.edi-line code {
  background: #091929;
  color: #A8C7E2;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11.5px;
  margin-right: 6px
}

.edi-result {
  margin-top: 8px;
  padding: 14px;
  background: linear-gradient(135deg, #0C4C75, #1B6FA6);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500
}

/* Clearinghouse cards */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: var(--s-4)
}

@media(max-width:1000px) {
  .ch-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .ch-grid {
    grid-template-columns: 1fr
  }
}

.ch-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, box-shadow .25s
}

.ch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 76, 117, .10);
  border-color: var(--accent)
}

.ch-card .ch-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.01em
}

.ch-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0
}

.ch-card ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px
}

.ch-card li {
  font-size: 12.5px;
  color: var(--heading);
  font-weight: 600;
  padding-left: 14px;
  position: relative;
  line-height: 1.4
}

.ch-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent)
}

/* Architecture cards */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: var(--s-4)
}

@media(max-width:1000px) {
  .arch-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .arch-grid {
    grid-template-columns: 1fr
  }
}

.arch-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: transform .25s, box-shadow .25s
}

.arch-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10)
}

.arch-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 8px
}

.arch-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0
}

/* EHR cards */
.ehr-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: var(--s-4)
}

@media(max-width:1200px) {
  .ehr-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

@media(max-width:900px) {
  .ehr-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:600px) {
  .ehr-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.ehr-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
  transition: all .25s;
  position: relative
}

.ehr-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10);
  border-color: var(--accent)
}

.ehr-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 4px
}

.ehr-card p {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 10px
}

.ehr-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase
}

.ehr-pill.native {
  background: #DCEAF4;
  color: var(--primary)
}

.ehr-pill.adapter {
  background: #FEF3C7;
  color: #92400E
}

.ehr-pill.custom {
  background: #EDE9FE;
  color: #5B21B6
}

/* Pricing — 4-card grid version */
.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto
}

@media(max-width:1200px) {
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px
  }
}

@media(max-width:600px) {
  .pricing-grid-4 {
    grid-template-columns: 1fr;
    max-width: 420px
  }
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 4px 0
}

.pricing-amount {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.025em;
  line-height: 1;
  font-family: 'Manrope', sans-serif
}

.pricing-period {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
  width: 100%
}

.pricing-cta:hover {
  background: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px)
}

.pricing-cta-outline {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--primary)
}

.pricing-cta-outline:hover {
  background: var(--primary);
  color: #fff
}

.pricing-note {
  margin-top: var(--s-4);
  padding: 18px 22px;
  background: #F4F8FB;
  border-left: 4px solid var(--accent);
  border-radius: 8px
}

.pricing-note p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin: 0
}

/* Addon cards */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: var(--s-4)
}

@media(max-width:1000px) {
  .addon-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .addon-grid {
    grid-template-columns: 1fr
  }
}

.addon-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .25s
}

.addon-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10);
  border-color: var(--accent)
}

.addon-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin: 0
}

.addon-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  letter-spacing: -.01em
}

.addon-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  margin: 4px 0 0
}

.addon-result {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed #DCE7F0;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary)
}

/* ROI calculator */
.roi-section {
  padding: var(--s-7) 0;
  background: #fff
}

.roi-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--sh-md);
  overflow: hidden
}

@media(max-width:900px) {
  .roi-card {
    grid-template-columns: 1fr
  }
}

.roi-inputs {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #fff
}

@media(max-width:600px) {
  .roi-inputs {
    padding: 24px
  }
}

.roi-control label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px
}

.roi-val {
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 800
}

.roi-control input[type=range] {
  width: 100%;
  accent-color: var(--primary);
  height: 6px;
  cursor: pointer
}

.roi-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px
}

.roi-output {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(135deg, #0C4C75, #1B6FA6);
  color: #fff
}

@media(max-width:600px) {
  .roi-output {
    padding: 24px
  }
}

.roi-output-label {
  font-size: 13px;
  font-weight: 700;
  color: #A8C7E2;
  text-transform: uppercase;
  letter-spacing: 1.2px
}

.roi-output-num {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  font-family: 'Manrope', sans-serif;
  margin: 4px 0
}

.roi-output-sub {
  font-size: 14px;
  color: #BFD8E8;
  font-weight: 600;
  margin-bottom: 18px
}

.roi-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 18px;
  margin-top: 8px
}

.roi-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #D4E5F0;
  line-height: 1.4
}

.roi-line .pos {
  color: #A8E6C2;
  font-weight: 800;
  font-family: 'Manrope', sans-serif
}

.roi-line .neg {
  color: #F4B6B6;
  font-weight: 800;
  font-family: 'Manrope', sans-serif
}

.roi-total {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  font-size: 15px;
  color: #fff
}

.roi-total strong:last-child {
  color: #A8C7E2;
  font-family: 'Manrope', sans-serif;
  font-size: 17px
}

.roi-foot {
  font-size: 13px;
  color: #BFD8E8;
  margin-top: 12px
}

.roi-foot strong {
  color: #fff
}

/* Sitemap grid (real version) */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: var(--s-4)
}

@media(max-width:900px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .sitemap-grid {
    grid-template-columns: 1fr
  }
}

.sitemap-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  transition: all .25s
}

.sitemap-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10)
}

.sitemap-col h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 4px
}

.sitemap-col .sitemap-sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin: 0 0 14px
}

.sitemap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sitemap-col li a {
  color: var(--heading);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  transition: color .2s, padding-left .2s
}

.sitemap-col li a:hover {
  color: var(--primary);
  padding-left: 4px
}

/* CTA row for page-hero */
.page-hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px
}

/* ============================================================
   CTA Modals — Calendly (demo) + HubSpot (trial)
   ============================================================ */
.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none
}

.cta-modal.open {
  display: block
}

.cta-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(9, 25, 41, .62);
  backdrop-filter: blur(6px);
  cursor: pointer
}

.cta-modal-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 92vw);
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 24px;
  box-shadow: 0 24px 60px rgba(15, 42, 71, .30);
  font-family: 'Manrope', sans-serif
}

.cta-modal-card-wide {
  width: min(1090px, 96vw)
}

.cta-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #F4F8FB;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  color: #5A7388;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-family: inherit;
  z-index: 2
}

.cta-modal-close:hover {
  background: var(--primary);
  color: #fff
}

.cta-modal-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 6px;
  letter-spacing: -.01em;
  line-height: 1.2;
  padding-right: 40px
}

.cta-modal-sub {
  font-size: 14px;
  color: #5A7388;
  margin: 0 0 18px;
  font-weight: 500;
  line-height: 1.5
}

#hubspotFormTarget {
  margin-top: 6px;
  min-height: 200px
}

#hubspotFormTarget .hs-form,
#hubspotFormTarget form {
  font-family: 'Manrope', sans-serif !important
}

#hubspotFormTarget label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  margin-bottom: 4px !important;
  display: block !important
}

#hubspotFormTarget input[type="text"],
#hubspotFormTarget input[type="email"],
#hubspotFormTarget input[type="tel"],
#hubspotFormTarget select,
#hubspotFormTarget textarea {
  width: 100% !important;
  padding: 10px 12px !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  margin-bottom: 12px !important
}

#hubspotFormTarget input:focus,
#hubspotFormTarget select:focus,
#hubspotFormTarget textarea:focus {
  outline: none !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(12, 76, 117, .12) !important
}

#hubspotFormTarget .hs-button,
#hubspotFormTarget input[type="submit"] {
  background: var(--primary) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 13px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  font-size: 14px !important;
  width: 100%;
  letter-spacing: .2px;
  transition: background .2s
}

#hubspotFormTarget .hs-button:hover,
#hubspotFormTarget input[type="submit"]:hover {
  background: var(--primary-hover) !important
}

#hubspotFormTarget .hs-error-msgs,
#hubspotFormTarget .hs_error_rollup {
  color: #D14545 !important;
  font-size: 12px !important;
  list-style: none;
  padding-left: 0;
  margin: 4px 0 8px
}

.calendly-inline-widget {
  min-width: 320px;
  min-height: 600px
}

body.modal-open {
  overflow: hidden
}

@keyframes hsspin {
  to {
    transform: rotate(360deg)
  }
}

@media(max-width:600px) {
   .cta-modal-card {
    border-radius: 0;
    /* min-height: 100vh; */
    max-width: 100%;
    padding: 60px 18px 24px;
    max-height: none;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 42, 71, .30);
  }


  .cta-modal-card-wide {
    padding: 60px 12px 24px;
    height: 610px;
  }

  .calendly-inline-widget {
    height: 560px !important;
    min-height: 520px
  }
}

/* ============================================================
   Hero — text-only variant (when bleed image is hidden)
   ============================================================ */
.hero.hero-textonly {
  min-height: auto;
  padding: var(--s-6) 0 var(--s-5)
}

.hero.hero-textonly .hero-grid {
  display: block;
  min-height: 0
}

.hero-grid-center {
  text-align: center
}

.hero-grid-center>div {
  max-width: 920px;
  margin: 0 auto
}

.hero-grid-center .eyebrow {
  display: inline-block
}

.hero-grid-center h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05
}

.hero-grid-center .lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px
}

.hero-grid-center .hero-cta {
  justify-content: center
}

.hero-grid-center .trial-note {
  justify-content: center
}

.hero-grid-center .hero-trust {
  margin-top: 8px
}

.hero-grid-center .trust-row {
  justify-content: center
}

@media(max-width:768px) {
  .hero.hero-textonly {
    padding: var(--s-5) 0 var(--s-4)
  }

  .hero-grid-center h1 {
    font-size: clamp(28px, 8vw, 36px)
  }

  .hero-grid-center .lead {
    font-size: 15px
  }
}

/* ============================================================
   Hero image + floating stat pill (per reference screenshot)
   Restores two-column hero layout with image on right
   ============================================================ */
/* Override the text-only / centered hero from previous iteration */
.hero {
  min-height: 600px;
  padding: var(--s-5) 0 var(--s-6)
}

.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--s-5);
  align-items: center;
  min-height: 520px;
  text-align: left
}

.hero .hero-grid>div:first-child {
  max-width: none;
  margin: 0;
  text-align: left
}

.hero .hero-grid h1 {
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.08
}

.hero .hero-grid .lead {
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
  font-size: var(--t-md)
}

.hero .hero-grid .hero-cta {
  justify-content: flex-start
}

.hero .hero-grid .trial-note {
  justify-content: flex-start
}

.hero .hero-grid .trust-row {
  justify-content: flex-start
}

.hero .hero-grid .eyebrow {
  display: inline-block
}

@media(max-width:1199px) {
  .hero {
    min-height: 0
  }

  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    min-height: 0
  }
}

/* Right column image + overlay */
.hero-visual {
  position: relative
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(12, 76, 117, .20), 0 4px 12px rgba(12, 76, 117, .08);
  aspect-ratio: 3/2;
  object-fit: cover
}

/* Floating stat overlay pill (matches user reference) */
.hero-stat-pill {
  position: absolute;
  top: 38%;
  left: -32px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 20px 14px 14px;
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(12, 76, 117, .20), 0 4px 12px rgba(12, 76, 117, .08);
  border: 1px solid rgba(12, 76, 117, .06);
  z-index: 3;
  transform: translateY(-50%);
  min-width: 240px;
  animation: heroStatFloat 4s ease-in-out infinite;
}

@keyframes heroStatFloat {

  0%,
  100% {
    transform: translateY(-50%) translateX(0)
  }

  50% {
    transform: translateY(-50%) translateX(4px)
  }
}

.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #10B981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 22px;
  height: 22px
}

.hero-stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 4px
}

.hero-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1B6FA6;
  letter-spacing: -.02em;
  line-height: 1;
}

.hero-stat-label {
  font-size: 14px;
  color: #475569;
  font-weight: 500;
  letter-spacing: .1px;
}

/* Responsive: mobile/tablet — image stacks below, pill repositions */
@media(max-width:1199px) {
  .hero-stat-pill {
    left: auto;
    right: 8px;
    top: auto;
    bottom: 24px;
    transform: none;
    animation: none
  }
}

@media(max-width:600px) {
  .hero-stat-pill {
    min-width: auto;
    padding: 10px 16px 10px 10px;
    gap: 10px;
    bottom: 12px;
    right: 12px
  }

  .hero-stat-icon {
    width: 36px;
    height: 36px
  }

  .hero-stat-icon svg {
    width: 18px;
    height: 18px
  }

  .hero-stat-num {
    font-size: 18px
  }

  .hero-stat-label {
    font-size: 12px
  }
}

/* ============================================================
   Hero — FULL-BLEED image (eCareLTC pattern, image breaks out
   of container, touches right edge of viewport, soft mask fade
   on left edge so it blends into the page background)
   ============================================================ */
.hero {
  position: relative;
  min-height: 620px;
  padding: var(--s-5) 0 var(--s-6);
  overflow: hidden
}

.hero .container {
  position: relative;
  z-index: 2
}

.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: center;
  min-height: 540px;
  text-align: left
}

.hero .hero-grid>div:first-child {
  max-width: none;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 3
}

.hero .hero-grid h1 {
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.05
}

.hero .hero-grid .lead {
  max-width: 560px;
  margin-left: 0;
  margin-right: 0
}

.hero .hero-grid .hero-cta,
.hero .hero-grid .trial-note,
.hero .hero-grid .trust-row {
  justify-content: start;
}


@media (max-width:992px) {
  .hero .hero-grid .hero-cta,
.hero .hero-grid .trial-note,
.hero .hero-grid .trust-row {
  justify-content: center;
}

}
.hero .hero-grid .eyebrow {
  display: inline-block
}

.hero-right-spacer {
  display: block
}

/* The bleed wrapper — fills the right half of the viewport */
.hero-bleed-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55vw;
  max-width: 1180px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media(min-width:1700px) {
  .hero-bleed-wrap {
    width: 50vw
  }
}

.hero-bleed-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  /* Soft mask: fades the LEFT edge (where it meets text) into the page gradient
     so the image bleeds organically into the background. Bottom edge also fades. */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .10) 8%, rgba(0, 0, 0, .50) 18%, #000 32%, #000 100%),
    linear-gradient(to bottom, #000 65%, rgba(0, 0, 0, .7) 88%, transparent 100%);
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .10) 8%, rgba(0, 0, 0, .50) 18%, #000 32%, #000 100%),
    linear-gradient(to bottom, #000 65%, rgba(0, 0, 0, .7) 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* Floating stat overlay pill — positioned on the LEFT side of the image */
.hero-stat-pill {
  position: absolute;
  top: 46%;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 22px 14px 14px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(12, 76, 117, .22), 0 4px 12px rgba(12, 76, 117, .10);
  border: 1px solid rgba(12, 76, 117, .04);
  z-index: 4;
  transform: translateY(-50%);
  min-width: 260px;
  pointer-events: auto;
  animation: heroStatFloat 4.5s ease-in-out infinite;
}

@keyframes heroStatFloat {

  0%,
  100% {
    transform: translateY(-50%)
  }

  50% {
    transform: translateY(calc(-50% - 6px))
  }
}

.hero-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #10B981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-icon svg {
  width: 24px;
  height: 24px
}

.hero-stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px
}

.hero-stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #1B6FA6;
  letter-spacing: -.02em;
  line-height: 1
}

.hero-stat-label {
  font-size: 14px;
  color: #475569;
  font-weight: 500
}

/* Tablet (≤1199px): image collapses below text */
@media(max-width:1199px) {
  .hero {
    min-height: 0;
    overflow: visible
  }

  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    min-height: 0
  }

  .hero-right-spacer {
    display: none
  }

  .hero-bleed-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: var(--s-3);
    align-items: stretch
  }

  .hero-bleed-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
    border-radius: var(--r-lg);
    box-shadow: 0 24px 60px rgba(12, 76, 117, .20);
    -webkit-mask-image: none;
    mask-image: none
  }

  .hero-stat-pill {
    top: auto;
    bottom: 24px;
    left: 18px;
    transform: none;
    animation: none
  }
}

@media(max-width:600px) {
  .hero-stat-pill {
    min-width: auto;
    padding: 10px 16px 10px 10px;
    gap: 10px;
    bottom: 14px;
    left: 14px
  }

  .hero-stat-icon {
    width: 38px;
    height: 38px
  }

  .hero-stat-icon svg {
    width: 18px;
    height: 18px
  }

  .hero-stat-num {
    font-size: 20px
  }

  .hero-stat-label {
    font-size: 12px
  }
}

/* Hide the previously-built (now unused) classes that conflicted with the bleed pattern */
.hero-visual,
.hero-image-wrap,
.hero-image,
.hero.hero-textonly,
.hero-grid-center {
  display: revert
}

.hero-image-wrap,
.hero-image {
  display: none
}

/* ============================================================
   Hero — dashboard iframe variant (eCareVoice homepage)
   Overrides the full-bleed image pattern with an in-grid iframe
   ============================================================ */
.hero.hero-dashboard-mode {
  min-height: auto;
  padding: var(--s-5) 0 var(--s-6);
  overflow: visible
}

.hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s-5);
  align-items: center;
  min-height: 560px;
  text-align: left
}

.hero.hero-dashboard-mode .hero-grid-iframe>div:first-child {
  max-width: none
}

.hero.hero-dashboard-mode .hero-grid-iframe .lead {
  max-width: 520px
}

.hero.hero-dashboard-mode .hero-grid-iframe .hero-cta,
.hero.hero-dashboard-mode .hero-grid-iframe .trial-note,
.hero.hero-dashboard-mode .hero-grid-iframe .trust-row {
  justify-content: flex-start
}

.hero.hero-dashboard-mode .hero-grid-iframe h1 {
  font-size: clamp(36px, 4.2vw, 52px);
  line-height: 1.1
}

.hero-dashboard-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(12, 76, 117, .18), 0 4px 12px rgba(12, 76, 117, .08);
  background: #fff;
  border: 1px solid rgba(12, 76, 117, .08);
  height: 600px;
  width: 100%;
}

.hero-dashboard-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff
}

@media(max-width:1199px) {
  .hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    min-height: 0
  }

  .hero-dashboard-frame {
    height: 520px
  }
}

@media(max-width:768px) {
  .hero-dashboard-frame {
    height: 420px
  }
}

@media(max-width:560px) {
  .hero-dashboard-frame {
    height: 360px
  }
}

/* ============================================================
   MISSING SECTION STYLES — features8 / spec / marquee / steps
   ============================================================ */

/* 8-feature grid (homepage) */
.features8-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: var(--s-4);
}

@media(max-width:1100px) {
  .features8-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:600px) {
  .features8-grid {
    grid-template-columns: 1fr
  }
}

.feat8-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  min-height: 220px;
}

.feat8-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(12, 76, 117, .10);
  border-color: rgba(27, 111, 166, .25);
}

.feat8-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat8-ic svg {
  width: 24px !important;
  height: 24px !important;
  display: block;
}

.feat8-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.3;
  margin: 0;
  letter-spacing: -.01em;
}

.feat8-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}

/* Specialty marquee */
.spec-section {
  background: var(--soft);
  position: relative;
  overflow: hidden;
  padding-top: var(--s-7);
  padding-bottom: var(--s-7);
}

.spec-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(27, 111, 166, .05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.marquee-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 24px 0 32px;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-row {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
  will-change: transform;
  align-items: center;
}

.marquee-row.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 68s;
}

.marquee-stack:hover .marquee-track {
  animation-play-state: paused
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: var(--primary);
  width: 130px;
}

.marquee-item .m-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.marquee-item .m-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}

.marquee-item .m-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  text-align: center;
  letter-spacing: -.005em;
}

@media(max-width:768px) {
  .marquee-item {
    width: 110px;
    gap: 10px
  }

  .marquee-item .m-name {
    font-size: 13px
  }

  .marquee-item .m-icon {
    width: 44px;
    height: 44px
  }

  .marquee-track {
    gap: 48px
  }

  .marquee-stack {
    gap: 56px;
    padding: 16px 0
  }
}

.spec-foot {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Steps section */
.steps-section {
  background: #fff;
  position: relative;
  padding: var(--s-7) 0;
}

/* ============================================================
   HERO — full-bleed dashboard iframe (overrides previous styles)
   The iframe wrapper sits absolutely positioned to break out
   of the container all the way to the right edge of the viewport
   ============================================================ */
.hero.hero-dashboard-mode {
  position: relative;
  min-height: 680px;
  padding: var(--s-5) 0 var(--s-6);
  overflow: hidden;
}

.hero.hero-dashboard-mode .container {
  position: relative;
  z-index: 2
}

.hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: center;
  min-height: 600px;
  text-align: left;
}

.hero.hero-dashboard-mode .hero-grid-iframe>div:first-child {
  position: relative;
  z-index: 3;
  max-width: none;
}

.hero.hero-dashboard-mode .hero-grid-iframe h1 {
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.08;
}

.hero.hero-dashboard-mode .hero-grid-iframe .lead {
  max-width: 540px
}

.hero.hero-dashboard-mode .hero-grid-iframe .hero-cta,
.hero.hero-dashboard-mode .hero-grid-iframe .trial-note,
.hero.hero-dashboard-mode .hero-grid-iframe .trust-row {
  justify-content: flex-start
}

/* The dashboard frame BREAKS OUT to the right edge — sits in right half only, NEVER overlaps text */
.hero.hero-dashboard-mode .hero-dashboard-frame {
  position: absolute;
  top: 50%;
  left: 52%;
  right: 0;
  transform: translateY(-50%);
  height: 600px;
  z-index: 1;
  border-radius: var(--r-lg) 0 0 var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(12, 76, 117, .20), 0 8px 24px rgba(12, 76, 117, .10);
  background: #fff;
  border: 1px solid rgba(12, 76, 117, .10);
  border-right: 0;
}

.hero.hero-dashboard-mode .hero-dashboard-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}

@media(min-width:1700px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    left: 54%
  }
}

@media(min-width:1920px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    left: 55%
  }
}

@media(max-width:1199px) {
  .hero.hero-dashboard-mode {
    min-height: auto;
    overflow: visible
  }

  .hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
    grid-template-columns: 1fr;
    gap: var(--s-4);
    min-height: 0;
  }

  .hero.hero-dashboard-mode .hero-dashboard-frame {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    height: 520px;
    border-radius: var(--r-lg);
    border-right: 1px solid rgba(12, 76, 117, .10);
    margin-top: var(--s-3);
  }
}

@media(max-width:768px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    height: 420px
  }
}

@media(max-width:560px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    height: 340px
  }
}

/* ============================================================
   eCareLTC pattern — Specialty marquee images + Step cards
   ============================================================ */

/* Make .m-icon render <img> tags properly */
.marquee-item .m-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* eCareLTC-style 4-step card grid with images */
.steps-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}

.steps-head h2 {
  font-size: var(--t-2xl);
  margin-bottom: 8px
}

.steps-head h2 .accent {
  color: var(--primary);
  font-weight: 800
}

.steps-head p {
  color: var(--body);
  font-size: var(--t-md);
  max-width: 640px;
  margin-top: 6px
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}

@media(max-width:1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .steps-grid {
    grid-template-columns: 1fr
  }
}

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent);
}

.step-img {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFCFE, var(--accent-soft));
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.step-img img {
  width: 80%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  transition: transform .5s ease;
}

.step-card:hover .step-img img {
  transform: scale(1.06)
}

.step-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, .95) 100%);
  pointer-events: none;
}

.step-card .step-content {
  padding: var(--s-3) var(--s-3) var(--s-4);
  background: #fff;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 1;
  margin-top: -30px;
}

.step-card .step-num {
  font-size: 60px;
  font-weight: 800;
  color: var(--primary);
  line-height: .85;
  letter-spacing: -.04em;
  opacity: .85;
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
}

.step-text h4 {
  font-size: var(--t-md);
  color: var(--primary);
  font-weight: 700;
  margin: 0 0 6px;
}

.step-text p {
  font-size: var(--t-sm);
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}

.step-card .step-progress {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 76, 117, .85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .5px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(6px);
}


/* ============================================================
   NAV DROPDOWNS (ported from eCareLTC pattern)
   ============================================================ */
header.site .nav-wrap {
  position: relative;
}

header.site nav.main {
  display: flex;
  gap: 5px;
  align-items: center;
}

header.site .nav-item {
  position: relative;
  padding-bottom: 4px;
}

header.site .nav-item>button.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  color: var(--heading);
  font-size: 15px;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  transition: all .2s;
}

header.site .nav-item>button.nav-trigger:hover,
header.site .nav-item.open>button.nav-trigger {
  background: var(--accent-soft);
  color: var(--primary);
}

header.site .nav-item .caret {
  width: 11px;
  height: 11px;
  opacity: .6;
  transition: transform .2s;
}

header.site .nav-item.open .caret {
  transform: rotate(180deg);
}

header.site .nav-dd {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  padding-top: 18px;
  margin-top: 0;
  background: transparent;
  border: 0;
  display: flex !important;
  flex-direction: column;
  gap: 2px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}

header.site .nav-dd::before {
  content: '';
  display: block;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(12, 76, 117, .18), 0 2px 6px rgba(0, 0, 0, .06);
  border: 1px solid rgba(12, 76, 117, .08);
  padding: 12px;
  width: 100%;
  position: absolute;
  inset: 18px 0 0 0;
  pointer-events: none;
  z-index: -1;
}

header.site .nav-item.open .nav-dd,
header.site .nav-item:hover .nav-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

header.site .nav-dd a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  text-decoration: none;
  line-height: 1.35;
  background: #fff;
  position: relative;
  z-index: 1;
}

header.site .nav-dd a:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding-top: 16px;
}

header.site .nav-dd a:last-child {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding-bottom: 16px;
}

header.site .nav-dd a:hover {
  background: #F2F7FB;
  color: var(--primary);
  padding-left: 18px;
}

header.site .nav-dd a.dd-overview {
  font-weight: 700;
  color: var(--primary);
  border-bottom: 1px solid #eef2f6;
  margin-bottom: 4px;
}

@media (max-width: 1024px) {
  header.site nav.main {
    display: none;
  }
}

/* Mobile nav with groups (replaces previous flat nav) */
.mobile-nav .mgroup {
  border-bottom: 1px solid #eef2f6;
  padding: 6px 0;
}

.mobile-nav .mgroup>button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 16px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
}

.mobile-nav .mgroup .sublinks {
  display: none;
  padding: 4px 4px 14px;
}

.mobile-nav .mgroup.open .sublinks {
  display: block;
}

.mobile-nav .mgroup .sublinks a {
  display: block;
  padding: 10px 12px;
  color: var(--heading);
  text-decoration: none;
  font-size: 14px;
  border: 0;
  font-weight: 500;
}

.mobile-nav .mgroup .sublinks a:hover {
  background: var(--accent-soft);
  border-radius: 8px;
}

.mobile-nav .mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}

.mobile-nav .mobile-cta a {
  display: block;
  padding: 14px;
  text-align: center;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

/* List card grid for index pages (specialities, blog, etc.) */
.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: var(--s-4)
}

@media(max-width:900px) {
  .list-grid {
    grid-template-columns: 1fr
  }
}

.list-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, box-shadow .25s
}

.list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10);
  border-color: rgba(27, 111, 166, .25)
}

.list-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin: 0
}

.list-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1
}

.list-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  margin-top: 6px;
  width: fit-content;
  transition: gap .2s
}

.list-link svg {
  width: 14px;
  height: 14px
}

.list-card:hover .list-link {
  gap: 10px
}


/* ============================================================
   HERO DASHBOARD FIX — Definitive override
   Uses fixed-width positioning like ZeroDenial bleed pattern
   ============================================================ */

.hero.hero-dashboard-mode {
  position: relative !important;
  min-height: 680px !important;
  padding: var(--s-5) 0 var(--s-6) !important;
  overflow: hidden !important;
}

.hero.hero-dashboard-mode .container {
  position: relative !important;
  z-index: 5 !important;
}

.hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: var(--s-5) !important;
  align-items: center !important;
  min-height: 580px !important;
  text-align: left !important;
}

.hero.hero-dashboard-mode .hero-grid-iframe>div:first-child {
  position: relative !important;
  z-index: 10 !important;
  max-width: none !important;
}

.hero.hero-dashboard-mode .hero-grid-iframe h1 {
  font-size: clamp(36px, 4.4vw, 56px) !important;
  line-height: 1.1 !important;
}

.hero.hero-dashboard-mode .hero-grid-iframe .lead {
  max-width: 520px !important;
}

.hero.hero-dashboard-mode .hero-grid-iframe .hero-cta,
.hero.hero-dashboard-mode .hero-grid-iframe .trial-note,
.hero.hero-dashboard-mode .hero-grid-iframe .trust-row {
  justify-content: flex-start !important;
}

/* Dashboard iframe — pinned to RIGHT side, FIXED WIDTH (50vw) */
.hero.hero-dashboard-mode .hero-dashboard-frame {
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  width: 50vw !important;
  max-width: 920px !important;
  height: 600px !important;
  z-index: 2 !important;
  border-radius: 20px 0 0 20px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 80px rgba(12, 76, 117, .20), 0 8px 24px rgba(12, 76, 117, .10) !important;
  background: #fff !important;
  border: 1px solid rgba(12, 76, 117, .10) !important;
  border-right: 0 !important;
}

.hero.hero-dashboard-mode .hero-dashboard-frame iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
  background: #fff !important;
}

@media(min-width: 1700px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    width: 48vw !important;
    max-width: 1000px !important;
  }
}

@media(max-width: 1199px) {
  .hero.hero-dashboard-mode {
    min-height: 0 !important;
    overflow: visible !important;
  }

  .hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
    grid-template-columns: 1fr !important;
    gap: var(--s-4) !important;
    min-height: 0 !important;
  }

  .hero.hero-dashboard-mode .hero-dashboard-frame {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 520px !important;
    border-radius: 20px !important;
    border-right: 1px solid rgba(12, 76, 117, .10) !important;
    margin-top: var(--s-3) !important;
  }
}

@media(max-width: 768px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    height: 420px !important;
  }
}

@media(max-width: 560px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    height: 340px !important;
  }
}


/* ============================================================
   FINAL HERO FIX — Text LEFT, dashboard BLEEDS off right edge
   Container stays 1480px max; iframe extends to viewport's right edge
   Plus: left-bottom navy gradient overlay (matches eCareLTC/)
   ============================================================ */

/* Reset everything */
.hero.hero-dashboard-mode,
section.hero.hero-dashboard-mode {
  position: relative !important;
  min-height: auto !important;
  padding: 60px 0 80px !important;
  overflow: visible !important;
}

.hero.hero-dashboard-mode::before,
.hero.hero-dashboard-mode::after {
  display: none !important;
  content: none !important;
}

.hero.hero-dashboard-mode .container {
  position: relative !important;
  z-index: 2 !important;
  overflow: visible !important;
}

/* 2-column grid: text left, iframe right (iframe will bleed out of container) */
.hero.hero-dashboard-mode .hero-grid,
.hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) !important;
  gap: 48px !important;
  align-items: center !important;
  min-height: 560px !important;
  text-align: left !important;
  overflow: visible !important;
}

.hero.hero-dashboard-mode .hero-grid>div:first-child {
  position: relative !important;
  z-index: 3 !important;
  max-width: none !important;
}

.hero.hero-dashboard-mode .hero-grid h1 {
  font-size: clamp(36px, 4.2vw, 52px) !important;
  line-height: 1.1 !important;
}

.hero.hero-dashboard-mode .hero-grid .lead {
  max-width: 520px !important;
}

.hero.hero-dashboard-mode .hero-grid .hero-cta,
.hero.hero-dashboard-mode .hero-grid .trial-note,
.hero.hero-dashboard-mode .hero-grid .trust-row {
  justify-content: flex-start !important;
}

/* Iframe wrapper RIGHT column — extends to viewport right edge (bleed) */
.hero.hero-dashboard-mode .hero-dashboard-frame {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: auto !important;
  max-width: none !important;
  height: 560px !important;
  /* Negative right margin pulls right edge to viewport boundary */
  margin-right: min(0px, calc((1480px - 100vw) / 2)) !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  background: transparent !important;
  border: 0 !important;
  z-index: 1 !important;
  isolation: isolate !important;
  /* Soft fade mask — fades dashboard out at the LEFT edge and BOTTOM */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .15) 8%, rgba(0, 0, 0, .55) 18%, #000 32%, #000 100%),
    linear-gradient(to bottom, #000 60%, transparent 100%) !important;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .15) 8%, rgba(0, 0, 0, .55) 18%, #000 32%, #000 100%),
    linear-gradient(to bottom, #000 60%, transparent 100%) !important;
  -webkit-mask-composite: source-over !important;
  mask-composite: add !important;
}

.hero.hero-dashboard-mode .hero-dashboard-frame iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block !important;
  background: #fff !important;
  position: relative !important;
  z-index: 1 !important;
  border-radius: 16px !important;
}

/* Remove the previous gradient overlay (replaced by mask fade) */
.hero.hero-dashboard-mode .hero-dashboard-frame::before {
  display: none !important;
  content: none !important;
}

/* Stat pill positioned over the LEFT edge of the iframe (relative to its container) */
.hero.hero-dashboard-mode .hero-stat-pill-v2 {
  position: absolute !important;
  top: 38% !important;
  left: 24px !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  z-index: 5 !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: #fff !important;
  padding: 14px 22px 14px 14px !important;
  border-radius: 14px !important;
  box-shadow: 0 20px 50px rgba(12, 76, 117, .22), 0 4px 12px rgba(12, 76, 117, .08) !important;
  border: 1px solid rgba(12, 76, 117, .06) !important;
  min-width: 240px !important;
  animation: heroStatFloat 4.5s ease-in-out infinite !important;
}

/* Responsive bleed (matches container ladder): aligns iframe right edge with viewport */
@media (min-width: 1600px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    margin-right: calc((1480px - 100vw) / 2) !important;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    margin-right: calc((1320px - 100vw) / 2) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    margin-right: calc((1140px - 100vw) / 2) !important;
  }
}

@media (max-width: 1199px) {

  .hero.hero-dashboard-mode .hero-grid,
  .hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    min-height: 0 !important;
  }

  .hero.hero-dashboard-mode .hero-dashboard-frame {
    height: 520px !important;
    margin-right: 0 !important;
    border-radius: 16px !important;
    border-right: 1px solid rgba(12, 76, 117, .08) !important;
  }

  .hero.hero-dashboard-mode .hero-stat-pill-v2 {
    top: auto !important;
    bottom: 16px !important;
    left: 16px !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 768px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    height: 420px !important;
  }

  .hero.hero-dashboard-mode .hero-dashboard-frame::before {
    width: 70% !important;
    height: 55% !important;
  }
}

@media (max-width: 560px) {
  .hero.hero-dashboard-mode .hero-dashboard-frame {
    height: 340px !important;
  }

  .hero.hero-dashboard-mode .hero-stat-pill-v2 {
    min-width: auto !important;
    padding: 10px 16px 10px 10px !important;
    gap: 10px !important;
  }
}

/* ============================================================
   INTERNAL PAGE HEROES — centered (no right-side image yet)
   Targets every `.hero` EXCEPT the homepage dashboard hero.
   Mirrors the `.page-hero` centered treatment used on legal/about pages.
   ============================================================ */
section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) {
  padding: 120px 0 60px !important;
  background: linear-gradient(180deg, #E8F0F7 0%, #FFFFFF 100%) !important;
  text-align: center !important;
  min-height: auto !important;
  overflow: visible !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed)::before,
section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed)::after {
  display: none !important;
  content: none !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .container {
  max-width: 940px !important;
  position: relative !important;
  z-index: 2 !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .hero-grid {
  display: block !important;
  grid-template-columns: 1fr !important;
  gap: 0 !important;
  min-height: 0 !important;
  text-align: center !important;
  max-width: 820px !important;
  margin: 0 auto !important;
}

/* Hide the empty right-column placeholder div */
section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .hero-grid>div[aria-hidden],
section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .hero-grid>div:nth-child(2):empty {
  display: none !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .hero-grid>div:first-child {
  max-width: none !important;
  margin: 0 auto !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) h1 {
  font-size: clamp(36px, 4.6vw, 56px) !important;
  line-height: 1.1 !important;
  margin: 14px 0 16px !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) h1 .accent {
  color: var(--primary) !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .eyebrow {
  display: inline-block !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .lead {
  max-width: 680px !important;
  margin: 0 auto 28px !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .hero-cta {
  justify-content: center !important;
  flex-wrap: wrap !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .trial-note,
section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .hero-trust,
section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .hero-trust .trust-row {
  justify-content: center !important;
  display: flex !important;
  flex-wrap: wrap !important;
}

section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) .hero-trust {
  margin-top: 24px !important;
}

@media (max-width: 768px) {
  section.hero:not(.hero-dashboard-mode):not(.ev-hero-bleed) {
    padding: 90px 0 48px !important;
  }
}



/* =====================================================================
   eCareVoice OVERRIDES — applied on top of inherited eCareVoice design
   ===================================================================== */

:root {
  /* Match live ecarevoice.ai exactly — accent is #0C4C75 (same as --primary) */
  --ev-navy: #0C4C75;
  --ev-navy-dark: #093A5C;
  --ev-navy-50: #EEF3FB;
  --ev-navy-100: #DCE6F4;
  --ev-ink-500: #5b6b80;
  --ev-success: #1c8a5e;
  --ev-line: rgba(15, 36, 70, .10);
}

/* Re-tint primary to the eCareVoice navy for buttons / accents */
.ev-nav .btn.btn-primary,
.btn.btn-primary {
  background: var(--ev-navy) !important;
  border-color: var(--ev-navy) !important;
  padding: 18px 32px;
    font-size: var(--t-base);
}

.btn.btn-primary:hover {
  background: var(--ev-navy-dark) !important;
  border-color: var(--ev-navy-dark) !important;
}

.btn.btn-outline {
  color: var(--ev-navy) !important;
  border-color: var(--ev-navy) !important;
  background: #fff !important;
  padding: 18px 32px;
    font-size: var(--t-base);
}

.btn.btn-outline:hover {
  background: var(--ev-navy-50) !important;
}

.btn.full {
  width: 100%;
  justify-content: center;
}

.btn.btn-on-dark {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .35) !important;
}

.btn.btn-on-dark:hover {
  background: rgba(255, 255, 255, .10) !important;
}

/* Accent + h1 .accent re-tint */
.accent,
h1 .accent,
h2 .accent,
h3 .accent {
  color: var(--ev-navy) !important;
}

/* Italic warm accent — used on hero h1 + headings */
.ev-italic {
  font-family: 'Manrope', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--ev-navy);
}

/* =====================================================================
   NAV — simple horizontal links (overrides dropdown nav from eCareVoice)
   ===================================================================== */
/* Header wrapper is TRANSPARENT — the body gradient shows through behind it.
   Only the inner .nav-wrap (the floating pill) has the white background. */
header.site.ev-nav {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 0 !important;
}

.nav-wrap{
  border: 1px solid var(--Stroke-1, #E0E0E0) !important;

}

.ev-nav .nav-wrap {
  padding-top: 14px;
  padding-bottom: 14px;
  border-radius: 24px !important;
}

.ev-nav .logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  color: var(--ev-navy);
  font-size: 18px;
  letter-spacing: -0.01em;
}

.ev-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ev-navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ev-logo-mark svg {
  width: 20px;
  height: 20px;
}

.ev-logo-text {
  font-weight: 700;
}

/* Main nav — flat links, no dropdowns */
.ev-main-nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ev-main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: #0F172A;
  font-weight: 500;
  font-size: 15px;
  transition: background .15s, color .15s;
}


@media (max-width: 991px) {
  .ev-main-nav {
    display: none;
  }
}

/* Mobile nav simplification */
.ev-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;
}

.ev-mobile-links a {
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #0F172A;
  font-weight: 600;
  font-size: 17px;
}

.ev-mobile-links a:hover {
  background: var(--ev-navy-50);
  color: var(--ev-navy);
}

/* =====================================================================
   HERO — pill, pulse-circle visual
   ===================================================================== */
.hero.ev-hero {
  padding: 80px 0 100px !important;
  background: linear-gradient(180deg, #F4F8FD 0%, #FFFFFF 100%) !important;
  overflow: visible !important;
}

.hero.ev-hero .hero-grid.ev-hero-grid {
  grid-template-columns: 1.05fr 1fr !important;
  align-items: center;
  gap: 60px;
}

@media (max-width: 991px) {
  .hero.ev-hero .hero-grid.ev-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
}

.ev-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--ev-navy-50);
  color: var(--ev-navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: none !important;
}

.ev-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1c8a5e;
  box-shadow: 0 0 0 0 rgba(28, 138, 94, .5);
  animation: ev-dot-pulse 2s ease-out infinite;
}

@keyframes ev-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(28, 138, 94, .45);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(28, 138, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(28, 138, 94, 0);
  }
}

.hero.ev-hero h1 {
  font-size: clamp(40px, 5vw, 62px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  margin: 18px 0 22px !important;
}

/* Voice pulse animated visual (right column) */
.ev-pulse-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
}

.ev-pulse-stack {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--ev-navy);
  opacity: 0;
  animation: ev-ring 4s ease-out infinite;
}

.ev-ring:nth-child(2) {
  animation-delay: 1.3s;
}

.ev-ring:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes ev-ring {
  0% {
    transform: scale(.55);
    opacity: .55;
  }

  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.ev-pulse-core {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ev-navy) 0%, var(--ev-navy-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgba(14, 68, 134, .35), 0 8px 20px rgba(14, 68, 134, .2);
  z-index: 2;
}

@media (max-width: 768px) {
  .ev-pulse-wrap {
    min-height: 320px;
  }

  .ev-pulse-stack {
    width: 260px;
    height: 260px;
  }

  .ev-pulse-core {
    width: 150px;
    height: 150px;
  }
}

/* =====================================================================
   LOGO CLOUD — redesigned with brand monograms + hover lift + stats strip
   ===================================================================== */
.ev-logo-cloud-sec {
  padding: 80px 0 !important;
  background:
    radial-gradient(ellipse 60% 100% at 100% 50%, rgba(189, 213, 234, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(232, 241, 248, 0.5) 30%, rgba(232, 241, 248, 0.5) 70%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.ev-logo-cloud-sec::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 68, 134, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.ev-logo-cloud-sec>.container {
  position: relative;
  z-index: 2;
}

.ev-logo-cloud-head {
  text-align: center;
  margin: 0 auto 40px;
}

.ev-logo-cloud-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ev-navy, #0E4486);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(14, 68, 134, 0.08);
  margin-bottom: 14px;
}

.ev-logo-cloud-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0F172A;
  margin: 0 0 10px;
  line-height: 1.2;
}

.ev-logo-cloud-sub {
  color: var(--ev-ink-500);
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

.ev-logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.ev-logo-cloud-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 22px 16px;
  border: 1px solid rgba(14, 68, 134, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(232, 241, 248, 0.4) 100%);
  box-shadow: 0 4px 16px rgba(14, 68, 134, 0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

.ev-logo-cloud-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 68, 134, 0) 0%, rgba(14, 68, 134, 0.04) 100%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.ev-logo-cloud-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(14, 68, 134, 0.12);
  border-color: rgba(14, 68, 134, 0.18);
}

.ev-logo-cloud-item:hover::after {
  opacity: 1;
}

.ev-logo-mono {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 10px rgba(14, 68, 134, 0.18);
}

.ev-mono-1 {
  background: linear-gradient(135deg, #0E4486 0%, #1B6FA6 100%);
}

.ev-mono-2 {
  background: linear-gradient(135deg, #0A3268 0%, #0E4486 100%);
}

.ev-mono-3 {
  background: linear-gradient(135deg, #1B6FA6 0%, #2E8AC4 100%);
}

.ev-mono-4 {
  background: linear-gradient(135deg, #0E4486 0%, #0A3268 100%);
}

.ev-mono-5 {
  background: linear-gradient(135deg, #2E8AC4 0%, #1B6FA6 100%);
}

.ev-mono-6 {
  background: linear-gradient(135deg, #1B6FA6 0%, #0E4486 100%);
}

.ev-logo-name {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Stats strip below the logos */
.ev-logo-cloud-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid rgba(14, 68, 134, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(14, 68, 134, 0.06);
  max-width: 920px;
  margin: 0 auto;
}

.ev-lcs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.ev-lcs-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--ev-navy, #0E4486);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ev-lcs-label {
  font-size: 13px;
  color: var(--ev-ink-500);
  font-weight: 500;
}

.ev-lcs-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 68, 134, 0.2) 50%, transparent 100%);
}

@media (max-width: 991px) {
  .ev-logo-cloud {
    grid-template-columns: repeat(3, 1fr);
  }

  .ev-logo-cloud-stats {
    gap: 20px;
    padding: 22px;
  }

  .ev-lcs-num {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .ev-logo-cloud {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ev-logo-cloud-item {
    padding: 16px 12px;
    gap: 10px;
  }

  .ev-logo-mono {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .ev-logo-name {
    font-size: 13px;
  }

  .ev-lcs-divider {
    display: none;
  }
}

/* =====================================================================
   FEATURE CARDS (6 cards — homepage + how-it-works architecture)
   ===================================================================== */
.ev-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .ev-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ev-feature-grid {
    grid-template-columns: 1fr;
  }
}

.ev-feat-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.ev-feat-card:hover {
  border-color: rgba(14, 68, 134, .25);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14, 68, 134, .08);
}

.ev-feat-ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ev-navy-50);
  color: var(--ev-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.ev-feat-ic svg {
  width: 22px;
  height: 22px;
}

.ev-feat-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 8px;
}

.ev-feat-card p {
  color: var(--ev-ink-500);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* =====================================================================
   TRANSCRIPT DEMO SECTION
   ===================================================================== */
.ev-transcript-sec {
  background: linear-gradient(180deg, transparent, var(--ev-navy-50) 30%, transparent) !important;
}

.ev-transcript-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .ev-transcript-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.ev-bars-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ev-ink-500);
  font-size: 14px;
  margin-top: 18px;
}

.ev-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.ev-bars span {
  width: 3px;
  background: var(--ev-navy);
  border-radius: 2px;
  animation: ev-wave 1.4s ease-in-out infinite;
}

.ev-bars span:nth-child(1) {
  animation-delay: 0s;
  height: 40%;
}

.ev-bars span:nth-child(2) {
  animation-delay: .15s;
  height: 80%;
}

.ev-bars span:nth-child(3) {
  animation-delay: .3s;
  height: 60%;
}

.ev-bars span:nth-child(4) {
  animation-delay: .45s;
  height: 100%;
}

.ev-bars span:nth-child(5) {
  animation-delay: .6s;
  height: 70%;
}

@keyframes ev-wave {

  0%,
  100% {
    transform: scaleY(.4);
  }

  50% {
    transform: scaleY(1);
  }
}

.ev-transcript {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(14, 68, 134, .10);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ev-bubble {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14.5px;
  line-height: 1.5;
}

.ev-bubble.agent {
  background: var(--ev-navy-50);
  color: #0F172A;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ev-bubble.caller {
  background: var(--ev-navy);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ev-who {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .7;
}

.ev-bubble.caller .ev-who {
  opacity: .8;
}

.ev-text {
  font-weight: 500;
}

.ev-extracted {
  margin-top: 12px;
  padding: 16px;
  background: #FAFCFE;
  border: 1px dashed rgba(14, 68, 134, .25);
  border-radius: 12px;
}

.ev-extracted-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ev-navy);
  margin-bottom: 10px;
}

.ev-extracted-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.ev-field {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(14, 68, 134, .06);
}

.ev-field.full {
  grid-column: 1 / -1;
}

.ev-field span:first-child {
  color: var(--ev-ink-500);
}

.ev-field span:last-child {
  font-weight: 600;
  color: #0F172A;
}

/* =====================================================================
   STATS
   ===================================================================== */
.ev-stats-sec {
  background: #fff;
  border-top: 1px solid var(--ev-line);
  border-bottom: 1px solid var(--ev-line);
}

.ev-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

@media (max-width: 768px) {
  .ev-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ev-stat-num {
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 700;
  color: var(--ev-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ev-stat-label {
  margin-top: 8px;
  color: var(--ev-ink-500);
  font-size: 15px;
}

/* =====================================================================
   DARK CTA BANNER
   ===================================================================== */
.ev-cta-dark {
  background: linear-gradient(135deg, var(--ev-navy) 0%, var(--ev-navy-dark) 100%);
  color: #fff;
  padding: 64px 48px;
  border-radius: 20px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.ev-cta-dark h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff !important;
}

.ev-cta-dark h2 .accent,
.ev-cta-dark h2 .ev-italic {
  color: rgba(255, 255, 255, .85) !important;
}

.ev-cta-dark p {
  font-size: 17px;
  color: rgba(255, 255, 255, .85);
  margin: 0 auto 28px;
  max-width: 540px;
  line-height: 1.6;
}

.ev-cta-dark-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ev-cta-dark .btn.btn-light {
  background: #fff !important;
  color: var(--ev-navy) !important;
  border-color: #fff !important;
}

@media (max-width: 600px) {
  .ev-cta-dark {
    padding: 48px 24px;
  }
}

/* =====================================================================
   FEATURES PAGE — numbered cards
   ===================================================================== */
.ev-numbered-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .ev-numbered-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .ev-numbered-grid {
    grid-template-columns: 1fr;
  }
}

.ev-num-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}

.ev-num-card:hover {
  border-color: rgba(14, 68, 134, .25);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(14, 68, 134, .08);
}

.ev-num-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ev-ink-500);
  margin-bottom: 12px;
}

.ev-num-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.ev-num-card p {
  color: var(--ev-ink-500);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Integrations grid */
.ev-integrations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ev-int-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
}

.ev-int-name {
  font-weight: 600;
  color: #0F172A;
}

.ev-int-tag {
  font-size: 13px;
  color: var(--ev-ink-500);
  margin-top: 4px;
}

/* =====================================================================
   HOW IT WORKS — steps + timeline
   ===================================================================== */
.ev-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .ev-steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.ev-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ev-line);
}

.ev-step:last-child {
  border-bottom: 0;
}

.ev-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ev-navy-50);
  color: var(--ev-navy);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ev-step.ev-step-active .ev-step-num {
  background: var(--ev-navy);
  color: #fff;
}

.ev-step-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
}

.ev-step-body p {
  color: var(--ev-ink-500);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.ev-timeline {
  background: #FAFCFE;
  border: 1px solid var(--ev-line);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 100px;
}

.ev-timeline-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--ev-line);
  font-size: 14px;
}

.ev-timeline-row:last-child {
  border-bottom: 0;
}

.ev-timeline-row span:first-child {
  color: var(--ev-ink-500);
  font-weight: 600;
}

.ev-timeline-row span:last-child {
  color: #0F172A;
  font-weight: 500;
}

.ev-timeline-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--ev-line);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ev-success);
  font-size: 14px;
  font-weight: 500;
}

/* =====================================================================
   PRICING — 3 tiers + worked example
   ===================================================================== */
.ev-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 991px) {
  .ev-price-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

.ev-price-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.ev-price-card.ev-price-featured {
  border: 2px solid var(--ev-navy);
  box-shadow: 0 24px 60px rgba(14, 68, 134, .15);
  transform: scale(1.02);
}

.ev-price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ev-navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.ev-price-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
}

.ev-price-sub {
  color: var(--ev-ink-500);
  font-size: 14px;
  margin: 0 0 20px;
  line-height: 1.5;
}

.ev-price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.ev-price-amount {
  font-size: 44px;
  font-weight: 700;
  color: var(--ev-navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ev-price-period {
  color: var(--ev-ink-500);
  font-size: 15px;
  font-weight: 500;
}

.ev-price-extra {
  color: var(--ev-ink-500);
  font-size: 13px;
  margin: 8px 0 24px;
}

.ev-price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.ev-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: #0F172A;
}

.ev-price-features li svg {
  color: var(--ev-success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Worked example */
.ev-worked-example {
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: 16px;
  padding: 32px;
}

.ev-we-block {
  font-size: 14px;
}

.ev-we-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.ev-we-row span:first-child {
     color: var(--body);

}

.ev-we-row span:last-child {
  font-weight: 600;
  color: #0F172A;
}

.ev-we-divider {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ev-line);
}

.ev-we-total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ev-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ev-we-total>span:first-child {
  font-weight: 600;
  color: #0F172A;
}

.ev-we-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--ev-navy);
  letter-spacing: -0.02em;
}

.ev-we-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ev-ink-500);
  line-height: 1.5;
}

/* =====================================================================
   ABOUT — prose
   ===================================================================== */
.ev-prose {
  margin: 0 auto;
}

.ev-prose p {
  font-size: 18px;
  line-height: 1.7;
  color: #0F172A;
  margin: 0 0 22px;
}

/* =====================================================================
   CONTACT — grid + form
   ===================================================================== */
.ev-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .ev-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.ev-contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ev-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ev-contact-ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ev-navy-50);
  color: var(--ev-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ev-contact-primary {
  font-weight: 600;
  color: #0F172A;
  font-size: 16px;
}

.ev-contact-primary a {
  color: inherit;
  text-decoration: none;
}

.ev-contact-primary a:hover {
  color: var(--ev-navy);
}

.ev-contact-secondary {
  color: var(--ev-ink-500);
  font-size: 13px;
  margin-top: 2px;
}

.ev-contact-form-card {
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(14, 68, 134, .06);
}

.ev-form-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ev-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ev-form-field label {
  font-size: 13px;
  font-weight: 600;
  color: #0F172A;
}

.ev-form-field input,
.ev-form-field select,
.ev-form-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--ev-line);
  border-radius: 10px;
  background: #FAFCFE;
  color: #0F172A;
  transition: border-color .15s, background .15s;
  width: 100%;
  resize: vertical;
}

.ev-form-field input:focus,
.ev-form-field select:focus,
.ev-form-field textarea:focus {
  outline: none;
  border-color: var(--ev-navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 68, 134, .12);
}

.ev-form-thanks {
  text-align: center;
  padding: 32px 0;
}

.ev-form-thanks-ic {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--ev-success);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ev-form-thanks h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin: 0 0 6px;
}

.ev-form-thanks p {
  color: var(--ev-ink-500);
  margin: 0;
}

/* =====================================================================
   Internal page hero — centered (overrides eCareVoice's two-col)
   ===================================================================== */
/* Only centers internal page heroes (Pricing/About/Contact/How-it-works) —
   excludes the homepage bleed-right hero and the Features page hero */
section.hero:not(.ev-hero):not(.ev-hero-bleed):not(.hero-dashboard-mode) {
  text-align: center !important;
  padding: 100px 0 60px !important;
  background: linear-gradient(180deg, #F4F8FD 0%, #FFFFFF 100%) !important;
}

section.hero:not(.ev-hero):not(.ev-hero-bleed):not(.hero-dashboard-mode) .hero-grid {
  display: block !important;
  grid-template-columns: 1fr !important;
  max-width: 820px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

section.hero:not(.ev-hero):not(.ev-hero-bleed):not(.hero-dashboard-mode) .hero-grid>div[aria-hidden],
section.hero:not(.ev-hero):not(.ev-hero-bleed):not(.hero-dashboard-mode) .hero-grid>div:nth-child(2):empty {
  display: none !important;
}

section.hero:not(.ev-hero):not(.ev-hero-bleed):not(.hero-dashboard-mode) h1 {
  font-size: clamp(38px, 4.6vw, 56px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
}

section.hero:not(.ev-hero):not(.ev-hero-bleed):not(.hero-dashboard-mode) .lead {
  max-width: 680px;
  margin: 0 auto 28px !important;
}

/* =====================================================================
   Override foot-cta accent + footer link color
   ===================================================================== */
footer.site .foot-cta h3 .accent {
  color: rgba(255, 255, 255, .78) !important;
}

footer.site {
  background: linear-gradient(180deg, var(--ev-navy-dark) 0%, var(--ev-navy) 100%) !important;
}

/* Section padding harmonisation */
section {
  padding: 90px 0;
}

section.ev-stats-sec {
  padding: 64px 0;
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}

/* Section intro */
.sec-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.sec-intro h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
}

.sec-intro p {
  color: var(--ev-ink-500);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.sec-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ev-navy);
}

/* =====================================================================
   FINAL OVERRIDES — eCareVoice now uses eCareVoice hero-dashboard-mode
   (kills the earlier centering rule + handles <img> inside hero frame)
   ===================================================================== */

/* Restore left-aligned 2-col hero on every page (override earlier centering) */
section.hero.hero-dashboard-mode {
  text-align: left !important;
  padding: 60px 0 80px !important;
  background: linear-gradient(180deg, #F4F8FD 0%, #FFFFFF 100%) !important;
}

/* Container stays bound to the standard responsive ladder so the hero
   aligns with the nav and the rest of the site above it. */
section.hero.hero-dashboard-mode .container {
  /* deliberately NOT overriding max-width — inherit the global container ladder */
  padding-left: 24px !important;
  padding-right: 24px !important;
}

section.hero.hero-dashboard-mode .hero-grid,
section.hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) !important;
  gap: 48px !important;
  align-items: center !important;
  text-align: left !important;
  max-width: none !important;
  margin: 0 !important;
}

section.hero.hero-dashboard-mode .hero-grid>div:first-child {
  text-align: left !important;
  max-width: none !important;
  margin: 0 !important;
}

section.hero.hero-dashboard-mode .hero-grid h1,
section.hero.hero-dashboard-mode h1 {
  text-align: left !important;
}

section.hero.hero-dashboard-mode .lead {
  margin: 0 0 28px !important;
  max-width: 540px !important;
}

section.hero.hero-dashboard-mode .hero-cta,
section.hero.hero-dashboard-mode .trial-note,
section.hero.hero-dashboard-mode .trust-row {
  justify-content: flex-start !important;
}

@media (max-width: 991px) {

  section.hero.hero-dashboard-mode .hero-grid,
  section.hero.hero-dashboard-mode .hero-grid.hero-grid-iframe {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
}

/* KILL inherited bleed-right rules from eCareVoice — eCareVoice hero stays
   inside the container, not extending off the right edge of the viewport. */
section.hero.hero-dashboard-mode .hero-dashboard-frame {
  margin-right: 0 !important;
  margin-left: 0 !important;
  width: 100% !important;
}

@media (min-width: 1600px) {
  section.hero.hero-dashboard-mode .hero-dashboard-frame {
    margin-right: 0 !important;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  section.hero.hero-dashboard-mode .hero-dashboard-frame {
    margin-right: 0 !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  section.hero.hero-dashboard-mode .hero-dashboard-frame {
    margin-right: 0 !important;
  }
}

/* IMAGE inside hero-dashboard-frame (overrides iframe-specific mask treatment) */
.hero-dashboard-frame.ev-img-frame {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow:
    0 24px 64px rgba(14, 68, 134, .18),
    0 4px 12px rgba(14, 68, 134, .08) !important;
  background: #F4F8FD !important;
  border: 1px solid rgba(14, 68, 134, .10) !important;
  height: 520px !important;
  width: 100% !important;
  margin: 0 !important;
  position: relative !important;
}

.hero-dashboard-frame.ev-img-frame::before,
.hero-dashboard-frame.ev-img-frame::after {
  display: none !important;
  content: none !important;
}

.hero-dashboard-frame.ev-img-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  border-radius: 16px !important;
}

@media (max-width: 1199px) {
  .hero-dashboard-frame.ev-img-frame {
    height: 440px !important;
  }
}

@media (max-width: 768px) {
  .hero-dashboard-frame.ev-img-frame {
    height: 320px !important;
  }
}

/* Internal page hero — slightly smaller image frame to keep balance */
.ev-internal-hero .hero-dashboard-frame.ev-img-frame {
  height: 440px !important;
}

@media (max-width: 768px) {
  .ev-internal-hero .hero-dashboard-frame.ev-img-frame {
    height: 300px !important;
  }
}

/* H1 sizing harmonisation */
section.hero.hero-dashboard-mode h1 {
  font-size: clamp(36px, 4.4vw, 54px) !important;
  line-height: 1.08 !important;
  margin: 14px 0 18px !important;
  letter-spacing: -0.02em !important;
}

/* Hide the .ev-hero-only rule that may still match — defensive */
section.hero:not(.ev-hero):not(.hero-dashboard-mode) {
  /* legacy fallback only — no pages should match this now */
  text-align: left !important;
}

/* =====================================================================
   HERO RIGHT VISUAL — phone-pulse animation (from eCareVoice source)
   No external images. Pure CSS + SVG icon.
   ===================================================================== */
.hero-dashboard-frame.ev-pulse-frame {
  /* Strip every iframe/img treatment */
  -webkit-mask-image: none !important;
  mask-image: none !important;
  background: radial-gradient(ellipse at center,
      rgba(14, 68, 134, .08) 0%,
      rgba(14, 68, 134, .03) 45%,
      transparent 75%) !important;
  border: 0 !important;
  border-radius: 24px !important;
  box-shadow: none !important;
  overflow: visible !important;
  height: 520px !important;
  width: 100% !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}

.hero-dashboard-frame.ev-pulse-frame::before,
.hero-dashboard-frame.ev-pulse-frame::after {
  display: none !important;
  content: none !important;
}

.hero-dashboard-frame.ev-pulse-frame .ev-pulse-stack {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-dashboard-frame.ev-pulse-frame .ev-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--ev-navy, #0E4486);
  opacity: 0;
  animation: ev-ring-anim 4s ease-out infinite;
}

.hero-dashboard-frame.ev-pulse-frame .ev-ring:nth-child(1) {
  animation-delay: 0s;
}

.hero-dashboard-frame.ev-pulse-frame .ev-ring:nth-child(2) {
  animation-delay: 1.3s;
}

.hero-dashboard-frame.ev-pulse-frame .ev-ring:nth-child(3) {
  animation-delay: 2.6s;
}

.hero-dashboard-frame.ev-pulse-frame .ev-ring-soft {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 68, 134, .08) 0%, rgba(14, 68, 134, .02) 60%, transparent 80%);
}

@keyframes ev-ring-anim {
  0% {
    transform: scale(.45);
    opacity: .65;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.hero-dashboard-frame.ev-pulse-frame .ev-pulse-core {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ev-navy, #0E4486) 0%, var(--ev-navy-dark, #0A3268) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 30px 70px rgba(14, 68, 134, .35),
    0 8px 20px rgba(14, 68, 134, .2),
    inset 0 1px 0 rgba(255, 255, 255, .15);
  z-index: 2;
}

/* Internal page heroes get a slightly smaller pulse */
.ev-internal-hero .hero-dashboard-frame.ev-pulse-frame {
  height: 440px !important;
}

.ev-internal-hero .hero-dashboard-frame.ev-pulse-frame .ev-pulse-stack {
  width: 320px;
  height: 320px;
}

.ev-internal-hero .hero-dashboard-frame.ev-pulse-frame .ev-pulse-core {
  width: 170px;
  height: 170px;
}

@media (max-width: 991px) {
  .hero-dashboard-frame.ev-pulse-frame {
    height: 380px !important;
  }

  .hero-dashboard-frame.ev-pulse-frame .ev-pulse-stack {
    width: 280px;
    height: 280px;
  }

  .hero-dashboard-frame.ev-pulse-frame .ev-pulse-core {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 560px) {
  .hero-dashboard-frame.ev-pulse-frame {
    height: 320px !important;
  }

  .hero-dashboard-frame.ev-pulse-frame .ev-pulse-stack {
    width: 240px;
    height: 240px;
  }

  .hero-dashboard-frame.ev-pulse-frame .ev-pulse-core {
    width: 130px;
    height: 130px;
  }
}

/* =====================================================================
   TAB PLACEHOLDER CARDS — branded visual for each .sol-row
   (replaces the eCareVoice product screenshots; no external images)
   ===================================================================== */
.ev-tab-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 360px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--ev-navy, #0E4486) 0%, var(--ev-navy-dark, #0A3268) 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14, 68, 134, .25), 0 4px 12px rgba(14, 68, 134, .12);
}

.ev-tab-placeholder-icon {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.ev-tab-placeholder-icon svg {
  width: 48px;
  height: 48px;
}

.ev-tab-placeholder-label {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.ev-tab-placeholder-sub {
  position: relative;
  z-index: 2;
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  font-weight: 500;
}

/* Decorative animated ring background */
.ev-tab-placeholder-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.ev-tab-placeholder-bg .ev-tp-ring {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .10);
  opacity: 0;
  animation: ev-ring-anim 5s ease-out infinite;
}

.ev-tab-placeholder-bg .ev-tp-ring:nth-child(2) {
  animation-delay: 1.7s;
}

.ev-tab-placeholder-bg .ev-tp-ring:nth-child(3) {
  animation-delay: 3.4s;
}

@media (max-width: 768px) {
  .ev-tab-placeholder {
    min-height: 280px;
    padding: 24px;
  }

  .ev-tab-placeholder-icon {
    width: 72px;
    height: 72px;
  }

  .ev-tab-placeholder-icon svg {
    width: 36px;
    height: 36px;
  }

  .ev-tab-placeholder-label {
    font-size: 20px;
  }
}

/* Ensure the sol-row visual container doesn't impose extra borders/shadows */
.sol-row-visual .frame.ev-tab-placeholder {
  border: 0 !important;
}

/* =====================================================================
   LIVE LOGO IMAGE — eCareVoice_Logo.svg
   Replaces inline SVG mark + wordmark with the official logo asset.
   ===================================================================== */
.ev-logo-img {
  width: auto;
  display: block;
  max-width: 200px;
}

/* @media (max-width: 768px) {
  .ev-logo-img {
    height: 34px;
  }
} */

/* Mobile nav header logo — slightly smaller */

/* Footer logo — sits on dark navy background.
   Use brightness(0) invert(1) so any SVG fill/stroke becomes pure white. */
footer.site .ev-logo-img-light {
  filter: brightness(0) invert(1);
  height: 36px;
}

/* Reset the inline-flex gap that was used for the old icon+wordmark combo */
.ev-nav .logo,
.mobile-nav .mhead .logo,
footer.site .foot-brand .logo-mark {
  gap: 0 !important;
}

/* =====================================================================
   HOMEPAGE HERO — EXACT replica of live ecarevoice.ai banner
   `.ev-hero-image-bleed` is an <img> positioned absolutely as a direct
   child of the hero section. It takes the right half of the viewport
   and uses the mask gradient to fade softly into the white background.
   ===================================================================== */

section.hero.ev-hero-bleed {
  position: relative !important;
  overflow: hidden !important;
  padding: 48px 0 80px !important;
  background: linear-gradient(120deg, #E8F1F8 0%, #F1F7FC 48%, #FFFFFF 100%) !important;
  min-height: 0 !important;
  text-align: left !important;
}

/* Force inline CTAs, inline trial note, single-row trust badges */
section.hero.ev-hero-bleed .eyebrow {
  display: inline-block !important;
  text-align: left !important;
  color: var(--primary) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
}

section.hero.ev-hero-bleed h1 {
  text-align: left !important;
  font-size: clamp(36px, 4.4vw, 56px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 22px !important;
}

section.hero.ev-hero-bleed h1 .accent {
  color: #0C4C75 !important;
  background: none !important;
  position: relative !important;
  display: inline-block !important;
}

section.hero.ev-hero-bleed h1 .accent::after {
  content: '' !important;
  display: block !important;
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(168, 199, 226, .35);
  z-index: -1;
  border-radius: 2px;
}

section.hero.ev-hero-bleed .lead {
  text-align: left !important;
  max-width: 520px !important;
  margin: 0 0 28px !important;
  font-size: 17px !important;
  line-height: 1.55 !important;
  color: #4a5562 !important;
}

section.hero.ev-hero-bleed .hero-cta {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  justify-content: flex-start !important;
  margin: 0 0 16px !important;
}

section.hero.ev-hero-bleed .hero-cta .btn {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
}

section.hero.ev-hero-bleed .trial-note {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  justify-content: flex-start !important;
  font-size: 14px !important;
  color: #4a5562 !important;
  margin: 0 0 24px !important;
}

section.hero.ev-hero-bleed .trial-note svg {
  flex-shrink: 0 !important;
  width: 16px !important;
  height: 16px !important;
  color: #1c8a5e !important;
}

/* Trust badge row — compact, single row, never wrap */
section.hero.ev-hero-bleed .ev-trust-icons {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 20px !important;
  flex-wrap: wrap !important;
  margin-top: 12px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(14, 68, 134, .10);
}

section.hero.ev-hero-bleed .ev-trust-img {
  height: 44px !important;
  width: auto !important;
  flex-shrink: 0 !important;
}

section.hero.ev-hero-bleed .ev-trust-img.ev-trust-rating-img {
  height: 36px !important;
}

@media (max-width: 1280px) {
  section.hero.ev-hero-bleed .ev-trust-img {
    height: 38px !important;
  }

  section.hero.ev-hero-bleed .ev-trust-img.ev-trust-rating-img {
    height: 32px !important;
  }

  section.hero.ev-hero-bleed .ev-trust-icons {
    gap: 14px !important;
  }
}

.ev-hero-image-bleed {
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;
  left: 50% !important;
  transform: translateY(-50%) !important;
  width: 50vw !important;
  max-width: 1080px !important;
  height: auto !important;
  aspect-ratio: 3 / 2;
  object-fit: cover !important;
  object-position: center !important;
  pointer-events: none !important;
  z-index: 1 !important;
  border-radius: 0 !important;
  /* Soft fade — left edge transitions from transparent into the page,
     bottom edge fades into the white background (exact live-site gradient) */
  -webkit-mask-image:
    linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .15) 8%, rgba(0, 0, 0, .55) 18%, #000 32%, #000 100%),
    linear-gradient(#000 60%, rgba(0, 0, 0, 0) 100%) !important;
  mask-image:
    linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .15) 8%, rgba(0, 0, 0, .55) 18%, #000 32%, #000 100%),
    linear-gradient(#000 60%, rgba(0, 0, 0, 0) 100%) !important;
  -webkit-mask-composite: source-in !important;
  mask-composite: intersect !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
  -webkit-mask-size: 100% 100% !important;
  mask-size: 100% 100% !important;
}

/* Hero content sits ABOVE the image (z-index 2) */
section.hero.ev-hero-bleed .container {
  position: relative !important;
  z-index: 2 !important;
}

/* 2-col grid: text LEFT, empty placeholder RIGHT (the image takes the right
   visually via absolute positioning, but the grid still keeps a 2-col layout
   so the text column stays at half-width on desktop) */
section.hero.ev-hero-bleed .hero-grid,
section.hero.ev-hero-bleed .hero-grid.hero-grid-iframe {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  align-items: center !important;
  min-height: 540px !important;
  text-align: left !important;
}

section.hero.ev-hero-bleed .hero-grid>div:first-child {
  position: relative !important;
  z-index: 2 !important;
}

section.hero.ev-hero-bleed .hero-grid>div:nth-child(2) {
  /* the empty right placeholder — stays visually empty,
     the absolutely positioned image overlays this area */
}

/* Stack on tablet/mobile: image sits below text at full width */
@media (max-width: 991px) {
  .ev-hero-image-bleed {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 32px !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    border-radius: 16px !important;
  }

  section.hero.ev-hero-bleed .hero-grid,
  section.hero.ev-hero-bleed .hero-grid.hero-grid-iframe {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  section.hero.ev-hero-bleed .hero-grid>div:nth-child(2) {
    display: none !important;
  }
}

/* Pill badge with green dot (matches screenshot 1) */
.eyebrow.ev-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 7px 14px !important;
  border-radius: 999px !important;
  background: rgba(14, 68, 134, .06) !important;
  border: 1px solid rgba(14, 68, 134, .10);
  color: var(--ev-navy, #0E4486) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  margin-bottom: 18px !important;
}

.ev-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1c8a5e;
  box-shadow: 0 0 0 0 rgba(28, 138, 94, .5);
  animation: ev-dot-pulse 2s ease-out infinite;
}

/* Italic accent (the "Every time." treatment from screenshot 1) */
.accent.ev-italic {
  font-style: italic !important;
  font-weight: 600 !important;
  color: #E36B3F !important;
  font-family: 'Manrope', Georgia, serif !important;
}

/* Simple inline trust row (green check + label, screenshot 1 style) */
.ev-trust-simple {
  display: flex !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
  margin-top: 8px !important;
}

.ev-trust-item {
  display: inline-flex !important;
  align-items: center;
  gap: 8px !important;
  color: #344054 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* =====================================================================
   TRUST BADGES — using LIVE eCareVoice brand assets (SVG image URLs)
   HIPAA · SOC 2 · ISO 27001 · G2 · Capterra
   ===================================================================== */
.ev-trust-icons {
  display: flex !important;
  align-items: center;
  gap: 28px !important;
  flex-wrap: wrap !important;
  margin-top: 18px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(14, 68, 134, .10);
}

.ev-trust-img {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.ev-trust-img.ev-trust-rating-img {
  height: 44px;
}

@media (max-width: 768px) {
  .ev-trust-icons {
    gap: 18px !important;
  }

  .ev-trust-img {
    height: 44px;
  }

  .ev-trust-img.ev-trust-rating-img {
    height: 36px;
  }
}

.ev-trust-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 10px !important;
}

.ev-trust-icn {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.ev-trust-stack {
  display: inline-flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
}

.ev-trust-stack strong {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.01em;
}

.ev-trust-stack em {
  font-style: normal;
  font-size: 11px;
  font-weight: 500;
  color: #6e7787;
  letter-spacing: .02em;
  margin-top: 2px;
}

/* G2 + Capterra rating badges (stacked stars + mark) */
.ev-trust-rating {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
}

.ev-trust-stars {
  display: inline-flex;
  gap: 2px;
}

.ev-trust-stars svg {
  width: 14px;
  height: 14px;
}

.ev-trust-rating-mark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: #0F172A;
}

.ev-rating-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FF492C;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.ev-rating-suffix {
  font-size: 14px;
  font-weight: 700;
}

.ev-trust-capterra {
  color: #0E4486;
}

@media (max-width: 768px) {
  .ev-trust-icons {
    gap: 18px !important;
  }

  .ev-trust-icn {
    width: 32px;
    height: 32px;
  }
}

/* The image bleeds: text col stays in container, image col extends past it */
section.hero.hero-dashboard-mode.ev-hero-bleed .hero-dashboard-frame.ev-hero-photo,
section.hero.hero-dashboard-mode.ev-hero-bleed .hero-dashboard-frame.ev-pulse-frame,
section.hero.hero-dashboard-mode.ev-hero-bleed .hero-dashboard-frame {
  margin-right: min(0px, calc((1480px - 100vw) / 2)) !important;
  margin-left: 0 !important;
  width: auto !important;
  position: relative !important;
}

@media (min-width: 1600px) {
  section.hero.hero-dashboard-mode.ev-hero-bleed .hero-dashboard-frame {
    margin-right: calc((1480px - 100vw) / 2) !important;
  }
}

@media (min-width: 1400px) and (max-width: 1599px) {
  section.hero.hero-dashboard-mode.ev-hero-bleed .hero-dashboard-frame {
    margin-right: calc((1320px - 100vw) / 2) !important;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  section.hero.hero-dashboard-mode.ev-hero-bleed .hero-dashboard-frame {
    margin-right: calc((1140px - 100vw) / 2) !important;
  }
}

@media (max-width: 1199px) {
  section.hero.hero-dashboard-mode.ev-hero-bleed .hero-dashboard-frame {
    margin-right: 0 !important;
  }
}

.hero-dashboard-frame.ev-hero-photo {
  -webkit-mask-image: none !important;
  mask-image: none !important;
  position: relative !important;
  height: 540px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 16px 0 0 16px !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #D8E4F5 0%, #B9CFE9 40%, #8FB0DC 100%) !important;
  border: 0 !important;
  border-right: 0 !important;
  box-shadow: 0 24px 60px rgba(14, 68, 134, .18), 0 4px 12px rgba(14, 68, 134, .08) !important;
}

@media (max-width: 1199px) {
  .hero-dashboard-frame.ev-hero-photo {
    border-radius: 16px !important;
  }
}

.hero-dashboard-frame.ev-hero-photo::before,
.hero-dashboard-frame.ev-hero-photo::after {
  display: none !important;
  content: none !important;
}

.hero-dashboard-frame.ev-hero-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Fallback styling when the image 404s — keeps a polished look */
.hero-dashboard-frame.ev-hero-photo.ev-img-fallback {
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .5) 0%, transparent 50%),
    linear-gradient(135deg, #B9CFE9 0%, #8FB0DC 50%, #6892C9 100%) !important;
}

.hero-dashboard-frame.ev-hero-photo.ev-img-fallback::after {
  content: 'Live oneCareVoice' !important;
  display: flex !important;
  position: absolute !important;
  inset: 0 !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 32px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: rgba(14, 68, 134, .55) !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  pointer-events: none !important;
  z-index: 3 !important;
}

/* Decorative overlay only renders if the real image FAILS — otherwise
   the live photo already has waveform + mic baked into it. */
.ev-hero-photo-overlay {
  display: none;
}

.ev-hero-photo.ev-img-fallback .ev-hero-photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.ev-hero-waveform {
  width: 60%;
  max-width: 360px;
  height: 56px;
  filter: drop-shadow(0 4px 12px rgba(14, 68, 134, .35));
}

.ev-hero-waveform g rect {
  animation: ev-wave-bar 1.6s ease-in-out infinite;
  transform-origin: center;
}

.ev-hero-waveform g rect:nth-child(odd) {
  animation-delay: 0.08s;
}

.ev-hero-waveform g rect:nth-child(3n) {
  animation-delay: 0.16s;
}

.ev-hero-waveform g rect:nth-child(4n) {
  animation-delay: 0.24s;
}

.ev-hero-waveform g rect:nth-child(5n) {
  animation-delay: 0.32s;
}

@keyframes ev-wave-bar {

  0%,
  100% {
    transform: scaleY(.55);
  }

  50% {
    transform: scaleY(1.15);
  }
}

.ev-hero-mic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1B6FA6 0%, #0E4486 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(14, 68, 134, .45), 0 6px 16px rgba(14, 68, 134, .22);
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .hero-dashboard-frame.ev-hero-photo {
    height: 460px !important;
  }

  .ev-hero-mic {
    width: 64px;
    height: 64px;
  }

  .ev-hero-mic svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 768px) {
  .hero-dashboard-frame.ev-hero-photo {
    height: 320px !important;
  }
}

/* G2/Capterra rating stars */
.ev-rating-stars {
  color: #F5A623;
  letter-spacing: 1px;
  font-size: 13px;
  margin-right: 6px;
}

/* =====================================================================
   CENTERED INTERNAL HERO — About, How It Works, Pricing, Contact
   (Features keeps the pulse on the right)
   ===================================================================== */
section.hero.hero-dashboard-mode .hero-grid.hero-grid-centered {
  display: block !important;
  grid-template-columns: 1fr !important;
  text-align: start !important;
  margin: 0 auto !important;
  min-height: 0 !important;
}

.hero-grid.hero-grid-centered .ev-hero-centered-inner {
  text-align: center !important;
  max-width: none !important;
}

.hero-grid.hero-grid-centered .ev-hero-centered-inner .lead {
  max-width: none !important;
  margin: 0 auto 28px !important;
  text-align: start !important;
}

.hero-grid.hero-grid-centered .hero-cta,
.hero-grid.hero-grid-centered .trial-note,
.hero-grid.hero-grid-centered .trust-row {
  justify-content: center !important;
}

.hero-grid.hero-grid-centered .trial-note {
  margin: 0 auto 0 !important;
}

.hero-grid.hero-grid-centered h1,
.hero-grid.hero-grid-centered .eyebrow,
.hero-grid.hero-grid-centered .lead {
  text-align: center !important;
}

section.hero.hero-dashboard-mode:has(.hero-grid-centered) {
  padding: 100px 0 60px !important;
}

/* =====================================================================
   STAT STRIP BELOW TABS (matches the "60% INBOUND CALLS AUTOMATED" card)
   ===================================================================== */
.ev-stat-strip {
  margin-top: 48px;
  background: #fff;
  border: 1px solid var(--ev-line);
  border-radius: 16px;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 12px 36px rgba(14, 68, 134, .06);
}

.ev-stat-strip-item {
  display: flex;
  gap: 14px;
  align-items: center;
}

.ev-stat-strip-item>svg {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  background: var(--ev-navy-50);
  color: var(--ev-navy);
  box-sizing: content-box;
}

.ev-strip-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--ev-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ev-strip-label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ev-ink-500);
  font-weight: 500;
}

@media (max-width: 991px) {
  .ev-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .ev-stat-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}




/* ============================================================
   eCareVoice - Home Page Stylesheet
   Production-ready: tokens, layout, components, modals, responsive
   ============================================================ */


/* ============================================================
     STRICT DESIGN SYSTEM — single source of truth
     Type: 12 / 14 / 16 / 18 / 24 / 32 / 42 / 56
     Space: 8 / 16 / 24 / 32 / 48 / 80
     Radius: 8 / 14 / 20
     Colors: brand primary + accent + neutrals only
     ============================================================ */
:root {
  /* Colors */
  --primary: #0C4C75;
  --primary-hover: #093A5C;
  --accent: #1B6FA6;
  --accent-soft: #E8F1F8;
  --soft: #F1F7FC;
  --gold: #A8C7E2;
  --brand-light: #A8C7E2;
  --green: #10B981;
  /* Brand gradient (from PDF) — full intensity */
  --brand-gradient: linear-gradient(135deg, #1F578F 0%, #091929 100%);
  /* Softer brand gradient for sections that should not feel too heavy */
  --brand-gradient-soft: linear-gradient(135deg, #2A6BAA 0%, #163A5A 100%);
  --heading: #0F172A;
  --body: #475569;
  --muted: #94A3B8;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-gray: #F8FAFC;

  /* Type scale */
  --t-xs: 12px;
  --t-sm: 14px;
  --t-base: 16px;
  --t-md: 18px;
  --t-lg: 24px;
  --t-xl: 32px;
  --t-2xl: 42px;
  --t-3xl: 56px;

  /* Space scale */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 80px;
  --s-7: 96px;
  --s-8: 120px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;

  /* Shadows */
  --sh-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
  --sh-md: 0 8px 24px rgba(12, 76, 117, .08), 0 2px 6px rgba(12, 76, 117, .04);
  --sh-lg: 0 24px 48px rgba(12, 76, 117, .12), 0 8px 16px rgba(12, 76, 117, .06);

  /* Layout */
  --header-h: 78px;
}

/* ============ RESET ============ */
*,
*::before,
*::after {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body);
  line-height: 1.6;
  background-color: var(--bg);
  /* background-image: linear-gradient(180deg, #DDE7F0 0%, #E8F0F7 35%, #FFFFFF 100%); */
  background-size: 100% 880px;
  background-repeat: no-repeat;
  font-size: var(--t-md);
  -webkit-font-smoothing: antialiased
}

@media(max-width:768px) {
  body {
    background-size: 100% 1100px
  }
}

img,
svg {
  display: block;
  max-width: 100%
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s
}

a:hover {
  color: var(--primary)
}

button {
  font-family: inherit;
  cursor: pointer
}

/* Type system — only these classes used everywhere */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em
}

h1 {
  font-size: var(--t-3xl) ;
  letter-spacing: -.02em ;
}

h2 {
  font-size: var(--t-2xl) ;
}

h3 {
  font-size: var(--t-lg);
}

h4 {
  font-size: var(--t-md) ;
}

p {
  margin: 0
}

@media(max-width:768px) {
  h1 {
    font-size: var(--t-xl) ;
  }

  h2 {
    font-size: var(--t-lg) ;
  }

  h3 {
    font-size: var(--t-md) ;
  }
}

/* Bootstrap-style responsive container */
.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto
}

@media(min-width:576px) {
  .container {
    max-width: 540px
  }
}

@media(min-width:768px) {
  .container {
    max-width: 720px
  }
}

@media(min-width:992px) {
  .container {
    max-width: 960px
  }
}

@media(min-width:1200px) {
  .container {
    max-width: 1140px
  }
}

@media(min-width:1400px) {
  .container {
    max-width: 1320px
  }
}

@media(min-width:1600px) {
  .container {
    max-width: 1440px !important
  }
}

section {
  padding: var(--s-6) 0
}

section#faq {
  padding: var(--s-7) 0;
  background: #FAFCFE;
  position: relative
}

@media(max-width:768px) {
  section {
    padding: 56px 0
  }
}

/* ============ ONE BUTTON SYSTEM ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-1);
  padding: 14px 24px;
  font-weight: 600;
  font-size: var(--t-sm);
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  transition: all .2s;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap
}

.btn.lg {
  padding: 18px 32px;
  font-size: var(--t-base);
  min-width: 198px;
}

.btn-primary {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 4px 14px rgba(12, 76, 117, .25);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(12, 76, 117, .32);
}

.btn-outline {
  background: #fff !important;
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline:hover {
  background: #edf5fd !important;
  
  color: #fff;
}

.btn-light {
  background: #fff !important;
  color: var(--primary) !important;
  border-color: #fff !important;
}

.btn-light:hover {
  background: var(--accent-soft);
  transform: translateY(-1px)
}

/* ============ HEADER (floating pill) ============ */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  padding: 22px 12px 22px 12px;
  display: block
}

header.site.scrolled {
  background: transparent;
  backdrop-filter: none;
  padding-top: 18px;
  padding-bottom: 18px
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 14px 18px 14px 24px;
  gap: var(--s-3);
  background: #fff;
  border-radius: 80px;
  box-shadow: 0 6px 24px rgba(12, 76, 117, .08), 0 1px 3px rgba(12, 76, 117, .04);
  border: 1px solid rgba(255, 255, 255, .6);
  transition: box-shadow .25s
}

header.site.scrolled .nav-wrap {
  box-shadow: 0 8px 28px rgba(12, 76, 117, .12)
}

/* Apply Bootstrap container widths to nav */
@media(min-width:576px) {
  .nav-wrap {
    max-width: 540px
  }
}

@media(min-width:768px) {
  .nav-wrap {
    max-width: 720px
  }
}

@media(min-width:992px) {
  .nav-wrap {
    max-width: 960px
  }
}

@media(min-width:1200px) {
  .nav-wrap {
    max-width: 1140px
  }
}

@media(min-width:1400px) {
  .nav-wrap {
    max-width: 1320px
  }
}

@media(min-width:1600px) {
  .nav-wrap {
    max-width: 1440px
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none
}

.logo img {
width: calc(100px + (120 - 100) * ((100vw - 320px) / (1920 - 320)));
  display: block;
  padding: 6px 0
}

nav.main {
  display: flex;
  align-items: center;
  gap: 2px
}

nav.main a {
  color: var(--heading);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 5px
}

nav.main a svg {
  opacity: .6;
  transition: transform .2s
}

nav.main a:hover {
  background: var(--accent-soft);
  color: var(--primary)
}

nav.main a:hover svg {
  transform: translateY(2px);
  opacity: 1
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px
}

@media(max-width:1024px) {
  nav.main {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .logo-tag {
    display: none
  }
}

@media(max-width:600px) {
  .nav-actions .btn-outline {
    display: none
  }
}

/* mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  z-index: 200;
  backdrop-filter: blur(4px)
}

.mobile-nav.open {
  display: block;
  animation: fade .25s
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: #fff;
  padding: var(--s-3);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0, 0, 0, .1)
}

.mobile-nav a {
  display: block;
  padding: 14px 12px;
  color: var(--heading);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--border)
}

.mobile-nav .logo {
  border: none !important;
}

.mobile-nav .btn {
  width: 100%;
  margin-top: 10px
}

@keyframes fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* ============ HERO (PDF-EXACT) ============ */
.hero {
  padding: var(--s-5) 0 var(--s-6);
  background: transparent;
  position: relative;
  overflow: hidden
}

.hero .container {
  position: relative;
  z-index: 2
}

/* Full-bleed image attached to right edge of viewport — left edge fades into background */
.hero-image-bleed {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 52vw;
  max-width: 1080px;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: block;
  z-index: 1;
  pointer-events: none;
  /* Soft fade on left + bottom edges so the image merges seamlessly into the page gradient */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .15) 8%, rgba(0, 0, 0, .55) 18%, #000 32%, #000 100%), linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .15) 8%, rgba(0, 0, 0, .55) 18%, #000 32%, #000 100%), linear-gradient(to bottom, #000 60%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect
}

@media(min-width:1600px) {
  .hero-image-bleed {
    width: 50vw
  }
}

@media(max-width:1199px) {
  .hero-image-bleed {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin-top: var(--s-3);
    -webkit-mask-image: none;
    mask-image: none
  }

  .hero .container {
    z-index: 1
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: center;
  position: relative;
  min-height: 480px
}

@media(max-width:1199px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--s-5);
    min-height: 0
  }
}

.eyebrow {
  display: inline-block;
  color: var(--primary) !important;
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: var(--s-2)
}

.hero h1 {
  margin-bottom: var(--s-2)
}

.hero h1 .accent {
  color: var(--primary);
  position: relative;
  display: inline-block
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(168, 199, 226, .35);
  z-index: -1;
  border-radius: 2px
}

.hero .lead {
  font-size: var(--t-md);
  color: var(--body);
  margin-bottom: var(--s-4);
  max-width: 540px
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--s-2)
}

.trial-note {
  font-size: var(--t-sm);
  color: var(--muted);
  margin-bottom: var(--s-3);
  display: flex;
  align-items: center;
  gap: 6px
}

.trial-note svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0
}

/* Trust row — borderless inline layout, badges sit flat on hero background */
.hero-trust {
  padding-top: 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(12, 76, 117, .12);
  position: relative;
  z-index: 2
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: nowrap;
  padding: 6px 0
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  transition: opacity .25s;
  height: 38px;
  flex-shrink: 0;
  opacity: .85
}

.badge:hover {
  transform: none;
  opacity: 1
}

.badge-new img {
  padding: 1px 10px;
}

/* Vertical divider between compliance badges and rating cluster (matches screenshot) */
.trust-divider {
  width: 1px;
  height: 46px;
  background: rgba(12, 76, 117, .18);
  margin: 0 6px;
  flex-shrink: 0
}

/* Rating SVGs — uploaded brand-correct G2 / Capterra (stars + brand mark in one file) */
.rating-svg {
  height: 46px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: opacity .25s;
  opacity: .95
}

.rating-svg:hover {
  opacity: 1
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg)
}

/* ============ SECTION INTRO (left-aligned, matches PDF) ============ */
.sec-intro {
  text-align: left;
  max-width: 1100px;
  margin: 0 0 var(--s-5)
}

.sec-eyebrow {
  display: inline-block;
  color: var(--accent);
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px
}

.sec-intro h2 {
  margin-bottom: 12px
}

.sec-intro h2 .accent {
  color: var(--primary);
  font-weight: 800
}

/* Single-line H2s on desktop (matches "Practice Specific..." reference); allow wrap on small screens */
/* @media(min-width:1100px) {
  .sec-intro h2 {
    white-space: nowrap
  }
} */

.sec-intro p {
  font-size: var(--t-md);
  color: var(--body);
  max-width: 780px
}


/* ============ EHR INTEGRATIONS BAND — favicon + wordmark cards ============ */
.integ-section {
  padding: var(--s-7) 0;
  background: linear-gradient(180deg, #fff 0%, #F4F8FB 100%);
  position: relative
}

.integ-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: var(--s-3)
}

@media(max-width:1100px) {
  .integ-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:640px) {
  .integ-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }
}

@media(max-width:360px) {
  .integ-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px
  }
}

.integ-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 80px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-align: center;
  position: relative
}

.integ-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 42, 71, .10);
  border-color: rgba(27, 111, 166, .35)
}

.integ-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
  transition: height .25s
}

.integ-card:hover::before {
  height: 60%
}

.integ-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: contain
}

.integ-card .integ-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.01em;
  line-height: 1.2;
  font-family: 'Manrope', sans-serif
}

/* +30 More CTA tile */
.integ-card-more {
  background: linear-gradient(135deg, #0C4C75 0%, #1B6FA6 100%);
  border: 0;
  color: #fff;
  box-shadow: 0 8px 24px rgba(12, 76, 117, .20);
  flex-direction: column;
  gap: 4px
}

.integ-card-more::before {
  display: none
}

.integ-card-more .integ-num {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  letter-spacing: -.02em;
  line-height: 1
}

.integ-card-more .integ-name {
  color: rgba(255, 255, 255, .92);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  line-height: 1.3
}

.integ-foot {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: var(--s-4);
  flex-wrap: wrap;
  justify-content: center
}

/* ============ COMPARE: eCareVoice vs Sales CRMs ============ */
.compare-section {
  padding: var(--s-7) 0;
  background: #fff;
  position: relative
}

/* .compare-section .sec-intro {
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto
}

.compare-section .sec-intro p {
  margin-left: auto;
  margin-right: auto
} */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: var(--s-3)
}

@media(max-width:900px) {
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 18px
  }
}

.compare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.compare-card-other {
  background: #fff;
  border: 1px dashed #D5DEE6
}

.compare-card-us {
  background: linear-gradient(135deg, #F4F8FB 0%, #E8F1F8 100%);
  border: 1px solid var(--accent);
  box-shadow: 0 12px 32px rgba(27, 111, 166, .16);
  position: relative
}

.compare-card-us::before {
  content: "Recommended";
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(12, 76, 117, .22)
}

.compare-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid #EDF2F6
}

.compare-label {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.01em;
  line-height: 1.2
}

.compare-card-other .compare-label {
  color: #5A7388
}

.compare-sub {
  font-size: 12px;
  color: #5A7388;
  font-weight: 600;
  letter-spacing: .2px
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #1F3A5C;
  line-height: 1.55;
  font-weight: 500
}

.cmp-icn {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px
}

.cmp-icn svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.compare-list-neg .cmp-icn {
  background: #FCE3E3;
  color: #D14545
}

.compare-list-pos .cmp-icn {
  background: #DCEAF4;
  color: var(--accent)
}

.compare-cta {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(12, 76, 117, .08);
  display: flex
}

/* ============ SOLUTIONS V5 — tabbed (V4 approach, ported) ============ */
/* Solutions tab — pill-style horizontal strip (reduced padding) */
.sol-tabs-row {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
  background: #fff;
  padding: 6px;
  border-radius: 100px;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border);
  max-width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%)
}

.sol-tabs-row::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0
}

.sol-tab-btn {
  flex-shrink: 0;
  scroll-snap-align: center
}

.sol-tab-btn {
  background: transparent;
  border: 0;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: .3px;
  white-space: nowrap
}

.sol-tab-btn:hover {
  color: var(--primary);
  background: var(--accent-soft)
}

.sol-tab-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(12, 76, 117, .28)
}

.sol-tab-btn .tab-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
  padding: 5px
}

.sol-tab-btn.active .tab-icon {
  background: rgba(255, 255, 255, .18)
}

.sol-tab-btn .tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter .25s
}

.sol-tab-btn.active .tab-icon img {
  filter: brightness(0) invert(1)
}

.sol-tab-btn .tab-num {
  font-size: 11px;
  opacity: .55;
  font-weight: 700;
  letter-spacing: .6px;
  margin-right: -4px
}

.sol-tab-btn.active .tab-num {
  opacity: .85
}

@media(max-width:768px) {
  .sol-tab-btn {
    padding: 6px 14px;
    font-size: 13px;
    gap: 8px
  }

  .sol-tab-btn .tab-icon {
    width: 32px;
    height: 32px
  }
}

/* === Solutions tab strip — mobile/tablet ===*/
@media(max-width:768px) {
  .sol-tabs-row {
    padding: 5px;
    border-radius: 100px;
    justify-content: flex-start;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%)
  }

  .sol-tab-btn {
    padding: 6px 12px;
    font-size: 12.5px;
    gap: 6px
  }

  .sol-tab-btn .tab-icon {
    width: 30px;
    height: 30px
  }

  .sol-tab-btn .tab-num {
    font-size: 10px
  }
}

.sol-rows {
  display: block;
  position: relative;
  min-height: 420px
}

.sol-row {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  animation: solFade .4s ease
}

.sol-row.active {
  display: grid
}

@keyframes solFade {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@media(max-width:900px) {
  .sol-row {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

@media(max-width:900px) {
  .sol-row.reverse .sol-row-text {
    order: 1
  }

  .sol-row.reverse .sol-row-visual {
    order: 2
  }
}

.sol-row-text {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.sol-row-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: var(--sh-sm)
}

.sol-row-tag .tag-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0
}

.sol-row-text h3 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0;
  color: var(--heading);
  letter-spacing: -.02em;
  font-weight: 800
}

@media(max-width:768px) {
  .sol-row-text h3 {
    font-size: 28px
  }
}

.sol-row-text h3 .accent {
  color: var(--primary);
  position: relative;
  display: inline-block
}

.sol-row-text h3 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background: rgba(27, 111, 166, .18);
  z-index: -1;
  border-radius: 2px
}

.sol-row-text>p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  margin: 0;
  max-width: 520px
}

.sol-row-features {
  list-style: none;
  padding: 0;
  margin: 6px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px
}

@media(max-width:560px) {
  .sol-row-features {
    grid-template-columns: 1fr
  }
}

.sol-row-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.4;
  font-weight: 500
}

.sol-row-features li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px
}

.sol-row-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  flex-wrap: wrap
}

.sol-row-link {
  font-size: 14px;
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s
}

.sol-row-link:hover {
  border-bottom-color: var(--primary)
}

.sol-row-link svg {
  width: 14px;
  height: 14px;
  transition: transform .2s
}

.sol-row-link:hover svg {
  transform: translateX(4px)
}

.sol-row-visual {
  position: relative;
  overflow: auto;
}

.sol-row-visual .frame {
  position: relative;
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff 100%);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-md);
  border: 1px solid #DCE7F0;
  overflow: hidden
}

.sol-row-visual .frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(27, 111, 166, .08), transparent 60%);
  pointer-events: none
}

.sol-row-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-md);
  box-shadow: 0 16px 40px rgba(12, 76, 117, .14);
  position: relative;
  z-index: 1;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1)
}

.sol-row-visual:hover img {
  transform: translateY(-4px)
}

.sol-row-visual .stat-pill {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(12, 76, 117, .18);
  border: 1px solid var(--border);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px
}

.sol-row-visual .stat-pill .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.sol-row-visual .stat-pill .ico svg {
  width: 18px;
  height: 18px
}

.sol-row-visual .stat-pill .stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  letter-spacing: -.02em
}

.sol-row-visual .stat-pill .stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 3px
}

.sol-row-visual .stat-pill.tl {
  top: -25px;
  left: -20px
}

.sol-row-visual .stat-pill.br {
  bottom: -25px;
  right: -20px
}

@media(max-width:1100px) {
  .sol-row-visual .stat-pill.tl {
    left: 8px
  }

  .sol-row-visual .stat-pill.br {
    right: 8px
  }
}

@media(max-width:560px) {
  .sol-row-visual .stat-pill {
    display: none
  }
}

/* ============ MID CTA BANNER (left-aligned per PDF) ============ */
.cta-strip {
  background: var(--brand-gradient);
  color: #fff;
  padding: var(--s-5) 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  margin: var(--s-2) 0
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: rgba(255, 255, 255, .05);
  border-radius: 50%
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, .04);
  border-radius: 50%
}

.cta-strip .container {
  position: relative;
  z-index: 1
}

.cta-strip-inner {
  max-width: 680px
}

.cta-strip blockquote {
  margin: 0 0 6px;
  font-size: var(--t-md);
  font-style: italic;
  color: #fff;
  opacity: .95;
  font-weight: 500
}

.cta-strip blockquote::before {
  content: '"';
  display: inline-block;
  font-size: 32px;
  line-height: 0;
  vertical-align: -12px;
  color: #A8C7E2;
  margin-right: 6px;
  font-style: normal;
  font-weight: 700
}

.cta-strip .cite {
  font-size: var(--t-sm);
  color: #BFD8E8;
  margin-bottom: var(--s-3);
  font-weight: 600;
  letter-spacing: .3px
}

.cta-strip h2 {
  color: #fff;
  font-size: var(--t-xl);
  margin-bottom: var(--s-3);
  max-width: 520px;
  line-height: 1.15
}

.cta-strip h2 .accent {
  color: #A8C7E2 !important;
}

.cta-strip .sub {
  color: #BFD8E8;
  font-size: var(--t-sm);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px
}

.cta-strip .sub svg {
  width: 16px;
  height: 16px;
  color: #A8C7E2;
  flex-shrink: 0
}

/* ============ TESTIMONIALS V5 — 50/50 split: original quote (LEFT) + Challenge/Result + stats (RIGHT) ============ */
.v5t-section {
  background: #fff;
  position: relative;
  overflow: hidden
}

.v5t-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(27, 111, 166, .05), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.v5t-section::after {
  content: "";
  position: absolute;
  bottom: -220px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(168, 199, 226, .08), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.v5t-stage {
  position: relative;
  margin-top: 24px
}

.v5t-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #D5E3EF;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  box-shadow: 0 6px 18px rgba(15, 42, 71, .10);
  z-index: 5
}

.v5t-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05)
}

.v5t-arrow.prev {
  left: -24px
}

.v5t-arrow.next {
  right: -24px
}

.v5t-arrow svg {
  width: 20px;
  height: 20px
}

@media(max-width:768px) {
  .v5t-arrow.prev {
    left: 8px
  }

  .v5t-arrow.next {
    right: 8px
  }

  .v5t-arrow {
    width: 40px;
    height: 40px
  }
}

.v5t-track-wrap {
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md)
}

.v5t-track {
  display: flex;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1)
}

/* 50/50 split card — LEFT: original quote layout, RIGHT: case-study Challenge/Result + stats */
.v5t-card {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  overflow: hidden;
  min-height: 580px;
  align-items: stretch
}

@media(max-width:900px) {
  .v5t-card {
    grid-template-columns: 1fr;
    min-height: 0
  }
}

/* LEFT — original quote / author / outcome pills */
.v5t-content {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
  background: #fff;
  min-width: 0
}

@media(max-width:768px) {
  .v5t-content {
    padding: 32px 28px;
    gap: 18px
  }
}

.v5t-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  background: #E8F1F8;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid #D5E3EF;
  width: fit-content
}

.v5t-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary)
}

.v5t-stars {
  display: flex;
  gap: 3px;
  color: #F0941B
}

.v5t-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor
}

.v5t-quote {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  color: #0F2A47;
  margin: 0;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.005em;
  flex: 1;
  font-family: 'Manrope', sans-serif;
  position: relative;
  padding-left: 18px;
  border-left: 3px solid var(--primary)
}

.v5t-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.v5t-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid #fff;
  box-shadow: 0 4px 12px rgba(15, 42, 71, .14);
  flex-shrink: 0;
  background: #E8F1F8
}

.v5t-author-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0
}

.v5t-author-name {
  font-size: 15px;
  font-weight: 800;
  color: #0F2A47;
  line-height: 1.2;
  letter-spacing: -.005em
}

.v5t-author-role {
  font-size: 13px;
  color: #5A7388;
  font-weight: 500;
  line-height: 1.4
}

.v5t-outcomes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px dashed #DCE7F0
}

.v5t-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background: #F1F7FC;
  border: 1px solid #D5E3EF;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #1F3A5C;
  line-height: 1;
  white-space: nowrap
}

.v5t-pill .num {
  font-weight: 800;
  color: var(--primary);
  font-family: 'Manrope', sans-serif;
  letter-spacing: -.01em
}

/* RIGHT — case-study (Challenge / Result + stats row) — faint brand-tinted gradient */
.v5t-case {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: linear-gradient(135deg, #F5F9FC 0%, #E8F1F8 100%);
  border-left: 1px solid rgba(12, 76, 117, .08);
  position: relative;
  overflow: hidden;
  justify-content: space-between
}

.v5t-case::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(27, 111, 166, .08), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.v5t-case::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(168, 199, 226, .18), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

@media(max-width:900px) {
  .v5t-case {
    padding: 32px 28px;
    gap: 20px;
    border-left: 0;
    border-top: 1px solid rgba(12, 76, 117, .08)
  }
}

.v5t-title {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 800;
  color: var(--primary);
  margin: 0;
  letter-spacing: -.02em;
  line-height: 1.2;
  position: relative;
  z-index: 1
}

.v5t-cr {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1
}

.v5t-col-label {
  font-size: 11px;
  font-weight: 700;
  color: #5A7388;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px
}

.v5t-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.v5t-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #1F3A5C;
  line-height: 1.5;
  font-weight: 500
}

.v5t-icn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  margin-top: 1px
}

.v5t-icn svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.v5t-list-neg .v5t-icn {
  background: #FCE3E3;
  color: #D14545
}

.v5t-list-pos .v5t-icn {
  background: #DCEAF4;
  color: var(--accent)
}

.v5t-stats {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  align-items: center;
  box-shadow: 0 4px 16px rgba(15, 42, 71, .06);
  position: relative;
  z-index: 1
}

@media(max-width:768px) {
  .v5t-stats {
    grid-template-columns: 1fr;
    padding: 16px 20px
  }
}

.v5t-stat {
  text-align: center;
  border-right: 1px solid #E1E8ED;
  padding: 4px 8px
}

.v5t-stat:last-child {
  border-right: 0
}

@media(max-width:768px) {
  .v5t-stat {
    border-right: 0;
    border-bottom: 1px solid #E1E8ED;
    padding: 12px 0
  }

  .v5t-stat:last-child {
    border-bottom: 0
  }
}

.v5t-stat-num {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Manrope', sans-serif
}

.v5t-stat-label {
  font-size: 10px;
  color: #5A7388;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3
}

/* Dot navigation */
.v5t-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px
}

.v5t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CFD6DD;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all .25s
}

.v5t-dot.active {
  width: 32px;
  background: var(--primary);
  border-radius: 8px
}

/* ============ CTA MODALS — Calendly (demo) + HubSpot (trial) ============ */
.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 16px;
  overflow-y: auto
}

.cta-modal.open {
  display: flex !important
}

.cta-modal[hidden]:not(.open) {
  display: none
}

.cta-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 71, .62);
  backdrop-filter: blur(6px);
  cursor: pointer
}

.cta-modal-panel {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 24px;
  max-width: 1090px;
  width: 100%;
  box-shadow: 0 24px 60px rgba(15, 42, 71, .30);
  margin: auto
}

@media(max-width:600px) {
  .cta-modal-panel {
    padding: 24px 18px;
    border-radius: 14px
  }
}

.cta-modal-panel-form {
  max-width: 600px
}

.cta-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F4F8FB;
  border: 0;
  font-size: 24px;
  line-height: 1;
  color: #5A7388;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-family: inherit
}

.cta-modal-close:hover {
  background: var(--primary);
  color: #fff
}

.cta-modal-title {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 6px;
  letter-spacing: -.01em;
  line-height: 1.2
}

.cta-modal-sub {
  font-size: 14px;
  color: #5A7388;
  margin: 0 0 18px;
  font-weight: 500;
  line-height: 1.5
}

/* HubSpot form spacing inside modal */
#hubspotFormTarget {
  margin-top: 6px;
  min-height: 120px
}

#hubspotFormTarget .hs-form {
  font-family: 'Manrope', sans-serif !important
}

/* Body lock when modal open */
body.modal-open {
  overflow: hidden
}


/* ============ Legacy masonry (no longer used, kept harmless) ============ */
.voice-wall {
  position: relative;
  z-index: 1
}

.voice-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch
}

@media(max-width:900px) {
  .voice-hero {
    grid-template-columns: 1fr
  }
}

.voice-pull {
  background: linear-gradient(135deg, #FAFCFE, var(--accent-soft));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden
}

@media(max-width:768px) {
  .voice-pull {
    padding: 32px 28px
  }
}

.voice-pull::before {
  content: "\201C";
  position: absolute;
  top: -30px;
  left: 24px;
  font-family: Georgia, serif;
  font-size: 240px;
  line-height: 1;
  color: rgba(27, 111, 166, .08);
  font-weight: 700;
  pointer-events: none
}

.voice-pull-eyebrow {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1
}

.voice-pull-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--primary);
  display: block
}

.voice-pull-quote {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  color: var(--heading);
  font-weight: 500;
  letter-spacing: -.01em;
  font-style: italic;
  margin: 0;
  position: relative;
  z-index: 1
}

.voice-pull-quote em {
  font-style: italic;
  color: var(--primary);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 65%, rgba(27, 111, 166, .18) 65%);
  padding: 0 4px
}

.voice-pull-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding-top: 22px
}

.voice-pull-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(12, 76, 117, .15)
}

.voice-pull-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px
}

.voice-pull-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--heading)
}

.voice-pull-author-role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500
}

/* Stats panel (right side of hero) */
.voice-stats {
  background: var(--brand-gradient);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden
}

.voice-stats::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(168, 199, 226, .18), transparent 60%);
  border-radius: 50%;
  pointer-events: none
}

.voice-stats h4 {
  font-size: 13px;
  font-weight: 800;
  color: #A8C7E2;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0;
  position: relative
}

.voice-stat-grid {
  display: grid;
  gap: 20px;
  position: relative
}

.voice-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.voice-stat-item:last-child {
  border-bottom: 0;
  padding-bottom: 0
}

.voice-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  font-family: 'Manrope', sans-serif;
  flex-shrink: 0;
  min-width: 90px
}

.voice-stat-num .unit {
  color: #A8C7E2;
  font-size: 18px
}

.voice-stat-label {
  font-size: 12px;
  color: #BFD8E8;
  font-weight: 600;
  line-height: 1.4;
  padding-top: 4px
}

/* Masonry — 3-column wall of smaller voice cards */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

@media(max-width:900px) {
  .voice-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .voice-grid {
    grid-template-columns: 1fr
  }
}

/* Variable card heights via grid-row-span */
.voice-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: all .35s cubic-bezier(.2, .7, .2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--accent)
}

.voice-card.tall {
  grid-row: span 2
}

.voice-card .vc-stars {
  display: flex;
  gap: 2px;
  color: #F0941B
}

.voice-card .vc-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor
}

.voice-card .vc-quote {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--heading);
  margin: 0;
  font-style: italic;
  font-weight: 400;
  flex: 1
}

.voice-card .vc-author {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto
}

.voice-card .vc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0
}

.voice-card .vc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.2
}

.voice-card .vc-role {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500
}

/* Photo card variant */
.voice-card.photo {
  padding: 0;
  min-height: 280px;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  position: relative;
  overflow: hidden;
  justify-content: flex-end
}

.voice-card.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 76, 117, .15) 0%, rgba(12, 76, 117, .6) 100%);
  z-index: 0
}

.voice-card.photo .vc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.85) brightness(.95)
}

.voice-card.photo .vc-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  color: #fff
}

.voice-card.photo .vc-quote {
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 12px
}

.voice-card.photo .vc-author {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 12px;
  margin-top: 0
}

.voice-card.photo .vc-name {
  color: #fff
}

.voice-card.photo .vc-role {
  color: rgba(255, 255, 255, .85)
}

.voice-card.photo .vc-stars {
  color: #FFB800;
  margin-bottom: 8px
}

/* Highlight card (brand-gradient bg) */
.voice-card.highlight {
  background: linear-gradient(135deg, var(--accent-soft), #FAFCFE);
  border-color: var(--accent)
}

.voice-card.highlight .vc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #fff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  border-radius: 100px;
  width: fit-content;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm)
}

/* Avatar grid card (community at a glance) */
.voice-card.community {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  text-align: left;
  justify-content: space-between
}

.voice-card.community::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, rgba(168, 199, 226, .18), transparent 60%);
  pointer-events: none
}

.voice-card.community .vc-q-eyebrow {
  font-size: 11px;
  color: #A8C7E2;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative
}

.voice-card.community .vc-q-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #A8C7E2;
  display: block
}

.voice-card.community .vc-headline {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
  margin: 0;
  position: relative
}

.voice-card.community .vc-avatar-cluster {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative
}

.voice-card.community .vc-avatar-cluster img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #163A5A;
  background: #A8C7E2;
  margin-left: -10px
}

.voice-card.community .vc-avatar-cluster img:first-child {
  margin-left: 0
}

.voice-card.community .vc-avatar-cluster .more-count {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #A8C7E2
}

.test5-section {
  background: var(--bg-gray);
  position: relative;
  overflow: hidden
}

.test5-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(27, 111, 166, .05), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

.test5-head {
  margin-bottom: 36px;
  position: relative;
  z-index: 1
}

.test5-eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px
}

.test5-title {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0;
  color: var(--heading);
  font-weight: 700;
  max-width: 1000px
}

.test5-title .accent-grad {
  background: linear-gradient(90deg, #10B981 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800
}

/* Specialty filter tabs */
.test5-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  background: #fff;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--border);
  margin-top: 32px;
  box-shadow: var(--sh-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none
}

.test5-tabs::-webkit-scrollbar {
  display: none
}

.test5-tab {
  background: transparent;
  border: 0;
  padding: 11px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s
}

.test5-tab:hover {
  color: var(--primary)
}

.test5-tab.active {
  background: #fff;
  color: var(--heading);
  box-shadow: 0 2px 8px rgba(12, 76, 117, .08);
  border: 1px solid var(--border)
}

/* Carousel viewport */
.test5-stage {
  position: relative;
  margin-top: 32px
}

.test5-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--heading);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s;
  box-shadow: var(--sh-sm);
  z-index: 5
}

.test5-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05)
}

.test5-arrow.prev {
  left: -22px
}

.test5-arrow.next {
  right: -22px
}

.test5-arrow svg {
  width: 18px;
  height: 18px
}

@media(max-width:768px) {
  .test5-arrow.prev {
    left: 6px
  }

  .test5-arrow.next {
    right: 6px
  }

  .test5-arrow {
    width: 38px;
    height: 38px
  }
}

/* The card */
.test5-track {
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative
}

.test5-track-inner {
  display: flex;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1)
}

.test5-card {
  flex: 0 0 100%;
  background: #FAFCFE;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  min-height: 480px
}

@media(max-width:900px) {
  .test5-card {
    grid-template-columns: 1fr;
    min-height: 0
  }
}

/* Left: testimonial quote */
.test5-quote-side {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px
}

@media(max-width:900px) {
  .test5-quote-side {
    padding: 28px
  }
}

.test5-stars {
  display: flex;
  gap: 3px;
  color: #FFB800
}

.test5-stars svg {
  width: 24px;
  height: 24px;
  fill: #FFB800
}

.test5-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--heading);
  margin: 0;
  font-style: italic;
  font-weight: 400;
  flex: 1
}

.test5-author {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.test5-author-logo {
  height: 42px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  flex-shrink: 0
}

.test5-author-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 4px
}

.test5-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0
}

.test5-author-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0
}

.test5-author-name {
  font-weight: 700;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.2
}

.test5-author-role {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 2px
}

.test5-watch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: all .2s;
  flex-shrink: 0
}

.test5-watch:hover {
  background: var(--primary);
  color: #fff
}

.test5-watch svg {
  width: 11px;
  height: 11px;
  fill: currentColor
}

/* Right: impact metrics */
.test5-impact-side {
  background: #fff;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid var(--border)
}

@media(max-width:900px) {
  .test5-impact-side {
    padding: 24px;
    border-left: 0;
    border-top: 1px solid var(--border)
  }
}

.test5-prev {
  background: #FFF6EB;
  border: 1px solid #FCE0BF;
  border-radius: 14px;
  padding: 16px
}

.test5-prev-label {
  font-size: 13px;
  font-weight: 700;
  color: #8B5A2B;
  margin: 0 0 10px
}

.test5-prev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.test5-prev-tag {
  display: inline-block;
  background: #C5524A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: .2px
}

.test5-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1
}

.test5-stat {
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid transparent
}

.test5-stat .stat-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -.01em;
  font-family: 'Manrope', sans-serif
}

.test5-stat .stat-row svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.test5-stat .stat-cap {
  font-size: 12px;
  color: var(--body);
  font-weight: 500;
  line-height: 1.3
}

.test5-stat.s-blue {
  background: #E8F0F8;
  border-color: #D5E3EF
}

.test5-stat.s-blue .stat-row {
  color: #1B6FA6
}

.test5-stat.s-blue .stat-row svg {
  color: #1B6FA6
}

.test5-stat.s-green {
  background: #E6F5EA;
  border-color: #CFE9D6
}

.test5-stat.s-green .stat-row {
  color: #10843E
}

.test5-stat.s-green .stat-row svg {
  color: #10843E
}

.test5-stat.s-pink {
  background: #F4E8F4;
  border-color: #E5D3E5
}

.test5-stat.s-pink .stat-row {
  color: #8E4A8E
}

.test5-stat.s-pink .stat-row svg {
  color: #8E4A8E
}

.test5-stat.s-peach {
  background: #FBEEDD;
  border-color: #F4DEB8
}

.test5-stat.s-peach .stat-row {
  color: #A6651E
}

.test5-stat.s-peach .stat-row svg {
  color: #A6651E
}

/* Dots */
.test5-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px
}

.test5-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CFD6DD;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all .25s
}

.test5-dot.active {
  width: 24px;
  background: var(--primary);
  border-radius: 8px
}

/* legacy carousel (kept harmless if referenced) */
.test-section {
  background: var(--bg-gray)
}

.test-track-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg)
}

.test-track {
  display: flex;
  transition: transform .5s ease
}

.test-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-3);
  padding: var(--s-2)
}

@media(max-width:900px) {
  .test-slide {
    grid-template-columns: 1fr
  }
}

.test-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-4);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column
}

.test-quote-img {
  width: 54px;
  height: auto;
  margin-bottom: var(--s-2);
  opacity: .9
}

.test-stars {
  margin-bottom: var(--s-2)
}

.test-stars img {
  height: 26px;
  width: auto
}

.test-quote {
  font-size: var(--t-md);
  color: var(--heading);
  line-height: 1.65;
  margin-bottom: var(--s-3);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -.005em
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: var(--s-3);
  margin-top: auto
}

.test-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-soft)
}

.test-name {
  font-weight: 700;
  color: var(--heading);
  font-size: var(--t-base)
}

.test-title {
  font-size: var(--t-sm);
  color: var(--muted)
}

.impact-card {
  background: var(--brand-gradient-soft);
  color: #fff;
  border-radius: var(--r-md);
  padding: var(--s-4);
  box-shadow: var(--sh-md)
}

.impact-card h4 {
  color: #A8C7E2;
  font-size: var(--t-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--s-2);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px
}

.impact-card h4::before {
  content: "";
  width: 24px;
  height: 2px;
  background: #A8C7E2;
  display: block
}

.impact-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-3) 0
}

.impact-card li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: var(--t-base);
  color: #D4E5F0;
  line-height: 1.5
}

.impact-card li svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #A8C7E2;
  background: rgba(168, 199, 226, .15);
  border-radius: 50%;
  padding: 4px
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: var(--s-3)
}

.impact-stat-num {
  font-size: var(--t-lg);
  font-weight: 800;
  color: #fff;
  line-height: 1
}

.impact-stat-num .unit {
  color: #A8C7E2;
  font-size: var(--t-md)
}

.impact-stat-label {
  font-size: 11px;
  color: #BFD8E8;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 4px
}

.test-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--s-2);
  margin-top: var(--s-3)
}

.test-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s
}

.test-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

.test-arrow svg {
  width: 18px;
  height: 18px
}

.test-dots {
  display: flex;
  gap: 6px
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 0;
  padding: 0;
  transition: all .2s
}

.test-dot.active {
  width: 24px;
  background: var(--primary);
  border-radius: 8px
}

/* CASE STUDIES section removed in V5 */

/* ============ SPECIALTIES V5 — scrolling marquee (PDF style) ============ */
.spec-section {
  background: var(--soft);
  position: relative;
  overflow: hidden;
  padding-top: var(--s-7);
  padding-bottom: var(--s-7)
}

.spec-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(27, 111, 166, .05), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

/* eCareVoice.com-style specialty marquee — vertical items (icon top, name below), no chip background */
.marquee-stack {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 96px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 24px 0 32px;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%)
}

.marquee-row {
  overflow: hidden;
  width: 100%
}

.marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
  will-change: transform;
  align-items: center
}

.marquee-row.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 68s
}

.marquee-stack:hover .marquee-track {
  animation-play-state: paused
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* Each item is icon-on-top + name-below — vertical, no chip background, matches ecarevoice.ai */
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  cursor: default;
  color: var(--primary);
  transition: opacity .25s;
  width: 140px
}

.marquee-item:hover {
  opacity: 1
}

.marquee-item .m-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.marquee-item .m-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.marquee-item .m-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  letter-spacing: -.005em;
  text-align: center
}

@media(max-width:768px) {
  .marquee-item {
    width: 120px;
    gap: 10px
  }

  .marquee-item .m-name {
    font-size: 14px
  }

  .marquee-item .m-icon {
    width: 52px;
    height: 52px
  }

  .marquee-track {
    gap: 48px
  }

  .marquee-stack {
    gap: 64px;
    padding: 16px 0
  }
}

/* Below the marquee — small CTA row */
.spec-foot {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

/* ============ 4 STEPS (matches reference screenshot) ============ */
.steps-section {
  background: #fff;
  position: relative;
  padding: var(--s-7) 0
}

.steps-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-5)
}

.steps-head h2 {
 font-size: 24px !important;
        line-height: 1.25;
  margin-bottom: 8px
}


@media (min-width:992.98px) {
  .steps-head h2 {
 
  font-size: 42px !important;
        line-height: 1.25;
}
}


.steps-head h2 .accent {
  color: var(--primary);
  font-weight: 800
}

.steps-head p {
  color: var(--body);
  font-size: var(--t-md)
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3)
}

@media(max-width:1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .steps-grid {
    grid-template-columns: 1fr
  }
}

.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  min-height: 480px
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: var(--accent)
}

.step-img {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: linear-gradient(180deg, #FAFCFE, var(--accent-soft));
  min-height: 300px
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.step-card:hover .step-img img {
  transform: scale(1.06)
}

.step-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255, 255, 255, .95) 100%);
  pointer-events: none
}

.step-content {
  padding: var(--s-3) var(--s-3) var(--s-4);
  background: #fff;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  z-index: 1;
  margin-top: -30px
}

.step-num {
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  line-height: .85;
  letter-spacing: -.04em;
  opacity: .85;
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif
}

.step-text h4 {
  font-size: var(--t-md);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 6px
}

.step-text p {
  font-size: var(--t-sm);
  color: var(--body);
  line-height: 1.55;
  margin: 0
}

.step-card .step-progress {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(12, 76, 117, .85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .5px;
  text-transform: uppercase;
  z-index: 2;
  backdrop-filter: blur(6px)
}

/* ============ FAQ (PDF-EXACT + improved sidebar) ============ */
.faq-wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--s-4);
  align-items: flex-start
}

@media(max-width:900px) {
  .faq-wrap {
    grid-template-columns: 1fr
  }
}

.faq-side {
  background: var(--brand-gradient-soft);
  color: #fff;
  padding: var(--s-4);
  border-radius: var(--r-lg);
  position: sticky;
  top: calc(var(--header-h) + var(--s-2));
  box-shadow: var(--sh-md);
  z-index: 1;
}

.faq-side h3 {
  color: #fff;
  margin-bottom: 10px
}

.faq-side p {
  color: #D4E5F0;
  font-size: var(--t-sm);
  margin-bottom: var(--s-3);
  line-height: 1.6
}

.faq-side .btn {
  width: 100%
}

.faq-items {
  display: grid;
  gap: 10px
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .2s
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: var(--sh-sm)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px var(--s-3);
  background: none;
  border: 0;
  text-align: left;
  font-weight: 600;
  color: var(--heading);
  font-size: var(--t-base);
  line-height: 1.4
}

.faq-q:hover {
  color: var(--primary)
}

.faq-q .ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s;
  margin-left: 12px
}

.faq-item.open .faq-q .ico {
  transform: rotate(45deg);
  background: var(--primary) !important;
  color: #fff !important;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 var(--s-3)
}

.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 var(--s-3) 18px
}

.faq-a p {
  font-size: var(--t-sm);
  color: var(--body);
  line-height: 1.65
}

/* ============ SCROLL-TO-TOP BUTTON ============ */
.to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(12, 76, 117, .3), 0 2px 6px rgba(12, 76, 117, .2);
  transition: opacity .3s, transform .3s, box-shadow .25s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  z-index: 90
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0)
}

.to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .4), 0 4px 8px rgba(12, 76, 117, .25)
}

.to-top svg {
  width: 18px;
  height: 18px
}

@media(max-width:600px) {
  .to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px
  }
}

/* ============ FOOTER V2 (substantive, multi-column) ============ */
footer.site {
  background: var(--brand-gradient);
  color: #BFD8E8;
  padding: 64px 0 24px;
  position: relative;
  overflow: hidden
}

footer.site::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(168, 199, 226, .05), transparent 70%);
  border-radius: 50%;
  pointer-events: none
}

/* Top hero CTA strip in footer */
.foot-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  z-index: 1
}

@media(max-width:900px) {
  .foot-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 36px;
    margin-bottom: 36px
  }
}

.foot-cta h3 {
  color: #fff;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin: 0 0 8px;
  font-weight: 800
}

.foot-cta h3 .accent {
  color: #A8C7E2
}

.foot-cta p {
  color: #A8C2D6;
  font-size: 15px;
  margin: 0;
  max-width: 480px
}

.foot-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end
}

@media(max-width:900px) {
  .foot-cta-actions {
    justify-content: flex-start
  }
}

/* 5-column nav grid */
.foot-nav {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  position: relative;
  z-index: 1
}

@media(max-width:1100px) {
  .foot-nav {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 28px
  }
}

@media(max-width:900px) {
  .foot-nav {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px 20px
  }
}

@media(max-width:560px) {
  .foot-nav {
    grid-template-columns: 1fr 1fr;
    gap: 28px 16px
  }
}

.foot-brand img.logo-mark {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
  display: block
}

.foot-brand .sub {
  color: #A8C2D6;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 18px
}

.foot-brand-contact {
  display: grid;
  gap: 8px;
  margin-bottom: 18px
}

.foot-brand-contact div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #A8C2D6;
  line-height: 1.5
}

.foot-brand-contact svg {
  width: 14px;
  height: 14px;
  color: #A8C7E2;
  flex-shrink: 0;
  margin-top: 3px
}

.foot-brand-contact a {
  color: #A8C2D6;
  text-decoration: none
}

.foot-brand-contact a:hover {
  color: #fff
}

@media(max-width:900px) {
  .foot-brand {
    grid-column: span 3
  }

  .foot-brand .sub {
    max-width: 540px
  }
}

@media(max-width:560px) {
  .foot-brand {
    grid-column: span 2
  }
}

.foot-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .8px;
  display: flex;
  align-items: center;
  gap: 8px
}

/* .foot-col h4::before {
  content: "";
  width: 14px;
  height: 2px;
  background: #A8C7E2;
  display: inline-block
} */

.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px
}

.foot-col li {
  margin: 0
}

.foot-col a {
  color: #A8C2D6;
  font-size: 14px;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4
}

.foot-col a:hover {
  color: #fff;
  padding-left: 4px
}

.foot-col a .pill {
  background: #A8C7E2;
  color: #091929;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 100px;
  letter-spacing: .5px;
  text-transform: uppercase
}

/* Bottom strip: badges + social + copyright */
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  position: relative;
  z-index: 1
}

.foot-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.foot-badges img {
  /* height: 34px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 5px 9px */
}

.foot-badge-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: .4px
}

.foot-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #88A4B8
}

.foot-meta a {
  color: #88A4B8;
  text-decoration: none;
  transition: color .2s
}

.foot-meta a:hover {
  color: #fff
}

.social-row {
  display: flex;
  gap: 6px
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s
}

.social-link img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1)
}

.social-link:hover {
  background: #A8C7E2;
  border-color: #A8C7E2;
  transform: translateY(-2px)
}

.social-link:hover img {
  filter: brightness(0)
}

/* ============ MOBILE / TABLET POLISH ============ */
/* Prevent any horizontal overflow */
body {
  max-width: 100%;
  overflow-x: clip
}

.hero {
  overflow: hidden
}

/* Tablet (≤900px) — tighten hero text & guarantee image fits */
@media(max-width:900px) {
  .hero {
    padding: 24px 0 32px
  }

  .hero h1 {
    font-size: clamp(28px, 5vw, 40px) !important;
    line-height: 1.15
  }

  .hero .lead {
    font-size: 15px;
    max-width: none
  }

  .hero-cta {
    flex-wrap: wrap
  }

  .hero-cta .btn {
    flex: 1 1 auto;
    min-width: 160px
  }
}

/* Mobile (≤600px) — shrink everything sensibly */
@media(max-width:600px) {
  section {
    padding: 48px 0 !important
  }

  .hero {
    padding: 16px 0 24px
  }

  .hero h1 {
    font-size: 28px !important;
    line-height: 1.2
  }

  .hero .lead {
    font-size: 14px
  }

  .hero-cta .btn {
    font-size: 14px;
    padding: 12px 18px;
    width: 100%
  }

  .nav-wrap {
    padding: 8px 14px 8px 18px
  }

 

  .sec-intro h2 {
    font-size: 24px !important;
    line-height: 1.25
  }

  .sec-intro p {
    font-size: 14px
  }

  /* Trust row — wrap badges, no scroll */
  .trust-row {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start
  }

  /* .badge img {
    height: 28px
  } */

  .rating-svg {
    height: 38px
  }

  /* CTA strip text smaller on mobile */
  .cta-strip h2 {
    font-size: 24px !important;
    line-height: 1.2
  }

  .cta-strip blockquote {
    font-size: 14px
  }

  /* Specialties marquee items smaller */
  .marquee-item {
    padding: 6px 14px
  }

  .m-name {
    font-size: 12px
  }

  /* Footer columns stack */
  .foot-grid {
    grid-template-columns: 1fr !important;
    gap: 32px
  }

  /* Modal full-screen on mobile */
  .cta-modal {
    padding: 0
  }

  .cta-modal-panel {
    border-radius: 0;
    min-height: 100vh;
    max-width: 100%;
    padding: 60px 18px 24px
  }

  .cta-modal-close {
    top: 12px;
    right: 12px
  }

  .calendly-inline-widget {
    height: 600px !important;
    min-height: 560px
  }
}

/* Touch targets — ensure 44x44 minimum on links */
@media(hover:none) and (pointer:coarse) {

  nav.main a,
  .mobile-nav a,
  .feat-pdf-card,
  .integ-card {
    min-height: 44px
  }

  .feat-link,
  .feat-tile-link,
  .feat-row-link,
  .sol-row-link {
    padding: 8px 0
  }
}

/* Prevent body shift when modal open */
body.modal-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0)
}



@keyframes hsspin {
  to {
    transform: rotate(360deg)
  }
}

/* ============================================================ */
/* Legal / About / Contact / Sitemap pages — shared styles      */
/* ============================================================ */
.legal-main {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
  min-height: 60vh
}

.legal-container {
  max-width: 880px;
  margin: 0 auto
}

.legal-header {
  text-align: start;
  margin-bottom: 48px
}

.legal-header h1 {
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--heading);
  margin: 14px 0 16px;
  line-height: 1.1
}

.legal-header h1 .accent {
  color: var(--primary)
}

.legal-lead {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  /* max-width: 720px; */
  margin: 0 auto
}

.legal-body {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 8px 24px rgba(12, 76, 117, 0.06)
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -.01em;
  margin: 32px 0 12px;
  line-height: 1.3
}

.legal-body h2:first-child {
  margin-top: 0
}

.legal-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--body);
  margin: 0 0 14px
}

.legal-body a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px
}

.legal-body a:hover {
  text-decoration: none
}

@media(max-width:560px) {
  .legal-body {
    padding: 28px 22px
  }

  .legal-body h2 {
    font-size: 18px
  }
}

.legal-cta-strip {
  margin-top: 48px;
  text-align: center;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--primary), #0A3E60);
  color: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center
}

.legal-cta-strip h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin: 0
}

.legal-cta-strip .btn {
  margin: 0 4px;
  border-color: rgba(255, 255, 255, .3) !important;
}

@media(min-width:560px) {
  .legal-cta-strip {
    flex-direction: row;
    justify-content: space-between;
    text-align: left
  }
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 36px 0
}

@media(max-width:760px) {
  .contact-grid {
    grid-template-columns: 1fr
  }
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s, box-shadow .25s
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, 0.10)
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin: 6px 0 4px
}

.contact-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.5;
  margin: 0
}

.contact-card a {
  color: var(--primary);
  font-weight: 700
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary)
}

.contact-icon svg {
  width: 24px;
  height: 24px
}

.contact-sub {
  color: var(--muted) !important;
  font-size: 12px !important
}

.contact-card-cta {
  background: linear-gradient(135deg, var(--primary), #0A3E60);
  color: #fff;
  border-color: transparent
}

.contact-card-cta h3,
.contact-card-cta p {
  color: #fff
}

.contact-card-cta .contact-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff
}

.contact-card-cta .btn {
  align-self: flex-start;
  margin-top: 10px
}

/* Sitemap grid */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0
}

@media(max-width:900px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:560px) {
  .sitemap-grid {
    grid-template-columns: 1fr
  }
}

.sitemap-col {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px
}

.sitemap-col h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 14px
}

.sitemap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.sitemap-col li a {
  color: var(--body);
  font-weight: 500;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  display: block;
  padding: 4px 0;
  transition: color .2s
}

.sitemap-col li a:hover {
  color: var(--primary)
}

/* ============================================================ */
/* Dropdown navigation enhancement                              */
/* ============================================================ */
nav.main a.has-dd {
  position: relative
}

nav.main a.has-dd>svg {
  transition: transform .2s
}

nav.main a.has-dd[aria-expanded="true"]>svg {
  transform: rotate(180deg)
}

/* Tooltip-style hover indicator (simple v1) — full mega-menu would require JS */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(12, 76, 117, 0.18);
  padding: 14px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
}

nav.main a.has-dd:hover~.nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(2px)
}

.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--body);
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: background .2s
}

.nav-dropdown a:hover {
  background: var(--accent-soft);
  color: var(--primary)
}


/* ============================================================ */
/* Internal pages — topic blocks, list cards, related chips     */
/* ============================================================ */
.topic-main {
  padding: 80px 0 100px
}

.topic-blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto 48px
}

.topic-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform .25s, box-shadow .25s
}

.topic-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(12, 76, 117, .10)
}

.topic-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Manrope', sans-serif;
  opacity: .4;
  min-width: 50px
}

.topic-content h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 8px;
  letter-spacing: -.01em;
  line-height: 1.3
}

.topic-content p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.6;
  margin: 0
}

@media(max-width:560px) {
  .topic-block {
    padding: 20px 22px;
    gap: 16px
  }

  .topic-num {
    font-size: 22px;
    min-width: 36px
  }

  .topic-content h2 {
    font-size: 17px
  }
}

.topic-related {
  margin-top: 48px;
  text-align: center
}

.topic-related h3 {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin: 0 0 16px
}

.related-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.related-chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all .2s
}

.related-chip:hover {
  background: var(--accent-soft);
  border-color: var(--primary)
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 36px 0 48px
}

@media(max-width:760px) {
  .list-grid {
    grid-template-columns: 1fr
  }
}

.list-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, box-shadow .25s
}

.list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10)
}

.list-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin: 0;
  letter-spacing: -.01em;
  line-height: 1.3
}

.list-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1
}

.list-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  margin-top: 8px;
  width: fit-content;
  transition: gap .2s
}

.list-link svg {
  width: 14px;
  height: 14px
}

.list-card:hover .list-link {
  gap: 10px
}


/* ============================================================ */
/* SEO-rich internal pages — comprehensive content layout       */
/* ============================================================ */
.seo-main {
  padding: 50px 0 100px;
  background: #FFFFFF
}

.seo-breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.seo-breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color .2s
}

.seo-breadcrumbs a:hover {
  text-decoration: underline
}

.seo-breadcrumbs span[aria-current] {
  color: var(--body);
  font-weight: 500
}

.seo-hero {
  text-align: start;
  /* max-width: 780px; */
  margin: 0 auto 60px;
  padding: 30px 0
}

.seo-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px
}

.seo-hero h1 {
  font-size: clamp(36px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--heading);
  line-height: 1.1;
  margin: 0 0 18px
}

.seo-lead {
  font-size: 17px;
  color: var(--body);
  line-height: 1.6;
  /* max-width: 680px; */
  margin: 0 auto 28px
}

.seo-cta-row {
  display: flex;
  gap: 14px;
  justify-content: start;
  flex-wrap: wrap
}

.seo-section {
  margin-bottom: 64px;
  padding: 0
}

.seo-section-alt {
  background: linear-gradient(180deg, #F4F8FB 0%, #FFFFFF 100%);
  padding: 60px 0;
  /* margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%); */
  padding-left: 24px;
  padding-right: 24px
}

.seo-section-alt>* {
  /* max-width: 1180px; */
  /* margin-left: auto;
  margin-right: auto */
}

.seo-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -.02em;
  margin: 0 0 12px;
  line-height: 1.2;
  text-align: start
}

.seo-section-lead {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  text-align: start;
  /* max-width: 640px; */
  margin-bottom: 36px
}

@media(max-width:560px) {
  .seo-section h2 {
    font-size: 24px;
    text-align: left
  }

  .seo-section-lead {
    font-size: 14px;
    text-align: left
  }
}

.seo-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  /* max-width: 1100px; */
  margin: 0 auto
}

@media(max-width:760px) {
  .seo-features {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

.seo-feature {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .25s, box-shadow .25s
}

.seo-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10)
}

.seo-feature-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -.02em;
  line-height: 1;
  flex-shrink: 0;
  background: var(--accent-soft);
  width: 46px;
  height: 46px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center
}

.seo-feature h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--heading);
  margin: 0 0 6px;
  line-height: 1.3
}

.seo-feature p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0
}

.seo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* max-width: 1100px; */
  /* margin: 0 auto */
}

@media(max-width:760px) {
  .seo-steps {
    grid-template-columns: 1fr;
    gap: 16px
  }
}

.seo-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center
}

.seo-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #1B6FA6);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(12, 76, 117, .25)
}

.seo-step h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin: 0;
  line-height: 1.3;
  margin-bottom: 8px;
}

.seo-step p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0
}

.seo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  /* max-width: 1100px; */
  margin: 0 auto
}

@media(max-width:900px) {
  .seo-stats {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {
  .seo-stats {
    grid-template-columns: 1fr
  }
}

.seo-stat {
  background: linear-gradient(135deg, var(--primary), #0A3E60);
  color: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center
}

.seo-stat-num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif
}

.seo-stat-lbl {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.seo-stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, .78);
  font-weight: 500;
  line-height: 1.4
}

.seo-faq-section {
  /* max-width: 880px; */
  margin: 0 auto 64px
}

.seo-faqs {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.seo-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s
}

.seo-faq-item.open {
  border-color: var(--primary)
}

.seo-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 22px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
  letter-spacing: -.01em
}

.seo-faq-q:hover {
  color: var(--primary)
}

.seo-faq-icn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
    color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 14px;
  transition: transform .25s
}

.seo-faq-item.open .seo-faq-icn {
  transform: rotate(45deg);
  background: var(--primary);
    color: #fff;
}

.seo-faq-a {
  display: none;
  padding: 0 22px 22px
}

.seo-faq-item.open .seo-faq-a {
  display: block
}

.seo-faq-a p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.65;
  margin: 0
}

.seo-cta-block {
  background: linear-gradient(135deg, var(--primary), #0A3E60);
  color: #fff;
  border-radius: 18px;
  padding: 48px 36px !important;
  text-align: start;
  margin: 0 auto;
  max-width: 1100px
}

.seo-cta-block h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -.01em
}

.seo-cta-block p {
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  line-height: 1.55;
  /* max-width: 560px; */
  margin: 0 auto 24px
}

.seo-cta-block .btn-primary {
  background: #fff !important;
  color: var(--primary) !important;
  border-color: #fff;
  border-color: rgba(255, 255, 255, .3) !important;
}

.seo-cta-block .btn-outline {
  color: #fff ;
  border-color: rgba(255, 255, 255, .4) !important;
}

.seo-cta-block .btn-outline:hover {
  background: rgba(255, 255, 255, .12) !important;
  color: #fff !important;
}

.seo-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  /* max-width: 1100px; */
  margin: 0 auto 36px
}

@media(max-width:760px) {
  .seo-list-grid {
    grid-template-columns: 1fr
  }
}

.seo-list-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s, box-shadow .25s
}

.seo-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(12, 76, 117, .10)
}

.seo-list-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading);
  margin: 0;
  line-height: 1.3
}

.seo-list-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
  flex-grow: 1
}

.seo-list-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  margin-top: 4px;
  width: fit-content;
  transition: gap .2s
}

.seo-list-link svg {
  width: 14px;
  height: 14px
}

.seo-list-card:hover .seo-list-link {
  gap: 10px
}

/* FAQ accordion JS toggle */

@media (max-width:1200.98px) {
  .hero{
    display: flex;
    flex-direction: column-reverse;
  }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 5px;
        min-height: 0;
    }
}

@media (max-width:600px) {
  .rating-svg,.trust-divider{
    display: none;
  }

  .trust-row {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: space-between;
    }

    .v5t-arrow{
      top: 46%;
    }
}

.rating-star-image{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
    border-top: 1px solid #d6d6d6;
    width: -webkit-fill-available;
}

/* ============================================================
   Floating navbar over hero — remove the pale band above the hero.
   The header is a transparent sticky pill (~129px tall) sitting in
   normal flow, which pushed the hero (and its bleed image) down and
   left a pale strip behind the navbar. Pull each hero up behind the
   navbar and add matching top padding so content still clears it.
   ============================================================ */
:root { --ev-nav-h: 129px; }

section.hero.ev-hero-bleed {
  margin-top: calc(-1 * var(--ev-nav-h));
  padding-top: calc(var(--ev-nav-h) + 48px);
}

section.hero.ev-internal-hero {
  margin-top: calc(-1 * var(--ev-nav-h));
  padding-top: calc(var(--ev-nav-h) + 40px);
}

/* The features hero uses the 2-col iframe grid (not the centered grid that
   the other internal heroes use), so it falls outside their padding rule.
   Guarantee its content clears the floating navbar with the same gap. */
section.hero.hero-dashboard-mode.ev-internal-hero:has(.hero-grid-iframe) {
  padding-top: calc(var(--ev-nav-h) + 0px) !important;
}
@media (max-width: 992.98px) {
  section.hero.hero-dashboard-mode.ev-internal-hero:has(.hero-grid-iframe) {
    padding-top: calc(var(--ev-nav-h) + 0px) !important;
  }
}

.rating-star-image img{
  width: 90px;
}


@media (min-width:600px) {
  .rating-star-image{
    display: none;
  }
}


@media(max-width:900px) {
  .faq-side {
    position: static;
    top: auto
  }
}




/* new integration section css demo */

    .ecs-integ-pills {
      background: #fff;
    }
    .ecs-integ-pills .sec-intro {
      text-align: start;
    
    }
   
    .ecs-integ-pills .ecs-ip-grid {
      display: flex;
      flex-direction: column;
      gap: 32px;
      align-items: center;
      margin-bottom:80px;
    }
    .ecs-integ-pills .ecs-ip-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }
    .ecs-integ-pills .ecs-ip-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 70px;
      padding: 16px 15px;
      background: #fff;
      border: 1px solid #F9FAFB;
     border-radius: 9999px;
background: rgba(255, 255, 255, 0.00);
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      width: 160px;
    }
    .ecs-integ-pills .ecs-ip-pill:hover {
      transform: translateY(-2px);
      box-shadow:
        0 4px 8px rgba(12, 76, 117, 0.08),
        0 8px 20px rgba(12, 76, 117, 0.1);
    }
    .ecs-integ-pills .ecs-ip-pill img {
      max-height: 40px;
      width: auto;
      object-fit: contain;
      display: block;
    }
    .ecs-integ-pills .ecs-ip-pill .ecs-ip-label {
      font-size: 15px;
      font-weight: 600;
      color: #383838;
      white-space: nowrap;
    }
    .ecs-integ-pills .ecs-ip-pill.is-text {
      padding: 16px 26px;
    }
    .ecs-integ-pills .ecs-ip-foot {
      text-align: center;
      display: flex;
     justify-content: space-between;
    }

    .ecs-ip-foot p{
color: #6B7280;
font-family: "Liberation Sans";
font-size:calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 142.857% */
    }


     .ecs-ip-foot p span{
color: #1F578F;
font-family: "Liberation Sans";
font-size:calc(14px + (20 - 14) * ((100vw - 320px) / (1920 - 320))) !important;
font-style: normal;
font-weight: 700;
line-height: 20px;
    }
    .button-container{
      display: flex;
      gap: 24px;
    }
    .ecs-integ-pills .ecs-ip-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    .ecs-integ-pills .ecs-ip-cta svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
    }
    @media (max-width: 980px) {
      .ecs-integ-pills .ecs-ip-row { gap: 12px; }
      .ecs-integ-pills .ecs-ip-pill {
        min-height: 58px;
        padding: 12px 20px;
      }
      /* .ecs-integ-pills .ecs-ip-pill img { max-height: 22px; } */
      .ecs-integ-pills .ecs-ip-pill .ecs-ip-label { font-size: 13px; }
    }
    @media (max-width: 560px) {
      .ecs-integ-pills .ecs-ip-grid { gap: 14px; }
      .ecs-integ-pills .ecs-ip-row { gap: 10px; }
      .ecs-integ-pills .ecs-ip-pill {
        min-height: 50px;
        padding: 10px 16px;
      }
    }

    /* ====== Marquee mode (< 992px): each .ecs-ip-row slides horizontally ====== */
    @media (max-width: 1200.98px) {
      .ecs-integ-pills .ecs-ip-grid {
        gap: 18px;
        overflow: hidden;
        /* break out of .container side padding so the marquee runs edge-to-edge */
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: 100vw;
        /* soft fade on left/right edges */
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
                mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
      }
      .ecs-integ-pills .ecs-ip-row {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: flex-start;
        gap: 14px;
        width: max-content;
        animation: ecs-ip-marquee 38s linear infinite;
        will-change: transform;
      }
      .ecs-integ-pills .ecs-ip-row > .ecs-ip-pill {
        flex-shrink: 0;
      }
      /* per-row variation: alternate direction and speed */
      .ecs-integ-pills .ecs-ip-row:nth-child(2) {
        animation-duration: 46s;
        animation-direction: reverse;
      }
      .ecs-integ-pills .ecs-ip-row:nth-child(3) {
        animation-duration: 32s;
      }
      /* pause on hover/touch for accessibility */
      .ecs-integ-pills .ecs-ip-row:hover,
      .ecs-integ-pills .ecs-ip-row:focus-within {
        animation-play-state: paused;
      }
      @media (prefers-reduced-motion: reduce) {
        .ecs-integ-pills .ecs-ip-row { animation: none; }
      }
    }
    @keyframes ecs-ip-marquee {
      from { transform: translate3d(0, 0, 0); }
      to   { transform: translate3d(-50%, 0, 0); }
    }

    @media (max-width:992.98px) {
      .ecs-integ-pills .ecs-ip-foot{
        text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
      }

      .ecs-ip-foot p{
        margin-top: 12px;
      }

      .sol-row-link{

        font-size: 12px;
      }
      .button-container {
    display: flex;
    gap: 10px;
}

#integrations .btn {
   
    padding: 14px 10px;
}
    }

    .new-bg-sec{
      background-color: #e3ecf4 !important;
    }


    .faq-item svg{
      height: 20px;
    }


    .faq-list{
      display: flex;
    flex-direction: column;
    gap: 20px;
    }


   nav.main a{
      font-weight: 600 !important;
      color: var(--Grey-1, #4F4F4F);
    font-family: Manrope;
    font-size: calc(16px + (18 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-style: normal;
    line-height: 120%;
    }


    section.hero.hero-dashboard-mode:has(.hero-grid-centered) {
    padding: 140px 0 60px !important;
}


section.hero.ev-hero-bleed{
  padding-top: 200px !important;
}
@media (max-width:992.98px) {
   section.hero.hero-dashboard-mode:has(.hero-grid-centered) {
    padding: 140px 0 60px !important;
}


section.hero.ev-hero-bleed{
  padding-top: 150px !important;
}


.nav-actions a{
  display: none;
}
}


#why-ecarevoice{
  background-color: #fff !important;
}

/* ============================================================
   Navbar responsive breakpoint @1200px
   - Below 1200px: hide desktop nav links AND both header CTA
     buttons, show the hamburger.
   - 1200px and up: show nav links + CTAs, hide the hamburger.
   Mobile drawer is full width with no CTA buttons inside.
   ============================================================ */
@media (max-width: 1200px) {
  header.site nav.main { display: none !important; }
  header.site .nav-actions .btn { display: none !important; }
  header.site .menu-toggle { display: block !important; }
}
@media (min-width: 1200.02px) {
  header.site .menu-toggle { display: none !important; }
}

.mobile-nav .mobile-panel {
  width: 100% !important;
  max-width: 100% !important;
}

/* Navbar layout: nav links left-aligned beside the logo; CTA buttons
   (and the hamburger on mobile) pushed to the far right. */
header.site .nav-wrap { justify-content: flex-start; }
header.site .nav-actions { margin-left: auto; }

.pad-container{
  padding-top: 70px !important;
  padding-bottom: 60px !important;
  background-color: #fff;
}

.ecs-brand-sep {
    width: 1px;
    height: 34px;
    background: #dbe4ee;
    margin: 0 6px;
}

.ev-hero-bleed h1 .accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 8px;
    background: rgba(168, 199, 226, .35);
    z-index: -1;
    border-radius: 2px;
}

/* === A11Y: Visible keyboard focus ring (EV-017, EV-057) === */
.btn:focus-visible,
.nav-actions .btn:focus-visible,
.foot-cta-actions .btn:focus-visible,
header.site .ev-main-nav a:focus-visible,
header.site .logo:focus-visible,
.foot-col a:focus-visible,
.social-link:focus-visible,
.menu-toggle:focus-visible,
.to-top:focus-visible {
  outline: 3px solid #1B6FA6;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(27, 111, 166, .22);
  border-radius: 8px;
}
header.site .nav-actions .btn-outline:focus-visible,
header.site .nav-actions .btn-primary:focus-visible {
  outline-color: #0C4C75;
}
.foot-cta-actions .btn:focus-visible,
.social-link:focus-visible {
  outline-color: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .35);
}
a:focus-visible {
  outline: 2px solid #1B6FA6;
  outline-offset: 2px;
}




@media (max-width:575.98px) {

  .foot-badges img {
    max-width: 95px;
    max-height: 36px;
}


section.hero.ev-hero-bleed .hero-cta .btn {
   
    width: auto !important;
    min-width: 220px !important;
}
  
}


/* new common css changes  */


@media (max-width:1400px) and (min-width:1200px) {
  .badge-new img {
    padding: 0;
}
}

@media (max-width:992px) {
  .badge-new img {
    padding: 0;
}
  section.hero.ev-hero-bleed .hero-cta{
    display: none !important;
  }
  .hero.hero-dashboard-mode .hero-grid .hero-cta{
        display: none !important;

  }

  .hero.hero-dashboard-mode .hero-grid .hero-cta, .hero.hero-dashboard-mode .hero-grid .trial-note, .hero.hero-dashboard-mode .hero-grid .trust-row {
    justify-content: center !important;
}
}




  .hero h1 .accent {
    position: relative;
    display: inline;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 8px;
    background: rgba(168, 199, 226, .35);
    z-index: -1;
    border-radius: 2px;
}


/* ============================================================
   STICKY BOTTOM CTA BAR (mobile / tablet only — < 992px)
   Two buttons: trial (outline, opens HubSpot) + demo (solid, opens Calendly)
   ============================================================ */
.ecs-sticky-cta { display: none; }

@media (max-width: 991.98px) {
   .badge-new img {
    padding: 0;
    margin: auto 20px;
}
  .ecs-sticky-cta {
    position: fixed;
    
    bottom: 0px;
   
    z-index: 100;
    display: flex;
    gap: 10px;
    padding: 8px;
    background: #ffffff;
   
   
    max-width: 100%;
    width: 100%;
  }

  .ecs-sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    border: 1.5px solid #0C4C75;
    letter-spacing: -0.005em;
  }

  .ecs-sticky-cta-btn:focus-visible {
    outline: 3px solid rgba(27, 111, 166, .35);
    outline-offset: 2px;
  }

  .ecs-sticky-cta-outline {
    background: #ffffff;
    color: #0C4C75;
        width: 100%;
font-weight: 600;
  }

  .ecs-sticky-cta-outline:hover {
    background: #F0F7FC;
    color: #0C4C75;
    border-color: #0C4C75;
  }

  .ecs-sticky-cta-solid {
    background: #0C4C75;
    color: #ffffff;
    width: 100%;
  }

  .ecs-sticky-cta-solid:hover {
    background: #0C4C75;
    color: #ffffff;
    border-color: #1B6FA6;
    box-shadow: 0 6px 18px rgba(12, 76, 117, .25);
    transform: translateY(-1px);
  }

  /* Keep "Back to top" clear of the sticky CTA */
  .to-top { bottom: 86px !important; }

  /* Body bottom padding so the fixed bar never covers final content */
  body { padding-bottom: 60px; }
}

@media (max-width: 560px) {
  .ecs-sticky-cta {
    bottom: 0px;
    padding: 6px;
    gap: 6px;
  }
  .ecs-sticky-cta-btn {
    padding: 11px 14px;
    font-size: 13px;
    border-radius: 8px;
  }
  body { padding-bottom: 55px; }
}

@media (max-width: 380px) {
  .ecs-sticky-cta-btn {
    padding: 10px 12px;
    font-size: 12px;
  }
}


@media (max-width:1400px) and (min-width:992px) {
  .badge-new img {
    padding: 0 !important;
}
}


@media (max-width: 420.98px) {
   .badge-new img {
    padding: 0;
    margin: auto 8px;
}
section.hero.ev-hero-bleed h1 .accent{
    display: inline !important;
}
}


@media (max-width:900px) {
    .foot-cta-actions , .faq-side{
        display: none;
    }
}