/* ============================================================
   eCareCRM - 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)
}

.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: var(--primary);
  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 {
  height: 44px;
  width: auto;
  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 .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: eCareCRM 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
}

.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: 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
  }
}

/* ============ 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
}

.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: 920px;
  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
}

/* eCareHealth.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 ecarehealth.com */
.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 h5 {
  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 h5::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
  }

  .logo img {
    height: 36px
  }

  .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(--primary);
    color: #fff;
  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)
}

.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;
}

.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
  }
}