/* =========================================================
   ULTRALINK UK — Healthcare SEO Landing Page
   healthcare-seo.css
   All rules scoped under .hseo-page
   ========================================================= */

.hseo-page {
  --hseo-primary: #1B7A8F;
  --hseo-secondary: #2A9DB0;
  --hseo-accent: #3FA67A;
  --hseo-accent-dark: #2E8562;
  --hseo-dark: #0C303E;
  --hseo-light: #F5FAFB;
  --hseo-white: #FFFFFF;
  --hseo-blue: var(--hseo-primary);
  --hseo-green: var(--hseo-accent);
  --hseo-navy: var(--hseo-dark);
  --hseo-muted: #4E6E78;
  --hseo-line: rgba(12, 48, 62, 0.1);
  --hseo-soft: var(--hseo-light);
  --hseo-radius: 18px;
  --hseo-radius-lg: 24px;
  --hseo-shadow: 0 10px 30px rgba(12, 48, 62, 0.07);
  --hseo-shadow-hover: 0 22px 48px rgba(27, 122, 143, 0.16);
  --hseo-section-y: clamp(72px, 8vw, 120px);
  --hseo-grad-primary: linear-gradient(135deg, var(--hseo-primary) 0%, var(--hseo-secondary) 100%);
  --hseo-grad-brand: linear-gradient(135deg, var(--hseo-accent) 0%, var(--hseo-primary) 100%);
  --hseo-grad-dark: linear-gradient(135deg, var(--hseo-dark) 0%, var(--hseo-primary) 55%, var(--hseo-secondary) 100%);
  color: var(--hseo-navy);
  overflow-x: clip;
}

.hseo-page [class*='hseo-'] {
  min-width: 0;
}

.hseo-page .section {
  padding: var(--hseo-section-y) 0;
}

.hseo-page .section > .container {
  max-width: min(1320px, 100%);
}

/* Reveal — subtle fade/up only */
.hseo-page [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.hseo-page [data-reveal].revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hseo-page [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hseo-stat-card:hover,
  .hseo-pillar-card:hover,
  .hseo-capability-card:hover,
  .hseo-price-card:hover,
  .hseo-step:hover,
  .hseo-ready-btn:hover {
    transform: none;
  }
}

.hseo-page .kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--hseo-accent-dark);
  background: rgba(63, 166, 122, 0.12);
  padding: 5px 11px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.hseo-section-head {
  max-width: min(1080px, 100%);
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.hseo-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hseo-section-head .hseo-lead,
.hseo-section-head--center .hseo-lead {
  margin-left: auto;
  margin-right: auto;
}

.hseo-section-head .kicker {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}

.hseo-section-head h2,
.hseo-page .hseo-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--hseo-navy);
  line-height: 1.15;
}

.hseo-section-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 14px;
  max-width: min(920px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.hseo-lead,
.hseo-pillar-card p,
.hseo-capability-card > p,
.hseo-journey-step p,
.hseo-step-body p {
  color: var(--hseo-muted);
  line-height: 1.7;
  font-size: clamp(0.92rem, 1.4vw, 1rem);
}

.hseo-lead {
  margin-bottom: 10px;
  max-width: min(920px, 100%);
}

.hseo-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(27, 122, 143, 0.12), rgba(63, 166, 122, 0.12));
  color: var(--hseo-primary);
  font-size: 1.05rem;
  margin: 0 auto 14px;
  flex-shrink: 0;
}

.hseo-card-icon--sm {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  font-size: 0.92rem;
  margin: 0 auto 10px;
}

.hseo-hero-cta .btn,
.hseo-challenges-copy .btn,
.hseo-challenges-cta .btn,
.hseo-ready-inner .btn,
.hseo-price-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

/* ============================================================
   BUTTONS — pill CTAs, gradient primary, teal outline secondary
   ============================================================ */
.hseo-page .btn-primary {
  background: var(--hseo-grad-primary);
  border: 1px solid transparent;
  color: var(--hseo-white);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(27, 122, 143, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.hseo-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(27, 122, 143, 0.34);
  filter: brightness(1.03);
  color: var(--hseo-white);
}

.hseo-page .btn-secondary,
.hseo-page .btn-outline {
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid var(--hseo-primary);
  color: var(--hseo-primary);
  border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hseo-page .btn-secondary:hover,
.hseo-page .btn-outline:hover {
  background: rgba(27, 122, 143, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(27, 122, 143, 0.14);
  color: var(--hseo-primary);
}

/* ============================================================
   1. HERO — premium SaaS split composition
   ============================================================ */
.hseo-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #eaf5f7 0%, #f5fafb 42%, #ffffff 100%);
  --hero-y: clamp(40px, 5vw, 72px);
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h, 72px) + var(--hero-y)) 0 var(--hero-y);
}

.hseo-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hseo-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 52% 48% at 8% 18%, rgba(27, 122, 143, 0.12), transparent 68%),
    radial-gradient(ellipse 42% 38% at 92% 22%, rgba(63, 166, 122, 0.1), transparent 62%),
    radial-gradient(ellipse 36% 30% at 70% 88%, rgba(42, 157, 176, 0.08), transparent 70%);
}

.hseo-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(27, 122, 143, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 122, 143, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 55% 35%, #000 15%, transparent 82%);
}

.hseo-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.hseo-hero-glow--1 {
  width: 320px;
  height: 320px;
  background: rgba(42, 157, 176, 0.16);
  top: -60px;
  right: 8%;
}

.hseo-hero-glow--2 {
  width: 240px;
  height: 240px;
  background: rgba(63, 166, 122, 0.14);
  bottom: -40px;
  left: 4%;
}

.hseo-hero > .container {
  max-width: min(1320px, 100%);
}

.hseo-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  width: 100%;
  max-width: none;
}

.hseo-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 122, 143, 0.1);
  border: 1px solid rgba(27, 122, 143, 0.16);
  color: var(--hseo-primary);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hseo-hero-copy h1 {
  font-size: clamp(2.05rem, 3.7vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: none;
}

.hseo-hero-sub {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 600;
  color: var(--hseo-primary);
  line-height: 1.4;
  margin-bottom: 16px;
  max-width: min(42ch, 100%);
}

.hseo-hero-lead {
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  line-height: 1.7;
  color: var(--hseo-muted);
  max-width: min(54ch, 100%);
  margin-bottom: 28px;
}

.hseo-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hseo-hero-cta .btn {
  min-height: 50px;
  padding-inline: 24px;
  max-width: 100%;
  white-space: normal;
  height: auto;
  text-wrap: balance;
}

.hseo-hero-cta .btn-primary {
  box-shadow: 0 14px 30px rgba(27, 122, 143, 0.26);
}

.hseo-hero-visual {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hseo-search-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  padding: 36px 28px 40px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 55% at 85% 90%, rgba(63, 166, 122, 0.28), transparent 60%),
    linear-gradient(160deg, #0b2430 0%, #0c303e 48%, #0a1f28 100%);
  box-shadow:
    0 24px 60px rgba(12, 48, 62, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.hseo-search-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 22px;
  padding: 18px 16px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hseo-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3f6f8;
  border: 1px solid rgba(12, 48, 62, 0.08);
  margin-bottom: 14px;
}

.hseo-search-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--hseo-primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(27, 122, 143, 0.16);
}

.hseo-search-query {
  display: inline-flex;
  align-items: center;
  min-height: 1.2em;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hseo-navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
}

.hseo-search-caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 2px;
  background: var(--hseo-primary);
  border-radius: 1px;
  animation: hseoCaretBlink 1s steps(1) infinite;
}

.hseo-search-results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hseo-search-result {
  display: grid;
  grid-template-columns: 18px 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: transparent;
}

.hseo-search-result.is-featured {
  grid-template-columns: 18px 28px minmax(0, 1fr) auto;
  background: rgba(63, 166, 122, 0.1);
}

.hseo-search-rank {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  color: #9aa6b2;
  text-align: center;
}

.hseo-search-result.is-featured .hseo-search-rank {
  color: var(--hseo-accent);
}

.hseo-search-favicon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e6ebf0;
  flex-shrink: 0;
}

.hseo-search-favicon--brand {
  background: var(--hseo-grad-brand);
  box-shadow: 0 6px 14px rgba(27, 122, 143, 0.28);
}

.hseo-search-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hseo-search-meta strong {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 700;
  color: #7a8794;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hseo-search-result.is-featured .hseo-search-meta strong {
  color: var(--hseo-navy);
}

.hseo-search-meta em {
  font-style: normal;
  font-size: 0.72rem;
  color: #9aa6b2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hseo-search-badge {
  justify-self: end;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--hseo-accent-dark);
  background: rgba(63, 166, 122, 0.16);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}

.hseo-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 132px;
  padding: 12px 14px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  animation: hseoFloatSoft 4.5s ease-in-out infinite;
}

.hseo-float-card strong {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hseo-navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hseo-float-card span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a96a3;
  line-height: 1.3;
}

.hseo-float-card--top {
  top: 14px;
  right: 8px;
  animation-delay: 0.4s;
}

.hseo-float-card--bottom {
  left: 8px;
  bottom: 16px;
  animation-delay: 1.1s;
}

@keyframes hseoCaretBlink {
  0%,
  45% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

@keyframes hseoFloatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hseo-search-caret,
  .hseo-float-card {
    animation: none;
  }
}

/* ============================================================
   2. TRUST
   ============================================================ */
.hseo-trust {
  background: var(--hseo-white);
  border-top: 1px solid var(--hseo-line);
}

.hseo-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
  margin-bottom: 32px;
  align-items: stretch;
}

.hseo-stat-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius-lg);
  padding: clamp(22px, 2.6vw, 30px);
  box-shadow: var(--hseo-shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hseo-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hseo-shadow-hover);
  border-color: rgba(27, 122, 143, 0.22);
}

.hseo-stat-value {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.6vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--hseo-grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  line-height: 1;
}

.hseo-stat-text {
  color: var(--hseo-muted);
  font-size: clamp(0.86rem, 1.3vw, 0.95rem);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.hseo-logo-marquee {
  overflow: hidden;
  width: 100%;
  padding-top: 22px;
  border-top: 1px solid var(--hseo-line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hseo-logo-marquee-track {
  display: flex;
  width: max-content;
  animation: hseoLogoMarquee 28s linear infinite;
}

.hseo-logo-marquee:hover .hseo-logo-marquee-track {
  animation-play-state: paused;
}

.hseo-logo-set {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  padding-right: clamp(36px, 5vw, 64px);
}

.hseo-logo-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 48px;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.hseo-logo-item:hover {
  opacity: 1;
}

.hseo-logo-item img {
  width: 100%;
  height: 100%;
  max-width: 140px;
  object-fit: contain;
  object-position: center;
}

@keyframes hseoLogoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hseo-logo-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hseo-logo-marquee-track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hseo-logo-set {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
    gap: 20px 28px;
  }

  .hseo-logo-set[aria-hidden='true'] {
    display: none;
  }
}

/* ============================================================
   3. CHALLENGES
   ============================================================ */
.hseo-page .section.hseo-challenges {
  background: linear-gradient(180deg, var(--hseo-soft) 0%, #eef7f8 100%);
  padding-bottom: clamp(36px, 4vw, 52px);
}

.hseo-challenges-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: stretch;
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.hseo-browser {
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius-lg);
  box-shadow: var(--hseo-shadow);
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hseo-browser-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
}

.hseo-browser-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d7dee8;
}

.hseo-browser-dot:nth-child(1) {
  background: #ff6b6b;
}

.hseo-browser-dot:nth-child(2) {
  background: #ffd166;
}

.hseo-browser-dot:nth-child(3) {
  background: var(--hseo-accent);
}

.hseo-browser-url {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--hseo-soft);
  border: 1px solid var(--hseo-line);
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--hseo-navy);
  overflow: hidden;
}

.hseo-browser-url-static {
  color: var(--hseo-muted);
  white-space: nowrap;
}

.hseo-browser-url-query {
  display: inline-flex;
  align-items: center;
  color: var(--hseo-navy);
  white-space: nowrap;
}

.hseo-browser-results {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.hseo-browser-result {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
}

.hseo-browser-result.is-low {
  grid-template-columns: 28px minmax(0, 1fr) auto;
  background: rgba(196, 122, 58, 0.1);
}

.hseo-browser-favicon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #d7dee8;
  flex-shrink: 0;
}

.hseo-browser-favicon--ok {
  background: var(--hseo-grad-brand);
  box-shadow: 0 6px 14px rgba(27, 122, 143, 0.22);
}

.hseo-browser-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hseo-browser-meta strong {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--hseo-navy);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hseo-browser-result.is-low .hseo-browser-meta strong {
  color: #8a96a3;
}

.hseo-browser-meta em {
  font-style: normal;
  font-size: 0.72rem;
  color: #9aa6b2;
}

.hseo-browser-badge {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #a56a2c;
  background: rgba(196, 122, 58, 0.16);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}

.hseo-challenge-list {
  list-style: none;
  margin: 0;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius-lg);
  box-shadow: var(--hseo-shadow);
  overflow: hidden;
}

.hseo-challenge-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--hseo-navy);
  border-bottom: 1px solid var(--hseo-line);
}

.hseo-challenge-list li:last-child {
  border-bottom: 0;
}

.hseo-challenge-list i {
  color: var(--hseo-secondary);
  margin-top: 3px;
  flex-shrink: 0;
}

.hseo-challenges-cta {
  display: flex;
  justify-content: center;
}

.hseo-challenges-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Shared check lists used elsewhere */
.hseo-check-list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius-lg);
  padding: clamp(20px, 2.8vw, 28px);
  box-shadow: var(--hseo-shadow);
}

.hseo-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--hseo-navy);
  padding: 8px 6px;
  border-radius: 12px;
}

.hseo-check-list li:nth-child(odd) {
  background: rgba(245, 250, 251, 0.9);
}

.hseo-check-list i {
  color: var(--hseo-accent);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================================
   4. APPROACH
   ============================================================ */
.hseo-page .section.hseo-approach {
  background: var(--hseo-white);
  padding-top: clamp(36px, 4vw, 52px);
}

.hseo-approach-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.hseo-regulated {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(63, 166, 122, 0.12), transparent 42%),
    linear-gradient(160deg, #eaf5f7 0%, #f5fafb 55%, #eef7f8 100%);
  border: 1px solid var(--hseo-line);
  box-shadow: var(--hseo-shadow);
}

.hseo-regulated-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(118px, 34%, 148px);
  height: clamp(118px, 34%, 148px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--hseo-grad-primary);
  color: var(--hseo-white);
  box-shadow:
    0 0 0 14px rgba(27, 122, 143, 0.1),
    0 18px 40px rgba(27, 122, 143, 0.28);
  z-index: 2;
}

.hseo-regulated-core i {
  font-size: 1.45rem;
}

.hseo-regulated-core span {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hseo-regulated-node {
  position: absolute;
  z-index: 1;
  width: clamp(58px, 16%, 72px);
  height: clamp(58px, 16%, 72px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--hseo-white);
  color: var(--hseo-primary);
  font-family: var(--font-head);
  font-size: clamp(0.68rem, 1.4vw, 0.78rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(12, 48, 62, 0.1);
  border: 1px solid rgba(27, 122, 143, 0.1);
}

.hseo-regulated-node:nth-child(2) {
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.hseo-regulated-node:nth-child(3) {
  top: 24%;
  right: 8%;
}

.hseo-regulated-node:nth-child(4) {
  bottom: 14%;
  right: 14%;
}

.hseo-regulated-node:nth-child(5) {
  bottom: 14%;
  left: 14%;
}

.hseo-regulated-node:nth-child(6) {
  top: 36%;
  left: 6%;
}

.hseo-approach-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.hseo-approach-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--hseo-line);
}

.hseo-approach-item:first-child {
  padding-top: 0;
}

.hseo-approach-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hseo-approach-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--hseo-white);
  background: var(--hseo-grad-primary);
  box-shadow: 0 10px 22px rgba(27, 122, 143, 0.22);
  flex-shrink: 0;
}

.hseo-approach-body h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 750;
  color: var(--hseo-navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.hseo-approach-body p {
  color: var(--hseo-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.hseo-approach-body p + p {
  margin-top: 8px;
}

/* Legacy pillar styles kept for safety if reused */
.hseo-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
}

.hseo-pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius);
  padding: clamp(22px, 2.6vw, 28px);
  box-shadow: var(--hseo-shadow);
  text-align: left;
  align-items: flex-start;
  overflow: hidden;
}

/* ============================================================
   5. EXPERTISE TABS
   ============================================================ */
.hseo-expertise {
  background: linear-gradient(180deg, var(--hseo-soft) 0%, #fff 55%);
}

.hseo-expertise-shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.4fr);
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius-lg);
  box-shadow: var(--hseo-shadow);
  overflow: hidden;
  min-height: 420px;
}

.hseo-tabs {
  margin: 0;
  background: var(--hseo-soft);
  border-right: 1px solid var(--hseo-line);
}

.hseo-tabs-track {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 560px;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
}

.hseo-tab {
  appearance: none;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--hseo-navy);
  font-family: var(--font-head);
  font-weight: 650;
  font-size: 0.88rem;
  line-height: 1.35;
  min-height: 58px;
  padding: 12px 12px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  white-space: normal;
}

.hseo-tab:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--hseo-primary);
}

.hseo-tab.is-active {
  background: var(--hseo-white);
  color: var(--hseo-navy);
  box-shadow: 0 8px 20px rgba(12, 48, 62, 0.06);
}

.hseo-tab-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--hseo-muted);
  background: rgba(12, 48, 62, 0.06);
}

.hseo-tab.is-active .hseo-tab-mark,
.hseo-tab-mark--active {
  color: var(--hseo-white);
  background: var(--hseo-grad-primary);
  box-shadow: 0 8px 18px rgba(27, 122, 143, 0.22);
}

.hseo-tab-label {
  min-width: 0;
}

.hseo-tab-arrow {
  font-size: 0.72rem;
  color: var(--hseo-primary);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hseo-tab.is-active .hseo-tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

.hseo-tab-panel {
  background: var(--hseo-white);
  border: 0;
  border-radius: 0;
  padding: clamp(22px, 3vw, 32px);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hseo-tab-panel-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.hseo-tab-panel-title {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  margin: 0;
  text-align: left;
  color: var(--hseo-navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hseo-tab-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  flex: 1;
}

.hseo-tab-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0 22px 0 0;
  border: 0;
  border-right: 1px solid var(--hseo-line);
}

.hseo-tab-col--approach {
  background: transparent;
  border-color: transparent;
  border-right: 0;
  padding: 0 0 0 22px;
}

.hseo-tab-col h4 {
  display: block;
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: left;
  color: var(--hseo-primary);
}

.hseo-tab-col h4 i {
  display: none;
}

.hseo-tab-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.hseo-tab-col li {
  position: relative;
  padding: 12px 0;
  padding-left: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--hseo-muted);
  border-bottom: 1px solid var(--hseo-line);
  text-align: left;
}

.hseo-tab-col li:last-child {
  border-bottom: 0;
}

.hseo-tab-col li::before {
  display: none;
}

/* ============================================================
   6. CAPABILITIES
   ============================================================ */
.hseo-capabilities {
  background: var(--hseo-white);
}

.hseo-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
  align-items: stretch;
}

.hseo-capability-card {
  position: relative;
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius);
  padding: clamp(22px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--hseo-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: left;
  align-items: flex-start;
  overflow: hidden;
}

.hseo-capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--hseo-primary);
}

.hseo-capability-card:nth-child(even)::before {
  background: var(--hseo-accent);
}

.hseo-capability-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hseo-shadow-hover);
  border-color: rgba(27, 122, 143, 0.22);
}

.hseo-capability-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--hseo-white);
  background: var(--hseo-primary);
  box-shadow: 0 10px 22px rgba(27, 122, 143, 0.2);
}

.hseo-capability-mark--sm {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 0.72rem;
  margin-bottom: 12px;
}

.hseo-capability-card:nth-child(even) .hseo-capability-mark {
  background: var(--hseo-accent);
  box-shadow: 0 10px 22px rgba(63, 166, 122, 0.22);
}

.hseo-capability-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 750;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--hseo-navy);
}

.hseo-capability-card > p {
  margin-bottom: 18px;
  flex: 1;
  text-align: left;
}

.hseo-activity-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  width: 100%;
}

.hseo-activity-chips li {
  font-size: 0.74rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--hseo-primary);
  background: rgba(27, 122, 143, 0.08);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 6px 12px;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* ============================================================
   7. CONNECTED JOURNEY
   ============================================================ */
.hseo-connected {
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(42, 157, 176, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(63, 166, 122, 0.12), transparent 50%),
    linear-gradient(165deg, #071f28 0%, var(--hseo-dark) 45%, #0a3848 100%);
  color: rgba(255, 255, 255, 0.88);
}

.hseo-connected-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hseo-secondary);
  margin: 0 0 14px;
}

.hseo-connected-head h2 {
  color: var(--hseo-white);
}

.hseo-connected-head .hseo-lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: min(760px, 100%);
}

.hseo-journey {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  max-width: min(720px, 100%);
  gap: 0;
}

.hseo-journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px 22px;
  align-items: start;
  padding: 0 0 36px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: left;
}

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

.hseo-journey-step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 21px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(42, 157, 176, 0.55) 0%,
    rgba(63, 166, 122, 0.35) 100%
  );
}

.hseo-journey-num {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--hseo-white);
  background: rgba(7, 31, 40, 0.92);
  border: 2px solid var(--hseo-secondary);
  box-shadow: 0 0 0 6px rgba(42, 157, 176, 0.12);
}

.hseo-journey-body {
  padding-top: 6px;
  min-width: 0;
}

.hseo-journey-step h3 {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 750;
  margin: 0 0 8px;
  line-height: 1.3;
  color: var(--hseo-white);
  text-align: left;
}

.hseo-journey-step p {
  margin: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  line-height: 1.7;
}

/* ============================================================
   9. FRAMEWORK
   ============================================================ */
.hseo-framework {
  background: linear-gradient(180deg, #eef7f8 0%, #fff 100%);
}

.hseo-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}

.hseo-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  gap: 14px;
  text-align: center;
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius);
  padding: 22px 20px;
  box-shadow: var(--hseo-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hseo-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--hseo-shadow-hover);
  border-color: rgba(27, 122, 143, 0.22);
}

.hseo-step-num {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--hseo-white);
  background: var(--hseo-grad-brand);
  margin: 0 auto;
  flex-shrink: 0;
}

.hseo-step-body {
  max-width: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hseo-step-body h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Center the last two cards on the second row */
@media (min-width: 901px) {
  .hseo-steps {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hseo-step {
    grid-column: span 2;
  }

  .hseo-step:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .hseo-step:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

/* ============================================================
   10. PACKAGES
   ============================================================ */
.hseo-packages {
  background: linear-gradient(180deg, var(--hseo-soft) 0%, #eef7f8 100%);
}

.hseo-includes {
  max-width: none;
  margin: clamp(28px, 4vw, 44px) 0 0;
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius-lg);
  padding: clamp(24px, 3.2vw, 36px) clamp(22px, 3vw, 40px);
  box-shadow: var(--hseo-shadow);
}

.hseo-includes-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--hseo-navy);
  margin: 0 0 clamp(18px, 2.4vw, 24px);
  text-align: center;
}

.hseo-includes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 28px;
}

.hseo-includes li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 550;
  color: var(--hseo-navy);
  text-align: left;
}

.hseo-includes li i {
  color: var(--hseo-secondary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.82rem;
}

.hseo-includes li span {
  min-width: 0;
}

.hseo-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 22px);
  align-items: stretch;
}

.hseo-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius-lg);
  padding: clamp(24px, 2.8vw, 30px) clamp(20px, 2.2vw, 26px);
  box-shadow: var(--hseo-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
  align-items: center;
}

.hseo-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hseo-shadow-hover);
  border-color: rgba(27, 122, 143, 0.24);
}

.hseo-price-card--featured {
  border-color: rgba(27, 122, 143, 0.32);
  box-shadow: 0 16px 40px rgba(27, 122, 143, 0.16);
}

.hseo-price-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: var(--hseo-grad-brand);
}

.hseo-price-card h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 750;
  margin-bottom: 12px;
  line-height: 1.25;
}

.hseo-price-suitable {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--hseo-muted);
  margin-bottom: 16px;
  flex: 1;
}

.hseo-price-suitable span {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hseo-primary);
  margin-bottom: 5px;
}

.hseo-price-value {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--hseo-navy);
  margin-bottom: 16px;
}

.hseo-price-cta {
  margin-top: auto;
  width: 100%;
  white-space: normal;
  height: auto;
  min-height: 48px;
  padding: 12px 14px;
  line-height: 1.3;
}

.hseo-price-cta span {
  text-wrap: balance;
}

/* ============================================================
   11. AGENCY COMPARISON
   ============================================================ */
.hseo-agency {
  background: var(--hseo-white);
}

.hseo-compare-wrap {
  border-radius: var(--hseo-radius-lg);
  border: 1px solid var(--hseo-line);
  box-shadow: var(--hseo-shadow);
  background: var(--hseo-white);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.hseo-compare {
  width: 100%;
  border-collapse: collapse;
}

.hseo-compare th,
.hseo-compare td {
  padding: 16px 20px;
  text-align: left;
  vertical-align: top;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hseo-compare thead th {
  font-family: var(--font-head);
  font-weight: 750;
  font-size: 0.92rem;
  background: var(--hseo-soft);
  color: var(--hseo-navy);
  border-bottom: 1px solid var(--hseo-line);
  width: 50%;
}

.hseo-compare thead th:last-child {
  background: linear-gradient(135deg, rgba(27, 122, 143, 0.1), rgba(63, 166, 122, 0.1));
  color: var(--hseo-primary);
}

.hseo-compare tbody tr + tr td {
  border-top: 1px solid var(--hseo-line);
}

.hseo-compare td {
  color: var(--hseo-muted);
}

.hseo-compare td:last-child {
  color: var(--hseo-navy);
  background: rgba(27, 122, 143, 0.035);
}

.hseo-compare td i {
  margin-right: 8px;
  width: 1em;
  flex-shrink: 0;
  text-align: center;
}

.hseo-compare td span {
  display: inline;
}

.hseo-compare td:first-child i {
  color: #c45a5a;
}

.hseo-compare td:last-child i {
  color: var(--hseo-accent);
}

/* ============================================================
   12. READY BAND — quieter; form is primary convert
   ============================================================ */
.hseo-ready {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6.5vw, 84px) 0;
  background: var(--hseo-grad-dark);
  color: var(--hseo-white);
}

.hseo-ready::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 55% at 85% 15%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.hseo-ready-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.hseo-ready-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.9vw, 2.1rem);
  font-weight: 800;
  color: var(--hseo-white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hseo-ready-inner p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  margin-bottom: 10px;
}

.hseo-ready-btn {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--hseo-white) !important;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  min-height: 48px;
  padding-inline: 22px;
  max-width: 100%;
  white-space: normal;
  height: auto;
  text-wrap: balance;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.hseo-ready-btn:hover {
  background: var(--hseo-white);
  color: var(--hseo-primary) !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

/* ============================================================
   13. FAQ + CONTACT within page
   ============================================================ */
.hseo-page .hseo-faq {
  background: var(--hseo-soft);
  padding-top: var(--hseo-section-y);
  padding-bottom: calc(var(--hseo-section-y) * 0.75);
}

.hseo-page .hseo-faq .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hseo-page .hseo-faq .acc-item {
  background: var(--hseo-white);
  border: 1px solid var(--hseo-line);
  border-radius: var(--hseo-radius);
  box-shadow: var(--hseo-shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.hseo-page .hseo-faq .acc-item:hover {
  border-color: rgba(27, 122, 143, 0.2);
}

.hseo-page .hseo-faq .acc-item.is-open,
.hseo-page .hseo-faq .acc-item[open] {
  border-color: rgba(27, 122, 143, 0.28);
  box-shadow: var(--hseo-shadow-hover);
}

.hseo-page .hseo-faq .acc-header {
  min-height: 52px;
  padding-block: 16px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--hseo-navy);
  cursor: pointer;
  transition: color 0.2s ease;
}

.hseo-page .hseo-faq .acc-header:hover {
  color: var(--hseo-primary);
}

.hseo-page .hseo-faq .acc-item + .acc-item {
  margin-top: 10px;
}

.hseo-page .hseo-faq .acc-body {
  color: var(--hseo-muted);
  line-height: 1.7;
}

/* Shared contact CTA — keep site-wide final-cta look (do not restyle) */
.hseo-page .final-cta,
.hseo-page .hseo-contact {
  padding-top: calc(var(--hseo-section-y) * 0.85);
}

.hseo-page .final-cta .cta-grid,
.hseo-page .hseo-contact .cta-grid {
  align-items: start;
}

/* Restore Ultralink brand button inside contact form */
.hseo-page .final-cta .btn-primary,
.hseo-page .hseo-contact .btn-primary {
  background: var(--grad-brand);
  border: none;
  border-radius: var(--radius, 12px);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 99, 251, 0.3);
  filter: none;
}

.hseo-page .final-cta .btn-primary:hover,
.hseo-page .hseo-contact .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(18, 99, 251, 0.42);
  filter: none;
  color: #fff;
}

.hseo-page .hseo-tab:focus-visible,
.hseo-page .btn:focus-visible,
.hseo-page .hseo-faq .acc-header:focus-visible,
.hseo-page a:focus-visible {
  outline: 2px solid var(--hseo-secondary);
  outline-offset: 3px;
}

.hseo-page .final-cta a:focus-visible,
.hseo-page .hseo-contact a:focus-visible,
.hseo-page .final-cta .btn:focus-visible,
.hseo-page .hseo-contact .btn:focus-visible {
  outline-color: var(--blue, #1263FB);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .hseo-hero-inner {
    gap: clamp(22px, 3vw, 40px);
  }

  .hseo-search-stage {
    max-width: 420px;
    padding: 32px 22px 36px;
  }
}

@media (max-width: 1100px) {
  .hseo-capability-grid,
  .hseo-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hseo-capability-grid .hseo-capability-card:last-child:nth-child(odd),
  .hseo-pricing-grid .hseo-price-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 1024px) {
  .hseo-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hseo-includes ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hseo-challenges-layout {
    grid-template-columns: 1fr;
  }

  .hseo-approach-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hseo-regulated {
    max-width: 360px;
  }

  .hseo-expertise-shell {
    grid-template-columns: 1fr;
  }

  .hseo-tabs {
    border-right: 0;
    border-bottom: 1px solid var(--hseo-line);
  }

  .hseo-tabs-track {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    gap: 8px;
    padding: 12px;
    scrollbar-width: none;
  }

  .hseo-tabs-track::-webkit-scrollbar {
    display: none;
  }

  .hseo-tab {
    flex: 0 0 auto;
    width: min(260px, 78vw);
    grid-template-columns: 36px minmax(0, 1fr) 14px;
  }

  .hseo-tab-arrow {
    display: none;
  }

  .hseo-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hseo-hero-copy {
    text-align: center;
  }

  .hseo-hero-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hseo-hero-cta {
    justify-content: center;
  }

  .hseo-hero-visual {
    min-height: 0;
    max-width: 520px;
    width: 100%;
    margin-inline: auto;
  }

  .hseo-search-stage {
    max-width: 100%;
  }

  .hseo-hero-sub,
  .hseo-hero-lead,
  .hseo-hero-copy h1 {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hseo-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hseo-pillar-grid .hseo-pillar-card {
    grid-column: auto;
  }

  .hseo-pillar-grid .hseo-pillar-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }

  .hseo-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hseo-pricing-grid .hseo-price-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }

  .hseo-capability-grid .hseo-capability-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }

  .hseo-hero {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .hseo-journey-step {
    gap: 14px 16px;
    padding-bottom: 28px;
  }

  .hseo-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hseo-step,
  .hseo-step:nth-child(4),
  .hseo-step:nth-child(5) {
    grid-column: auto;
  }

  .hseo-step:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    width: 100%;
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .hseo-float-card--top {
    top: 8px;
    right: 4px;
    min-width: 118px;
    padding: 10px 12px;
  }

  .hseo-float-card--bottom {
    left: 4px;
    bottom: 10px;
    min-width: 118px;
    padding: 10px 12px;
  }

  .hseo-float-card strong {
    font-size: 1.15rem;
  }

  .hseo-search-stage {
    padding: 28px 16px 32px;
  }

  .hseo-page .section {
    --hseo-section-y: clamp(48px, 8vw, 72px);
  }

  .hseo-stats {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .hseo-tab-columns {
    grid-template-columns: 1fr;
  }

  .hseo-tab-col {
    border-right: 0;
    border-bottom: 1px solid var(--hseo-line);
    padding: 0 0 18px;
  }

  .hseo-tab-col--approach {
    border-bottom: 0;
    padding: 18px 0 0;
  }

  .hseo-pillar-grid,
  .hseo-capability-grid,
  .hseo-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .hseo-pillar-grid .hseo-pillar-card:last-child,
  .hseo-capability-grid .hseo-capability-card:last-child,
  .hseo-pricing-grid .hseo-price-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .hseo-includes ul {
    grid-template-columns: 1fr;
  }

  .hseo-hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hseo-hero-cta .btn,
  .hseo-challenges-cta .btn,
  .hseo-ready-btn {
    width: 100%;
    white-space: normal;
    height: auto;
    min-height: 48px;
  }

  .hseo-steps {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .hseo-step,
  .hseo-step:nth-child(4),
  .hseo-step:nth-child(5) {
    grid-column: auto;
  }

  .hseo-step {
    gap: 12px;
    padding: 16px;
  }

  .hseo-step-num {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .hseo-compare,
  .hseo-compare tbody,
  .hseo-compare tr,
  .hseo-compare td {
    display: block;
    width: 100%;
  }

  .hseo-compare thead {
    display: none;
  }

  .hseo-compare tr {
    padding: 14px 16px;
    border-bottom: 1px solid var(--hseo-line);
  }

  .hseo-compare tr:last-child {
    border-bottom: 0;
  }

  .hseo-compare td {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    border: 0 !important;
    background: transparent !important;
  }

  .hseo-compare td + td {
    padding-top: 10px;
    border-top: 1px dashed rgba(27, 122, 143, 0.18) !important;
  }

  .hseo-compare td::before {
    content: attr(data-label);
    display: block;
    flex: 0 0 100%;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--hseo-primary);
    margin-bottom: 2px;
  }
}

@media (max-width: 600px) {
  .hseo-logo-set {
    gap: 24px 28px;
  }
}

@media (max-width: 480px) {
  .hseo-hero {
    --hero-y: 36px;
  }

  .hseo-logo-set {
    gap: 24px 32px;
  }

  .hseo-logo-item {
    width: 110px;
    height: 36px;
  }

  .hseo-tab {
    font-size: 0.8rem;
    padding: 10px 12px;
  }

  .hseo-price-cta {
    font-size: 0.88rem;
  }

  .hseo-section-head {
    margin-bottom: 22px;
  }
}

@media (max-width: 375px) {
  .hseo-hero-copy h1 {
    font-size: 1.7rem;
  }

  .hseo-stat-card,
  .hseo-pillar-card,
  .hseo-capability-card,
  .hseo-price-card {
    padding: 16px;
  }
}

@media (min-width: 1440px) {
  .hseo-hero-inner {
    max-width: none;
    gap: 64px;
  }

  .hseo-section-head {
    max-width: min(1080px, 100%);
  }
}
