/* ── TOKENS & RESET ── */
:root {
  --navy:       #112337;
  --navy-mid:   #1a3a5c;
  --teal:       #2a9d8f;
  --teal-dark:  #1f7a6e;
  --teal-light: #d4f1ee;
  --green-cta:  #4caf50;
  --green-dark: #388e3c;
  --cream:      #f8f5f0;
  --cream-mid:  #f0ece4;
  --white:      #ffffff;
  --charcoal:   #1e1e1e;
  --gray-mid:   #585e6a;
  --gray-lt:    #d2d5db;
  --gold:       #f4a637;
  --error:      #c02b0a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-card:  0 2px 12px rgba(0,0,0,.08);
  --shadow-hover: 0 8px 28px rgba(0,0,0,.14);
  --shadow-nav:   0 2px 12px rgba(17,35,55,.12);
  --max-w: 1200px;
  --section-pad: 96px 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  max-width: 100%;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-desc {
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 600px;
}

/* ── INLINE SVG ICONS ── */
.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-svg svg {
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background .22s ease, transform .22s ease, box-shadow .22s ease, color .22s ease, border-color .22s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,157,143,.35); }
.btn-secondary { background: var(--white); color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-cta { background: var(--green-cta); color: var(--white); padding: 16px 36px; font-size: 16px; }
.btn-cta:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,175,80,.38); }
.btn-ghost { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-ghost:hover { background: var(--teal); color: var(--white); }
.btn-white { background: white; color: var(--teal-dark); font-weight: 700; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,.5); font-weight: 600; }
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-blue { background: #1a6fc4; color: var(--white); }
.btn-blue:hover { background: #155fa0; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,111,196,.35); }

/* ── FOCUS ── */
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.75); transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar-item svg { opacity: .8; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-nav);
  max-width: 100%;
  overflow-x: hidden;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  overflow: hidden;
}
.nav-logo { display: flex; flex-direction: column; }
nav .nav-logo {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  max-height: 56px;
}
.nav-logo-icon,
.nav-logo img {
  height: 56px !important;
  width: auto !important;
  max-height: 56px !important;
  max-width: 56px !important;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: .06em;
  white-space: nowrap;
}
.nav-logo-tag {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-mid);
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { margin-left: 8px; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  overflow: hidden;
  max-height: 0;
  background: var(--white);
  border-top: 1px solid transparent;
  padding: 0 20px;
  transition: max-height .32s ease, padding .28s ease, border-color .28s ease;
}
.mobile-menu.open {
  max-height: 520px;
  padding: 12px 20px 24px;
  border-top-color: var(--gray-lt);
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--cream-mid);
  transition: color .2s;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn,
.mobile-menu .book-session-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100%;
  min-height: 56px;
  padding: 16px 24px;
  margin-top: 14px;
  border-radius: var(--radius-md);
  box-sizing: border-box;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #1d4e6b 100%);
  color: var(--white);
  padding: 100px 24px 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(42,157,143,.18) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(76,175,80,.10) 0%, transparent 50%);
  pointer-events: none;
}
.hero-circle-1 {
  position: absolute;
  width: 380px; height: 380px;
  border: 1.5px solid rgba(255,255,255,.06);
  border-radius: 50%;
  top: -80px; right: -60px;
  pointer-events: none;
}
.hero-circle-2 {
  position: absolute;
  width: 220px; height: 220px;
  border: 1.5px solid rgba(42,157,143,.2);
  border-radius: 50%;
  bottom: 40px; right: 120px;
  pointer-events: none;
}
.hero-dot-grid {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,157,143,.18);
  border: 1px solid rgba(42,157,143,.35);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #a0ede6;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* hero right panel */
.hero-card-stack { display: flex; flex-direction: column; gap: 16px; }
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  backdrop-filter: blur(12px);
  transition: transform .25s, background .25s;
}
.hero-card:hover { background: rgba(255,255,255,.11); transform: translateX(6px); }
.hero-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon.teal  { background: rgba(42,157,143,.25); }
.hero-card-icon.green { background: rgba(76,175,80,.25); }
.hero-card-icon.gold  { background: rgba(244,166,55,.25); }
.hero-card-title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.hero-card-sub   { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-mid);
  padding: 22px 24px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-mid);
}
.trust-icon {
  width: 32px; height: 32px;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── DIVISIONS ── */
.divisions { padding: var(--section-pad); background: var(--white); }
.divisions-intro { text-align: center; margin-bottom: 64px; }
.divisions-intro .section-desc { margin: 0 auto; }
.divisions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.division-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.division-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.division-card-header {
  padding: 40px 36px 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.division-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.div-card-navy .division-card-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.div-card-teal .division-card-header { background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); }
.division-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  opacity: .7; margin-bottom: 10px;
}
.division-card-header h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 700; margin-bottom: 10px;
}
.division-card-header p { font-size: 14px; opacity: .8; line-height: 1.6; }
.division-card-body {
  padding: 32px 36px 36px;
  background: var(--white);
  flex: 1; display: flex; flex-direction: column;
}
.division-services { list-style: none; margin-bottom: 28px; flex: 1; }
.division-services li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-mid);
  font-size: 14px;
  color: var(--charcoal);
  font-weight: 500;
}
.division-services li:last-child { border-bottom: none; }
.div-arrow {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
}
.division-outcome {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}
.division-outcome strong { color: var(--navy); }

/* ── SERVICES ── */
.services-section { padding: var(--section-pad); background: var(--cream); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 34px 28px 30px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.service-card.accent-teal::before  { background: var(--teal); }
.service-card.accent-navy::before  { background: var(--navy); }
.service-card.accent-green::before { background: var(--green-cta); }
.service-card.accent-gold::before  { background: var(--gold); }
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.accent-teal .service-icon  { background: var(--teal-light); }
.accent-navy .service-icon  { background: rgba(17,35,55,.08); }
.accent-green .service-icon { background: rgba(76,175,80,.12); }
.accent-gold .service-icon  { background: rgba(244,166,55,.15); }
.service-card h4 {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-card p {
  font-size: 14px; color: var(--gray-mid);
  line-height: 1.65; flex: 1; margin-bottom: 22px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border-radius: 40px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── HOW IT WORKS ── */
.how-section { padding: var(--section-pad); background: var(--white); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal), var(--teal-light));
}
.how-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.how-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative; z-index: 1;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(17,35,55,.25);
}
.how-step h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.how-step p  { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }

/* ── AUDIENCES ── */
.audience-section {
  padding: var(--section-pad);
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.audience-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(42,157,143,.15) 0%, transparent 60%);
  pointer-events: none;
}
.audience-header { text-align: center; margin-bottom: 56px; }
.audience-header .section-label { color: #a0ede6; }
.audience-header .section-title { color: white; }
.audience-header .section-desc  { color: rgba(255,255,255,.7); margin: 0 auto; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.audience-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: background .25s, transform .25s;
}
.audience-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.audience-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(42,157,143,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.audience-card h4 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: white; margin-bottom: 12px;
}
.audience-card p { font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.65; margin-bottom: 18px; }
.audience-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.audience-tag {
  background: rgba(42,157,143,.2);
  border: 1px solid rgba(42,157,143,.35);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px; color: #a0ede6; font-weight: 500;
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding: var(--section-pad); background: var(--cream); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: box-shadow .25s;
}
.testimonial-card:hover { box-shadow: var(--shadow-hover); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { color: var(--gold); }
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
  font-family: var(--font-body);
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.av-1 { background: #dce8f5; }
.av-2 { background: #d4f1ee; }
.av-3 { background: #fde8cc; }
.author-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.author-role { font-size: 12px; color: var(--gray-mid); }

/* ── CONTACT ── */
.contact-section { padding: var(--section-pad); background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-grid--solo {
  display: flex;
  justify-content: center;
}
.contact-grid--solo .contact-info {
  max-width: 580px;
  width: 100%;
  text-align: center;
}
.contact-grid--solo .contact-info .section-label {
  display: block;
}
.contact-grid--solo .contact-methods {
  text-align: left;
  max-width: 460px;
  margin: 0 auto;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700; color: var(--navy); margin-bottom: 16px;
}
.contact-info p { font-size: 16px; color: var(--gray-mid); line-height: 1.7; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-label { font-size: 11px; color: var(--gray-mid); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.contact-method-val { font-size: 15px; font-weight: 600; color: var(--navy); }
a.contact-method { cursor: pointer; transition: background .18s, box-shadow .18s; text-decoration: none; }
a.contact-method:hover { background: var(--teal-light); box-shadow: 0 4px 16px rgba(42,157,143,.15); }

/* FORM */
.contact-form {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 42px 40px;
  box-shadow: var(--shadow-card);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px;
}
.contact-form .form-sub { font-size: 14px; color: var(--gray-mid); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: .02em; }
.form-group label span { color: var(--teal); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  transition: border .2s, box-shadow .2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0b8c5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,.12);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0; padding: 0;
  border: none; border-radius: 0;
}
.form-submit { width: 100%; justify-content: center; font-size: 16px; padding: 16px; border-radius: var(--radius-md); }
.form-note { text-align: center; font-size: 12px; color: var(--gray-mid); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* success */
.form-success { display: none; text-align: center; padding: 32px; }
.form-success .success-icon {
  width: 64px; height: 64px;
  background: rgba(76,175,80,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.form-success h4 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.form-success p  { font-size: 15px; color: var(--gray-mid); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700; color: white; margin-bottom: 14px; position: relative;
}
.cta-banner > p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  position: relative;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 64px 24px 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo-name { color: white; font-size: 22px; }
.footer-brand .nav-logo-tag  { color: var(--teal); font-size: 12px; letter-spacing: .08em; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-top: 14px; line-height: 1.7; max-width: 280px;
}
.footer-heading {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: white; margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-contact-item {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px; line-height: 1.5;
}
.footer-contact-item strong { color: rgba(255,255,255,.85); }
.footer-contact-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.footer-divider {
  max-width: var(--max-w); margin: 0 auto 24px;
  border: none; border-top: 1px solid rgba(255,255,255,.1);
}
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 12px; font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: white; }
.footer-credit {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: right;
  margin: 0;
  white-space: nowrap;
}
.footer-credit a {
  color: rgba(255,255,255,.5);
  transition: color .2s;
  text-decoration: none;
}
.footer-credit a:hover { color: rgba(255,255,255,.85); }
.footer-legal { display: flex; gap: 24px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .65s ease forwards; }
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .25s; }
.fade-up.d3 { animation-delay: .4s; }
.fade-up.d4 { animation-delay: .55s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .fade-up { opacity: 1; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 1024px) {
  .hero-inner      { grid-template-columns: 1fr; }
  .hero-dot-grid   { display: none; }
  .hero-circle-1, .hero-circle-2 { display: none; }
  .hero-card-stack { display: none; }
  .divisions-grid  { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .how-grid        { grid-template-columns: repeat(2, 1fr); }
  .how-grid::before { display: none; }
  .audience-grid   { grid-template-columns: 1fr; }
  /* testimonials-grid already 2-col at base */
  .contact-grid    { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  /* ── OVERFLOW PREVENTION ── */
  html, body { overflow-x: hidden; max-width: 100%; }
  nav,
  .hero,
  .trust-bar,
  .divisions,
  .services-section,
  .how-section,
  .audience-section,
  .testimonials-section,
  .cta-banner,
  .contact-section,
  footer { max-width: 100%; overflow-x: hidden; }
  .container,
  .hero-inner,
  .trust-bar-inner,
  .divisions-grid,
  .services-grid,
  .how-grid,
  .audience-grid,
  .testimonials-grid,
  .footer-grid,
  .footer-bottom { max-width: 100%; width: 100%; box-sizing: border-box; }
  .hero-desc { max-width: 100%; }
  .hero-stats { max-width: 100%; }
  .hero-btns { max-width: 100%; }

  :root { --section-pad: 64px 20px; }
  .topbar    { display: none; }
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-inner       { height: 92px; }
  .hamburger       { display: flex; padding: 10px; margin: -10px 0 -10px 4px; }
  .nav-logo        { min-width: 0; flex: 1; overflow: hidden; gap: 10px; }
  nav .nav-logo    { max-height: 68px; }
  .nav-logo-icon,
  .nav-logo img    { height: 44px !important; max-height: 44px !important; max-width: 44px !important; }
  .nav-logo-text   { overflow: hidden; gap: 4px; }
  .nav-logo-name   { font-size: 24px; letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav-logo-tag    { font-size: 11px; letter-spacing: .12em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .footer-credit { text-align: center; white-space: normal; }
  .hero { padding: 72px 20px 60px; }
  .hero-stats { gap: 28px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .services-grid     { grid-template-columns: 1fr; }
  .how-grid          { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form      { padding: 28px 20px; }
  .form-row          { grid-template-columns: 1fr; }
  .form-checkboxes   { grid-template-columns: 1fr; }
  .trust-bar-inner   { gap: 16px; }
  .footer-grid       { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .footer-legal      { justify-content: center; }
  .services-header   { flex-direction: column; align-items: flex-start; }
  .cta-btns          { flex-direction: column; align-items: center; }
  .division-card-header { padding: 28px 24px 24px; }
  .division-card-body   { padding: 24px 24px 28px; }
  .audience-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  :root { --section-pad: 52px 16px; }
  .container { padding: 0 16px; max-width: 100%; }
  .nav-inner { padding: 0 16px; max-width: 100%; }
  .section-title { font-size: clamp(22px, 6vw, 32px); }
  .section-desc  { font-size: 15px; }
  .hero { padding: 60px 16px 52px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .hero-desc { font-size: 15px; }
  .hero-stat-num { font-size: 26px; }
  .trust-item { font-size: 13px; }
  .trust-icon { width: 28px; height: 28px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .btn { padding: 13px 22px; font-size: 14px; }
  .btn-cta { padding: 14px 26px; font-size: 15px; }
  .contact-form { padding: 24px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 52px 16px; }
  .how-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (min-width: 1400px) {
  :root { --section-pad: 112px 24px; }
  .hero { padding: 120px 24px 110px; }
}

/* ══════════════════════════════════════════
   HERO H1 — both lines colored
══════════════════════════════════════════ */
.hero-v2 h1 em { font-style: normal; color: var(--green-cta); }

/* ══════════════════════════════════════════
   PARTNER TAGLINE BAR
══════════════════════════════════════════ */
.partner-tagline-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cream);
  border-top: 1px solid var(--cream-mid);
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
}

/* ══════════════════════════════════════════
   SERVICES SECTION — DARK PREMIUM THEME
══════════════════════════════════════════ */
.services-section {
  background: var(--navy);
}
.services-section .section-label { color: var(--teal); }
.services-section .section-title {
  color: var(--white);
  font-size: clamp(36px, 5vw, 54px);
}
.services-section .section-desc { color: rgba(255,255,255,.7); }
.services-section .services-header {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 48px;
}
.services-header-line {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-top: 18px;
}

/* Dark cards — grid layout: icon+title side-by-side */
.services-section .service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-top: none;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto 1fr auto;
  column-gap: 14px;
  row-gap: 16px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.services-section .service-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
/* Hide the old top-bar pseudo */
.services-section .service-card::before { display: none; }

/* Accent borders + glow */
.services-section .service-card.accent-teal  { border-top: 2px solid var(--teal);     box-shadow: 0 0 0 1px rgba(42,157,143,.15), 0 4px 24px rgba(42,157,143,.08); }
.services-section .service-card.accent-blue  { border-top: 2px solid #5b8ad9;          box-shadow: 0 0 0 1px rgba(91,138,217,.15), 0 4px 24px rgba(91,138,217,.08); }
.services-section .service-card.accent-green { border-top: 2px solid var(--green-cta); box-shadow: 0 0 0 1px rgba(76,175,80,.15),  0 4px 24px rgba(76,175,80,.08); }
.services-section .service-card.accent-gold  { border-top: 2px solid var(--gold);      box-shadow: 0 0 0 1px rgba(244,166,55,.15), 0 4px 24px rgba(244,166,55,.08); }

/* Icon: row 1 col 1 */
.services-section .service-card .service-icon {
  grid-column: 1;
  grid-row: 1;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  margin-bottom: 0;
  align-self: center;
}
.services-section .accent-teal  .service-icon { background: rgba(42,157,143,.22); }
.services-section .accent-blue  .service-icon { background: rgba(91,138,217,.22); }
.services-section .accent-green .service-icon { background: rgba(76,175,80,.2); }
.services-section .accent-gold  .service-icon { background: rgba(244,166,55,.2); }

/* Title: row 1 col 2 */
.services-section .service-card h4 {
  grid-column: 2;
  grid-row: 1;
  color: var(--white);
  font-size: 17px;
  margin-bottom: 0;
  align-self: center;
}

/* Description: full width row 2 */
.services-section .service-card p {
  grid-column: 1 / -1;
  grid-row: 2;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  margin-bottom: 0;
  flex: none;
}

/* Tag: full width row 3 */
.services-section .service-card .service-tag {
  grid-column: 1 / -1;
  grid-row: 3;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65);
  padding: 9px 14px;
  width: 100%;
  justify-content: flex-start;
  font-size: 11px;
  letter-spacing: .12em;
  gap: 8px;
  border: none;
}

/* Services footer bar */
.services-footer-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 14px;
  color: rgba(255,255,255,.7);
  flex-wrap: wrap;
}
.services-footer-bar strong { color: var(--white); font-weight: 700; }
.services-footer-divider { color: rgba(255,255,255,.25); font-weight: 300; }

/* Responsive — mobile */
@media (max-width: 768px) {
  .services-section .service-card {
    grid-template-columns: 48px 1fr;
    column-gap: 12px;
    padding: 20px;
  }
  .services-section .service-card .service-icon { width: 48px; height: 48px; }
  .partner-tagline-bar { font-size: 13px; text-align: center; }
  .services-footer-bar { font-size: 13px; gap: 8px; }
  .services-footer-divider { display: none; }
}

@media (max-width: 480px) {
  .services-section .service-card { grid-template-columns: 44px 1fr; padding: 18px 14px; }
}

/* ══════════════════════════════════════════
   HERO V2
══════════════════════════════════════════ */
.hero-v2 { padding: 0; overflow: hidden; }

.hero-v2-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 40px 24px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: start;
}

/* ── H1 override — bigger than base hero ── */
.hero-v2 h1 {
  font-size: clamp(40px, 4vw, 52px);
  line-height: 1.06;
  margin-bottom: 14px;
}

/* ── eyebrow badge ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--teal);
  border-radius: 40px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

/* ── left content ── */
.hero-v2-left { display: flex; flex-direction: column; }
.hero-v2-left .hero-desc {
  font-size: 14px;
  line-height: 1.55;
  max-width: 460px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.8);
}

/* ── CTA buttons ── */
.hero-v2-btns {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: stretch;
  margin-bottom: 10px;
}
.hero-btn-family,
.hero-btn-org {
  flex: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  white-space: normal;
  line-height: 1.2;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  min-width: 0;
}
.hero-btn-family {
  background: var(--green-cta);
  color: var(--white);
  border: 2px solid var(--green-cta);
}
.hero-btn-family:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(76,175,80,.38); }
.hero-btn-org {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.4);
}
.hero-btn-org:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.07); }
.hero-btn-family span,
.hero-btn-org span { display: flex; flex-direction: column; gap: 2px; }
.hero-btn-family strong,
.hero-btn-org strong { font-size: 14px; font-weight: 700; }
.hero-btn-family small,
.hero-btn-org small { font-size: 11px; opacity: .75; font-weight: 400; }

/* ── trust line ── */
.hero-trust-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* ── right column ── */
.hero-v2-right { display: flex; flex-direction: column; padding-left: 20px; }
.hero-path-choose {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 2px;
}
.hero-path-mission {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.hero-path-mission em { font-style: normal; color: var(--teal); }

/* ── path cards grid ── */
.hero-path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-path-card {
  background: rgba(17,35,55,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background .22s, box-shadow .22s;
}
.hero-path-card:hover { background: rgba(255,255,255,.08); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.hero-path-card--families { border-top: 2.5px solid var(--teal); }
.hero-path-card--orgs     { border-top: 2.5px solid var(--gold); border-color: var(--gold); }

.hero-path-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 2px; }
.hero-path-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-path-icon--teal { background: var(--teal); }
.hero-path-icon--gold { background: var(--gold); }

.hero-path-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
  font-family: var(--font-body);
}
.hero-path-sub { font-size: 12px; font-weight: 600; margin-top: 2px; display: block; }
.hero-path-sub--teal { color: var(--teal); }
.hero-path-sub--gold { color: var(--gold); }

.hero-path-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 0; }
.hero-path-desc { font-size: 13px; color: rgba(255,255,255,.72); line-height: 1.5; }

.hero-path-list { list-style: none; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hero-path-list li {
  font-size: 12px;
  color: rgba(255,255,255,.85);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.35;
}
.hero-path-list li::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-size: 10px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.hero-path-list--teal li::before {
  background-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.hero-path-list--gold li::before {
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.hero-path-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, box-shadow .2s;
  width: 100%;
  margin-top: 2px;
}
.hero-path-btn:hover { background: var(--cream); box-shadow: 0 4px 14px rgba(0,0,0,.15); }

/* ── stats bar — white rounded card inside hero ── */
.hero-stats-bar {
  background: var(--white);
  max-width: calc(var(--max-w) - 80px);
  margin: 0 auto 16px;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stats-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid var(--gray-lt);
}
.hero-stats-item:first-child { padding-left: 4px; }
.hero-stats-item:last-child  { border-right: none; }
.hero-stats-item--lead { flex: 1.3; }
.hero-stats-item--lead p { font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.4; }

.hero-stats-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-stats-icon--blue   { background: #1a6fc4; }
.hero-stats-icon--gold   { background: var(--gold); }
.hero-stats-icon--purple { background: #6b46c1; }

.hero-stats-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.hero-stats-num--big {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.hero-stats-label {
  font-size: 11px;
  color: var(--gray-mid);
  line-height: 1.3;
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   TESTIMONIALS FULL WIDTH
══════════════════════════════════════════ */
.testimonials-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card-full {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s;
}
.testimonial-card-full:hover { box-shadow: var(--shadow-hover); }
.testimonial-card-full blockquote {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.75;
  flex: 1;
  margin: 16px 0 28px;
  font-style: italic;
  font-family: var(--font-body);
}

/* ══════════════════════════════════════════
   HERO V2 RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-v2-inner { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px 28px; }
  .hero-v2-right { padding-left: 0; }
  .hero-path-cards { grid-template-columns: 1fr 1fr; }
  .hero-stats-bar { max-width: none; margin: 0 16px 16px; flex-wrap: wrap; gap: 12px; padding: 14px 18px; }
  .hero-stats-item { flex: none; width: calc(50% - 8px); border-right: none; padding: 0; }
  .hero-stats-item--lead { width: 100%; }
}

@media (max-width: 768px) {
  .hero-v2-inner { padding: 48px 16px 36px; gap: 28px; }
  .hero-v2 h1 { font-size: clamp(34px, 9vw, 46px); }
  .hero-path-cards { grid-template-columns: 1fr; gap: 12px; }
  .hero-v2-btns { flex-direction: column; flex-wrap: wrap; gap: 10px; }
  .hero-btn-family, .hero-btn-org { width: 100%; flex: none; min-width: unset; justify-content: flex-start; }
  .hero-stats-bar { flex-direction: column; margin: 0 12px 16px; padding: 16px; gap: 14px; border-radius: 10px; }
  .hero-stats-item { width: 100%; border-right: none; padding: 0; border-bottom: 1px solid var(--gray-lt); padding-bottom: 12px; }
  .hero-stats-item:last-child { border-bottom: none; padding-bottom: 0; }
  .testimonials-full-grid { grid-template-columns: 1fr; gap: 20px; }
  .testimonial-card-full { padding: 28px 22px; }
  .testimonial-card-full blockquote { font-size: 14px; }
}

@media (max-width: 480px) {
  .hero-eyebrow { font-size: 10px; padding: 5px 14px; }
  .hero-path-card { padding: 18px 14px; }
  .hero-stats-bar { padding: 16px; }
}
