/* ==========================================================
   Provider Privileging LLC — Main Stylesheet
   Brand: Coral #F48472 | Blue #49A3DA | Charcoal #303030
   Font: Arial / Helvetica
   ========================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #303030;
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- CSS Variables ---------- */
:root {
  --coral:      #F48472;
  --blue:       #49A3DA;
  --charcoal:   #303030;
  --gray:       #6B6C6E;
  --light-gray: #F1F1F1;
  --white:      #FFFFFF;
  --gold:       #EFBF04;
  --nav-h:      80px;
  --radius:     8px;
  --shadow:     0 2px 16px rgba(0,0,0,0.08);
  --transition: 0.22s ease;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  color: #303030;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { color: #6B6C6E; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.8rem;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--coral);
  vertical-align: middle;
  margin: 0 0.7rem;
  opacity: 0.6;
}

/* ---------- Layout Helpers ---------- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-header p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: #e8705e;
  border-color: #e8705e;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--coral);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: #3490c8;
  border-color: #3490c8;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start; /* anchor logo to top so the shield dips below downward only */
  position: relative;
  z-index: 2;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text .brand-main {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}
.nav-logo-text .brand-sub {
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta { margin-left: 1rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-logo-img {
  height: 110px;            /* horizontal logo, dips ~30px below the navbar */
  width: auto;
  display: block;
  transition: transform var(--transition);
}
.nav-logo:hover .nav-logo-img {
  transform: translateY(1px);
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 999;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-weight: 600;
  color: var(--charcoal);
  font-size: 0.95rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 1rem; text-align: center; }

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--nav-h) + 5rem);
  padding-bottom: 5rem;
  background: linear-gradient(135deg, #303030 0%, #1a1a2e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,132,114,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73,163,218,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(244,132,114,0.2);
  border: 1px solid rgba(244,132,114,0.4);
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
}

.hero h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero h1 span { color: var(--coral); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2rem; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral);
  white-space: nowrap;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 360px;
  height: 360px;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.5rem;
}

.hero-card-main {
  width: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-card-float-1 {
  width: 180px;
  top: 0; right: 0;
  padding: 1rem;
}
.hero-card-float-2 {
  width: 180px;
  bottom: 0; left: 0;
  padding: 1rem;
}

.hero-card-icon {
  width: 40px; height: 40px;
  background: rgba(244,132,114,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
.hero-card-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.hero-card-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* hero lede (subhead under H1) */
.hero-lede {
  max-width: 580px;
}
.hero-lede em {
  color: var(--coral);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.005em;
}

/* ---------- Stat Strip (full-width animated band under hero) ---------- */
.stat-strip {
  background: var(--white);
  padding: 3rem 0;
  border-bottom: 1px solid #ececec;
  position: relative;
  z-index: 2;
}

.stat-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.stat-strip-item {
  text-align: center;
  padding: 0 0.5rem;
}

.stat-strip-num {
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  font-feature-settings: "tnum" 1; /* tabular nums so counter doesn't jump */
}
.stat-strip-num-blue { color: var(--blue); }

.stat-strip-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.02em;
  line-height: 1.35;
  max-width: 220px;
  margin: 0 auto;
}

.stat-strip-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    #d8d8d8 25%,
    #d8d8d8 75%,
    transparent 100%
  );
}

/* fade-in entrance for stat strip items */
.stat-strip-item {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.stat-strip.visible .stat-strip-item { opacity: 1; transform: none; }
.stat-strip.visible .stat-strip-item:nth-child(3) { transition-delay: 0.08s; }
.stat-strip.visible .stat-strip-item:nth-child(5) { transition-delay: 0.16s; }
.stat-strip.visible .stat-strip-item:nth-child(7) { transition-delay: 0.24s; }

/* responsive — collapse to 2 columns on tablet, 1 on mobile */
@media (max-width: 900px) {
  .stat-strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }
  .stat-strip-divider { display: none; }
}
@media (max-width: 540px) {
  .stat-strip-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .stat-strip { padding: 2.25rem 0; }
}

/* ---------- Manifesto (Why Different) ---------- */
.manifesto {
  position: relative;
  background: linear-gradient(135deg, #0f1828 0%, #1a1f3a 100%);
  color: var(--white);
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}
.manifesto-bg-glow {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,132,114,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73,163,218,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.manifesto .section-header h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -0.01em;
}
.manifesto .section-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
}
.manifesto .section-label { color: var(--coral); }
.manifesto .section-label::before,
.manifesto .section-label::after {
  background: var(--coral);
  opacity: 0.7;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.manifesto-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.manifesto-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(244,132,114,0.45);
  transform: translateY(-3px);
}
.manifesto-card:nth-child(2):hover,
.manifesto-card:nth-child(3):hover {
  border-color: rgba(73,163,218,0.5);
}

.manifesto-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}
.manifesto-card:nth-child(2) .manifesto-num,
.manifesto-card:nth-child(3) .manifesto-num { color: var(--blue); }

.manifesto-card h3 {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.005em;
}
.manifesto-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

.payer-strip {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
}
.payer-strip-label {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.payer-strip .payer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

@media (max-width: 800px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

/* ---------- Services Preview (Home) ---------- */
.services-preview { background: var(--white); padding: 3.5rem 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.icon-coral { background: rgba(244,132,114,0.12); color: var(--coral); }
.icon-blue  { background: rgba(73,163,218,0.12); color: var(--blue); }
.icon-gray  { background: rgba(107,108,110,0.1);  color: var(--gray); }

/* flagship + CTA service cards */
.services-grid-tight { gap: 1rem; }

.service-card { position: relative; background: #fff; }
.service-card p em {
  color: var(--charcoal);
  font-style: italic;
  font-weight: 700;
}

.service-card-flagship {
  background: linear-gradient(135deg, #fff8f6 0%, #fef3ef 100%);
  border-color: rgba(244,132,114,0.35);
  box-shadow: 0 4px 24px rgba(244,132,114,0.08);
}
.service-card-flagship:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 32px rgba(244,132,114,0.15);
}
.service-card-flagship h3 {
  color: var(--charcoal);
  letter-spacing: -0.005em;
}

.service-card-flagstar {
  background: linear-gradient(135deg, #f4efcd 0%, #f3efcf 100%);
  border-color: rgba(244, 218, 114, 0.35);
  box-shadow: 0 4px 24px rgba(244,218,114,0.08);
}
.service-card-flagstar:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(244,218,114,0.15);
}
.service-card-flagstar h3 {
  color: var(--charcoal);
  letter-spacing: -0.005em;
}

.service-card-flag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--coral);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.service-card-star {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}

.service-card-cta {
  background: #fafbfd;
  border: 1px dashed #cfd1d6;
}
.service-card-cta:hover {
  border-style: solid;
  border-color: var(--blue);
  background: #f5f9fc;
}
.service-card-cta .learn-more { color: var(--blue); }

.service-card h3 { margin-bottom: 0.6rem; }

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--coral);
  margin-top: 1rem;
  transition: gap var(--transition);
}
.service-card .learn-more:hover { gap: 0.6rem; }

.service-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--light);
  font-weight: 500;
}

.check-icon {
  width: 22px; height: 22px;
  background: rgba(74,159,212,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 0.7rem;
}

/* ---------- How It Works ---------- */
.how-it-works { background: var(--light-gray); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(16.6% + 1rem);
  right: calc(16.6% + 1rem);
  height: 2px;
  background: linear-gradient(to right, var(--coral), var(--blue));
}

.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--coral);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
}
.step:nth-child(2) .step-num { border-color: var(--blue); color: var(--blue); }
.step:nth-child(3) .step-num { border-color: var(--charcoal); color: var(--charcoal); }

.step h3 { margin-bottom: 0.5rem; }

/* ---------- Why Choose Us ---------- */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(244,132,114,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-top: 0.1rem;
}
.why-item-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.why-item-text p  { font-size: 0.9rem; margin: 0; }

.why-visual {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a2e 100%);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
}
.why-visual-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
}
.payer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.payer-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}
.payer-tag.highlight {
  background: rgba(244,132,114,0.2);
  border-color: rgba(244,132,114,0.4);
  color: var(--coral);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, #e8705e 100%);
  padding: 4rem 0;
}
.cta-inner {
  text-align: center;
  color: var(--white);
}
.cta-inner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-inner p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p { font-size: 0.9rem; margin: 1rem 0; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
  filter: brightness(1.18);
  flex-shrink: 0;
}
.footer-logo-text { color: var(--white); font-size: 1rem; font-weight: 700; }
.footer-logo-sub  { color: rgba(255,255,255,0.55); font-size: 0.75rem; letter-spacing: 0.04em; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--coral); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
}
.footer-contact-item .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(244,132,114,0.15);
  color: var(--coral);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}
.footer-contact-item:nth-child(2) .icon {
  background: rgba(73,163,218,0.15);
  color: var(--blue);
}
.footer-contact-item:nth-child(3) .icon {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: var(--coral); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  background: linear-gradient(135deg, #303030 0%, #1a1a2e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4.4vw, 3rem);
  letter-spacing: -0.01em;
}
.page-hero p  { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* page hero with background image variant (cinematic) */
.page-hero-image {
  padding-top: calc(var(--nav-h) + 9rem);
  padding-bottom: 9rem;
  min-height: 640px;
  display: flex;
  align-items: center;
  text-align: left;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero-image .container {
  max-width: 1140px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.page-hero-image .breadcrumb { color: rgba(255,255,255,0.65); }
.page-hero-image .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-hero-image h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 780px;
}
.page-hero-image p  {
  max-width: 560px;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.55;
}

/* per-page background images & positioning */
.page-hero-about {
  background-image:
    linear-gradient(110deg, rgba(15,24,40,0.92) 0%, rgba(15,24,40,0.65) 45%, rgba(15,24,40,0.30) 100%),
    url('../images/PP_team_hero.jpg');
  background-position: 50% 55%;
}
.page-hero-services {
  background-image:
    linear-gradient(110deg, rgba(15,24,40,0.92) 0%, rgba(15,24,40,0.78) 45%, rgba(15,24,40,0.40) 100%),
    url('../images/PP_services_hero.jpg');
  background-position: center right;
}
.page-hero-contact {
  background-image:
    linear-gradient(110deg, rgba(15,24,40,0.92) 0%, rgba(15,24,40,0.78) 45%, rgba(15,24,40,0.42) 100%),
    url('../images/PP_contact_hero.jpg');
  background-position: center right;
}

/* ---------- Services Page ---------- */
.service-detail {
  padding: 4.5rem 0;
}
.service-detail:nth-child(even) { background: var(--light-gray); }

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.service-detail-inner.reverse { direction: rtl; }
.service-detail-inner.reverse > * { direction: ltr; }

.service-detail-content h2 {
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}
.service-detail-content p { margin-bottom: 1rem; }
.service-detail-content p em {
  color: var(--charcoal);
  font-style: italic;
  font-weight: 700;
}

.service-lede {
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 1.2rem !important;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid rgba(244,132,114,0.18);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1.25rem 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.5;
}
.feature-list li::before {
  content: '✓';
  color: var(--coral);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.feature-list li strong {
  color: var(--charcoal);
  font-weight: 700;
}
.feature-list li em {
  color: var(--coral);
  font-style: italic;
  font-weight: 700;
}

/* Flagship service treatment */
.service-detail-flagship {
  background: linear-gradient(135deg, #fff8f6 0%, #fef3ef 100%) !important;
  position: relative;
}
.service-detail-flagship::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral) 0%, var(--blue) 100%);
}
.service-flag {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(244,132,114,0.25);
}

/* Service illustration cards (right-side visuals) */
.service-illustration {
  border-radius: 16px;
  background: linear-gradient(135deg, #f8f8f8, #ebebeb);
  padding: 2rem 2.25rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-illustration-flagship {
  background: linear-gradient(135deg, #ffffff 0%, #fef3ef 100%);
  border: 1px solid rgba(244,132,114,0.25);
  box-shadow: 0 8px 32px rgba(244,132,114,0.10);
}

.service-illus-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(244,132,114,0.15);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-illus-icon.icon-blue {
  background: rgba(73,163,218,0.15);
  color: var(--blue);
}
.service-illus-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
  letter-spacing: -0.005em;
}
.service-illus-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

/* Status check-list (Privileging illustration) */
.status-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.status-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 600;
}
.status-check {
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.status-check.coral { color: var(--coral); }
.status-check.blue  { color: var(--blue); }

/* Pill row (Credentialing illustration) */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pill {
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.pill-coral {
  background: rgba(244,132,114,0.12);
  color: var(--coral);
}
.pill-blue {
  background: rgba(73,163,218,0.12);
  color: var(--blue);
}

/* Payer status list (Payer Enrollment + Maintenance illustration) */
.payer-status-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.payer-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  padding: 0.6rem 0.95rem;
  font-size: 0.86rem;
  border: 1px solid #ececef;
}
.payer-name {
  font-weight: 700;
  color: var(--charcoal);
}
.payer-state {
  font-weight: 700;
  font-size: 0.82rem;
}
.payer-state.coral { color: var(--coral); }
.payer-state.blue  { color: var(--blue); }
.payer-state.gray  { color: var(--gray); }

/* CAQH 100% complete card */
.completion-card {
  background: var(--white);
  border: 1px solid rgba(244,132,114,0.25);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.completion-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.completion-label {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.completion-detail {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---------- About Page ---------- */
.about-mission {
  background: var(--white);
}
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-mission-visual {
  background: linear-gradient(135deg, var(--charcoal), #1a1a2e);
  border-radius: 16px;
  padding: 3rem;
  color: var(--white);
}
.stat-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-item { text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 700; color: var(--coral); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

/* About — Values section */
.about-values {
  background: linear-gradient(180deg, #f4f6fa 0%, #fafbfd 100%);
  padding: 4.5rem 0;
  border-top: 1px solid #e6e9ee;
  border-bottom: 1px solid #e6e9ee;
}
.about-mission { padding: 4rem 0 4.5rem; }
.about-mission .section-label::before,
.about-mission .section-label::after { content: none; }
.about-mission p strong { color: var(--charcoal); font-weight: 700; }

/* About — Mission stats grid (now anchored to real company numbers) */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.about-stat-card {
  background: var(--white);
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  padding: 1.1rem 1rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.about-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,28,51,0.06);
}
.about-stat-card:nth-child(odd):hover  { border-color: var(--coral); }
.about-stat-card:nth-child(even):hover { border-color: var(--blue); }
.about-stat-num {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.35rem;
  font-feature-settings: "tnum" 1;
}
.about-stat-num.coral { color: var(--coral); }
.about-stat-num.blue  { color: var(--blue); }
.about-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 600;
  line-height: 1.3;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.values-grid .value-card:nth-child(4),
.values-grid .value-card:nth-child(5) {
  grid-column: span 1;
}
.value-card {
  background: var(--white);
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.value-card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(244,132,114,0.08);
}
.value-card:nth-child(2n):hover { border-color: var(--blue); }
.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(244,132,114,0.12);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: transform var(--transition);
}
.value-card:nth-child(2n) .value-icon {
  background: rgba(73,163,218,0.12);
  color: var(--blue);
}
.value-card:hover .value-icon { transform: scale(1.06); }
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}
.value-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}
.value-card p em {
  color: var(--charcoal);
  font-style: italic;
  font-weight: 700;
}

/* About — Partnership section */
.about-partnership {
  background: var(--white);
  padding: 4.5rem 0;
}
.about-partnership .section-header p em {
  color: var(--charcoal);
  font-style: italic;
  font-weight: 700;
}
.partnership-panels-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.partnership-panel {
  background: #fafbfd;
  border: 1px solid #e6e9ee;
  border-left: 4px solid var(--coral);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.partnership-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,28,51,0.06);
}
.partnership-panel-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(244,132,114,0.12);
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.75rem;
}
.partnership-panel-tag-blue {
  color: var(--blue);
  background: rgba(73,163,218,0.12);
}
.partnership-panel-tag-coral { color: var(--coral); background: rgba(244,132,114,0.12); }
.partnership-panel:nth-child(2) { border-left-color: var(--blue); }
.partnership-panel h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}
.partnership-panel p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

/* About — Two-Party Workflow */
.about-workflow {
  background: linear-gradient(180deg, #fafbfd 0%, #f4f6fa 100%);
  padding: 4.5rem 0;
  border-top: 1px solid #e6e9ee;
}
.workflow-steps {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.workflow-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.workflow-step:hover {
  border-color: var(--coral);
  transform: translateX(3px);
}
.workflow-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.workflow-step-num-blue { background: var(--blue); }
.workflow-step-num-charcoal { background: var(--charcoal); }
.workflow-step-num-outline {
  background: transparent;
  border: 3px solid var(--coral);
  color: var(--coral);
}
.workflow-step h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.005em;
}
.workflow-step h3 em {
  color: var(--coral);
  font-style: italic;
}
.workflow-step p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.55;
  margin: 0;
}

.about-mission p em {
  color: var(--coral);
  font-style: italic;
  font-weight: 700;
}

@media (max-width: 900px) {
  .partnership-panels-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .page-hero-image { padding-top: calc(var(--nav-h) + 3.5rem); padding-bottom: 3.5rem; }
}

/* ---------- Contact Page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(244,132,114,0.12);
  color: var(--coral);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item:nth-child(2) .contact-info-icon {
  background: rgba(73,163,218,0.12);
  color: var(--blue);
}
.contact-info-item:nth-child(3) .contact-info-icon {
  background: rgba(107,108,110,0.12);
  color: var(--gray);
}

/* Contact section — wrapper */
.contact-section {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #f4f6fa 0%, #fafbfd 100%);
  border-top: 1px solid #e6e9ee;
  border-bottom: 1px solid #e6e9ee;
}

/* Reach-out card (replaces inline-styled div) */
.reach-out-card {
  background: var(--white);
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin-top: 2rem;
}
.reach-out-card .feature-list { margin: 0; }
.reach-out-tag {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral);
  margin-bottom: 0.85rem;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.form-success.show { display: block; }
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(43,182,115,0.12);
  color: #2bb673;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Contact lede em italic */
.contact-layout p em {
  color: var(--charcoal);
  font-style: italic;
  font-weight: 700;
}
.contact-info-detail h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-info-detail p  { font-size: 0.88rem; margin: 0; }
.contact-info-detail a  { color: var(--blue); }
.contact-info-detail a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 0.4rem; }
.contact-form > p { margin-bottom: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
  background: #fafafa;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; text-align: center; }

.form-note { font-size: 0.8rem; color: var(--gray); text-align: center; margin-top: 0.75rem; }

/* ---------- Testimonial / Quote Strip ---------- */
.testimonial-strip {
  background: var(--light-gray);
  padding: 4rem 0;
}
.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
blockquote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
blockquote::before { content: '\201C'; }
blockquote::after  { content: '\201D'; }
.quote-author { font-size: 0.88rem; font-weight: 700; color: var(--gray); }
.quote-author span { color: var(--coral); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span { margin: 0 0.4rem; }

/* ---------- Utility ---------- */
.text-coral  { color: var(--coral); }
.text-blue   { color: var(--blue); }
.text-center { text-align: center; }
.mt-2  { margin-top: 2rem; }
.mb-0  { margin-bottom: 0; }

/* ---------- About workflow header ---------- */
.workflow-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.workflow-header img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
}

/* ---------- Who We Serve ---------- */
.who-we-serve {
  background: linear-gradient(180deg, #f7f7f8 0%, #ececef 100%);
  padding: 3.5rem 0;
  border-top: 1px solid #e6e6e9;
  border-bottom: 1px solid #e6e6e9;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.audience-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.audience-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.audience-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(244,132,114,0.12);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  transition: transform var(--transition);
}
.audience-card:nth-child(2n) .audience-icon {
  background: rgba(73,163,218,0.12);
  color: var(--blue);
}
.audience-card:hover .audience-icon {
  transform: scale(1.06);
}

.audience-card h3 { margin-bottom: 0.6rem; }

/* ---------- Work Between the Work ---------- */
.work-between {
  background: var(--white);
  padding: 4.5rem 0 4rem;
  border-top: 1px solid #ececef;
  border-bottom: 1px solid #ececef;
}

.work-between-pain {
  background: linear-gradient(135deg, #fff8f6 0%, #fef3ef 100%);
  border: 1px solid rgba(244,132,114,0.18);
  border-left: 4px solid var(--coral);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}
.work-between-pain-lede {
  color: var(--coral);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.work-between-questions {
  margin: 0 0 0.8rem 0;
  padding: 0;
  list-style: none;
}
.work-between-questions li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  font-size: 1rem;
  line-height: 1.5;
}
.work-between-questions li::before {
  content: '?';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 800;
  font-size: 1.1rem;
}
.work-between-pain-resolve {
  margin: 0;
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 600;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(244,132,114,0.25);
}
.work-between-pain-resolve em {
  color: var(--coral);
  font-style: italic;
  font-weight: 700;
}

.work-between-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.work-between-tracking h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  letter-spacing: -0.005em;
}
.tracking-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.tracking-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray);
}
.tracking-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(244,132,114,0.15);
}
.tracking-list li:nth-child(2n)::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(73,163,218,0.15);
}
.tracking-label {
  display: block;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.97rem;
  margin-bottom: 0.1rem;
}
.tracking-detail {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Action Items mockup (anonymized client portal preview) */
.work-between-mockup { position: relative; }
.action-mockup {
  background: #f7f7f9;
  border: 1px solid #e1e1e5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  position: relative;
}
.action-mockup-header {
  background: var(--white);
  padding: 1rem 1.25rem 0.75rem;
  border-bottom: 1px solid #ececef;
}
.action-mockup-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}
.action-mockup-tabs {
  display: flex;
  gap: 0.5rem;
}
.action-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gray);
  border-radius: 8px;
  background: transparent;
}
.action-tab.active {
  background: var(--coral);
  color: var(--white);
}
.tab-count {
  background: rgba(255,255,255,0.3);
  color: inherit;
  border-radius: 100px;
  padding: 0.05rem 0.45rem;
  font-size: 0.74rem;
  font-weight: 700;
}
.tab-count-quiet {
  background: #ececef;
  color: var(--gray);
}
.action-mockup-list {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.action-item {
  background: var(--white);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.action-item:hover { border-color: rgba(244,132,114,0.25); }

.action-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  align-items: center;
  margin-bottom: 0.4rem;
}
.action-pill {
  background: rgba(244,180,80,0.15);
  color: #b78217;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 100px;
}
.action-priority {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.74rem;
  color: #c08015;
  font-weight: 700;
}
.action-priority .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d4a017;
}
.action-type {
  font-size: 0.74rem;
  color: var(--gray);
  font-weight: 600;
}
.action-item-title {
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.3rem;
}
.action-item-due {
  font-size: 0.74rem;
  color: var(--gray);
  font-weight: 600;
}
.action-mockup-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(247,247,249,0) 0%, rgba(247,247,249,1) 100%);
  pointer-events: none;
}
.mockup-caption {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 0.75rem;
}

.work-between-punch {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid #ececef;
}
.punch-line {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.punch-line em {
  color: var(--coral);
  font-style: italic;
  font-weight: 800;
}
.punch-sub {
  color: var(--gray);
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 900px) {
  .work-between-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Watch Us Work (Tech Portal + AI) ---------- */
.watch-us-work {
  background: linear-gradient(180deg, #f4f6fa 0%, #fafbfd 100%);
  padding: 4.5rem 0 4rem;
  border-top: 1px solid #e6e9ee;
  border-bottom: 1px solid #e6e9ee;
}

/* Tab bar */
.portal-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.portal-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  border: 1px solid #d6dae0;
  background: var(--white);
  color: var(--gray);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}
.portal-tab:hover {
  border-color: var(--coral);
  color: var(--charcoal);
}
.portal-tab.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244,132,114,0.25);
}

/* Tab panels */
.portal-panels {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.portal-panel { display: none; }
.portal-panel.active {
  display: block;
  animation: panelFade 0.35s ease;
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* Dashboard mockup wrapper (used for all 3 panels) */
.dashboard-mockup {
  background: var(--white);
  border: 1px solid #e1e4ea;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(15,28,51,0.08);
  overflow: hidden;
}
.dashboard-mockup-header {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding: 1rem 1.25rem 0.65rem;
  background: #f7f7f9;
  border-bottom: 1px solid #ececef;
}
.dashboard-mockup-client {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--gray);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.dashboard-mockup-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
}

/* Dashboard Overview panel */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fafbfd;
}
.dash-stat {
  background: var(--white);
  border: 1px solid #ececef;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}
.dash-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
  font-feature-settings: "tnum" 1;
}
.dash-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.05rem;
}
.dash-stat-sub {
  font-size: 0.7rem;
  color: var(--gray);
}

.dashboard-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 1.25rem 1.25rem;
}
.dashboard-panel {
  background: var(--white);
  border: 1px solid #ececef;
  border-radius: 10px;
  padding: 0.85rem 1rem 1rem;
}
.dashboard-panel-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.dashboard-panel-sub {
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 600;
  background: #f3f3f5;
  padding: 0.1rem 0.5rem;
  border-radius: 100px;
}

.dashboard-activity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.dash-act {
  background: #fafbfd;
  border-radius: 6px;
  padding: 0.5rem 0.55rem;
  text-align: center;
}
.dash-act-num {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.1rem;
}
.dash-act-label {
  font-size: 0.66rem;
  color: var(--gray);
  font-weight: 600;
}

.dashboard-alerts {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.dash-alert {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
}
.alert-dot {
  flex-shrink: 0;
  margin-top: 0.5rem;
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
}
.alert-name {
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.83rem;
}
.alert-meta {
  font-size: 0.74rem;
  color: var(--gray);
  margin-top: 0.05rem;
}

/* Enrollment Detail panel */
.enrollment-detail {
  padding: 1rem 1.25rem 1.25rem;
}
.enrollment-summary {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  background: #fafbfd;
  border: 1px solid #ececef;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}
.enroll-payer-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--charcoal);
}
.enroll-provider {
  font-size: 0.8rem;
  color: var(--blue);
  margin-top: 0.15rem;
  font-feature-settings: "tnum" 1;
}
.enrollment-status {
  background: rgba(43,182,115,0.15);
  color: #1a8e5a;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 800;
}
.enrollment-dates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #fafbfd;
  border: 1px solid #ececef;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.ed-label {
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.ed-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  font-feature-settings: "tnum" 1;
}

.enrollment-notes-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.65rem;
}
.notes-count {
  display: inline-block;
  background: #ececef;
  color: var(--gray);
  border-radius: 100px;
  padding: 0.05rem 0.5rem;
  font-size: 0.7rem;
  margin-left: 0.3rem;
}
.enrollment-notes {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.enrollment-note {
  padding: 0.65rem 0.85rem;
  background: #fafbfd;
  border-left: 3px solid #d6dae0;
  border-radius: 6px;
}
.note-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.3rem;
  font-size: 0.7rem;
  color: var(--gray);
}
.note-tag {
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.note-tag-received { background: rgba(73,163,218,0.15); color: var(--blue); }
.note-tag-sent     { background: rgba(244,132,114,0.15); color: var(--coral); }
.note-tag-system   { background: #ececef; color: var(--gray); }
.note-time { font-size: 0.7rem; color: var(--gray); }
.note-user { font-weight: 700; color: var(--charcoal); font-size: 0.7rem; }
.note-body {
  font-size: 0.83rem;
  color: var(--charcoal);
  line-height: 1.45;
}
.note-body em { color: var(--gray); font-style: italic; }
.note-body strong { color: #1a8e5a; }

/* Watch features (under mockup) */
.watch-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}
.watch-feature {
  background: var(--white);
  border: 1px solid #e6e9ee;
  border-radius: 12px;
  padding: 1.25rem 1.25rem 1.1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.watch-feature:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
}
.watch-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(244,132,114,0.12);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.watch-feature:nth-child(2n) .watch-feature-icon {
  background: rgba(73,163,218,0.12);
  color: var(--blue);
}
.watch-feature h4 {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}
.watch-feature p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.45;
}

/* AI Block */
.ai-block {
  background: linear-gradient(135deg, #0f1828 0%, #1a1f3a 100%);
  border-radius: 16px;
  padding: 2.25rem 2.25rem 2rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.ai-block::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73,163,218,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.ai-block-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--coral);
  background: rgba(244,132,114,0.12);
  border: 1px solid rgba(244,132,114,0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.ai-block h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  letter-spacing: -0.005em;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.ai-lede {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 760px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.ai-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.ai-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.ai-feature-num {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue);
  background: rgba(73,163,218,0.15);
  border: 1px solid rgba(73,163,218,0.3);
  border-radius: 6px;
  padding: 0.2rem 0.45rem;
  font-feature-settings: "tnum" 1;
}
.ai-feature-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.ai-feature-text strong {
  color: var(--white);
  font-weight: 700;
}
.ai-future {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.ai-future-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  background: rgba(244,132,114,0.18);
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}
.ai-future-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  flex: 1;
}
.ai-future-text a {
  color: var(--coral);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 900px) {
  .dashboard-stats { grid-template-columns: 1fr 1fr; }
  .dashboard-row   { grid-template-columns: 1fr; }
  .enrollment-dates { grid-template-columns: 1fr 1fr; }
  .watch-features  { grid-template-columns: 1fr 1fr; }
  .ai-features     { grid-template-columns: 1fr; }
  .dashboard-activity { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .watch-features { grid-template-columns: 1fr; }
  .portal-tab span { display: none; }
  .portal-tab { padding: 0.6rem 0.85rem; }
}

/* ---------- (legacy) Technology Portal ---------- */
.tech-portal { background: var(--white); }

.tech-portal-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tech-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.tech-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.tech-feature-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(73,163,218,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-top: 0.1rem;
}
.tech-feature h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.tech-feature p  { font-size: 0.9rem; margin: 0; }

/* Portal mockup */
.portal-mockup {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.portal-mockup-header {
  background: var(--charcoal);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.portal-mockup-dots {
  display: flex;
  gap: 6px;
}
.portal-mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.portal-mockup-dots span:first-child { background: #FF5F57; }
.portal-mockup-dots span:nth-child(2) { background: #FEBC2E; }
.portal-mockup-dots span:last-child  { background: #28C840; }
.portal-mockup-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 600;
}
.portal-mockup-body {
  padding: 1.5rem;
}
.portal-mockup-stat-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eee;
}
.portal-stat {
  flex: 1;
  text-align: center;
}
.portal-stat-num {
  font-size: 1.8rem;
  font-weight: 700;
}
.portal-stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 0.1rem;
}
.portal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
}
.portal-row:last-child { border-bottom: none; }
.portal-provider { font-weight: 600; color: var(--charcoal); }
.portal-status {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
}
.portal-status-enrolled  { background: #F484721a; color: #F48472; }
.portal-status-progress  { background: #49A3DA1a; color: #49A3DA; }
.portal-status-submitted { background: rgba(107,108,110,0.1); color: var(--gray); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--light-gray); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}
.faq-item:first-child {
  border-top: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--coral); }

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0;
}
.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.7;
  padding-bottom: 1.25rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 0;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

/* ---------- Responsive — 1200px (wide desktops) ---------- */
@media (min-width: 1200px) {
  .hero-inner { gap: 5rem; }
}

/* ---------- Responsive — 900px (tablet landscape / small desktop) ---------- */
@media (max-width: 900px) {
  .hero-inner,
  .why-grid,
  .about-mission-inner,
  .service-detail-inner,
  .service-detail-inner.reverse,
  .contact-layout,
  .workflow-header {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .hero-visual { display: none; }
  .services-grid,
  .values-grid,
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .tech-portal-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .workflow-header img { max-width: 200px; margin-bottom: 0.5rem; }
  .service-detail-inner > .service-illustration { order: -1; }
  .why-visual { margin-top: 0; }
  .portal-mockup { max-width: 500px; margin: 0 auto; }
}

/* ---------- Responsive — 640px (tablet portrait / large phone) ---------- */
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 86px; }

  .services-grid,
  .values-grid,
  .audience-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .portal-mockup-stat-row { flex-direction: column; gap: 0.75rem; }

  .hero { padding-top: calc(var(--nav-h) + 2.5rem); padding-bottom: 2.5rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; text-align: center; }

  section { padding: 3rem 0; }
  .page-hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 3rem; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; text-align: center; }

  .service-detail-inner > .service-illustration { min-height: 200px; }

  .contact-form { padding: 1.5rem; }

  .tech-features { gap: 1rem; }
  .tech-feature-icon { width: 38px; height: 38px; font-size: 1rem; }
  .audience-card { padding: 1.5rem; }
  .faq-question { font-size: 0.92rem; padding: 1rem 0; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Responsive — 480px (small phones) ---------- */
@media (max-width: 480px) {
  :root { --nav-h: 64px; }

  .container { padding: 0 1rem; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .nav-logo { align-self: center; }
  .nav-logo-img { height: 56px; }
  .mobile-menu { padding: 1rem; }

  .hero { padding-top: calc(var(--nav-h) + 2rem); padding-bottom: 2rem; }
  .hero p { font-size: 0.95rem; }
  .hero-badge { font-size: 0.72rem; }
  .hero-stat-num { font-size: 1.4rem; }

  .section-header { margin-bottom: 2rem; }

  .service-card { padding: 1.5rem; }

  .step-num { width: 48px; height: 48px; font-size: 1rem; }

  .contact-form { padding: 1.25rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; } /* prevent iOS zoom on focus */

  .cta-banner { padding: 3rem 0; }

  .portal-mockup-body { padding: 1rem; }
  .portal-stat-num { font-size: 1.4rem; }
  .portal-row { font-size: 0.82rem; }
  .portal-provider { max-width: 55%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .audience-card { padding: 1.25rem; }
  .audience-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }

  .faq-question { font-size: 0.88rem; }

  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { gap: 2rem; }
}

/* ── Redacted / privacy blur ─────────────────────────────── */
.redacted {
  filter: blur(4px);
  user-select: none;
  -webkit-user-select: none;
  display: inline-block;
}
