/* ============================================
   Silver Shield Alliance - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0d2244;
  --navy-mid: #103060;
  --silver: #8fa8c4;
  --silver-light: #c8d8e8;
  --gold: #62b8f5;
  --gold-light: #89ccf8;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --text-dark: #0d2244;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(13,34,68,0.10);
  --shadow-lg: 0 12px 48px rgba(13,34,68,0.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.8vw, 1.9rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--text-mid); font-size: 1rem; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 0 20px 0 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  border-radius: 0 20px 0 20px;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(98,184,245,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  border-radius: 0 20px 0 20px;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  border-radius: 0 20px 0 20px;
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: #ffffff;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13,34,68,0.08);
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(13,34,68,0.08);
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-logo img { height: 100px !important; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(98,184,245,0.08); }
.nav-inner .nav-links { flex: 1; justify-content: flex-end; margin-right: 16px; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 12px;
}
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--navy);
  color: #fff;
  border-radius: 0 12px 0 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-login-btn:hover { background: var(--navy-mid); transform: translateY(-1px); }
.nav-dd { position: relative; display: inline-flex; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav-dd-toggle svg { transition: transform .2s; opacity: .6; }
.nav-dd:hover .nav-dd-toggle svg,
.nav-dd:focus-within .nav-dd-toggle svg { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 185px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 0 12px 0 12px;
  box-shadow: 0 16px 40px rgba(13,34,68,.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .18s ease;
  z-index: 1100;
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .86rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.nav-dd-menu a:hover,
.nav-dd-menu a.active { background: #f4f7fb; color: var(--gold); }
.nav-cta { margin-left: 12px; }
.nav-quiz { display: none; }
@media(min-width: 900px) { .nav-quiz { display: inline-flex; } }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 112px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(13,34,68,0.08);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ============ HERO (split layout) ============ */
.hero-split {
  --teal: #0f6674;
  --teal-dark: #0a4650;
  --hero-bg: #f9f8f6;
  position: relative;
  background: var(--hero-bg);
  /* Sits flush against the fixed navbar (its measured height) — no gap.
     margin-top (not padding-top): hero-split-media is absolutely positioned
     with top:0, which aligns to this section's own top edge and ignores
     padding-top entirely — padding-top here would leave the image starting
     under the fixed navbar (cropping the subject's head) while the text
     (normal flow, which padding DOES affect) sat correctly below it. */
  margin-top: 109px;
  /* Same gutter model as .nav-inner: padding on the outer bar, not on the
     centered inner box — so hero-split-text lines up with the logo exactly. */
  padding-left: 24px;
  padding-right: 24px;
  overflow: hidden;
}
.hero-split-media {
  position: absolute;
  top: 0; right: 0;
  /* hero-split-inner's own 64px padding-bottom sits below the cards — stop
     the image 2px past the card row instead of running the full extra gap,
     so it ends right at the CTA buttons rather than trailing empty space. */
  bottom: 62px;
  width: 45%;
  z-index: 1;
  /* Right edge is full-bleed to the viewport, so only round the left side —
     both right corners must stay square (0), not just the bottom one. */
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.hero-split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Bias to the top so the full head is always in frame; excess is trimmed
     from the bottom (empty tabletop), never from the top. */
  object-position: center top;
  display: block;
}
.hero-split-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--hero-bg) 0%, rgba(249,248,246,0) 16%);
}
.hero-split-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  /* The banner image sits flush against the navbar (see .hero-split's
     margin-top), but the text needs its own breathing room below it. */
  padding-top: 36px;
  padding-bottom: 64px;
}
.hero-split-text { position: relative; z-index: 2; max-width: 53%; }
.hero-split-text .eyebrow {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}
.hero-split-text h1 {
  color: var(--navy);
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
  margin: 0;
}
.hero-split-text h1 span {
  display: block;
  color: var(--gold);
}
.hero-split-rule {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 18px;
}
.hero-split-cards {
  position: relative;
  z-index: 2;
  max-width: 81%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 16px;
  margin-top: 36px;
}
.hero-split-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  padding: 24px 22px;
}
.hero-split-card .hsc-actions { margin-top: auto; }
/* Each card carries a faint tint matching its own accent (teal / navy) */
.hero-split-card:nth-child(1) { background: #ecf2f1; }
.hero-split-card:nth-child(2) { background: #ecf1f4; }
.hsc-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.hsc-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hsc-icon-teal { background: var(--gold); }
.hsc-icon-navy { background: #091d41; }
.hsc-tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}
.hero-split-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
  line-height: 1.25;
  margin: 0;
}
.hsc-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 14px;
}
.hero-split-card p { margin-bottom: 20px; font-size: 0.92rem; }
.hero-split-card p strong { color: var(--teal-dark); font-weight: 700; }
.hsc-actions { display: flex; gap: 10px; flex-wrap: wrap; }
/* Banner CTAs: softly-rounded rects sized to their label — not stretched pills */
.btn-pill-teal,
.btn-pill-dark,
.btn-pill-outline {
  border-radius: 6px;
  font-size: 0.78rem;
  padding: 7px 13px;
  white-space: nowrap;
  flex: 0 0 auto;
  gap: 6px;
}
.btn-pill-teal {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}
.btn-pill-teal:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-pill-dark {
  background: #021e51;
  color: var(--white);
  border: 1px solid #021e51;
}
.btn-pill-dark:hover { background: var(--navy-mid); border-color: var(--navy-mid); }
/* Secondary CTA is transparent over the card tint, with a 1px accent hairline */
.btn-pill-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid #56668c;
}
.hero-split-card:nth-child(1) .btn-pill-outline { border-color: #4f8594; }
.hero-split-card:nth-child(2) .btn-pill-outline { border-color: #56668c; }
.hero-split-card:nth-child(1) .btn-pill-outline:hover { border-color: #095f73; background: rgba(9,95,115,0.06); }
.hero-split-card:nth-child(2) .btn-pill-outline:hover { border-color: #021e51; background: rgba(2,30,81,0.06); }

/* Below the design width the 1.36:1 split starves card 2 (its CTA labels are
   longer), so give the row the full container and even out the ratio — keeps
   both CTAs on one line instead of wrapping. */
@media (max-width: 1200px) {
  .hero-split-cards { max-width: 100%; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-split-media { position: static; width: 100%; height: 280px; margin-bottom: 28px; border-radius: 20px 0 0 20px; overflow: hidden; }
  .hero-split-media::before { display: none; }
  .hero-split-text { max-width: 100%; }
  .hero-split-cards { max-width: 100%; margin-right: 0; }
}
@media (max-width: 768px) {
  /* Mobile navbar shrinks to 72px (see style-patch.css) — keep the banner flush. */
  .hero-split { margin-top: 72px; }
}
@media (max-width: 640px) {
  .hero-split-cards { grid-template-columns: 1fr; }
}

/* ============ SECTIONS ============ */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }
.section-gray { background: var(--off-white); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-header p { font-size: 1.05rem; margin-top: 14px; }

/* ============ MARKET CONTEXT ============ */
.market-section { position: relative; overflow: hidden; }

.market-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.market-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.market-eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); display: inline-block; }
.market-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 18px;
}
.market-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.market-grid .market-left { max-width: 100%; }
.market-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.market-left h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.2;
  margin-bottom: 24px;
}
.market-left h2 span { color: var(--gold); }
.market-divider { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 24px; }
.market-lead { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.75; margin-bottom: 20px; }
.market-emphasis {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.market-habit-banner {
  margin-top: 40px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  text-align: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.market-habit-banner strong { color: var(--gold); font-weight: 700; }
.market-habit-banner .arrow { color: var(--gold); margin: 0 4px; }

.market-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.market-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(98,184,245,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}
.market-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 10px; }
.market-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; margin-bottom: 20px; }
.market-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.market-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 14px;
}
.market-cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.market-cta-row .btn { flex: 1; justify-content: center; white-space: normal; }

/* Outline pill for use on dark backgrounds — .btn-pill-outline is left untouched for the light hero cards */
.btn-pill-outline-light {
  border-radius: 6px;
  font-size: 0.78rem;
  padding: 7px 13px;
  white-space: normal;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-pill-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.market-stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  margin-top: 56px;
}
.market-stat-box {
  background: var(--navy-mid);
  padding: 32px 28px;
  text-align: left;
}
.market-stat-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.market-stat-box .label { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-top: 14px; line-height: 1.5; }
.market-stat-box .source { color: rgba(255,255,255,0.5); font-size: 0.75rem; margin-top: 16px; }

.market-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 16px 28px;
  font-size: 0.78rem;
}
.market-footer-bar span { color: rgba(255,255,255,0.45); }
.market-footer-bar a { color: var(--gold); font-weight: 600; }

.market-habit-banner {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 22px 32px;
  border-radius: 0 20px 0 20px;
  background: rgba(98,184,245,0.1);
  border: 1px solid rgba(98,184,245,0.3);
}
.market-habit-banner .tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.market-habit-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
@media (max-width: 1024px) {
  .market-grid { grid-template-columns: 1fr; }
  .market-right { justify-content: center; }
}
@media (max-width: 768px) {
  .market-stats-row { grid-template-columns: 1fr; }
  .market-footer-bar { flex-direction: column; align-items: flex-start; }
  .pathway-card { padding: 32px 24px; }
  .pathway-step { font-size: 0.7rem; padding: 8px 14px; }
}

/* ============ BRAND DEFINITION ============ */
@media (max-width: 1024px) { .brand-def-grid { grid-template-columns: 1fr !important; } }

.brand-def-grid { position: relative; }
.brand-def-grid::before {
  content: '';
  position: absolute;
  top: -10%; right: -6%;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98,184,245,0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.brand-def-grid > * { position: relative; z-index: 1; }

.brand-media { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px -20px rgba(13,34,68,0.35); transition: transform 0.5s cubic-bezier(0.16,0.84,0.44,1), box-shadow 0.5s ease; }
.brand-media:hover { transform: translateY(-4px); box-shadow: 0 32px 70px -18px rgba(13,34,68,0.4); }
.brand-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.brand-media::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,34,68,0) 45%, rgba(13,34,68,0.55) 100%);
  pointer-events: none;
}
.brand-media::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.brand-trust-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.brand-trust-item {
  background: var(--navy);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.25s cubic-bezier(0.16,0.84,0.44,1), box-shadow 0.25s ease;
}
.brand-trust-item:hover { transform: translateY(-3px); box-shadow: 0 12px 26px -8px rgba(13,34,68,0.4); }
.brand-trust-item-mission {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  box-shadow: 0 10px 24px -8px rgba(98,184,245,0.5);
}
.brand-trust-item-mission .mission-text { display: flex; flex-direction: column; gap: 3px; }
.brand-trust-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.brand-trust-item:hover .brand-trust-icon { background: rgba(98,184,245,0.28); transform: scale(1.08); }
.brand-trust-item-mission .brand-trust-icon { width: 38px; height: 38px; background: rgba(255,255,255,0.28); color: var(--white); }
.brand-trust-item h5 { color: var(--white); font-size: 0.88rem; margin: 0; }
.brand-trust-item p { color: var(--white); font-size: 0.82rem; font-weight: 600; line-height: 1.45; margin: 0; }

.brand-headline {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 12px 0 20px;
}
.brand-headline .line { display: block; overflow: hidden; }
.brand-headline .line span { display: inline-block; }
.brand-headline .line:nth-of-type(2) span { color: var(--gold); }
/* Reveal animation is opt-in via JS (adds .kinetic once it confirms it can animate),
   so the headline stays visible by default if JS fails or is disabled. */
.brand-headline.kinetic .line span { transform: translateY(110%); transition: transform 0.7s cubic-bezier(0.16,0.84,0.44,1); }
.brand-headline.kinetic.in-view .line span { transform: translateY(0); }

.brand-deliver-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.brand-deliver-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.brand-deliver-list { margin-bottom: 28px; }
.brand-deliver-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 -10px 4px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.2s;
}
.brand-deliver-item:hover { background: rgba(98,184,245,0.06); }
.brand-deliver-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(98,184,245,0.12);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.brand-deliver-item:hover .brand-deliver-icon { background: rgba(98,184,245,0.22); transform: scale(1.06); }
.brand-deliver-item p { margin: 0; padding-top: 4px; font-size: 0.95rem; color: var(--text-mid); font-weight: 500; line-height: 1.6; }

/* Filled accent CTA (blue bg, white text) — new variant, .btn-primary (gold bg / navy text) stays untouched */
.btn-accent {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 10px 24px -8px rgba(98,184,245,0.55);
}
.btn-accent:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(98,184,245,0.65); }
.btn-accent .arrow { display: inline-block; transition: transform 0.2s ease; }
.btn-accent:hover .arrow { transform: translateX(3px); }

.brand-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.brand-cta-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.brand-cta-ghost:hover { color: var(--gold); border-color: var(--gold); }

@media (max-width: 640px) {
  .brand-media img { height: 280px; }
  .brand-media::before { display: none; }
  .brand-trust-strip { grid-template-columns: 1fr; }
}

/* ============ DIFFERENTIATOR / WHO WE HELP ============ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 1024px) { .diff-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .diff-grid { grid-template-columns: 1fr; } }

/* Who We Help — persona icons + routing link per card */
#help-grid .value-card { display: flex; flex-direction: column; border-top: none; }
.help-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(98,184,245,0.14);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.2s, transform 0.2s;
}
#help-grid .value-card:hover .help-icon { background: rgba(98,184,245,0.26); transform: scale(1.06); }
.help-link {
  margin-top: auto;
  padding-top: 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1f66b0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.help-link .arrow { transition: transform 0.2s ease; }
#help-grid .value-card:hover .help-link .arrow { transform: translateX(3px); }

.help-reveal-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,0.84,0.44,1), box-shadow 0.25s ease;
}
.help-reveal-card.in-view { opacity: 1; transform: translateY(0); }
#help-grid .help-reveal-card:hover { transform: translateY(-5px); box-shadow: 0 16px 30px -10px rgba(13,34,68,0.18); }

@media (prefers-reduced-motion: reduce) {
  .help-reveal-card, .help-icon, .help-link .arrow { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* Two-beat reveal cards — unified icon set, old assumption then new answer */
.diff-reveal-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 40px;
}
.diff-reveal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(13,34,68,0.05);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,0.84,0.44,1), box-shadow 0.25s ease;
}
.diff-reveal-card.in-view { opacity: 1; transform: translateY(0); }
.diff-reveal-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px -8px rgba(13,34,68,0.16); }
.diff-reveal-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(98,184,245,0.14);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.2s, transform 0.2s;
}
.diff-reveal-card:hover .diff-reveal-icon { background: rgba(98,184,245,0.26); transform: scale(1.06); }
.diff-old {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px 4px 8px;
  margin-bottom: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.diff-old::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-light);
  flex-shrink: 0;
}
.diff-reveal-card.in-view .diff-old { opacity: 1; transition-delay: 0.15s; }
.diff-new {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.diff-reveal-card.in-view .diff-new { opacity: 1; transform: translateX(0); transition-delay: 0.28s; }

.diff-carousel-dots { display: none; justify-content: center; gap: 6px; margin-top: 16px; }
.diff-carousel-dots span { width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
.diff-carousel-dots span:first-child { background: var(--gold); width: 16px; border-radius: 3px; }
.diff-quote {
  text-align: center;
  margin: 32px auto 0;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
  font-size: clamp(0.78rem, 1.7vw, 1rem);
}
@media (max-width: 640px) {
  .diff-quote { white-space: normal; max-width: 100%; }
}

.diff-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.diff-cta::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: var(--navy);
  transition: right 0.25s ease;
}
.diff-cta:hover::after { right: 0; }

@media (max-width: 1024px) { .diff-reveal-row { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) {
  .diff-reveal-row {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 8px;
    margin-left: -4px; margin-right: -4px; padding-left: 4px; padding-right: 4px;
  }
  .diff-reveal-card { flex: 0 0 78%; scroll-snap-align: center; }
  .diff-carousel-dots { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .diff-reveal-card, .diff-old, .diff-new, .diff-reveal-icon, .diff-cta::after { transition: none !important; }
  .diff-reveal-card, .diff-old, .diff-new { opacity: 1 !important; transform: none !important; }
}

/* ============ WHAT WE OFFER ============ */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 1024px) { .offer-grid { grid-template-columns: 1fr; } }

.offer-grid .value-card { display: flex; flex-direction: column; border-top: none; }
.offer-reveal-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,0.84,0.44,1), box-shadow 0.25s ease;
}
.offer-reveal-card.in-view { opacity: 1; transform: translateY(0); }
.offer-reveal-card:hover { transform: translateY(-6px); box-shadow: 0 18px 34px -10px rgba(13,34,68,0.18); }
.offer-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(98,184,245,0.14);
  color: var(--navy);
  margin-bottom: 14px;
  transition: background 0.2s, transform 0.2s;
}
.offer-reveal-card:hover .offer-icon { background: rgba(98,184,245,0.26); transform: scale(1.06); }
.offer-icon-build,
.offer-icon-experience,
.offer-icon-connect { background: rgba(98,184,245,0.14); }
.offer-reveal-card:hover .offer-icon-build,
.offer-reveal-card:hover .offer-icon-experience,
.offer-reveal-card:hover .offer-icon-connect { background: rgba(98,184,245,0.26); }
.offer-fit-chip {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
  background: var(--off-white);
  border-radius: 20px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.offer-fit-chip strong { color: var(--text-mid); font-weight: 700; }
.offer-actions {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
.offer-actions .btn {
  white-space: nowrap;
  flex: 0 0 auto;
  padding: 9px 14px;
  font-size: 0.8rem;
  gap: 5px;
}
.offer-actions .btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.offer-actions .btn-outline:hover { background: rgba(2,30,81,0.06); border-color: var(--navy); }
.offer-link-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1f66b0;
  text-decoration: none;
}
.offer-link-sub:hover { text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  .offer-reveal-card, .offer-icon { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* ============ CERTIFICATION PATHWAY ============ */
.pathway-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 0 24px 0 24px;
  padding: 48px 40px;
  text-align: center;
  max-width: 780px;
  margin: 48px auto 0;
  box-shadow: var(--shadow);
}
.pathway-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.pathway-step {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  border-radius: 0 14px 0 14px;
}
.pathway-arrow { color: var(--gold); font-weight: 700; }

/* ============ WHO WE SERVE ============ */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 28px;
  margin-top: 48px;
}
.serve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.serve-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.serve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.serve-card-img { aspect-ratio: 4/3; overflow: hidden; }
.serve-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.serve-card:hover .serve-card-img img { transform: scale(1.04); }
.home-blog-grid .serve-card-img { aspect-ratio: 16/10; background: #eef2f6; }
.home-blog-grid .serve-card-img img { object-fit: contain; }
.home-blog-grid .serve-card:hover .serve-card-img img { transform: none; }
.serve-card-body { padding: 24px; }
.serve-card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.serve-card-body p { font-size: 0.92rem; }

/* ============ SERVICES LIST ============ */
.services-list { display: flex; flex-direction: column; gap: 16px; }
.service-item {
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  background: var(--white);
  isolation: isolate;
}

/* Background image layer — hidden by default */
.service-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.45s ease, transform 0.45s ease;
  z-index: 0;
}

/* Dark overlay on top of the image */
.service-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,34,68,0.72);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}

/* On hover: reveal image + overlay */
.service-item:hover .service-item-bg {
  opacity: 1;
  transform: scale(1);
}
.service-item:hover .service-item-overlay {
  opacity: 1;
}

/* All content sits above layers */
.service-item > *:not(.service-item-bg):not(.service-item-overlay) {
  position: relative;
  z-index: 2;
}

/* Text colour transitions on hover */
.service-item:hover { border-color: transparent; box-shadow: 0 16px 48px rgba(13,34,68,0.25); transform: translateY(-2px); }
.service-item:hover .service-num { color: rgba(98,184,245,0.5); }
.service-item:hover .service-info h3 { color: #ffffff; }
.service-item:hover .service-info p { color: rgba(255,255,255,0.78); }
.service-item:hover .service-arrow { color: #62b8f5; transform: translateX(6px); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--silver-light);
  font-weight: 700;
  min-width: 60px;
  transition: color 0.45s ease;
}
.service-info { flex: 1; }
.service-info h3 { margin-bottom: 8px; font-size: 1.25rem; transition: color 0.45s ease; }
.service-info p { font-size: 0.95rem; transition: color 0.45s ease; }
.service-arrow { font-size: 1.4rem; color: var(--gold); transition: all 0.45s ease; }

/* ============ WHY CHOOSE US ============ */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.why-img { border-radius: var(--img-radius); overflow: hidden; }
.why-img img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--img-radius); }
.why-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px 0;
  background: transparent;
  border-radius: 0;
  border-left: none;
}
.why-check { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
.why-item p { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; margin: 0; }

/* Grouped clusters — one per headline audience */
.why-clusters { margin-top: 20px; }
.why-cluster {
  display: flex;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16,0.84,0.44,1);
}
.why-cluster:first-child { padding-top: 0; }
.why-cluster:last-child { border-bottom: none; padding-bottom: 0; }
.why-cluster.in-view { opacity: 1; transform: translateY(0); }
.why-cluster-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(98,184,245,0.14);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-cluster-body { flex: 1; }
.why-cluster-title { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.why-cluster-body .why-item { padding: 4px 0; gap: 10px; }
@media (prefers-reduced-motion: reduce) {
  .why-cluster { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* ============ HOW IT WORKS ============ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
  z-index: 0;
  pointer-events: none;
}
.step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.step-num {
  width: 72px; height: 72px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  position: relative;
}
.step h4 { margin-bottom: 10px; }
.step p { font-size: 0.9rem; }

.steps-grid.steps-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.steps-grid.steps-grid-3::before {
  left: 16%;
  right: 16%;
}

/* ============ CONSULTATION FORM ============ */
.consult-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.consult-left h2 { color: var(--white); margin-bottom: 16px; }
.consult-left p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.consult-trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; margin-top: -8px; }
.consult-trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 7px 14px;
}
.consult-trust-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.consult-video { border-radius: var(--radius-lg); overflow: hidden; height: 300px; position: relative; }
.consult-video video { width: 100%; height: 100%; object-fit: cover; }
.consult-video-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,46,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.play-btn:hover { transform: scale(1.1); background: var(--white); }
.form-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn {
  padding: 9px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
/* Step pagination — 3 steps per persona panel, same fields, same submit */
.form-progress { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.form-progress-seg { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.14); overflow: hidden; }
.form-progress-seg .fill { height: 100%; width: 0%; background: var(--gold); transition: width 0.4s ease; }
.form-progress-seg.done .fill { width: 100%; }
.form-step-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 20px; }
.form-step { display: none; }
.form-step.active { display: block; }
.step-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.step-nav.step-nav-end { justify-content: flex-end; }
.step-back {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 0;
}
.step-back:hover { color: var(--white); }
.step-continue {
  padding: 12px 26px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 0 16px 0 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.step-continue:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(98,184,245,0.35); }

/* Light theme (.contact-form-box) variants */
.contact-form-box .form-progress-seg { background: var(--border); }
.contact-form-box .form-step-label { color: var(--text-light); }
.contact-form-box .step-back { color: var(--text-light); }
.contact-form-box .step-back:hover { color: var(--navy); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { accent-color: var(--gold); width: 16px; height: 16px; }
.checkbox-item span { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 0 20px 0 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(98,184,245,0.35); }

/* ============ FOOTER ============ */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 0 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-top-card {
  background: var(--white);
  border-radius: 16px;
  margin: 40px 24px 0;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.footer-top-card .footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.footer-top-card .footer-logo-wrap img {
  height: 56px;
  width: auto;
}
.footer-top-card .footer-logo-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-top-card .footer-logo-name .line1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.footer-top-card .footer-logo-name .line2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.footer-top-email {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 48px;
}
.footer-top-email .email-icon-box {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.footer-top-email .email-text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2px;
}
.footer-top-email .email-text a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 32px 24px 0;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr auto;
  gap: 48px;
  padding: 40px 24px 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.footer-col h4 { color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.social-links { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link .s-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.social-link:hover { color: var(--white); }
.social-link:hover .s-icon { opacity: 0.85; border-color: transparent; }
.footer-cta-card {
  background: var(--gold);
  border-radius: 16px;
  padding: 32px 28px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-cta-card p {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0;
}
.footer-cta-card .btn-cta-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 0 20px 0 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
  width: fit-content;
}
.footer-cta-card .btn-cta-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin: 0; }
.footer-bottom strong { color: rgba(255,255,255,0.7); }
/* Remove old footer-sos and footer-brand */
.footer-sos { display: none; }
.footer-brand { display: none; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 160px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero.hero-left { text-align: left; }
.page-hero.hero-left p { margin: 0; max-width: 100%; }
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,154,60,0.12), transparent 70%);
  top: -200px; right: -200px;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ============ WHAT WE STAND FOR ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.value-card p { font-size: 0.92rem; }

/* ============ PROGRAMS PAGE ============ */
.programs-list { display: flex; flex-direction: column; gap: 20px; margin-top: 48px; }
.program-card {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.program-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.program-card-img { overflow: hidden; flex: 0 0 340px; align-self: stretch; min-height: 260px; }
.program-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: var(--transition); display: block; }
.program-card:hover .program-card-img img { transform: scale(1.04); }
.program-card-body { padding: 36px; flex: 1; }
.program-card-body .eyebrow { margin-bottom: 8px; }
.program-card-body h3 { margin-bottom: 12px; }
.program-card-body p { margin-bottom: 20px; font-size: 0.95rem; }
.program-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  background: var(--off-white);
  color: var(--text-mid);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* ============ CONTACT PAGE ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail .icon {
  width: 42px; height: 42px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail .text span { display: block; font-size: 0.8rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.contact-detail .text a, .contact-detail .text p { color: var(--text-dark); font-weight: 500; font-size: 0.95rem; margin: 0; }
.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.contact-form-box .form-group input,
.contact-form-box .form-group select,
.contact-form-box .form-group textarea {
  background: var(--off-white);
  border-color: var(--border);
  color: var(--text-dark);
}
.contact-form-box .form-group input::placeholder,
.contact-form-box .form-group textarea::placeholder { color: var(--text-light); }
.contact-form-box .form-group select option { background: var(--white); color: var(--text-dark); }
.contact-form-box .form-group input:focus,
.contact-form-box .form-group select:focus,
.contact-form-box .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.contact-form-box .form-group label { color: var(--text-dark); }
.contact-form-box .btn-submit { margin-top: 8px; }
.contact-form-box .tab-btn { border-color: var(--border); color: var(--text-mid); background: var(--off-white); }
.contact-form-box .tab-btn.active, .contact-form-box .tab-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.contact-form-box .checkbox-item span { color: var(--text-dark); }

/* ============ WORKSHOP PAGE ============ */
.coming-soon-wrap {
  text-align: center;
  padding: 80px 24px;
  max-width: 600px;
  margin: 0 auto;
}
.cs-icon { font-size: 4rem; margin-bottom: 24px; }
.coming-soon-wrap h2 { margin-bottom: 16px; }
.coming-soon-wrap p { font-size: 1.05rem; margin-bottom: 32px; }
.notify-form { display: flex; gap: 12px; max-width: 400px; margin: 0 auto; }
.notify-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition);
}
.notify-form input:focus { border-color: var(--gold); }

/* ============ STORIES PAGE ============ */
.story-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-hero-img { border-radius: var(--radius-lg); overflow: hidden; }
.story-hero-img img { width: 100%; height: auto; object-fit: cover; }
.story-text h1 { margin-bottom: 20px; }
.story-text p { font-size: 1.05rem; margin-bottom: 16px; }
.story-quote {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-mid);
  font-size: 1rem;
}

/* ============ PARTNERSHIP PAGE ============ */
.partner-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.partner-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.partner-card .icon { font-size: 2.5rem; margin-bottom: 16px; }
.partner-card .card-img { width: calc(100% + 72px); margin: -36px -36px 20px -36px; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.partner-card .card-img img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s ease; }
.partner-card:hover .card-img img { transform: scale(1.04); }
.partner-card h3 { margin-bottom: 12px; }
.partner-card p { font-size: 0.92rem; margin-bottom: 20px; flex: 1; }
.partner-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* ============ FAQ PAGE ============ */
.faq-list { max-width: 800px; margin: 48px auto 0; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  gap: 16px;
}
.faq-q .arrow { font-size: 1.2rem; transition: var(--transition); color: var(--gold); flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ============ PRIVACY / TERMS ============ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-content h2 { margin: 36px 0 14px; font-size: 1.4rem; }
.legal-content h3 { margin: 24px 0 10px; font-size: 1.1rem; }
.legal-content p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.75; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { list-style: disc; color: var(--text-mid); font-size: 0.95rem; margin-bottom: 6px; line-height: 1.7; }
.legal-date { color: var(--text-light); font-size: 0.85rem; margin-bottom: 36px; }

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ============ BACK TO TOP ============ */
.back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 500;
  box-shadow: var(--shadow);
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--navy-mid); transform: translateY(-3px); }

/* ============ ALERT BANNER ============ */
.alert-bar {
  background: var(--navy-mid);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 600;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alert-bar a { text-decoration: underline; color: var(--gold); }

/* ============ STATS ROW ============ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
}
.stat-box {
  background: var(--white);
  padding: 32px 24px;
  text-align: center;
}
.stat-box .num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--navy); font-weight: 700; font-variant-numeric: tabular-nums; }
.stat-box .unit { font-family: 'DM Sans', sans-serif; font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.stat-box .label { color: var(--text-light); font-size: 0.85rem; margin-top: 4px; }

/* ============ RESPONSIVE ============ */
@media(max-width: 1024px) {
  .hero-content { padding-top: 140px; }
  .why-wrap { grid-template-columns: 1fr; gap: 40px; }
  .consult-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .story-hero-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-cta-card { grid-column: 1 / -1; }
}
@media(max-width: 768px) {
  .nav-links,
  .nav-desktop-auth { display: none !important; }
  .hamburger { display: flex; }
  .nav-inner { height: 72px; }
  .nav-logo img { height: 48px !important; }
  .nav-actions { margin-left: auto; gap: 0; }
  .mobile-menu { top: 72px; }
  .serve-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid.steps-grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .program-card { flex-direction: column; }
  .program-card-img { flex: none; height: 220px; }
  .partner-types { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top-card { flex-direction: column; align-items: flex-start; gap: 20px; padding: 24px; }
  .footer-top-email { margin-left: 0; }
  .footer-cta-card { min-width: unset; width: 100%; }
  .footer-sos { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px; }
}
@media(max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid.steps-grid-3 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .notify-form { flex-direction: column; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============ PROCESS + ENQUIRY FORM (merged) ============ */
.process-consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}
.process-steps-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.process-steps-vertical::before {
  content: '';
  position: absolute;
  left: 71px;
  top: 72px;
  bottom: 72px;
  width: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step { position: relative; display: flex; gap: 26px; align-items: flex-start; }
.process-step-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.process-step-body { padding-top: 8px; }
.process-step-body h4 { margin: 0 0 8px; color: var(--navy); font-size: 1.35rem; }
.process-step-body p { margin: 0; color: var(--text-mid); font-size: 1rem; line-height: 1.65; }
.interest-options { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.interest-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
}
.interest-option input[type="radio"] { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 900px) {
  .process-consult-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ HOW IT WORKS - ANIMATED INFOGRAPHIC ============ */
.hiw-section { background: #f0f4f9; overflow: hidden; }

.hiw-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  padding-bottom: 16px;
}

/* Connector line */
.hiw-line {
  position: absolute;
  top: 60px;
  left: calc(12.5% + 0px);
  right: calc(12.5% + 0px);
  height: 2px;
  background: rgba(13,34,68,0.1);
  z-index: 0;
  border-radius: 2px;
  overflow: hidden;
}
.hiw-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #62b8f5, #0d2244);
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}
.hiw-line-fill.animated { width: 100%; }
.hiw-line-dot {
  position: absolute;
  top: 50%; left: 0;
  width: 10px; height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #62b8f5;
  box-shadow: 0 0 0 4px rgba(98,184,245,0.25);
  opacity: 0;
  transition: left 1.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.hiw-line-dot.animated { left: 100%; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hiw-line-fill, .hiw-line-dot { transition: none !important; }
  .hiw-line-fill { width: 100% !important; }
  .hiw-line-dot { left: 100% !important; opacity: 1 !important; }
}

/* 3-step variant (Our Process) */
.hiw-track-3 { grid-template-columns: repeat(3, 1fr); }
.hiw-track-3 .hiw-line { left: 16.667%; right: 16.667%; }

/* Each step */
.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hiw-step.visible { opacity: 1; transform: translateY(0); }
.hiw-step:nth-child(2) { transition-delay: 0.1s; }
.hiw-step:nth-child(3) { transition-delay: 0.3s; }
.hiw-step:nth-child(4) { transition-delay: 0.5s; }
.hiw-step:nth-child(5) { transition-delay: 0.7s; }

/* Icon wrapper with rings and pulse */
.hiw-icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hiw-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(98,184,245,0.3);
  transition: var(--transition);
}
.hiw-icon-bg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 32px rgba(13,34,68,0.25);
}
.hiw-icon-bg svg {
  width: 32px;
  height: 32px;
  color: #62b8f5;
}
.hiw-pulse {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid #62b8f5;
  opacity: 0;
  animation: hiw-pulse 2.4s ease-out infinite;
}
.hiw-step:nth-child(2) .hiw-pulse { animation-delay: 0s; }
.hiw-step:nth-child(3) .hiw-pulse { animation-delay: 0.6s; }
.hiw-step:nth-child(4) .hiw-pulse { animation-delay: 1.2s; }
.hiw-step:nth-child(5) .hiw-pulse { animation-delay: 1.8s; }

@keyframes hiw-pulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.5);  opacity: 0; }
}

/* Step number — corner badge on the icon circle */
.hiw-step-num {
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 3;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #62b8f5;
  color: #04101f;
  border: 2px solid var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step body text */
.hiw-step-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.hiw-step-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.hiw-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.hiw-link:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}

/* Hover state — lift and glow icon */
.hiw-step:hover .hiw-icon-bg {
  background: var(--navy-mid);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,34,68,0.35);
}
.hiw-step:hover .hiw-icon-ring {
  border-color: rgba(98,184,245,0.7);
  transform: scale(1.06);
}

/* Responsive */
@media(max-width: 900px) {
  .hiw-track { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .hiw-line { display: none; }
  .hiw-track-3 { grid-template-columns: 1fr; gap: 40px; }
}
@media(max-width: 540px) {
  .hiw-track { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ PROGRAMS OF INTEREST — PILL MULTI-SELECT ============ */
.prog-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* Dark form context (consultation section) */
.form-box .prog-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  user-select: none;
  outline: none;
}
.form-box .prog-pill:hover {
  border-color: rgba(98,184,245,0.5);
  background: rgba(98,184,245,0.08);
  color: #fff;
  transform: translateY(-1px);
}
.form-box .prog-pill.selected {
  background: #62b8f5;
  border-color: #62b8f5;
  color: #0d2244;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(98,184,245,0.3);
  transform: translateY(-1px);
}
.form-box .prog-pill.selected .prog-pill-icon {
  filter: none;
}
.prog-pill-icon {
  font-size: 0.95rem;
  line-height: 1;
}

/* Light form context (contact page) */
.contact-form-box .prog-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
  user-select: none;
  outline: none;
}
.contact-form-box .prog-pill:hover {
  border-color: #62b8f5;
  background: rgba(98,184,245,0.07);
  color: var(--navy);
  transform: translateY(-1px);
}
.contact-form-box .prog-pill.selected {
  background: #62b8f5;
  border-color: #62b8f5;
  color: #0d2244;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(98,184,245,0.25);
  transform: translateY(-1px);
}

/* ── GLOBAL IMAGE RADIUS ── */
img:not(.no-radius):not([class*="icon"]):not([class*="logo"]):not([class*="avatar"]):not(.uav) {
  border-radius: 0 0 0 0;
}
/* Override for logos and icons */
.nav-logo img, .sidebar-logo img, .footer-logo-wrap img { border-radius: 0 !important; }

/* ── IMAGE-TOP ALIGNMENT: all two-col image+text sections ── */
.program-card,
.why-wrap,
.about-grid,
.story-hero-content,
[style*="grid-template-columns:1fr 1fr"],
[style*="grid-template-columns: 1fr 1fr"] {
  align-items: start !important;
}
/* serve-grid intentionally excluded above — needs align-items:stretch for equal-height cards */
/* Why-us: reduce why-list spacing to be cleaner without boxes */
.why-list { gap: 12px; margin-top: 20px; }
.why-check { font-size: 1rem; color: var(--gold); margin-top: 1px; flex-shrink: 0; }
.why-item p { font-size: 0.9rem; line-height: 1.6; }

/* ── GLOBAL: decorative pseudo-elements never block clicks ── */
.page-hero::before, .page-hero::after,
.hero-overlay,
.steps-grid::before, .steps-grid::after,
.service-item-overlay,
.service-item-bg,
.consult-video-overlay {
  pointer-events: none !important;
}

/* ── QUIZ: ensure buttons are always clickable ── */
.quiz-option {
  position: relative;
  z-index: 10;
  pointer-events: all !important;
  cursor: pointer !important;
}
#quiz-wrap {
  position: relative;
  z-index: 10;
}

/* ============ THERAPY PAGE ============ */
.therapy-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.therapy-hero-grid h1 span { color: var(--gold); }
.therapy-narrow { max-width: 820px; }
.therapy-framing {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 36px;
  margin-bottom: 32px;
}
.therapy-framing p { color: var(--text-dark); font-size: 1.05rem; line-height: 1.8; margin: 0; }
.therapy-emphasis { font-size: 1.05rem; color: var(--navy); font-weight: 500; }
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.therapy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 28px 0 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.therapy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.therapy-card-top {
  padding: 32px 32px 28px;
  background: linear-gradient(135deg, rgba(98,184,245,0.07), transparent 55%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.therapy-icon-wrap {
  position: relative;
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
}
.therapy-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(98,184,245,0.28);
}
.therapy-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--navy);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.therapy-icon svg { width: 24px; height: 24px; color: var(--gold); }
.therapy-card-title { flex: 1; min-width: 0; }
.therapy-card-title h3 { margin-bottom: 8px; }
.therapy-badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(98,184,245,0.14);
  color: var(--navy);
}
.therapy-card-body { padding: 28px 32px 32px; }
.therapy-lede {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.therapy-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.therapy-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 14px 0 14px;
  transition: var(--transition);
}
.therapy-point:hover {
  border-color: rgba(98,184,245,0.35);
  background: var(--off-white);
}
.therapy-point-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(98,184,245,0.3);
}
.therapy-point-icon svg { width: 18px; height: 18px; color: var(--navy); }
.therapy-point-body h4 { margin-bottom: 5px; color: var(--navy); }
.therapy-point-body p { font-size: 0.9rem; line-height: 1.65; margin: 0; }
.therapy-where-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.therapy-where-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 0 18px 0 18px;
  padding: 26px 22px;
  transition: var(--transition);
}
.therapy-where-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.11);
  border-color: rgba(98,184,245,0.55);
}
.therapy-where-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(98,184,245,0.35);
}
.therapy-where-icon svg { width: 24px; height: 24px; color: var(--gold); }
.therapy-where-card h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.therapy-where-card p { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.65; margin: 0; }
.therapy-where-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 34px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 18px 0 18px;
}
.therapy-where-note p {
  color: rgba(255,255,255,0.85);
  font-size: 0.98rem;
  line-height: 1.78;
  margin-bottom: 12px;
}
.therapy-where-note p:last-child { margin-bottom: 0; }
.therapy-where-note strong { color: var(--white); }
.therapy-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto 48px;
}
.therapy-how-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 20px 0 20px;
  padding: 32px 26px;
  text-align: center;
  transition: var(--transition);
}
.therapy-how-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.therapy-how-step .step-num {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: none;
}
.therapy-how-step h4 { margin-bottom: 10px; }
.therapy-how-step p { font-size: 0.9rem; margin: 0; }
.therapy-pricing-note {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 34px;
  background: var(--navy);
  color: var(--white);
  border-radius: 0 22px 0 22px;
}
.therapy-pricing-note h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 10px; }
.therapy-pricing-note p { color: rgba(255,255,255,0.8); font-size: 0.98rem; line-height: 1.7; margin: 0; }
.therapy-check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.therapy-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 14px 0 14px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-mid);
}
.therapy-check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.therapy-closing { text-align: center; }
.therapy-closing h2 { margin-bottom: 18px; }
.therapy-closing > .container > p {
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.therapy-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.therapy-disclaimer p {
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.therapy-disclaimer .brand {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
}
@media (max-width: 960px) {
  .therapy-grid { grid-template-columns: 1fr; }
  .therapy-where-grid { grid-template-columns: repeat(2, 1fr); }
  .therapy-how-steps { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .therapy-hero-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .therapy-where-grid { grid-template-columns: 1fr; }
  .therapy-card-top { padding: 24px 24px 20px; gap: 14px; }
  .therapy-card-body { padding: 22px 24px 28px; }
  .therapy-icon-wrap { width: 58px; height: 58px; }
  .therapy-icon { width: 44px; height: 44px; }
  .therapy-icon svg { width: 20px; height: 20px; }
  .therapy-cta-row { flex-direction: column; align-items: stretch; }
  .therapy-cta-row .btn { justify-content: center; }
}
