/* =========================================================
   Practice Partner CPAs — Master Stylesheet
   Brand: #0BB6C1 teal • #0B1D2D navy • #64748B slate
   Type: Montserrat (headings) • Open Sans (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

:root {
  --teal: #0BB6C1;
  --teal-dark: #089aa3;
  --teal-deep: #0a6b73;
  --navy: #0B1D2D;
  --navy-2: #122a40;
  --slate: #475569;
  --slate-light: #94a3b8;
  --light: #E6ECF1;
  --bg: #F7F9FC;
  --bone: #FAF6F0;       /* warm off-white for substantial sections */
  --cream: #F4EEE2;      /* deeper cream */
  --paper: #FCFAF5;      /* paper-white */
  --ink: #0A1421;        /* deeper ink for headings */
  --gold: #B8884A;       /* accent gold for editorial moments */
  --white: #FFFFFF;
  --serif: 'Source Serif 4', 'Source Serif Pro', Georgia, serif;

  --niche-mh: #6B46C1;     /* Mental health purple */
  --niche-pt: #0BB6C1;     /* Physical therapy teal */
  --niche-ot: #5BA834;     /* Occupational therapy green */
  --niche-st: #8B5CF6;     /* Speech therapy violet */
  --niche-med: #1E3A8A;    /* Medical navy-blue */
  --niche-vet: #14B8A6;    /* Veterinary teal-green */

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 6px rgba(11, 29, 45, 0.06);
  --shadow: 0 10px 30px rgba(11, 29, 45, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 29, 45, 0.12);
  --container: 1200px;
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.wide { max-width: var(--maxw); }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 48px 0; }
.eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.lead { font-size: 1.18rem; color: var(--slate); max-width: 760px; }
.muted { color: var(--slate); }
.center { text-align: center; margin-inline: auto; }

/* =================== Buttons =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

/* =================== Header =================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--light);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand svg { width: 42px; height: 42px; }
.brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.brand-text span { color: var(--teal); }
.brand-sub {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--slate);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .96rem;
  color: var(--navy);
}
.nav-links a:hover { color: var(--teal); }
.has-dd { position: relative; }
.dd-toggle::after { content: "▾"; margin-left: 4px; font-size: .75em; color: var(--slate); }
.dd {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
}
.has-dd:hover .dd, .has-dd:focus-within .dd { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: .92rem;
  color: var(--navy);
}
.dd a:hover { background: var(--bg); color: var(--teal); }
.dd .dd-sub { font-size: .78rem; color: var(--slate); font-weight: 400; display: block; margin-top: 2px; }

.nav-cta { display: flex; gap: 12px; align-items: center; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: .3s;
}

/* =================== Hero =================== */
.hero {
  position: relative;
  padding: 90px 0 110px;
  background:
    radial-gradient(1100px 600px at 110% -20%, rgba(11,182,193,.18), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(11,29,45,.06), transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #f3f7fb 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--teal); }
.hero p.lead { margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--slate);
  font-size: .92rem;
  font-weight: 600;
}
.hero-trust span::before { content: "✓ "; color: var(--teal); font-weight: 800; }

.hero-visual {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.hero-visual h3 { color: #fff; margin-bottom: 8px; }
.hero-visual p { color: rgba(255,255,255,.7); margin-bottom: 24px; font-size: .95rem; }
.hero-form { display: grid; gap: 12px; }
.hero-form input, .hero-form select {
  width: 100%;
  padding: 13px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
}
.hero-form input::placeholder { color: rgba(255,255,255,.55); }
.hero-form input:focus, .hero-form select:focus { outline: 2px solid var(--teal); }
.hero-form option { background: var(--navy); color: #fff; }
.hero-form .btn { justify-content: center; }
.hero-fineprint { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 6px; text-align: center; }

/* =================== Value Pillars =================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  text-align: center;
  padding: 32px 22px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--light);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar .icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: rgba(11,182,193,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
}
.pillar h4 { margin-bottom: 6px; }
.pillar p { color: var(--slate); font-size: .94rem; }

/* =================== Industry Grid =================== */
.industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.industry-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--light);
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
}
.industry-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent, var(--teal));
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.industry-card .ic-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent, var(--teal)) 15%, transparent);
  color: var(--accent, var(--teal));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.industry-card h3 { margin-bottom: 8px; }
.industry-card p { color: var(--slate); margin-bottom: 16px; font-size: .95rem; }
.industry-card .ic-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--accent, var(--teal));
  font-size: .92rem;
}

/* =================== Services =================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 30px;
}
.svc .svc-icon {
  width: 50px; height: 50px;
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc h3 { margin-bottom: 10px; }
.svc ul { list-style: none; padding: 0; margin-top: 12px; }
.svc ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: .95rem;
  color: var(--navy-2);
}
.svc ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* =================== Pricing =================== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.price.featured h3, .price.featured .price-num { color: #fff; }
.price.featured .price-cents, .price.featured .price-desc, .price.featured li { color: rgba(255,255,255,.8); }
.price.featured li::before { background: var(--teal); }
.price-tag {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}
.price h3 { margin-bottom: 8px; }
.price-desc { color: var(--slate); font-size: .95rem; margin-bottom: 24px; }
.price-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--navy);
}
.price-cents { color: var(--slate); font-size: .95rem; margin-bottom: 28px; }
.price ul { list-style: none; padding: 0; margin-bottom: 28px; flex: 1; }
.price ul li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: .94rem;
}
.price ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.price .btn { width: 100%; justify-content: center; }

/* =================== CTA Bands =================== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  right: -180px; top: -180px;
  background: radial-gradient(circle, rgba(11,182,193,.25), transparent 70%);
  border-radius: 50%;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 700px; margin: 0 auto 28px; position: relative; z-index: 1; }
.cta-band .btn { position: relative; z-index: 1; }

/* =================== FAQ =================== */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  padding: 22px 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-body { padding: 0 26px 22px; color: var(--slate); }

/* =================== Testimonials =================== */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tstmnl {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
}
.tstmnl::before {
  content: "“";
  position: absolute;
  top: 6px; left: 22px;
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  font-family: Georgia, serif;
}
.tstmnl p { padding-top: 32px; font-style: italic; color: var(--navy-2); margin-bottom: 18px; }
.tstmnl .who {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--light);
  padding-top: 16px;
}
.avatar {
  width: 44px; height: 44px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.who .name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.who .role { color: var(--slate); font-size: .85rem; }

/* =================== Stats =================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
}
.stat { text-align: center; padding: 14px; }
.stat .num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat .lbl { color: rgba(255,255,255,.8); font-size: .9rem; }

/* =================== Page Hero (interior) =================== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  right: -150px; top: -200px;
  background: radial-gradient(circle, rgba(11,182,193,.2), transparent 70%);
  border-radius: 50%;
}
.page-hero .breadcrumb {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}
.page-hero .breadcrumb a { color: var(--teal); }
.page-hero h1 { color: #fff; max-width: 820px; }
.page-hero .lead { color: rgba(255,255,255,.85); margin-top: 16px; max-width: 760px; }
.page-hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; position: relative; z-index: 1; }

.niche-hero {
  background: linear-gradient(135deg, var(--accent, var(--teal)) 0%, var(--navy) 100%);
  color: #fff;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.niche-hero h1 { color: #fff; }
.niche-hero .lead { color: rgba(255,255,255,.92); margin-top: 18px; }
.niche-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* =================== Split / Feature Rows =================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.flip { direction: rtl; }
.split.flip > * { direction: ltr; }
.split-visual {
  background: linear-gradient(135deg, var(--bg), var(--light));
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--light);
}
.kpi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.kpi-card .kpi-icon {
  width: 44px; height: 44px;
  background: var(--accent, var(--teal));
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kpi-card .kpi-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}
.kpi-card .kpi-lbl { color: var(--slate); font-size: .9rem; margin-top: 2px; }

/* =================== Forms =================== */
.lead-form-section {
  background: var(--bg);
  padding: 80px 0;
}
.form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: var(--navy);
  margin-bottom: 6px;
}
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--light);
  border-radius: 8px;
  font-family: inherit;
  font-size: .98rem;
  color: var(--navy);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; min-height: 110px; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11,182,193,.15);
}

/* =================== Process / Steps =================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px; left: 24px;
  width: 38px; height: 38px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: .94rem; color: var(--slate); }

/* =================== Footer =================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h5 {
  color: #fff;
  font-size: .98rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer a { color: rgba(255,255,255,.7); display: block; padding: 4px 0; font-size: .94rem; }
.footer a:hover { color: var(--teal); }
.footer-brand .brand-text { color: #fff; }
.footer-brand p { font-size: .94rem; margin-top: 14px; max-width: 360px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* =================== Utilities =================== */
.bg-light { background: var(--bg); }
.text-center { text-align: center; }
.mt-6 { margin-top: 24px; }
.mt-10 { margin-top: 40px; }

/* =================== Hero Mockup (brand suite) =================== */
.hero-mockup {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero-mockup .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 80px 24px 60px;
  max-width: 1280px;
}
.hero-mockup .hm-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hero-mockup .hm-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 22px;
}
.hero-mockup h1 {
  color: var(--navy);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin-bottom: 26px;
}
.hero-mockup h1 .hl-accent { color: var(--teal); }
.hero-mockup h1 .hl-block { display: block; }
.hero-mockup .hm-tagline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--teal-dark);
  letter-spacing: -.005em;
  padding: 10px 0;
  margin-bottom: 18px;
  border-top: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  max-width: 480px;
}
.hero-mockup .hm-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--slate);
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-mockup .hm-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-mockup .hm-cta .btn {
  border-radius: 999px;
  padding: 16px 30px;
  font-weight: 600;
}
.hero-mockup .hm-cta .btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.hero-mockup .hm-cta .btn-primary:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
}
.hero-mockup .hm-cta .btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.hero-mockup .hm-cta .btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.hero-mockup .hm-visual {
  position: relative;
  height: 480px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f6fa 0%, #e0ecf3 100%);
}
.hero-mockup .hm-wedge-tl {
  position: absolute;
  top: -2px;
  left: -2px;
  width: 200px;
  height: 200px;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}
.hero-mockup .hm-wedge-br {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 240px;
  height: 240px;
  background: rgba(11,182,193,0.18);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
.hero-mockup .hm-photo {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-mockup .hm-photo svg.illus {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-mockup .hm-photo-tag {
  position: absolute;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--teal);
  max-width: 250px;
  z-index: 3;
  box-shadow: 0 12px 28px rgba(11,29,45,.18);
}
.hero-mockup .hm-photo-tag .pt-h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.hero-mockup .hm-photo-tag .pt-s {
  font-size: .8rem;
  color: var(--slate);
  line-height: 1.4;
}

/* =================== Trust Pillar Band (DARK NAVY) =================== */
.trust-band {
  background: var(--navy);
  padding: 28px 0;
  position: relative;
}
.trust-band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: .4;
}
.trust-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 16px;
  position: relative;
}
.trust-pill:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.12);
}
.trust-pill .tp-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(11,182,193,.18);
  color: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-pill .tp-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .96rem;
  color: #fff;
  line-height: 1.25;
}

/* =================== Find-Your-Fit matcher (Practice Suite) =================== */
.fit-matcher {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fit-card {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 26px 22px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all .22s ease;
  position: relative;
}
.fit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(11,29,45,.1);
  border-color: var(--teal);
  color: inherit;
}
.fit-card.featured { border-color: var(--teal); border-width: 2px; }
.fit-card.featured::before {
  content: "Most popular";
  position: absolute;
  top: -11px; left: 18px;
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
}
.fit-stage {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--teal);
  line-height: 1;
}
.fit-where {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: .98rem;
  color: var(--navy-2);
  line-height: 1.55;
  flex: 1;
}
.fit-rec {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--light);
  font-size: .92rem;
  color: var(--navy);
}
.fit-rec strong { font-family: 'Montserrat', sans-serif; font-weight: 700; }
.fit-tier { color: var(--slate); font-size: .82rem; }
.fit-arrow {
  color: var(--teal);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 1024px) { .fit-matcher { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .fit-matcher { grid-template-columns: 1fr; } }

/* =================== ROI cards =================== */
.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.roi-card {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.roi-card.featured {
  border-color: var(--teal);
  border-width: 2px;
  box-shadow: 0 24px 50px rgba(11,182,193,.18);
}
.roi-pin {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 14px;
  white-space: nowrap;
}
.roi-tier {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.roi-fee {
  background: var(--bg);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 22px;
  text-align: center;
}
.roi-fee-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}
.roi-fee-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--navy);
  letter-spacing: -.02em;
}
.roi-fee-sub { font-size: .82rem; color: var(--slate); margin-top: 4px; }
.roi-savings { flex: 1; margin-bottom: 22px; }
.roi-save-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--light);
}
.roi-save-row:last-child { border-bottom: none; }
.roi-save-lbl { font-size: .92rem; color: var(--navy-2); flex: 1; padding-right: 12px; }
.roi-save-amt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--teal-dark);
  font-size: .96rem;
  white-space: nowrap;
}
.roi-result {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  text-align: center;
}
.roi-net-lbl {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 4px;
}
.roi-net-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.01em;
}
@media (max-width: 1024px) {
  .roi-grid { grid-template-columns: 1fr; }
  .roi-card.featured { transform: none; }
}

/* =================== Tier Outcomes =================== */
.tier-outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.tier-outcome {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 28px 30px;
  transition: all .22s ease;
}
.tier-outcome:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(11,29,45,.08);
}
.to-tier-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--teal-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.tier-outcome blockquote {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--navy);
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 3px solid var(--teal);
}
.to-attr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--light);
  font-size: .92rem;
}
.to-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.to-attr strong { color: var(--navy); font-family: 'Montserrat', sans-serif; }
.to-attr span { color: var(--slate); font-size: .85rem; }
@media (max-width: 720px) { .tier-outcomes { grid-template-columns: 1fr; } }

/* =================== Timeline =================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--light);
  z-index: 0;
}
.tl-step {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 28px 24px 24px;
  position: relative;
  z-index: 1;
}
.tl-day {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.tl-step h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--navy);
  letter-spacing: -.01em;
}
.tl-step p {
  font-size: .93rem;
  color: var(--slate);
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
}
@media (max-width: 720px) { .timeline { grid-template-columns: 1fr; } }

/* =================== Gap Analysis (niche pages — research-led) =================== */
.gap-analysis {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11,29,45,.06);
}
.gap-headers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border-bottom: 2px solid var(--light);
}
.gap-h-them, .gap-h-us {
  padding: 22px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.gap-h-them {
  color: #b14242;
  border-right: 1px solid var(--light);
}
.gap-rows {
  display: flex;
  flex-direction: column;
}
.gap-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--light);
  transition: background .15s ease;
}
.gap-row:hover { background: var(--bg); }
.gap-row:last-child { border-bottom: none; }
.gap-them, .gap-us {
  padding: 20px 28px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.55;
}
.gap-them {
  color: var(--navy-2);
  font-style: italic;
  border-right: 1px solid var(--light);
}
.gap-us {
  color: var(--navy);
  font-weight: 500;
  background: linear-gradient(90deg, transparent 0%, rgba(11,182,193,.04) 100%);
}
.gap-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.gap-mark-x {
  background: #fce4e4;
  color: #b14242;
}
.gap-footer {
  background: var(--bg);
  padding: 22px 28px;
  border-top: 1px solid var(--light);
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: .96rem;
  color: var(--navy-2);
  text-align: center;
  line-height: 1.55;
}
@media (max-width: 820px) {
  .gap-headers, .gap-row { grid-template-columns: 1fr; }
  .gap-h-them, .gap-them { border-right: none; border-bottom: 1px solid var(--light); }
  .gap-h-us, .gap-us { background: rgba(11,182,193,.04); }
  .gap-h-them { padding-bottom: 8px; }
  .gap-h-us { padding-top: 14px; }
}

/* =================== Realities Split (niche pages) =================== */
.realities-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.reality-col {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 16px;
  padding: 38px 36px;
}
.reality-col.reality-goal {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-color: transparent;
  box-shadow: 0 22px 50px rgba(11,29,45,.08);
  border-left: 4px solid var(--accent, var(--teal));
}
.rc-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #b14242;
  margin-bottom: 24px;
}
.reality-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.reality-list li {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.04rem;
  line-height: 1.55;
  color: var(--navy);
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid var(--light);
  position: relative;
}
.reality-list li:last-child { border-bottom: none; }
.reality-pain .reality-list li {
  font-style: italic;
  color: var(--navy-2);
}
.reality-pain .reality-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #b14242;
  font-weight: 700;
}
.reality-goal .reality-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent, var(--teal));
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.reality-goal .reality-list li {
  font-weight: 500;
  letter-spacing: -.005em;
}
.rc-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--light);
  font-family: 'Open Sans', sans-serif;
  font-size: .9rem;
  font-style: italic;
  color: var(--slate);
}
@media (max-width: 880px) {
  .realities-split { grid-template-columns: 1fr; }
}

/* =================== Discipline Blocks (niche pages) =================== */
.discipline-block {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 18px;
  padding: 40px 44px;
  margin-bottom: 28px;
  transition: box-shadow .25s ease;
}
.discipline-block:hover {
  box-shadow: 0 24px 50px rgba(11,29,45,.08);
}
.discipline-block:last-child { margin-bottom: 0; }
.dis-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light);
}
.dis-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.dis-head-text { flex: 1; padding-top: 4px; }
.dis-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.dis-head-text h3 {
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -.015em;
  font-weight: 600;
}
.dis-body { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: start; }
.dis-prose p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--navy-2);
  margin-bottom: 14px;
}
.dis-prose p:last-child { margin-bottom: 0; }
.dis-stack {
  display: grid;
  gap: 12px;
}
.ds-row {
  background: var(--bg);
  border-radius: 12px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
}
.ds-amt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.ds-row-kpi { grid-template-columns: 44px 1fr; }
.ds-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-icon svg { width: 22px; height: 22px; }
.ds-rt { min-width: 0; }
.ds-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: .98rem;
  margin-bottom: 2px;
}
.ds-detail {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.5;
}
.dis-foot {
  grid-column: 1 / -1;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--light);
  font-size: .93rem;
  color: var(--slate);
}
.dis-bullets {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 12px;
}
.dis-bullets li {
  padding: 12px 16px;
  background: var(--bg);
  border-radius: 10px;
  font-size: .95rem;
  color: var(--navy-2);
  line-height: 1.55;
}
.dis-bullets li strong { color: var(--navy); font-family: 'Montserrat', sans-serif; font-weight: 700; }

@media (max-width: 1024px) {
  .discipline-block { padding: 32px 28px; }
  .dis-body { grid-template-columns: 1fr; gap: 24px; }
  .dis-num { font-size: 2.4rem; }
  .dis-head-text h3 { font-size: 1.25rem; }
}
@media (max-width: 720px) {
  .dis-header { flex-direction: column; gap: 12px; padding-bottom: 20px; margin-bottom: 22px; }
  .ds-row { grid-template-columns: 1fr; gap: 6px; }
  .ds-row-kpi { grid-template-columns: 44px 1fr; }
}

/* =================== Goals grid (niche pages) =================== */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.goal-card {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 28px 30px;
  transition: all .22s ease;
  position: relative;
}
.goal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(11,29,45,.08);
  border-color: transparent;
}
.goal-arrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 14px;
}
.goal-want {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -.005em;
}
.goal-how {
  font-size: .96rem;
  color: var(--navy-2);
  line-height: 1.65;
  padding-top: 14px;
  border-top: 1px solid var(--light);
}
.gh-lbl {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
@media (max-width: 720px) { .goals-grid { grid-template-columns: 1fr; } }

/* =================== Partnership Values grid =================== */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.pp-card {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 30px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all .22s ease;
}
.pp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(11,29,45,.08);
  border-color: transparent;
}
.pp-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pp-icon svg { width: 26px; height: 26px; }
.pp-card h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: var(--navy);
  letter-spacing: -.01em;
}
.pp-card p {
  font-size: .96rem;
  color: var(--slate);
  line-height: 1.65;
}
@media (max-width: 720px) {
  .pp-grid { grid-template-columns: 1fr; }
  .pp-card { flex-direction: column; gap: 14px; }
}

/* =================== Outcomes grid (Services page) =================== */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.outcome {
  background: #ffffff;
  border: 1px solid var(--light);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .22s ease;
}
.outcome:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(11,29,45,.08);
  border-color: transparent;
}
.outcome-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.outcome h3 {
  font-size: 1.18rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -.012em;
}
.outcome p {
  font-size: .98rem;
  color: var(--slate);
  line-height: 1.65;
}
@media (max-width: 1024px) { .outcomes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .outcomes-grid { grid-template-columns: 1fr; } }

/* =================== Engagement Process (4 steps) =================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.process-step {
  background: #ffffff;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
}
.ps-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 1;
  opacity: .85;
  margin-bottom: 14px;
}
.ps-h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.process-step p {
  font-size: .95rem;
  color: var(--slate);
  line-height: 1.6;
}
@media (max-width: 1024px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .process-grid { grid-template-columns: 1fr; } }

/* =================== Engagement Groups =================== */
.engagement-group { margin-bottom: 60px; }
.engagement-group:last-child { margin-bottom: 0; }
.eg-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light);
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.eg-tag {
  display: inline-block;
  background: var(--bg);
  color: var(--teal-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  flex-shrink: 0;
}
.eg-head h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -.01em;
}
@media (max-width: 720px) {
  .eg-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =================== About: Bio layout =================== */
.bio-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.bio-photo-wrap {
  position: sticky;
  top: 100px;
}
.bio-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 320 / 380;
  background: var(--navy);
  box-shadow: 0 24px 50px rgba(11,29,45,.18);
}
.bio-photo svg, .bio-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.bio-badge {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--light);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bb-icon {
  width: 44px;
  height: 44px;
  background: rgba(11,182,193,.12);
  color: var(--teal-dark);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bb-cred {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
}
.bb-sub { font-size: .85rem; color: var(--slate); }

.bio-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin-bottom: 22px;
}
.bio-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--navy-2);
  margin-bottom: 18px;
}
.bio-skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bio-skill {
  background: var(--bg);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bs-h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: .98rem;
}
.bs-s {
  font-size: .88rem;
  color: var(--slate);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .bio-grid { grid-template-columns: 1fr; gap: 36px; }
  .bio-photo-wrap { position: static; max-width: 280px; margin: 0 auto; }
  .bio-skills { grid-template-columns: 1fr; }
}

/* =================== Pain Points grid ("Sound familiar?") =================== */
.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.pain-card {
  background: #ffffff;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .2s ease;
}
.pain-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11,29,45,.07);
  border-color: transparent;
}
.pain-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pain-icon svg { width: 18px; height: 18px; }
.pain-q {
  font-family: 'Open Sans', sans-serif;
  font-style: italic;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* =================== Tax Strategy grid =================== */
.tax-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.tax-card {
  background: #ffffff;
  border: 1px solid var(--light);
  border-left: 4px solid var(--accent, var(--teal));
  border-radius: 0 14px 14px 0;
  padding: 26px 28px;
  transition: all .2s ease;
}
.tax-card:hover {
  transform: translateX(4px);
  box-shadow: 0 14px 30px rgba(11,29,45,.07);
}
.tax-amt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.tax-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.tax-detail {
  font-size: .94rem;
  color: var(--slate);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .pains-grid { grid-template-columns: 1fr; }
  .tax-grid { grid-template-columns: 1fr; }
}

/* =================== Hero photo (real image with overlay) =================== */
.hero-mockup .hm-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  z-index: 2;
}

/* =================== Niche Hero v3 (cleaner, photo-led) =================== */
.bg-bone { background: #F7F9FC; }

.niche-hero-v3 {
  background: #ffffff;
  padding: 50px 0 70px;
  border-bottom: 1px solid var(--light);
}
.niche-hero-v3 .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.breadcrumb-clean {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  color: var(--slate);
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.breadcrumb-clean a { color: var(--accent, var(--teal)); }
.breadcrumb-clean span { color: var(--light); margin: 0 6px; }

.nh-eyebrow-v3 {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 8px;
  background: var(--accent-50);
  color: var(--accent, var(--teal));
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.nh-icon-pill {
  width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nh-icon-pill svg { width: 18px; height: 18px; }

.niche-hero-v3 h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin-bottom: 24px;
}
.niche-hero-v3 .nh-you {
  display: block;
  color: var(--navy);
}
.niche-hero-v3 .nh-we {
  display: block;
  margin-top: 4px;
}
.niche-hero-v3 .nh-sub {
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 32px;
  max-width: 520px;
}
.niche-hero-v3 .nh-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Pill buttons (consistent) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  text-decoration: none;
  transition: all .2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-pill-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-pill-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(11,29,45,.18); color: #fff; }
.btn-pill-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-pill-outline:hover { background: var(--navy); color: #fff; }
.btn-pill-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-pill-white:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.15); color: var(--navy); }
.btn-pill-ghost-w { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-pill-ghost-w:hover { background: rgba(255,255,255,.12); color: #fff; }

/* Niche hero photo frame */
.nh-photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 3.6;
  background: #f0f4f8;
}
.nh-photo-wedge {
  position: absolute;
  top: -2px; left: -2px;
  width: 35%;
  height: 35%;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 2;
}
.nh-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.nh-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nh-photo-fallback .nh-photo-bg {
  display: block;
}
.nh-partner-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border-left: 4px solid;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(11,29,45,.18);
  z-index: 3;
}
.pb-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.pb-icon svg { width: 100%; height: 100%; }
.pb-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy);
  line-height: 1.3;
}

/* =================== Section sizing (more whitespace) =================== */
.section-lg { padding: 110px 0; }
@media (max-width: 720px) { .section-lg { padding: 64px 0; } }

.section-head {
  text-align: center;
  margin-bottom: 60px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 { margin-bottom: 14px; }
.eyebrow-color {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lead-tight {
  font-size: 1.12rem;
  color: var(--slate);
  line-height: 1.55;
}

/* =================== How We Help (3 pillars, cleaner) =================== */
.hwh-pillar {
  background: #ffffff;
  border: 1px solid var(--light);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hwh-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11,29,45,.08);
  border-color: transparent;
}
.hwh-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.hwh-icon svg { width: 28px; height: 28px; }
.hwh-pillar .hwh-num { display: none; } /* hide old number if present */
.hwh-pillar h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
  letter-spacing: -.01em;
}
.hwh-pillar p {
  font-size: .98rem;
  color: var(--slate);
  line-height: 1.65;
}

/* =================== KPI Split (Practice Health Dashboard preview) =================== */
.kpi-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.kpi-split h2 { margin-bottom: 16px; }
.kpi-stack {
  display: grid;
  gap: 14px;
}
.kpi-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--light);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all .2s ease;
}
.kpi-row:hover { transform: translateX(4px); box-shadow: 0 12px 28px rgba(11,29,45,.06); }
.kpi-icon-sm {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kpi-icon-sm svg { width: 22px; height: 22px; }
.kpi-row .kpi-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -.01em;
}
.kpi-row .kpi-lbl {
  font-size: .9rem;
  color: var(--slate);
  margin-top: 2px;
}
.link-arrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  transition: gap .2s ease;
}
.link-arrow:hover { letter-spacing: .01em; }

/* =================== Quote (cleaner block) =================== */
.quote-wrap {
  max-width: 820px;
  text-align: center;
  position: relative;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
}
.quote-wrap blockquote {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.4rem;
  line-height: 1.55;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
  font-style: italic;
  letter-spacing: -.005em;
}
.quote-attr {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.quote-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
}
.quote-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
}
.quote-role {
  font-size: .88rem;
  color: var(--slate);
  text-align: left;
}

/* =================== Clean CTA (color band) =================== */
.cta-clean {
  padding: 90px 0;
  color: #fff;
}
.cta-clean h2 { color: #fff; margin-bottom: 14px; }
.cta-clean p { color: rgba(255,255,255,.85); font-size: 1.08rem; max-width: 480px; }
.cta-clean-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-clean-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

/* =================== Mobile breakpoints for new components =================== */
@media (max-width: 1024px) {
  .niche-hero-v3 .container { grid-template-columns: 1fr; gap: 40px; }
  .nh-photo-frame { aspect-ratio: 5 / 3.6; }
  .hwh-grid { grid-template-columns: 1fr; gap: 18px; }
  .kpi-split { grid-template-columns: 1fr; gap: 36px; }
  .cta-clean-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-clean-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 720px) {
  .section-head { margin-bottom: 36px; }
  .quote-wrap blockquote { font-size: 1.15rem; }
  .nh-partner-badge { left: 14px; right: 14px; padding: 12px 14px; }
}

/* =================== Niche Hero v2 (brand-kit style) =================== */
.niche-hero-v2 {
  background: #ffffff;
  padding: 60px 0 70px;
  border-bottom: 1px solid var(--light);
}
.niche-hero-v2 .container {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.niche-hero-v2 .breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  color: var(--slate);
  margin-bottom: 18px;
}
.niche-hero-v2 .breadcrumb a { color: var(--accent, var(--teal)); }
.niche-hero-v2 .nh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  background: var(--accent-50, #E0F7F8);
  color: var(--accent, var(--teal));
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.niche-hero-v2 .nh-eyebrow .nh-icon {
  width: 32px;
  height: 32px;
  background: var(--accent, var(--teal));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.niche-hero-v2 .nh-eyebrow .nh-icon svg { width: 20px; height: 20px; }
.niche-hero-v2 h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.niche-hero-v2 h1 .nh-you {
  display: block;
  color: var(--navy);
}
.niche-hero-v2 h1 .nh-we {
  display: block;
  color: var(--accent, var(--teal));
  margin-top: 6px;
}
.niche-hero-v2 .nh-sub {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 30px;
  max-width: 540px;
}
.niche-hero-v2 .nh-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.niche-hero-v2 .nh-cta .btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 14px 26px;
}
.niche-hero-v2 .nh-tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-top: 8px;
}
.niche-hero-v2 .nh-visual {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 60px 40px 80px;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.niche-hero-v2 .nh-icon-bg {
  width: 280px;
  height: 280px;
  opacity: 0.95;
}
.niche-hero-v2 .nh-icon-bg svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}
.niche-hero-v2 .nh-partner {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  border-left: 4px solid;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(11,29,45,.08);
}

/* "How We Help" 3-pillar brochure-style grid */
.hwh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.hwh-pillar {
  background: #ffffff;
  border: 1px solid var(--light);
  border-top: 4px solid var(--accent, var(--teal));
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.hwh-pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.hwh-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--accent, var(--teal));
  line-height: 1;
  margin-bottom: 12px;
  opacity: .8;
}
.hwh-pillar h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.hwh-pillar p {
  font-size: .96rem;
  color: var(--navy-2);
  line-height: 1.65;
}

/* Check-mark list (reusable) */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 38px;
  line-height: 1.55;
}
.check-list .check {
  position: absolute;
  left: 0; top: 14px;
  width: 22px; height: 22px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
}

/* =================== Brand Accent Bar (logo separator) =================== */
.brand-rule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 4px;
}
.brand-rule .br-line {
  height: 1.5px;
  width: 30px;
  background: var(--teal);
}
.brand-rule .br-text {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--slate);
}
.brand-rule .br-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

/* =================== Suite Cards =================== */
.suite-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.suite-card {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.suite-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}
.suite-card.featured h3,
.suite-card.featured .suite-fee { color: #fff; }
.suite-card.featured .suite-built,
.suite-card.featured .suite-onboard,
.suite-card.featured p,
.suite-card.featured li { color: rgba(255,255,255,.85); }
.suite-card.featured li::before { background: var(--teal); }
.suite-pin {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.suite-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 6px;
}
.suite-card h3 { margin-bottom: 6px; font-size: 1.45rem; }
.suite-built {
  font-size: .88rem;
  color: var(--slate);
  margin-bottom: 16px;
}
.suite-fee {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}
.suite-fee span { font-size: .9rem; font-weight: 600; color: var(--slate); }
.suite-onboard {
  font-size: .82rem;
  color: var(--slate);
  margin-bottom: 22px;
  font-weight: 500;
}
.suite-card p { font-size: .95rem; margin-bottom: 18px; flex: 0 0 auto; }
.suite-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  flex: 1;
}
.suite-card ul li {
  padding: 7px 0 7px 22px;
  position: relative;
  font-size: .92rem;
}
.suite-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.suite-card .btn { width: 100%; justify-content: center; }

.suite-detail {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 48px 50px;
  box-shadow: var(--shadow-sm);
}
.suite-detail-head { margin-bottom: 24px; }
.suite-detail-head h2 { margin-bottom: 8px; }
.suite-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 32px 0;
}
.suite-cols h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.suite-cols ul { list-style: none; padding: 0; }
.suite-cols ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: .93rem;
  color: var(--navy-2);
}
.suite-cols ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  color: var(--teal);
  font-weight: 700;
}
.suite-feel {
  background: var(--bg);
  padding: 22px 26px;
  border-radius: var(--radius);
  font-size: .98rem;
  color: var(--navy-2);
  margin-top: 20px;
  border-left: 4px solid var(--teal);
}

/* =================== Matrix Table =================== */
.matrix-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light);
  background: #fff;
}
.matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: .94rem;
}
.matrix thead th {
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 14px 16px;
  text-align: center;
  letter-spacing: .04em;
}
.matrix thead th:first-child { text-align: left; }
.matrix tbody td {
  padding: 13px 16px;
  text-align: center;
  border-bottom: 1px solid var(--light);
  color: var(--navy-2);
}
.matrix tbody td:first-child {
  text-align: left;
  font-weight: 500;
  background: var(--bg);
  color: var(--navy);
}
.matrix tbody tr:hover td { background: rgba(11, 182, 193, 0.04); }
.matrix tbody tr:hover td:first-child { background: var(--light); }

/* =================== Journey (4 stages) =================== */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stage {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.stage-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 4px;
}
.stage-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 10px;
}
.stage h3 { font-size: 1.2rem; margin-bottom: 4px; }
.stage-range {
  font-size: .85rem;
  color: var(--teal-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.stage-quote {
  font-style: italic;
  font-size: .92rem;
  color: var(--slate);
  border-left: 3px solid var(--teal);
  padding-left: 14px;
  margin-bottom: 18px;
}
.stage-outcome {
  font-size: .92rem;
  color: var(--navy-2);
  margin-bottom: 16px;
  flex: 1;
}
.stage-fee {
  background: var(--navy);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  text-align: center;
}

/* =================== Project Grid =================== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.project {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  border-left: 4px solid var(--teal);
  transition: all .2s ease;
}
.project:hover {
  box-shadow: var(--shadow);
  transform: translateX(2px);
}
.proj-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  grid-column: 1 / -1;
  margin-bottom: 4px;
}
.proj-desc {
  font-size: .92rem;
  color: var(--slate);
  grid-column: 1;
}
.proj-fee {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--teal-dark);
  font-size: 1rem;
  text-align: right;
  white-space: nowrap;
  grid-column: 2;
  align-self: end;
}

/* =================== Quote Block =================== */
.quote-block {
  max-width: 880px;
  margin: 0 auto;
  background: var(--bg);
  border-left: 5px solid var(--teal);
  padding: 38px 42px;
  border-radius: var(--radius);
}
.quote-block > p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 24px;
}
.quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--light);
  padding-top: 18px;
}
.quote-author .avatar {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.quote-author .name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
}
.quote-author .role {
  font-size: .92rem;
  color: var(--slate);
}

/* =================== Leader Card =================== */
.leader-card {
  background: #fff;
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 36px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.leader-avatar {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
}
.leader-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
}
.leader-role {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

/* =================== Footer Pillars =================== */
.footer-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.fp {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255,255,255,.85);
}
.fp-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(11,182,193,.2);
  color: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-h {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  color: var(--teal);
}
.fp-s { font-size: .9rem; color: rgba(255,255,255,.75); }

/* =================== Responsive =================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: 1fr; }
  .price.featured { transform: none; }
  .testimonials { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .niche-hero-v2 .container { grid-template-columns: 1fr; gap: 36px; }
  .niche-hero-v2 .nh-visual { min-height: 320px; padding: 40px 24px 60px; }
  .niche-hero-v2 .nh-icon-bg { width: 200px; height: 200px; }
  .hwh-grid { grid-template-columns: 1fr; }
  .hero-mockup .container { grid-template-columns: 1fr; }
  .hero-mockup .hm-text { padding: 60px 28px 40px; }
  .hero-mockup .hm-visual { min-height: 360px; }
  .hero-mockup .hm-photo { clip-path: none; }
  .trust-band .container { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .trust-pill:not(:last-child)::after { display: none; }
  .suite-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .suite-cols { grid-template-columns: 1fr; gap: 22px; }
  .suite-detail { padding: 36px 30px; }
  .project-grid { grid-template-columns: 1fr; }
  .leader-card { grid-template-columns: 1fr; text-align: center; padding: 32px; }
  .leader-avatar { margin: 0 auto; }
  .footer-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; gap: 8px; box-shadow: var(--shadow); border-top: 1px solid var(--light); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px; width: 100%; }
  .has-dd .dd { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; padding: 0 0 0 16px; min-width: 0; border: none; }
  .nav-cta .btn { display: none; }
  .nav-cta .hamburger { display: block; }
  .pillars { grid-template-columns: 1fr; }
  .industries { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .form-wrap { padding: 30px 22px; }
  .hero { padding: 60px 0 80px; }
  .trust-band .container { grid-template-columns: 1fr; gap: 14px; }
  .hero-mockup h1 { font-size: 2.1rem; }
  .hero-mockup .hm-sub { font-size: 1rem; }
  .suite-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .footer-pillars { grid-template-columns: 1fr; }
  .quote-block { padding: 28px 24px; }
  .quote-block > p { font-size: 1.05rem; }
  .matrix thead th, .matrix tbody td { padding: 10px 8px; font-size: .85rem; }
}

/* ===== TRANSFORMATION GRID (niche pages — emotional before/after) ===== */
.transform-grid {
  display: grid;
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.transform-row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid var(--light, #e6e8ec);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(11,29,45,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.transform-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(11,29,45,0.08);
}
.tr-before, .tr-after {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
}
.tr-before {
  background: #f7f8fa;
  border-right: 1px solid var(--light, #e6e8ec);
}
.tr-after {
  background: #fff;
  border-left: 4px solid;
}
.tr-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tr-label-before { color: #94a3b8; }
.tr-label-after { font-weight: 700; }
.tr-text {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink, #0b1d2d);
}
.tr-before .tr-text {
  color: #64748b;
}
.tr-after .tr-text {
  color: var(--ink, #0b1d2d);
  font-weight: 500;
}
.tr-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-left: 1px solid var(--light, #e6e8ec);
  border-right: 1px solid var(--light, #e6e8ec);
  flex-shrink: 0;
}
.tr-arrow svg {
  width: 22px;
  height: 22px;
}
.transform-foot {
  text-align: center;
  margin-top: 36px;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--slate, #64748b);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.transform-foot strong {
  display: block;
  margin-top: 8px;
  font-size: 1.15rem;
  font-weight: 700;
}

/* Mobile: stack before/after vertically */
@media (max-width: 720px) {
  .transform-row {
    grid-template-columns: 1fr;
  }
  .tr-before {
    border-right: none;
    border-bottom: 1px solid var(--light, #e6e8ec);
  }
  .tr-after {
    border-left: none;
    border-top: 4px solid;
  }
  .tr-arrow {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--light, #e6e8ec);
    border-bottom: 1px solid var(--light, #e6e8ec);
    padding: 6px 0;
    background: #f7f8fa;
  }
  .tr-arrow svg {
    transform: rotate(90deg);
  }
}

/* ============================================================
   MSO POSITIONING UPGRADES — Substantial healthcare partner look
   ============================================================ */

/* Editorial display type — use serif for marquee moments */
.display-serif {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.display-serif em, .display-serif i {
  font-style: italic;
  color: var(--teal-deep);
}

/* Section backgrounds — substantial sections sit on bone, not white */
.bg-bone { background: var(--bone); }
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: #fff; }

/* Editorial section divider — subtle hairline + label */
.editorial-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px auto 32px;
  max-width: 760px;
}
.editorial-divider .line {
  flex: 1;
  height: 1px;
  background: rgba(11, 29, 45, 0.15);
}
.editorial-divider .label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--slate);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   HERO V4 — Substantial MSO hero (no SaaS dashboard overlay)
   ============================================================ */
.hero-mso {
  position: relative;
  background: linear-gradient(180deg, var(--paper) 0%, var(--bone) 100%);
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-mso::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(11, 182, 193, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-mso .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  z-index: 1;
}
.hero-mso .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-mso .eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--teal-deep);
}
.hero-mso h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-mso h1 em {
  font-style: italic;
  color: var(--teal-deep);
}
.hero-mso .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--slate);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.5;
}
.hero-mso .body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-mso .actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-mso .btn-mso-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 18px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: all .2s ease;
  border: 1px solid var(--ink);
}
.hero-mso .btn-mso-primary:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: #fff;
  transform: translateY(-1px);
}
.hero-mso .btn-mso-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  padding: 18px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid rgba(11, 20, 33, 0.25);
  transition: all .2s ease;
}
.hero-mso .btn-mso-secondary:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.hero-mso .credibility {
  font-size: 0.85rem;
  color: var(--slate-light);
  line-height: 1.6;
  border-top: 1px solid rgba(11, 29, 45, 0.1);
  padding-top: 20px;
  max-width: 520px;
}
.hero-mso .credibility strong {
  color: var(--ink);
  font-weight: 600;
}

/* Hero photo — editorial treatment */
.hero-mso-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(11, 29, 45, 0.18);
}
.hero-mso-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
}
.hero-mso-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 29, 45, 0.05), rgba(11, 29, 45, 0) 40%);
  pointer-events: none;
}
.hero-mso-photo .photo-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(252, 250, 245, 0.96);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--teal-deep);
  padding: 14px 18px;
  border-radius: 2px;
  max-width: 78%;
}
.hero-mso-photo .photo-tag-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-mso-photo .photo-tag-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}

@media (max-width: 880px) {
  .hero-mso { padding: 60px 0 50px; }
  .hero-mso .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-mso-photo { aspect-ratio: 5 / 6; }
}

/* ============================================================
   STATS BAND — Editorial number layout
   ============================================================ */
.stats-band {
  background: var(--ink);
  color: #fff;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-band .stats-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 28px;
  text-align: center;
}
.stats-band .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.stats-band .stat {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-band .stat:last-child { border-right: none; }
.stats-band .stat-num {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stats-band .stat-num em {
  font-style: italic;
  color: var(--teal);
}
.stats-band .stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .stats-band .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stats-band .stat:nth-child(2) { border-right: none; }
  .stats-band .stat:nth-child(1), .stats-band .stat:nth-child(2) { padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ============================================================
   THREE OPTIONS COMPARISON — Strategic briefing layout
   ============================================================ */
.three-options {
  background: var(--bone);
  padding: 100px 0;
}
.three-options .heading-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.three-options .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.three-options .heading-block h2 em {
  font-style: italic;
  color: var(--teal-deep);
}
.three-options .heading-block .lede {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.6;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.08);
}
.option-col {
  padding: 44px 32px;
  position: relative;
}
.option-col:not(:last-child) {
  border-right: 1px solid rgba(11, 29, 45, 0.08);
}
.option-col.option-featured {
  background: var(--paper);
}
.option-col.option-featured::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--ink);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 16px;
  border-radius: 2px;
}
.option-col h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.option-col .opt-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--slate-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.option-col.option-featured .opt-sub { color: var(--teal-deep); }
.option-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.option-col li {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.55;
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid rgba(11, 29, 45, 0.06);
}
.option-col li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--slate-light);
}
.option-col.option-featured li::before {
  content: '✓';
  color: var(--teal-deep);
  font-weight: 700;
}
.option-col .opt-bottom {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}
.option-col.option-featured .opt-bottom { border-top-color: var(--teal-deep); }
@media (max-width: 880px) {
  .options-grid { grid-template-columns: 1fr; }
  .option-col:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(11, 29, 45, 0.08); }
}

/* ============================================================
   FUNNEL ENTRY CARDS — 3 tiers of conversion
   ============================================================ */
.funnel-entries {
  background: var(--paper);
  padding: 100px 0;
  border-top: 1px solid rgba(11, 29, 45, 0.06);
}
.funnel-entries .heading-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.funnel-entries .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.funnel-entries .heading-block h2 em {
  font-style: italic;
  color: var(--teal-deep);
}
.funnel-entries .heading-block .lede {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.6;
}
.funnel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.funnel-card {
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.08);
  border-radius: 4px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all .2s ease;
  position: relative;
}
.funnel-card:hover {
  border-color: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(11, 29, 45, 0.1);
}
.funnel-card-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.funnel-card-eyebrow .pill {
  background: var(--bone);
  color: var(--slate);
  padding: 3px 9px;
  border-radius: 2px;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}
.funnel-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.funnel-card .desc {
  color: var(--slate);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.funnel-card .meta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: var(--slate-light);
}
.funnel-card .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.funnel-card .funnel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all .2s ease;
}
.funnel-card .funnel-cta:hover {
  background: var(--teal-deep);
  color: #fff;
}
.funnel-card .funnel-cta::after {
  content: '→';
  margin-left: 12px;
  transition: transform .2s ease;
}
.funnel-card:hover .funnel-cta::after {
  transform: translateX(4px);
}
.funnel-card.featured {
  border-color: var(--ink);
  border-width: 2px;
  background: var(--ink);
  color: #fff;
}
.funnel-card.featured h3 { color: #fff; }
.funnel-card.featured .desc { color: rgba(255,255,255,0.75); }
.funnel-card.featured .meta { color: rgba(255,255,255,0.55); }
.funnel-card.featured .funnel-cta { background: var(--teal); color: var(--ink); }
.funnel-card.featured .funnel-cta:hover { background: #fff; }
@media (max-width: 880px) { .funnel-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TEAR-SHEET QUOTE — Institutional testimonial treatment
   ============================================================ */
.tearsheet-quote {
  background: var(--bone);
  padding: 100px 0;
}
.tearsheet-quote .ts-wrap {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.tearsheet-quote .ts-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 6rem;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: -20px;
}
.tearsheet-quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 auto 40px;
  letter-spacing: -0.005em;
}
.tearsheet-quote .ts-attr {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(11, 29, 45, 0.18);
}
.tearsheet-quote .ts-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.tearsheet-quote .ts-meta {
  text-align: left;
}
.tearsheet-quote .ts-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.tearsheet-quote .ts-role {
  font-size: 0.85rem;
  color: var(--slate);
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 880px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink);
    padding: 14px 16px;
    z-index: 999;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  }
  .mobile-cta-bar .mcb-btn {
    display: block;
    background: var(--teal);
    color: var(--ink);
    text-align: center;
    padding: 14px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
  }
  body { padding-bottom: 80px; }
}

/* ============================================================
   IMPROVED FOOTER — Institutional gravitas
   ============================================================ */
.footer-v2 {
  background: var(--ink);
  color: #fff;
  padding: 80px 0 0;
}
.footer-v2 .trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 56px;
}
.footer-v2 .trust-item {
  text-align: center;
}
.footer-v2 .trust-item .ti-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.footer-v2 .trust-item .ti-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.footer-v2 .credentials-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.footer-v2 .cred-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.footer-v2 .cred-badge svg { color: var(--teal); }
.footer-v2 .footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-v2 .fg-brand .fg-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.footer-v2 .fg-brand .fg-logo span { color: var(--teal); }
.footer-v2 .fg-brand .fg-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 24px;
}
.footer-v2 .fg-brand .fg-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-v2 .fg-brand .fg-newsletter {
  margin-top: 16px;
}
.footer-v2 .fg-brand .fg-newsletter-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-v2 .fg-brand .fg-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 320px;
}
.footer-v2 .fg-brand .fg-newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 12px 14px;
  font-size: 0.9rem;
  border-radius: 4px 0 0 4px;
}
.footer-v2 .fg-brand .fg-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-v2 .fg-brand .fg-newsletter-form button {
  background: var(--teal);
  color: var(--ink);
  border: none;
  padding: 12px 18px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background .2s;
}
.footer-v2 .fg-brand .fg-newsletter-form button:hover { background: #fff; }
.footer-v2 .fg-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-v2 .fg-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.92rem;
  transition: color .2s;
}
.footer-v2 .fg-col a:hover { color: var(--teal); }
.footer-v2 .footer-bottom-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-v2 .footer-bottom-v2 .social-links {
  display: flex;
  gap: 12px;
}
.footer-v2 .footer-bottom-v2 .social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all .2s;
}
.footer-v2 .footer-bottom-v2 .social-links a:hover {
  border-color: var(--teal);
  color: var(--teal);
}
@media (max-width: 880px) {
  .footer-v2 .footer-grid-v2 { grid-template-columns: 1fr; gap: 40px; }
  .footer-v2 .trust-band { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-v2 .credentials-row { gap: 20px; }
}

/* ============================================================
   HEADER V2 — MSO positioning + tiered CTA
   ============================================================ */
.site-header .nav-cta .btn-mso-header {
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
}
.site-header .nav-cta .btn-mso-header:hover {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

/* ============================================================
   FUNNEL LANDING PAGE LAYOUT
   ============================================================ */
.funnel-landing {
  background: var(--paper);
  min-height: calc(100vh - 200px);
}
.funnel-landing .container {
  padding: 80px 24px;
}
.funnel-landing .ftop {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: start;
}
.funnel-landing .fcol-left .eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.funnel-landing h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.funnel-landing h1 em { font-style: italic; color: var(--teal-deep); }
.funnel-landing .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 28px;
}
.funnel-landing .body p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 18px;
}
.funnel-landing .deliverables {
  background: var(--bone);
  border-left: 3px solid var(--teal-deep);
  padding: 20px 24px;
  margin: 28px 0;
}
.funnel-landing .deliverables-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.funnel-landing .deliverables ul { list-style: none; padding: 0; }
.funnel-landing .deliverables li {
  position: relative;
  padding: 5px 0 5px 22px;
  color: var(--ink);
  font-size: 0.95rem;
}
.funnel-landing .deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-deep);
  font-weight: 700;
}
.funnel-landing .authority {
  border-top: 1px solid rgba(11, 29, 45, 0.1);
  padding-top: 20px;
  font-size: 0.88rem;
  color: var(--slate);
  font-style: italic;
}

.funnel-landing .fcard {
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.1);
  border-radius: 4px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(11, 29, 45, 0.08);
  position: sticky;
  top: 100px;
}
.funnel-landing .fcard h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.funnel-landing .fform-field {
  margin-bottom: 16px;
}
.funnel-landing .fform-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 6px;
}
.funnel-landing .fform-field input,
.funnel-landing .fform-field select,
.funnel-landing .fform-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(11, 29, 45, 0.18);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s;
}
.funnel-landing .fform-field input:focus,
.funnel-landing .fform-field select:focus,
.funnel-landing .fform-field textarea:focus {
  outline: none;
  border-color: var(--teal-deep);
}
.funnel-landing .fbtn {
  width: 100%;
  background: var(--ink);
  color: #fff;
  padding: 16px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.funnel-landing .fbtn:hover { background: var(--teal-deep); }
.funnel-landing .fcard .reassure {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 880px) {
  .funnel-landing .ftop { grid-template-columns: 1fr; gap: 32px; }
  .funnel-landing .fcard { position: static; }
}

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */
.thank-you {
  background: var(--bone);
  padding: 100px 0;
  text-align: center;
}
.thank-you .check {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background: var(--teal-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
}
.thank-you h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.thank-you .ty-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.5;
}
.thank-you .ty-next {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto 60px;
}
.thank-you .ty-step {
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.08);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: left;
}
.thank-you .ty-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.5rem;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 16px;
}
.thank-you .ty-step h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.thank-you .ty-step p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 880px) { .thank-you .ty-next { grid-template-columns: 1fr; } }

/* ============================================================
   BRAND WORDMARK — No-tagline variant (per uploaded logo)
   ============================================================ */
.brand.brand-no-tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand.brand-no-tagline svg {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}
.brand.brand-no-tagline .brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1;
}
.brand.brand-no-tagline .brand-text span {
  color: var(--teal-deep);
  font-weight: 700;
}
@media (max-width: 720px) {
  .brand.brand-no-tagline svg { width: 38px; height: 38px; }
  .brand.brand-no-tagline .brand-text { font-size: 0.95rem; }
}

/* ============================================================
   FIXUPS — Force MSO section layouts (specificity overrides)
   ============================================================ */
section.hero-mso .container {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  gap: 80px !important;
  align-items: center !important;
  max-width: 1200px !important;
  padding: 0 24px !important;
}
@media (max-width: 880px) {
  section.hero-mso .container {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
section.hero-mso .actions a.btn-mso-primary,
section.hero-mso .actions a.btn-mso-secondary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 18px 32px !important;
  border-radius: 4px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  border: 1px solid var(--ink) !important;
}
section.hero-mso .actions a.btn-mso-primary {
  background: var(--ink) !important;
  color: #fff !important;
}
section.hero-mso .actions a.btn-mso-secondary {
  background: transparent !important;
  color: var(--ink) !important;
  border-color: rgba(11, 20, 33, 0.25) !important;
}
section.hero-mso .actions {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin: 36px 0 32px !important;
}
section.three-options .options-grid,
section.funnel-entries .funnel-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
}
section.funnel-entries .funnel-grid { gap: 28px !important; }
@media (max-width: 880px) {
  section.three-options .options-grid,
  section.funnel-entries .funnel-grid { grid-template-columns: 1fr !important; }
}
section.stats-band .stats-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 720px) {
  section.stats-band .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
section.funnel-landing .ftop {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr !important;
  gap: 64px !important;
  align-items: start !important;
}
@media (max-width: 880px) {
  section.funnel-landing .ftop { grid-template-columns: 1fr !important; gap: 32px !important; }
}
section.funnel-landing .fcard button.fbtn,
section.funnel-landing .fbtn {
  width: 100% !important;
  background: var(--ink) !important;
  color: #fff !important;
  padding: 16px !important;
  border-radius: 4px !important;
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
  border: none !important;
  cursor: pointer !important;
  margin-top: 8px !important;
}
footer.footer-v2 .footer-grid-v2 {
  display: grid !important;
  grid-template-columns: 1.4fr 1fr 1fr 1fr !important;
  gap: 48px !important;
}
footer.footer-v2 .trust-band {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 32px !important;
}
footer.footer-v2 .credentials-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 40px !important;
  flex-wrap: wrap !important;
}
@media (max-width: 880px) {
  footer.footer-v2 .footer-grid-v2 { grid-template-columns: 1fr !important; gap: 40px !important; }
  footer.footer-v2 .trust-band { grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
}
/* Hide the old hidden hero-mockup block completely so it doesn't leak */
section.hero-mockup[style*="display:none"] { display: none !important; }

/* ============================================================
   SPECIALTY GRID MSO — Editorial specialty cards
   ============================================================ */
.specialty-grid-mso {
  background: var(--paper);
  padding: 100px 0;
}
.specialty-grid-mso .heading-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}
.specialty-grid-mso .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.specialty-grid-mso .heading-block h2 em {
  font-style: italic; color: var(--teal-deep);
}
.specialty-grid-mso .heading-block .lede {
  font-size: 1.05rem; color: var(--slate); line-height: 1.6;
}
.specialty-grid-mso .sgm-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.08);
}
.specialty-grid-mso .sgm-card {
  padding: 36px 28px;
  border-right: 1px solid rgba(11, 29, 45, 0.06);
  border-bottom: 1px solid rgba(11, 29, 45, 0.06);
  text-decoration: none;
  display: block;
  transition: all .2s ease;
  position: relative;
}
.specialty-grid-mso .sgm-card:nth-child(3n) { border-right: none; }
.specialty-grid-mso .sgm-card:nth-last-child(-n+3) { border-bottom: none; }
.specialty-grid-mso .sgm-card:hover {
  background: var(--bone);
  transform: translateY(-1px);
}
.specialty-grid-mso .sgm-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.specialty-grid-mso .sgm-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.specialty-grid-mso .sgm-sub {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.5;
}
@media (max-width: 880px) {
  .specialty-grid-mso .sgm-grid { grid-template-columns: 1fr !important; }
  .specialty-grid-mso .sgm-card { border-right: none !important; }
}

/* ============================================================
   PLATFORM PREVIEW — Eight functions on homepage
   ============================================================ */
.platform-preview {
  background: var(--bone);
  padding: 100px 0;
}
.platform-preview .heading-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}
.platform-preview .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.platform-preview .heading-block h2 em { font-style: italic; color: var(--teal-deep); }
.platform-preview .heading-block .lede {
  font-size: 1.05rem; color: var(--slate); line-height: 1.6;
}
.platform-preview .pp-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.08);
  margin-bottom: 48px;
}
.platform-preview .pp-item {
  padding: 32px 24px;
  border-right: 1px solid rgba(11, 29, 45, 0.06);
  border-bottom: 1px solid rgba(11, 29, 45, 0.06);
}
.platform-preview .pp-item:nth-child(4n) { border-right: none; }
.platform-preview .pp-item:nth-last-child(-n+4) { border-bottom: none; }
.platform-preview .pp-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 14px;
}
.platform-preview .pp-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.platform-preview .pp-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.55;
}
.platform-preview .pp-cta-row {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
@media (max-width: 880px) {
  .platform-preview .pp-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .platform-preview .pp-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 540px) {
  .platform-preview .pp-grid { grid-template-columns: 1fr !important; }
  .platform-preview .pp-item { border-right: none !important; }
}

/* ============================================================
   FAQ MSO — Editorial accordion
   ============================================================ */
.faq-mso {
  background: var(--paper);
  padding: 100px 0;
}
.faq-mso .heading-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.faq-mso .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
}
.faq-mso .heading-block h2 em { font-style: italic; color: var(--teal-deep); }
.faq-mso .faq-grid {
  max-width: 820px; margin: 0 auto;
}
.faq-mso .faq-item {
  border-bottom: 1px solid rgba(11, 29, 45, 0.12);
  padding: 0;
}
.faq-mso .faq-item summary {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  padding: 24px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  padding-right: 40px;
  letter-spacing: -0.005em;
}
.faq-mso .faq-item summary::marker, .faq-mso .faq-item summary::-webkit-details-marker { display: none; }
.faq-mso .faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--teal-deep);
  transition: transform .2s;
}
.faq-mso .faq-item[open] summary::after { content: '−'; }
.faq-mso .faq-body {
  padding: 0 0 24px;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.65;
}

/* ============================================================
   FINAL CTA BAND
   ============================================================ */
.final-cta-band {
  background: var(--ink);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.final-cta-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(11, 182, 193, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-band .fcb-inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.final-cta-band h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.final-cta-band h2 em { font-style: italic; color: var(--teal); }
.final-cta-band p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-band .fcb-actions {
  display: flex; justify-content: center; gap: 18px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.final-cta-band .btn-fcb-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal);
  color: var(--ink);
  padding: 18px 36px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all .2s;
}
.final-cta-band .btn-fcb-primary:hover { background: #fff; }
.final-cta-band .btn-fcb-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.92);
  padding: 18px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all .2s;
}
.final-cta-band .btn-fcb-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.final-cta-band .fcb-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================================
   PAGE-HERO MSO — Used by inner pages
   ============================================================ */
.page-hero-mso {
  background: linear-gradient(180deg, var(--paper) 0%, var(--bone) 100%);
  padding: 80px 0 60px;
  position: relative;
}
.page-hero-mso .phm-text {
  max-width: 940px;
  margin: 0 auto;
}
.page-hero-mso .phm-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.page-hero-mso .phm-breadcrumb a {
  color: var(--teal-deep);
  text-decoration: none;
}
.page-hero-mso .phm-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.page-hero-mso .phm-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--teal-deep);
}
.page-hero-mso h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.page-hero-mso h1 em { font-style: italic; color: var(--teal-deep); }
.page-hero-mso .phm-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 760px;
}
.page-hero-mso .phm-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

/* ============================================================
   WHY THIS MODEL — Two-column on MSO Platform page
   ============================================================ */
.why-this-model {
  padding: 100px 0;
}
.why-this-model .wtm-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.why-this-model .wtm-col {
  padding: 0;
}
.why-this-model .wtm-col-featured {
  position: relative;
}
.why-this-model .wtm-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.why-this-model .wtm-col h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.why-this-model .wtm-col p {
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
@media (max-width: 880px) {
  .why-this-model .wtm-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   PLATFORM FUNCTIONS — 8 function blocks
   ============================================================ */
.platform-functions {
  background: var(--paper);
  padding: 100px 0;
}
.platform-functions .pf-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(11, 29, 45, 0.1);
  align-items: start;
}
.platform-functions .pf-block:last-child { border-bottom: none; }
.platform-functions .pf-side {
  position: sticky;
  top: 100px;
}
.platform-functions .pf-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 12px;
}
.platform-functions .pf-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink);
  text-transform: uppercase;
}
.platform-functions .pf-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.platform-functions .pf-body p {
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.platform-functions .pf-deliverables {
  list-style: none;
  padding: 0;
  background: var(--bone);
  border-left: 3px solid var(--teal-deep);
  padding: 20px 24px;
}
.platform-functions .pf-deliverables li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}
.platform-functions .pf-deliverables li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-deep);
  font-weight: 700;
}
@media (max-width: 880px) {
  .platform-functions .pf-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .platform-functions .pf-side { position: static; }
}

/* ============================================================
   PLATFORM MATH — Cost table on MSO Platform page
   ============================================================ */
.platform-math {
  padding: 100px 0;
}
.platform-math .heading-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}
.platform-math .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.platform-math .heading-block h2 em { font-style: italic; color: var(--teal-deep); }
.platform-math .pm-table {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.1);
}
.platform-math .pm-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  border-bottom: 1px solid rgba(11, 29, 45, 0.06);
}
.platform-math .pm-row:last-child { border-bottom: none; }
.platform-math .pm-row-header {
  background: var(--ink);
  color: #fff;
}
.platform-math .pm-row-header .pm-cell {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.platform-math .pm-row-total {
  background: var(--bone);
}
.platform-math .pm-cell {
  padding: 18px 24px;
  font-size: 0.98rem;
  color: var(--slate);
}
.platform-math .pm-cell.pm-right {
  text-align: right;
  font-family: var(--serif);
  color: var(--ink);
}
.platform-math .pm-row-total .pm-cell.pm-right {
  color: var(--teal-deep);
  font-size: 1.2rem;
}
.platform-math .pm-note {
  max-width: 820px;
  margin: 24px auto 0;
  text-align: center;
  font-style: italic;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.6;
}

/* ============================================================
   TIER GRID — Partnership Tiers page
   ============================================================ */
.tier-grid-section {
  background: var(--paper);
  padding: 100px 0;
}
.tier-grid-section .heading-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.tier-grid-section .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
}
.tier-grid-section .heading-block h2 em { font-style: italic; color: var(--teal-deep); }
.tier-grid-section .tg-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
}
.tier-grid-section .tg-card {
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.08);
  border-radius: 4px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .2s ease;
}
.tier-grid-section .tg-card:hover {
  border-color: var(--teal-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(11, 29, 45, 0.08);
}
.tier-grid-section .tg-card-featured {
  border: 2px solid var(--ink);
  background: #fff;
}
.tier-grid-section .tg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--ink);
  padding: 4px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  border-radius: 2px;
}
.tier-grid-section .tg-tier {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tier-grid-section .tg-price {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 6px;
}
.tier-grid-section .tg-price span {
  font-size: 0.95rem;
  color: var(--slate);
}
.tier-grid-section .tg-onboard {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(11, 29, 45, 0.08);
}
.tier-grid-section .tg-fit {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
  margin-bottom: 24px;
}
.tier-grid-section .tg-includes-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tier-grid-section .tg-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.tier-grid-section .tg-includes li {
  position: relative;
  padding: 7px 0 7px 22px;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.45;
  border-bottom: 1px solid rgba(11, 29, 45, 0.05);
}
.tier-grid-section .tg-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-deep);
  font-weight: 700;
}
.tier-grid-section .tg-cta {
  display: block;
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 13px 16px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background .2s;
  margin-top: auto;
}
.tier-grid-section .tg-card-featured .tg-cta { background: var(--teal-deep); }
.tier-grid-section .tg-cta:hover { background: var(--teal-deep); }
.tier-grid-section .tg-card-featured .tg-cta:hover { background: var(--ink); }
@media (max-width: 1100px) {
  .tier-grid-section .tg-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
  .tier-grid-section .tg-grid { grid-template-columns: 1fr !important; }
}

/* ============================================================
   ONBOARDING TIMELINE
   ============================================================ */
.onboarding-flow {
  padding: 100px 0;
}
.onboarding-flow .heading-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.onboarding-flow .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.onboarding-flow .heading-block h2 em { font-style: italic; color: var(--teal-deep); }
.onboarding-flow .ob-timeline {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px;
}
.onboarding-flow .ob-phase {
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.08);
  padding: 28px 24px;
  position: relative;
}
.onboarding-flow .ob-days {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.onboarding-flow .ob-phase h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.onboarding-flow .ob-phase ul {
  list-style: none;
  padding: 0;
}
.onboarding-flow .ob-phase li {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.5;
  padding: 4px 0 4px 14px;
  position: relative;
}
.onboarding-flow .ob-phase li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal-deep);
  font-weight: 700;
}
@media (max-width: 880px) {
  .onboarding-flow .ob-timeline { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
  .onboarding-flow .ob-timeline { grid-template-columns: 1fr !important; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(180deg, var(--paper) 0%, var(--bone) 100%);
  padding: 80px 0 60px;
}
.about-hero .container {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}
.about-hero .ah-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.about-hero .ah-breadcrumb a { color: var(--teal-deep); text-decoration: none; }
.about-hero .ah-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.about-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-hero h1 em { font-style: italic; color: var(--teal-deep); }
.about-hero .ah-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--slate);
  line-height: 1.5;
}
.about-hero .ah-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(11, 29, 45, 0.18);
}
.about-hero .ah-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.about-hero .ah-photo-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(252, 250, 245, 0.96);
  border-left: 3px solid var(--teal-deep);
  padding: 14px 18px;
  border-radius: 2px;
}
.about-hero .ah-photo-tag-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about-hero .ah-photo-tag-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}
.bio-section {
  padding: 100px 0;
}
.bio-narrow {
  max-width: 760px;
  margin: 0 auto;
}
.bio-p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 24px;
}
.bio-p:last-child em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1.18rem;
}
.bio-p strong { color: var(--ink); }
.credentials-section {
  background: var(--paper);
  padding: 100px 0;
}
.credentials-section .heading-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.credentials-section .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
}
.credentials-section .heading-block h2 em { font-style: italic; color: var(--teal-deep); }
.credentials-section .cred-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px;
}
.credentials-section .cred-card {
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.08);
  padding: 32px 24px;
  text-align: left;
}
.credentials-section .cred-num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2rem;
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 14px;
}
.credentials-section .cred-card h4 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.credentials-section .cred-card p {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
}
@media (max-width: 880px) {
  .credentials-section .cred-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 540px) {
  .credentials-section .cred-grid { grid-template-columns: 1fr !important; }
}
.parent-firm {
  padding: 100px 0;
}
.parent-firm .pf-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.parent-firm h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 28px;
}
.parent-firm h2 em { font-style: italic; color: var(--teal-deep); }
.parent-firm .pf-body {
  color: var(--slate);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.parent-firm .pf-body strong { color: var(--ink); }
@media (max-width: 880px) {
  .about-hero .container { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-paths {
  padding: 100px 0;
  background: var(--paper);
}
.contact-paths .heading-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.contact-paths .heading-block h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
}
.contact-paths .heading-block h2 em { font-style: italic; color: var(--teal-deep); }
.contact-form-section {
  padding: 100px 0;
}
.contact-form-section .cfs-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-form-section .cfs-left h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-form-section .cfs-left h2 em { font-style: italic; color: var(--teal-deep); }
.contact-form-section .cfs-left .lede {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 32px;
}
.contact-form-section .cfs-direct {
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.08);
  padding: 28px;
  border-radius: 4px;
}
.contact-form-section .cfs-direct-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.contact-form-section .cfs-direct-item {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--slate);
  border-bottom: 1px solid rgba(11, 29, 45, 0.06);
}
.contact-form-section .cfs-direct-item:last-child { border-bottom: none; }
.contact-form-section .cfs-direct-item strong { color: var(--ink); margin-right: 8px; }
.contact-form-section .cfs-direct-item a { color: var(--teal-deep); text-decoration: none; }
.contact-form-section .cfs-form {
  background: #fff;
  border: 1px solid rgba(11, 29, 45, 0.1);
  padding: 36px;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(11, 29, 45, 0.08);
}
.contact-form-section .cfs-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form-section .cfs-form-grid .full { grid-column: 1 / -1; }
@media (max-width: 880px) {
  .contact-form-section .cfs-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-section .cfs-form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   NICHE HERO MSO — Editorial specialty page hero
   ============================================================ */
.niche-hero-mso {
  background: linear-gradient(180deg, var(--paper) 0%, var(--bone) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.niche-hero-mso .container {
  display: grid !important;
  grid-template-columns: 1.1fr 1fr !important;
  gap: 80px !important;
  align-items: center;
  max-width: 1200px;
}
.niche-hero-mso .nhm-breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--slate);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.niche-hero-mso .nhm-breadcrumb a {
  color: var(--teal-deep);
  text-decoration: none;
}
.niche-hero-mso .nhm-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.niche-hero-mso .nhm-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--teal-deep);
}
.niche-hero-mso h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.niche-hero-mso .nhm-you { color: var(--ink); }
.niche-hero-mso .nhm-we {
  font-style: italic;
  color: var(--teal-deep);
  display: block;
}
.niche-hero-mso .nhm-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 580px;
}
.niche-hero-mso .nhm-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.niche-hero-mso .nhm-credibility {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--slate);
  padding-top: 20px;
  border-top: 1px solid rgba(11, 29, 45, 0.1);
  max-width: 580px;
}
.niche-hero-mso .nhm-credibility strong {
  color: var(--ink);
  font-weight: 600;
}

.niche-hero-mso .nhm-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(11, 29, 45, 0.18);
}
.niche-hero-mso .nhm-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
}
.niche-hero-mso .nhm-photo-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(252, 250, 245, 0.96);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--teal-deep);
  padding: 14px 18px;
  border-radius: 2px;
  max-width: 78%;
}
.niche-hero-mso .nhm-photo-tag-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: va