/* ============================================
   ELEVIDA GROUP — CONSOLIDATED STYLESHEET
   Single source of truth for all pages.
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors (unchanged) */
  --accent: #0077B6;
  --turquoise: #00B386;

  /* New: Warm Backgrounds */
  --cream: #FAF9F7;
  --warm-grey: #F3F1EE;
  --warm-grey-dark: #E8E6E1;

  /* New: Text Palette */
  --text-primary: #1A1A2E;
  --text-body: #4A4A5A;
  --text-muted: #7A7A8A;

  /* Legacy (kept for any remaining references) */
  --light-grey: #f5f5f5;
  --dark-grey: #333333;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --nav-height: 80px;
}

/* ---------- Reset & Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.6;
  transition: filter 0.3s ease;
}

body.menu-open {
  filter: blur(5px);
}

section[id] {
  scroll-margin-top: 80px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 400; /* DM Serif Display is naturally bold at 400 */
  line-height: 1.2;
}

/* ---------- Header ---------- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.logo {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ---------- Desktop Navigation ---------- */
nav {
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
}

nav > ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--text-body);
  padding: 0.5rem;
  position: relative;
  transition: color 0.3s ease;
}

/* Nav link underline animation */
nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

nav > ul > li > a:hover::after {
  transform: scaleX(1);
}

nav li:hover > a {
  color: var(--accent);
}

/* Desktop dropdown */
.dropdown {
  position: relative;
}

.dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  list-style: none;
  padding: 0.5rem 0;
  display: none;
  min-width: 220px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dropdown:hover ul {
  display: block;
}

.dropdown ul li a {
  display: block;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}

.dropdown ul li a::after {
  display: none; /* No underline animation on dropdown items */
}

.dropdown ul li a:hover {
  background: var(--warm-grey);
}

/* NavBar CTA Button */
.nav-cta {
  padding: 8px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.mobile-header-cta {
  display: none !important;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 1010;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1005;
  padding-top: 70px;
  filter: none;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  padding: 15px 20px;
  border-bottom: 1px solid var(--warm-grey-dark);
}

.mobile-nav a {
  text-decoration: none;
  color: var(--text-body);
  font-size: 16px;
  font-weight: 500;
}

.mobile-nav-cta {
  margin: 20px;
  text-align: center;
}

.mobile-nav-cta .btn-link,
.mobile-nav-cta .btn-link-turquoise {
  width: 100%;
  max-width: 250px;
  display: inline-block;
  text-align: center;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 1004;
}

.mobile-overlay.active {
  display: block;
}

/* Content wrapper for blur effect */
.content-wrapper {
  transition: filter 0.3s ease;
}

.content-wrapper.blurred {
  filter: blur(5px);
}

main {
  padding-top: var(--nav-height);
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.25);
}

.btn-secondary {
  display: inline-block;
  background: var(--turquoise);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 179, 134, 0.25);
}

.btn-link {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-link:hover {
  background-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.2);
}

.btn-link-turquoise {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid var(--turquoise);
  border-radius: 8px;
  color: var(--turquoise);
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: transparent;
}

.btn-link-turquoise:hover {
  background-color: var(--turquoise);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 179, 134, 0.2);
}

/* ---------- Hero Section ---------- */
.hero {
  background: var(--cream);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  text-align: left;
}

/* Hero staggered entrance animation */
.hero-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeIn 0.7s ease forwards;
}

.hero-stagger > *:nth-child(1) { animation-delay: 0.1s; }
.hero-stagger > *:nth-child(2) { animation-delay: 0.25s; }
.hero-stagger > *:nth-child(3) { animation-delay: 0.4s; }
.hero-stagger > *:nth-child(4) { animation-delay: 0.6s; }

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-stagger > * {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero .tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: var(--turquoise);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
}

/* ---------- "Does This Sound Familiar" Section ---------- */
.familiar-section {
  padding: 6rem 2rem;
  background: var(--warm-grey);
  position: relative;
}

.familiar-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.familiar-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.familiar-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.familiar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.familiar-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.familiar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-icon-wrapper {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 1.5rem;
}

.card-icon-wrapper i {
  font-size: 1.5rem;
  color: var(--accent);
  z-index: 2;
  position: relative;
  width: 56px;
  height: 56px;
  background: rgba(0, 119, 182, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.familiar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-align: left;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pain-point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  line-height: 1.6;
  font-size: 1rem;
}

.pain-point i {
  color: var(--turquoise);
  font-size: 1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.pain-point span {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

/* ---------- Data Strip (The Readiness Gap) ---------- */
.data-strip {
  padding: 5rem 2rem;
  background: var(--text-primary);
  position: relative;
}

.data-strip-container {
  max-width: 1200px;
  margin: 0 auto;
}

.data-strip h2 {
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 2.4rem;
  color: white;
}

.data-strip-subtitle {
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.data-strip-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.data-strip-item {
  text-align: center;
  padding: 2rem 2.5rem;
  position: relative;
}

.data-strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.data-strip-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--turquoise);
  line-height: 1.1;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.data-strip-label {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.data-strip-source {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ---------- Process Section — Scroll-Activated Stepper ---------- */

.process-scroll {
  height: 300vh;
  position: relative;
  background: var(--cream);
}

.process-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.process-scroll-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-scroll-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.process-scroll-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.process-scroll-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

/* Left navigation with progress track */
.process-scroll-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-left: 24px;
}

.process-nav-track {
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--warm-grey-dark);
  border-radius: 3px;
  overflow: hidden;
}

.process-nav-fill {
  width: 100%;
  height: 0%;
  background: var(--accent);
  border-radius: 3px;
  transition: height 0.4s ease;
}

.process-nav-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  cursor: default;
}

.nav-circle {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--warm-grey-dark);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  margin-left: -24px;
}

.process-nav-step.active .nav-circle,
.process-nav-step.done .nav-circle {
  background: var(--accent);
  color: white;
  box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.15);
}

.nav-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.4s ease;
  white-space: nowrap;
}

.process-nav-step.active .nav-label {
  color: var(--text-primary);
}

.process-nav-step.done .nav-label {
  color: var(--accent);
}

/* Right content panels */
.process-scroll-panels {
  position: relative;
  min-height: 380px;
}

.process-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.process-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.panel-phase-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  background: rgba(0, 119, 182, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.process-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.process-panel ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.process-panel ul li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  line-height: 1.7;
  font-size: 0.95rem;
  color: var(--text-body);
}

.process-panel ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--turquoise);
  font-weight: bold;
}

.panel-why {
  background: rgba(0, 179, 134, 0.06);
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 3px solid var(--turquoise);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-body);
}

.panel-why strong {
  color: var(--turquoise);
}

/* ---------- Offer Block ---------- */
.offer-block {
  padding: 5rem 2rem;
  background: var(--text-primary);
  position: relative;
}

.offer-container {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.offer-header {
  margin-bottom: 2rem;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: white;
  margin-bottom: 0.5rem;
}

.offer-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.offer-price-wrapper {
  margin-bottom: 2rem;
  line-height: 1.2;
}

.offer-price-main {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: white;
}

.offer-deadline-subline {
  display: block;
  width: fit-content;
  margin: 1rem auto 0;
  background: var(--turquoise);
  color: white;
  font-weight: bold;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.offer-checklist {
  text-align: left;
  max-width: 550px;
  margin: 0 auto 2.5rem auto;
}

.offer-checklist h3 {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--turquoise);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

.offer-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer-checklist li {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.offer-checklist li strong {
  color: white;
}

.offer-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--turquoise);
  font-weight: bold;
  font-size: 1.2rem;
}

.offer-cta {
  margin-bottom: 2.5rem;
}

.offer-ideal-for {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-ideal-for strong {
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Results Section ---------- */
/* ---------- SVG Section Dividers ---------- */

.section-wave {
  line-height: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: 40px;
}

.section-wave--cream {
  color: var(--cream);
  background: var(--text-primary);
}

.section-wave--white {
  color: white;
  background: var(--text-primary);
}

/* ---------- Results — Icon Strip ---------- */

.results-strip {
  padding: 5rem 2rem;
  background: white;
}

.results-strip-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.results-strip h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.results-strip-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.results-strip-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.results-strip-item {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.results-strip-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 119, 182, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
  font-size: 1.6rem;
}

.results-strip-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.results-strip-item p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.results-strip-divider {
  width: 1px;
  height: 120px;
  background: var(--warm-grey-dark);
  flex-shrink: 0;
  align-self: center;
  font-size: 1.4rem;
}

.result-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.result-item p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ---------- What Makes Us Different ---------- */
.why-choose-wrapper {
  background: var(--warm-grey);
  padding: 6rem 2rem;
}

.why-choose {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.why-choose-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.6;
}

/* Alternating horizontal rows */
.why-choose-rows {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.why-choose-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.why-choose-row.reverse {
  flex-direction: row-reverse;
}

.why-choose-row-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(0, 119, 182, 0.1);
}

.why-choose-row-text h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.why-choose-row-text p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
}

.why-choose-cta {
  text-align: center;
}

/* ---------- Trusted-By Logo Bar ---------- */
.trusted-bar {
  padding: 3rem 2rem;
  background: white;
  text-align: center;
  border-bottom: 1px solid var(--warm-grey-dark);
}

.trusted-bar-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.trusted-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.trusted-bar-logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.trusted-bar-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- Keyword Highlights ---------- */
.text-highlight {
  position: relative;
  display: inline;
}

.text-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: rgba(0, 179, 134, 0.2);
  border-radius: 4px;
  z-index: -1;
}

/* Light variant for dark backgrounds */
.text-highlight-light {
  position: relative;
  display: inline;
}

.text-highlight-light::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: rgba(0, 179, 134, 0.35);
  border-radius: 4px;
  z-index: -1;
}

/* ---------- About Section ---------- */
.about-container {
  background: var(--cream);
  padding: 6rem 2rem;
}

.about {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--warm-grey);
  border-radius: 16px;
  position: relative;
}

.about img {
  width: 100%;
  max-width: 250px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.about .bio-text {
  flex: 1;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.about .sub-heading {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-pullquote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent);
  border-left: 3px solid var(--turquoise);
  padding-left: 1.25rem;
  margin: 0 0 1.5rem 0;
  font-style: italic;
  line-height: 1.5;
}

.about p {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
}

.about-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  background: #0077B5;
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.linkedin-btn i {
  margin-right: 0.5rem;
}

.linkedin-btn:hover {
  background: #005e8d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.25);
}

/* ---------- FAQ Accordion Section ---------- */
.faq-section {
  padding: 6rem 2rem;
  background: var(--text-primary);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-bottom: 1rem;
}

.faq-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.faq-item {
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 179, 134, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: white;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.faq-cta-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ---------- Blog Section ---------- */
.featured-blog-section {
  background: var(--warm-grey);
  padding: 5rem 2rem;
  position: relative;
}

.featured-blog-container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.featured-blog-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.featured-blog-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Blog Carousel */
.blog-carousel {
  position: relative;
  margin-bottom: 1.5rem;
}

.blog-carousel-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0.5rem 0;
}

.blog-carousel-track::-webkit-scrollbar {
  display: none;
}

.blog-carousel-track .blog-post-card {
  min-width: 340px;
  max-width: 340px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.blog-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--warm-grey-dark);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-carousel-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.blog-carousel-prev { left: -22px; }
.blog-carousel-next { right: -22px; }

.blog-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.blog-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm-grey-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.blog-carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.blog-post-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--turquoise);
}

.blog-post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--warm-grey);
}

.blog-post-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.blog-post-date,
.blog-post-category {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-post-category {
  color: var(--turquoise);
  font-weight: 600;
}

.blog-post-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-post-excerpt {
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  font-size: 0.95rem;
}

.blog-post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--turquoise);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  font-size: 0.9rem;
}

.blog-post-read-more:hover {
  gap: 0.75rem;
  color: var(--accent);
}

.blog-post-read-more i {
  transition: transform 0.3s ease;
}

.blog-post-read-more:hover i {
  transform: translateX(5px);
}

.view-all-blog-btn {
  text-align: center;
}

.badge-new {
  background: #e85d68;
  color: white;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---------- Sticky CTA Bar ---------- */
.sticky-cta {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--text-primary);
  padding: 0.6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-bottom: 2px solid var(--turquoise);
}

.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
}

.sticky-cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.sticky-cta .btn-primary {
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  box-shadow: none;
}

/* ---------- Partners Section ---------- */
.partners-wrapper {
  background: white;
  padding: 6rem 0;
}

.partners {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.partners h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.partners-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.partners-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.partner {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.partner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.partner-logo {
  max-width: 180px;
  max-height: 100px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.partners-cta {
  text-align: center;
}

.partners-cta .btn-primary {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ---------- AI Facts Section ---------- */
.ai-facts {
  padding: 6rem 2rem;
  background: white;
}

.ai-facts-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ai-facts h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.ai-facts-subtitle {
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ai-facts-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ai-fact-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-align: center;
}

.ai-fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ai-fact-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 119, 182, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
  font-size: 1.5rem;
}

.ai-fact-percentage {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.ai-fact-description {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: var(--text-body);
}

.ai-fact-source {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Footer ---------- */
footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
  max-width: 280px;
}

.footer-brand .logo {
  height: 50px;
  border-radius: 8px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-cta-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-cta-col .btn-primary {
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--accent);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; opacity: 1; transform: translateY(0); }

/* Legacy support — keep .fade-in working for pages not yet updated */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-stagger > *,
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ---------- Tablet (1024px) ---------- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-text {
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 400px;
  }

  .familiar-cards {
    grid-template-columns: 1fr;
  }

  .data-strip-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-choose-rows {
    max-width: 700px;
  }

  .ai-facts-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ---------- Mobile (768px) ---------- */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  header {
    padding: 0 1rem;
  }

  .logo {
    height: 50px;
  }

  nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-header-cta {
    display: inline-block !important;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
    margin-left: auto;
    margin-right: 1rem;
  }

  .hero {
    padding: 4rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .tagline {
    font-size: 0.8rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-image img {
    max-width: 300px;
  }

  .familiar-section,
  .data-strip,
  .why-choose-wrapper,
  .about-container,
  .results-strip,
  .faq-section,
  .partners-wrapper {
    padding: 4rem 1rem;
  }

  .familiar-section h2,
  .data-strip h2,
  .why-choose h2,
  .results-strip h2,
  .faq-section h2,
  .partners h2,
  .ai-facts h2 {
    font-size: 2rem;
  }

  .data-strip-items {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .data-strip-item:not(:last-child)::after {
    display: none;
  }

  .data-strip-item {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .data-strip-item:last-child {
    border-bottom: none;
  }

  .data-strip-number {
    font-size: 2.2rem;
  }

  /* Scroll stepper — mobile: disable sticky, show all panels */
  .process-scroll {
    height: auto;
  }

  .process-scroll-sticky {
    position: relative;
    height: auto;
    padding: 4rem 1rem;
  }

  .process-scroll-body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-scroll-nav {
    display: none;
  }

  .process-scroll-panels {
    min-height: auto;
  }

  .process-panel {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--warm-grey-dark);
  }

  .process-panel:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .process-scroll-header h2 {
    font-size: 2rem;
  }

  .results-strip-items {
    flex-direction: column;
    align-items: center;
  }

  .results-strip-divider {
    width: 60px;
    height: 1px;
    margin: 1.5rem 0;
  }

  .blog-carousel-prev { left: -10px; }
  .blog-carousel-next { right: -10px; }

  .blog-carousel-track .blog-post-card {
    min-width: 300px;
    max-width: 300px;
  }

  .why-choose-row,
  .why-choose-row.reverse {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .why-choose-row-icon {
    margin: 0 auto;
  }

  .trusted-bar-logos {
    gap: 1.5rem;
  }

  .trusted-bar-logos img {
    height: 30px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 2.5rem 1.5rem;
  }

  .about img {
    max-width: 200px;
    margin: 0 auto;
  }

  .about-pullquote {
    text-align: left;
  }

  .about-buttons {
    justify-content: center;
  }

  .sticky-cta-text {
    display: none;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }

  .partners-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .featured-blog-header h2 {
    font-size: 2rem;
  }

  .featured-blog-section {
    padding: 3rem 1rem;
  }

  .ai-facts-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

/* ---------- Small Mobile (480px) ---------- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .familiar-section h2,
  .data-strip h2,
  .why-choose h2,
  .results-strip h2,
  .faq-section h2,
  .ai-facts h2 {
    font-size: 1.7rem;
  }

  .about h2 {
    font-size: 1.7rem;
  }

  .about-buttons {
    flex-direction: column;
    align-items: center;
  }

  .familiar-card {
    padding: 2rem 1.5rem;
  }

  .familiar-card h3 {
    font-size: 1.15rem;
  }

  .pain-point span {
    font-size: 0.9rem;
  }
}

/* ============================================
   SUBPAGE STYLES
   Phase pages (prepare, implement, elevate),
   Healthcare, AI Readiness Audit, etc.
   ============================================ */

/* ---------- Page Header (Subpages) ---------- */
.page-header {
  background: var(--warm-grey);
  text-align: center;
  padding: 6rem 2rem 5rem;
  position: relative;
}

.page-header-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.page-header .subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.page-header .highlight {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1.05rem;
  line-height: 1.6;
  border-left: 3px solid var(--turquoise);
  text-align: left;
}

.page-header .highlight strong {
  color: var(--turquoise);
}

/* ---------- Services Overview (Phase Pages) ---------- */
.services-overview {
  padding: 6rem 2rem;
  background: white;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-overview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-item {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  max-width: 380px;
  width: 100%;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 119, 182, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--accent);
  font-size: 1.5rem;
}

.service-item h3 {
  font-size: 1.35rem;
  flex: 1;
}

.service-item p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: var(--text-body);
  font-size: 0.95rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: var(--text-body);
}

.service-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--turquoise);
  font-weight: bold;
}

/* ---------- ROI Section (Phase Pages) ---------- */
.roi-section {
  background: var(--text-primary);
  padding: 6rem 2rem;
  position: relative;
}

.roi-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.roi-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.roi-section .intro-text {
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.roi-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.roi-bar-item { text-align: center; }

.roi-bar-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--turquoise);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.roi-bar-label {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.roi-bar-source {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

/* ---------- Pricing Section (Phase Pages) ---------- */
.pricing-section {
  padding: 6rem 2rem;
  background: white;
}

.pricing-container {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  border: 1.5px solid var(--turquoise);
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: bold;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pricing-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.pricing-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: 2.5rem;
}

.pricing-features h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
  color: var(--text-body);
}

.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--turquoise);
  font-weight: bold;
}

.add-ons {
  background: var(--warm-grey);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.add-ons h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.add-ons ul {
  list-style: none;
  padding: 0;
}

.add-ons li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--text-body);
  position: relative;
  padding-left: 1.5rem;
}

.add-ons li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--turquoise);
  font-weight: bold;
}

/* ---------- CTA Section (Phase Pages) ---------- */
.cta-section {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: white;
}

.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--accent);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- Healthcare Page ---------- */
.hero-section {
  background: var(--warm-grey);
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.hero-section .hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: block;
  grid-template-columns: none;
  gap: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 119, 182, 0.08);
  color: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.section {
  padding: 5rem 2rem;
}

.section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-alt {
  background: var(--warm-grey);
}

.section-dark {
  background: var(--text-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.challenge-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 3px solid var(--turquoise);
  transition: all 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.challenge-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.challenge-card p {
  color: var(--text-body);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Healthcare service cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-body);
  line-height: 1.6;
  font-size: 0.95rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.audience-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-item h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.audience-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--turquoise);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.evidence-list {
  list-style: none;
  padding: 0;
}

.evidence-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

.evidence-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--turquoise);
  font-size: 1rem;
}

.final-cta {
  background: var(--accent);
  padding: 5rem 2rem;
  text-align: center;
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.final-cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.btn-cta-large {
  display: inline-block;
  background: white;
  color: var(--accent);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.btn-cta-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.footer-question {
  margin-bottom: 0.5rem;
}

.footer-question a {
  color: var(--turquoise);
  text-decoration: none;
}

.footer-question a:hover {
  text-decoration: underline;
}

/* ---------- Subpage Responsive ---------- */
@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 4rem 1rem 3rem;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .page-header .subtitle {
    font-size: 1.05rem;
  }

  .page-header .highlight {
    padding: 1.5rem;
    font-size: 0.95rem;
  }

  .services-overview,
  .roi-section,
  .pricing-section,
  .cta-section,
  .section {
    padding: 4rem 1rem;
  }

  .services-overview h2,
  .roi-section h2,
  .pricing-section h2,
  .cta-section h2,
  .hero-section h1,
  .final-cta h2 {
    font-size: 2rem;
  }

  .service-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    max-width: 100%;
  }

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  .service-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .roi-bar {
    flex-direction: column;
    gap: 2rem;
  }

  .pricing-card {
    padding: 2.5rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-white,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 2rem;
  }

  .final-cta {
    padding: 4rem 1rem;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.8rem;
  }

  .services-overview h2,
  .roi-section h2,
  .pricing-section h2,
  .cta-section h2,
  .hero-section h1 {
    font-size: 1.7rem;
  }

  .pricing-price {
    font-size: 2rem;
  }

}

/* ---------- AI Readiness Audit Page ---------- */
.offer-badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.offer-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.offer-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 119, 182, 0.25);
}

/* ---------- AI Readiness Audit — Page-Specific Sections ---------- */

.problem-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.problem-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.problem-container h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.problem-intro {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.pain-point {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid var(--turquoise);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pain-point-icon {
  font-size: 1.5rem;
  color: var(--turquoise);
  margin-bottom: 0.75rem;
}

.pain-point h3 {
  font-family: var(--font-body);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pain-point p {
  color: var(--text-body);
  line-height: 1.6;
  font-size: 0.9rem;
}

.problem-conclusion {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
}

.section-tagline {
  text-align: center;
  font-size: 1.3rem;
  color: var(--turquoise);
  margin-bottom: 3rem;
  font-weight: 600;
}

.solution-section {
  padding: 5rem 2rem;
  background: var(--warm-grey);
}

.solution-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.solution-container h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.solution-text {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.solution-highlight {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--turquoise);
}

.solution-highlight p {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.7;
  margin: 0;
}

.deliverables-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.deliverables-container {
  max-width: 1100px;
  margin: 0 auto;
}

.deliverables-container h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.deliverables-carousel {
  position: relative;
  margin-bottom: 1.5rem;
}

.deliverables-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0.5rem 0;
}

.deliverables-track::-webkit-scrollbar {
  display: none;
}

.deliverable-card {
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--warm-grey-dark);
  position: relative;
}

.deliverables-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--warm-grey-dark);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.deliverables-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.deliverables-prev { left: -22px; }
.deliverables-next { right: -22px; }

.deliverables-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.deliverables-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm-grey-dark);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.deliverables-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.deliverable-number {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 1rem;
}

.deliverable-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.deliverable-card h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.deliverable-card p {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.95rem;
}

.audit-process-section {
  padding: 5rem 2rem;
  background: white;
}

.process-section {
  padding: 5rem 2rem;
  background: var(--warm-grey);
}

.process-section .process-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.process-section .process-container h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
}

.process-section .process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 0;
  padding-left: 0;
}

.process-section .process-step::before {
  display: none;
}

.process-section .step-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  position: static;
}

.process-section .process-step h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-section .process-step p {
  color: var(--text-body);
  line-height: 1.7;
}

.qualification-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.qualification-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.qualification-container h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.qualification-intro {
  font-size: 1.2rem;
  color: var(--turquoise);
  font-weight: 600;
  margin-bottom: 2rem;
}

.qualification-list ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.qualification-list ul li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-body);
  line-height: 1.7;
  border-bottom: 1px solid var(--warm-grey-dark);
}

.qualification-list ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--turquoise);
}

.final-cta-section {
  padding: 5rem 2rem;
  background: var(--text-primary);
  text-align: center;
}

.final-cta-section .final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-section h2 {
  font-family: var(--font-heading);
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.final-cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.price-highlight {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--turquoise);
  margin-bottom: 2rem;
}

/* ---------- Free Readiness Check Section ---------- */

.readiness-check-section {
  padding: 4rem 2rem;
  background: var(--text-primary);
  text-align: center;
}

.readiness-check-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.readiness-check-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.readiness-check-section .btn-turquoise {
  display: inline-block;
  background: var(--turquoise);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.readiness-check-section .btn-turquoise:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 179, 134, 0.25);
}

.readiness-check-section .note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

/* ---------- Use Cases Page ---------- */

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--turquoise);
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.use-cases-overview {
  padding: 5rem 2rem;
  background: var(--cream);
  text-align: center;
}

.use-cases-overview h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.overview-subtitle {
  max-width: 750px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.8;
}

.scenario-note {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 119, 182, 0.06);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  text-align: left;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

.case-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.case-type-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--warm-grey-dark);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.case-type-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 119, 182, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: var(--accent);
}

.case-type-title {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.case-type-phases {
  font-size: 0.85rem;
  color: var(--turquoise);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.case-type-description {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* Use Case Sections */

.use-case {
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--warm-grey-dark);
}

.use-case:nth-child(odd) {
  background: white;
}

.use-case:nth-child(even) {
  background: var(--warm-grey);
}

.use-case-container {
  max-width: 1100px;
  margin: 0 auto;
}

.use-case-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 119, 182, 0.08);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.use-case-container h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.use-case-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.use-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.client-story-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--warm-grey-dark);
}

.company-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.company-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 119, 182, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}

.company-info h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.company-type {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--warm-grey-dark);
}

.detail-item {
  padding: 0.5rem 0;
}

.detail-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.detail-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.challenge-section {
  margin-bottom: 1.5rem;
}

.challenge-section > strong {
  display: block;
  font-size: 0.85rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.challenge-text {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.95rem;
}

.goals-section {
  background: var(--warm-grey);
  padding: 1.5rem;
  border-radius: 8px;
}

.goals-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.goals-header i {
  color: var(--turquoise);
}

.goals-header h5 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1rem;
  margin: 0;
}

.goals-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.goals-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: var(--text-body);
  font-size: 0.9rem;
}

.goals-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--turquoise);
  font-size: 0.75rem;
}

.solution-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--warm-grey-dark);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.solution-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 179, 134, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--turquoise);
}

.solution-header h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.1rem;
}

.phases-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phase-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.phase-number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.phase-title {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.phase-description {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.phase-note {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: var(--warm-grey);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}

.results-showcase {
  margin-top: 2rem;
}

.results-showcase h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.results-showcase h4 i {
  color: var(--turquoise);
  margin-right: 0.5rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.metric-card {
  background: var(--warm-grey);
  padding: 1.5rem 1rem;
  border-radius: 12px;
  text-align: center;
}

.metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--turquoise);
  margin-bottom: 0.25rem;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.use-case-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
}

/* ---------- Capability Statement Page ---------- */

.badge-container {
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.download-section {
  margin-top: 2rem;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--accent);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pdf-section {
  padding: 3rem 2rem;
  background: var(--warm-grey);
}

.pdf-container {
  max-width: 900px;
  margin: 0 auto;
}

.pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.pdf-header h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.5rem;
}

.pdf-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-action:hover {
  background: var(--accent);
  color: white;
}

.pdf-viewer {
  width: 100%;
  height: 800px;
  border: 1px solid var(--warm-grey-dark);
  border-radius: 12px;
  background: white;
}

.pdf-fallback {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--warm-grey-dark);
}

.pdf-fallback p {
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.capabilities-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.capabilities-container {
  max-width: 1100px;
  margin: 0 auto;
}

.capabilities-container h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.capabilities-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 3rem;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.capability-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--warm-grey-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.capability-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 119, 182, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.capability-card h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.capability-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: var(--text-body);
  font-size: 0.9rem;
}

.capability-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--turquoise);
  font-size: 0.75rem;
}

.certifications-section {
  padding: 5rem 2rem;
  background: white;
}

.certifications-container {
  max-width: 1100px;
  margin: 0 auto;
}

.certifications-container h2 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.cert-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--warm-grey);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-4px);
}

.cert-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.cert-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.cert-item h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.cert-item p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

.company-info-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.naics-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--warm-grey-dark);
}

.naics-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.naics-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 119, 182, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
}

.naics-header h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.15rem;
}

.naics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.naics-item {
  padding: 0.75rem 1rem;
  background: var(--warm-grey);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.naics-item strong {
  color: var(--text-primary);
}

.registration-card-wrapper {
  display: flex;
  justify-content: center;
}

.registration-card-wrapper .capability-card {
  max-width: 500px;
  width: 100%;
}

/* ---------- Partners Page ---------- */

.partners-hero {
  background: var(--text-primary);
  padding: 6rem 2rem 4rem;
  text-align: center;
}

.partners-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.partners-hero h1 {
  font-family: var(--font-heading);
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.partners-hero .intro {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.partners-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.partners-container {
  max-width: 1000px;
  margin: 0 auto;
}

.partners-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.partner-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--warm-grey-dark);
}

.partner-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.partner-headshot {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--warm-grey-dark);
}

.partner-logo {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
}

.partner-content h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.partner-role {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.partner-bio {
  color: var(--text-body);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.partner-expertise {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--warm-grey);
  border-radius: 8px;
}

.partner-profiles {
  margin-bottom: 1rem;
}

.partner-profiles p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0.25rem;
}

.partner-cta {
  margin-top: 0.5rem;
}

.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0A66C2;
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-linkedin:hover {
  background: #004182;
  transform: translateY(-2px);
}

.partners-cta-section {
  padding: 4rem 2rem;
  background: var(--warm-grey);
  text-align: center;
}

.partners-cta p {
  font-size: 1.2rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

/* ---------- Use Cases / Capability / Partners — Responsive ---------- */

@media (max-width: 1024px) {
  .case-types-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capabilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .naics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partner-content h3,
  .partner-role {
    text-align: center;
  }

  .partner-expertise,
  .partner-bio {
    text-align: left;
  }

  .partner-cta {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .pain-points {
    grid-template-columns: 1fr;
  }

  .deliverable-card {
    min-width: 280px;
    max-width: 280px;
  }

  .deliverables-prev { left: -10px; }
  .deliverables-next { right: -10px; }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .use-case-cta {
    flex-direction: column;
    align-items: center;
  }

  .capabilities-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: 1fr 1fr;
  }

  .naics-grid {
    grid-template-columns: 1fr;
  }

  .pdf-viewer {
    height: 500px;
  }

  .pdf-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-card {
    padding: 1.5rem;
  }

  .partner-headshot {
    width: 120px;
    height: 120px;
  }

  .process-section .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .pdf-viewer {
    height: 350px;
  }

  .company-details {
    grid-template-columns: 1fr;
  }

  .partners-hero h1 {
    font-size: 1.8rem;
  }
}

/* ---------- Healthcare Page Utility Classes ---------- */

.btn-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-emphasis {
  font-size: 1.15rem;
  color: var(--dark-grey);
  font-weight: 600;
  line-height: 1.7;
}

.section-cream {
  background: var(--cream);
}

.audience-item h3 i {
  margin-right: 8px;
  color: var(--turquoise);
}

.service-card .phase-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.service-card .phase-link:hover {
  text-decoration: underline;
}

.page-phase-nav {
  text-align: center;
  padding: 1.25rem 2rem;
  background: white;
  font-size: 0.95rem;
}

.page-phase-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.page-phase-nav a:hover {
  text-decoration: underline;
}

.phase-nav-divider {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

.section-dark h2 {
  color: white;
}

.section-dark .section-intro {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Phase Navigation Bar (Phase Subpages) ---------- */
.phase-nav-bar {
  background: white;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--warm-grey-dark);
}

.phase-nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.phase-nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.phase-nav-item:hover {
  color: var(--accent);
  background: rgba(0, 119, 182, 0.04);
}

.phase-nav-item.active {
  color: var(--accent);
  background: rgba(0, 119, 182, 0.08);
  font-weight: 700;
}

.phase-nav-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--warm-grey-dark);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.phase-nav-item.active .phase-nav-number {
  background: var(--accent);
  color: white;
}

.phase-nav-label {
  white-space: nowrap;
}

.phase-nav-connector {
  width: 24px;
  height: 2px;
  background: var(--warm-grey-dark);
  flex-shrink: 0;
  margin: 0 0.25rem;
}

/* Pricing CTA centering (phase pages) */
.pricing-card > div:last-child {
  text-align: center;
}

@media (max-width: 480px) {
  .phase-nav-label {
    display: none;
  }

  .phase-nav-item {
    padding: 0.4rem;
  }

  .phase-nav-number {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
}

/* ---------- Services Tabs (Phase Pages) ---------- */
.services-tabs { max-width: 800px; margin: 0 auto; }

.services-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--warm-grey-dark);
  padding-bottom: 1rem;
}

.services-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}

.services-tab:hover {
  color: var(--accent);
  background: rgba(0, 119, 182, 0.04);
}

.services-tab.active {
  color: var(--accent);
  background: rgba(0, 119, 182, 0.08);
  border-color: var(--accent);
}

.services-tab i { font-size: 1rem; }

.services-tab-panel {
  display: none;
  animation: tabFadeIn 0.35s ease;
}

.services-tab-panel.active { display: block; }

@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.tab-panel-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 119, 182, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.5rem;
}

.services-tab-panel h3 { font-size: 1.5rem; }

.services-tab-panel p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .services-tab-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-tab-nav::-webkit-scrollbar { display: none; }
  .services-tab { white-space: nowrap; flex-shrink: 0; }
}
