:root {
  --forest: #0a1628;
  --forest-light: #0d2045;
  --forest-pale: #e8edf5;
  --crimson: #9b1a1a;
  --crimson-light: #c42b2b;
  --gold: #b8892a;
  --gold-light: #d4a83e;
  --gold-glow: rgba(212, 168, 62, 0.15);
  --gold-glow-strong: rgba(212, 168, 62, 0.35);
  --white: #f8faff;
  --off-white: #f2f5fb;
  --cream: #e4ecf8;
  --text-dark: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-light: #6a6a6a;
  --border: rgba(29, 66, 138, 0.18);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  font-weight: 300;
}

/* --- NAV --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242, 245, 251, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100vw;
  overflow: hidden;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
}

.nav-logo span {
  color: var(--gold);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--forest) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  letter-spacing: 0.1em !important;
  transition: background 0.2s !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--forest-light) !important;
  color: white !important;
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--forest);
  padding: 160px 80px 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(29, 66, 138, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(212, 168, 62, 0.08) 0%, transparent 50%);
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: white;
  margin-bottom: 36px;
  position: relative;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  max-width: 440px;
  margin-bottom: 52px;
  font-weight: 300;
  position: relative;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.btn-primary {
  background: var(--gold);
  color: white;
  padding: 16px 36px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 137, 42, 0.3);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-right {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 60px;
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 66, 138, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.logo-display {
  position: relative;
  z-index: 1;
  text-align: center;
}

.logo-display img {
  width: 340px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(29, 66, 138, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-stat-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0;
}

.stat-item {
  text-align: center;
  padding: 28px 52px;
  position: relative;
  flex: 1;
  transition: background 0.2s;
}

.stat-item:hover {
  background: var(--cream);
}

.stat-item + .stat-item {
  border-left: 1px solid var(--border);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--forest);
  display: block;
  line-height: 1;
}

.stat-num span {
  color: var(--gold);
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  display: block;
  font-weight: 400;
}

/* --- OPPORTUNITY BAND --- */
.opportunity-band {
  background: var(--forest);
  padding: 80px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.opportunity-band::before {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 66, 138, 0.15) 0%, transparent 70%);
}

.opp-left .section-eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
}

.opp-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
}

.opp-left h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.glow-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 62, 0.25);
  border-radius: 4px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
}

.glow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.glow-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(29, 66, 138, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.glow-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
}

.glow-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.glow-desc strong {
  color: white;
  font-weight: 400;
}

/* --- SECTION SHARED --- */
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--forest);
}

/* --- METHODOLOGY --- */
.methodology {
  padding: 120px 120px;
  background: var(--off-white);
}

.method-header {
  max-width: 600px;
  margin-bottom: 80px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.method-card {
  background: white;
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-card:hover {
  background: var(--forest);
  cursor: default;
}

.method-card:hover .method-title { color: white; }
.method-card:hover .method-text { color: rgba(255, 255, 255, 0.65); }
.method-card:hover .method-icon-wrap { background: rgba(29, 66, 138, 0.25); }
.method-card:hover .method-icon { color: var(--gold-light); }
.method-card:hover .method-num { color: rgba(255, 255, 255, 0.05); }

.method-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  color: var(--forest-pale);
  line-height: 1;
  transition: color 0.35s;
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4rem;
}

.method-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.35s;
}

.method-icon {
  font-size: 1.4rem;
  color: var(--forest);
  transition: color 0.35s;
}

.method-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 16px;
  transition: color 0.35s;
  line-height: 1.2;
}

.method-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
  transition: color 0.35s;
}

.method-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.method-card:hover .method-accent {
  transform: scaleX(1);
}

/* --- INSIDE OUT --- */
.inside-out {
  background: var(--cream);
  padding: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.comparison-block {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comp-cell {
  padding: 28px 32px;
  position: relative;
}

.comp-cell.traditional {
  background: #ece9e2;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-cell.grace {
  background: var(--forest);
}

.comp-header {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.comp-cell.traditional .comp-header { color: var(--text-light); }
.comp-cell.grace .comp-header { color: var(--gold); }

.comp-item {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}

.comp-item::before {
  content: '-';
  position: absolute;
  left: 0;
  font-size: 0.7rem;
}

.comp-cell.traditional .comp-item { color: var(--text-mid); }
.comp-cell.traditional .comp-item::before { color: var(--text-light); }
.comp-cell.grace .comp-item { color: rgba(255, 255, 255, 0.78); font-weight: 300; }
.comp-cell.grace .comp-item::before { color: var(--gold); }

.inside-content .section-title { margin-bottom: 28px; }

.inside-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 20px;
}

.quote-block {
  margin-top: 40px;
  border-left: 3px solid var(--gold);
  padding: 24px 32px;
  background: white;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.quote-block::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-glow-strong);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.quote-attr {
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
}

/* --- STEWARDSHIP --- */
.stewardship {
  background: var(--forest);
  padding: 140px 120px;
  position: relative;
  overflow: hidden;
}

.stewardship::before {
  content: '';
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 66, 138, 0.14) 0%, transparent 70%);
}

.stewardship::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to left, rgba(212, 168, 62, 0.04), transparent);
}

.stewardship-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 120px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.stewardship-content .section-eyebrow { color: var(--gold); }
.stewardship-content .section-title { color: white; margin-bottom: 32px; }

.stewardship-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
  margin-bottom: 24px;
}

/* ─── CLINICAL LEADERSHIP ─── */
.clinical-leadership {
  background: var(--forest-light);
  padding: 140px 120px;
  position: relative;
  overflow: hidden;
}

.clinical-leadership::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 66, 138, 0.1) 0%, transparent 70%);
}

.clinical-leadership-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 120px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.grandfather-quote {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 62, 0.3);
  padding: 40px 44px;
  position: relative;
  margin-top: 48px;
}

.grandfather-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.grandfather-quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, var(--gold-glow) 0%, transparent 65%);
  pointer-events: none;
}

.grandfather-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.grandfather-quote cite {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  font-style: normal;
  font-weight: 500;
}

.founder-profile {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.founder-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  border-radius: 2px;
  transition: border-color 0.3s;
}

.founder-card:hover {
  border-color: rgba(212, 168, 62, 0.3);
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}

.founder-bio {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 300;
}

.founder-kerala {
  background: rgba(29, 66, 138, 0.1);
  border: 1px solid rgba(29, 66, 138, 0.2);
  padding: 28px 32px;
  border-radius: 2px;
}

.kerala-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.kerala-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-style: italic;
  line-height: 1.5;
}

/* --- SERVICES --- */
.services {
  padding: 120px;
  background: var(--off-white);
}

.services-header {
  max-width: 640px;
  margin-bottom: 80px;
}

.services-header .section-title { margin-bottom: 20px; }

.services-header p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 60px;
}

.service-card {
  background: white;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.service-card:hover {
  background: var(--forest-pale);
}

.service-card.featured {
  background: var(--forest);
  grid-column: span 2;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:not(.featured):hover::before {
  transform: scaleX(1);
}

.service-card.featured::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
  transition: transform 0.3s;
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.08);
}

.service-icon-wrap.green { background: var(--forest-pale); }
.service-icon-wrap.gold { background: rgba(184, 137, 42, 0.1); }
.service-icon-wrap.white { background: rgba(255, 255, 255, 0.1); }

.service-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

.service-card:not(.featured) .service-tag { color: var(--gold); }
.service-card.featured .service-tag { color: var(--gold-light); }

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--forest);
  transition: color 0.3s;
}

.service-card.featured .service-title { color: white; }

.service-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 28px;
  transition: color 0.3s;
}

.service-card.featured .service-text { color: rgba(255, 255, 255, 0.65); }

.service-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-item {
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 2px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.service-card:not(.featured) .service-item {
  background: var(--forest-pale);
  color: var(--forest);
}

.service-card.featured .service-item {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaf-accent {
  position: absolute;
  right: -20px;
  bottom: -20px;
  opacity: 0.04;
  font-size: 8rem;
  user-select: none;
}

/* --- FUTURE NORTH STAR --- */
.future-north-star {
  background: var(--off-white);
  padding: 120px 120px;
  position: relative;
  overflow: hidden;
}

.future-north-star::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(29, 66, 138, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.fns-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fns-header {
  max-width: 700px;
  margin-bottom: 72px;
}

.fns-header .section-title {
  margin-bottom: 20px;
}

.fns-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

.north-star-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 72px;
  padding: 40px 44px;
  background: var(--forest);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.north-star-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.north-star-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 4px;
}

.north-star-label i {
  font-size: 1.4rem;
  color: var(--gold);
}

.north-star-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ns-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  transition: border-color 0.25s;
}

.ns-card:hover {
  border-color: rgba(212, 168, 62, 0.25);
}

.ns-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 168, 62, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.ns-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  margin: 0;
}

.future-outcomes {
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.future-outcomes-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 32px;
}

.future-outcome-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.future-outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-weight: 300;
}

.future-outcome-item i {
  color: var(--forest);
  font-size: 1rem;
  margin-top: 4px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.future-outcomes-close {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  padding: 28px 32px;
  background: var(--cream);
  border-left: 3px solid var(--forest);
}

.future-outcomes-close strong {
  color: var(--forest);
  font-weight: 500;
}

/* --- EMERGING SERVICE PATH --- */
.emerging-path {
  background: var(--forest);
  padding: 120px 120px;
  position: relative;
  overflow: hidden;
}

.emerging-path::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(29, 66, 138, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(212, 168, 62, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.emerging-path-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.emerging-header {
  max-width: 700px;
  margin-bottom: 72px;
}

.emerging-header .section-eyebrow {
  color: var(--gold);
}

.emerging-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-top: 20px;
}

.emerging-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.emerging-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.3s;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.emerging-card:first-child {
  border-top: none;
}

.emerging-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.emerging-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

.emerging-card:hover::before {
  transform: scaleY(1);
}

.emerging-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  padding: 36px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
}

.emerging-card-content {
  padding: 36px 44px 36px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.emerging-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: white;
  margin-bottom: 16px;
  line-height: 1.25;
}

.emerging-card-content p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 20px;
}

.emerging-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.emerging-list li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}

.emerging-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.emerging-note {
  font-size: 0.88rem !important;
  color: var(--gold) !important;
  font-style: italic;
  margin-top: 4px !important;
}

/* --- TECHNOLOGY & NEXT DECADE --- */
.tech-decade {
  background: var(--cream);
  padding: 120px 120px;
  position: relative;
  overflow: hidden;
}

.tech-decade-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.tech-header {
  max-width: 680px;
  margin-bottom: 72px;
}

.tech-header .section-title {
  margin-top: 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 80px;
}

.tech-card {
  background: white;
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover {
  background: var(--forest);
}

.tech-card:hover .tech-card-title { color: white; }
.tech-card:hover .tech-card-text { color: rgba(255, 255, 255, 0.6); }
.tech-card:hover .tech-card-tag { color: var(--gold); border-color: rgba(212, 168, 62, 0.25); }
.tech-card:hover .tech-icon-wrap { background: rgba(29, 66, 138, 0.25); color: var(--gold-light); }

.tech-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--forest-pale);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
  transition: color 0.3s;
}

.tech-card:hover .tech-card-num {
  color: rgba(255, 255, 255, 0.04);
}

.tech-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--forest);
  transition: all 0.3s;
}

.tech-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 14px;
  line-height: 1.25;
  transition: color 0.3s;
}

.tech-card-text {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--text-light);
  font-weight: 300;
  transition: color 0.3s;
  margin-bottom: 20px;
}

.tech-card-tag {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--forest);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  line-height: 1.6;
  transition: color 0.3s, border-color 0.3s;
}

/* --- FUTURE CLOSING --- */
.future-closing {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.future-closing-rule {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 44px;
}

.future-closing-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--forest);
  line-height: 1.5;
  margin-bottom: 28px;
}

.future-closing-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 40px;
}

.future-closing-cta {
  display: inline-block;
}

/* --- TESTIMONIALS --- */

.testimonials {
  background: var(--forest);
  padding: 120px 120px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(29, 66, 138, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 50%, rgba(212, 168, 62, 0.06) 0%, transparent 55%);
  pointer-events: none;
}

.testimonials-header {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.testimonials-header .section-eyebrow { color: var(--gold); }
.testimonials-header .section-title { color: white; }
.testimonials-header .section-title em { color: var(--gold-light); font-style: italic; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.3s;
}

.testimonial-card:hover { background: rgba(255, 255, 255, 0.05); }

.testimonial-card.featured {
  background: rgba(212, 168, 62, 0.07);
  border-left: 1px solid rgba(212, 168, 62, 0.18);
  border-right: 1px solid rgba(212, 168, 62, 0.18);
}

.testimonial-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonial-card::after {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: rgba(212, 168, 62, 0.07);
  position: absolute;
  top: -10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars i {
  font-size: 0.72rem;
  color: var(--gold);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}

.testimonial-card.featured .testimonial-quote { color: rgba(255, 255, 255, 0.9); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.testimonial-card.featured .testimonial-author { border-top-color: rgba(212, 168, 62, 0.18); }

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(29, 66, 138, 0.2);
  border: 1px solid rgba(29, 66, 138, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #a8c8e8;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: white;
  margin-bottom: 3px;
}

.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

/* --- SEARCH QUESTIONS --- */
.search-questions {
  background: var(--cream);
  padding: 120px;
}

.search-questions-header {
  max-width: 780px;
  margin-bottom: 54px;
}

.search-questions-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
}

.search-question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.search-question-card {
  background: white;
  border: 1px solid rgba(12, 35, 64, 0.08);
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 14px 36px rgba(12, 35, 64, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

@media (hover: hover) and (min-width: 769px) {
  .search-question-card:hover {
    border-color: rgba(212, 168, 62, 0.32);
    box-shadow: 0 22px 48px rgba(12, 35, 64, 0.09);
    transform: translateY(-5px);
  }
}

.search-question-card h3 {
  color: var(--forest);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 14px;
}

.search-question-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* --- CTA --- */
.cta-section {
  background: var(--forest);
  padding: 120px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(to left, rgba(29, 66, 138, 0.08), transparent);
}

.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 62, 0.05) 0%, transparent 60%);
}

.cta-content { position: relative; z-index: 1; }
.cta-content .section-eyebrow { color: var(--gold); }

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-title em { font-style: italic; color: var(--gold-light); }

.cta-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.75;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  flex-shrink: 0;
}

.btn-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* --- FOOTER --- */
footer {
  background: #050c18;
  padding: 60px 120px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-light), rgba(212, 168, 62, 0.25), transparent);
}

.footer-brand .nav-logo {
  font-size: 1.2rem;
  color: white;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.7;
  max-width: 280px;
  font-weight: 300;
  margin-bottom: 20px;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 22px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-contact a:hover {
  color: white;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  background: #030811;
  padding: 20px 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.04em;
}

/* --- ANIMATIONS --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left > * { animation: fadeUp 0.8s ease forwards; }
.hero-eyebrow { animation-delay: 0.1s; opacity: 0; }
.hero-headline { animation-delay: 0.25s; opacity: 0; }
.hero-sub { animation-delay: 0.4s; opacity: 0; }
.hero-cta-group { animation-delay: 0.55s; opacity: 0; }
.logo-display { animation: fadeUp 1s 0.3s ease both; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.section-eyebrow::before {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-eyebrow.line-visible::before { transform: scaleX(1); }

footer::before {
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

footer.line-visible::before { transform: scaleX(1); }

.btn-primary { overflow: hidden; }

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0s;
  pointer-events: none;
}

.btn-primary:hover::before {
  left: 180%;
  transition: left 0.55s ease;
}

/* --- MOBILE MENU --- */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 100;
}

.nav-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: 0.3s;
}

.nav-mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  nav { padding: 15px 40px; }

  .hero { padding-top: 80px; }
  .hero-left { padding: 80px 40px; }
  .hero-right { padding: 60px 40px; }

  .opportunity-band,
  .methodology,
  .inside-out,
  .stewardship,
  .clinical-leadership,
  .services,
  .search-questions,
  .cta-section,
  footer {
    padding-left: 60px;
    padding-right: 60px;
  }

  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .search-question-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials { padding-left: 60px; padding-right: 60px; }
}

@media (max-width: 768px) {
  body.no-scroll { overflow: hidden; }

  nav { padding: 15px 24px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--off-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transition: 0.4s ease-in-out;
    z-index: 99;
  }

  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-mobile-toggle { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }

  .hero-left {
    padding: 140px 24px 60px 24px;
    text-align: center;
    align-items: center;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-right { padding: 40px 24px 100px 24px; }
  .logo-display img { width: 240px; }

  .hero-stat-strip {
    position: relative;
    flex-direction: column;
    padding: 0;
  }

  .stat-item { padding: 20px 0; width: 100%; }
  .stat-item + .stat-item { border-left: none; border-top: 1px solid var(--border); }

  .comparison-block { overflow: hidden; }
  .comparison-row { grid-template-columns: 1fr 1fr; }
  .comp-cell { padding: 20px 16px; }

  .opportunity-band { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .opp-left h2 { font-size: 2.2rem; }
  .glow-amount { font-size: 2.8rem; }

  .methodology { padding: 80px 24px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-card { padding: 40px 24px; }

  .inside-out { grid-template-columns: 1fr; padding: 80px 24px; gap: 50px; }
  .stewardship { padding: 80px 24px; }
  .clinical-leadership { padding: 80px 24px; }
  .stewardship-inner, .clinical-leadership-inner { grid-template-columns: 1fr; gap: 60px; }

  .services { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .service-card { padding: 40px 24px; }

  .search-questions { padding: 80px 24px; }
  .search-question-grid { grid-template-columns: 1fr; }
  .search-question-card {
    padding: 0;
    overflow: hidden;
  }

  .search-question-card h3 {
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    min-height: 64px;
    padding: 20px 52px 20px 22px;
    position: relative;
  }

  .search-question-card h3::after {
    content: '+';
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
  }

  .search-question-card p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 22px;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding 0.28s ease;
  }

  .search-question-card.active h3::after {
    content: '-';
  }

  .search-question-card.active p {
    max-height: 260px;
    opacity: 1;
    padding: 0 22px 22px;
  }

  /* Future sections mobile */
  .future-north-star,
  .emerging-path,
  .tech-decade { padding: 80px 24px; }

  .fns-header,
  .emerging-header,
  .tech-header { margin-bottom: 48px; }

  .north-star-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }

  .north-star-label {
    flex-direction: row;
    align-items: center;
  }

  .emerging-card {
    grid-template-columns: 56px 1fr;
  }

  .emerging-num {
    font-size: 2.4rem;
    padding: 24px 16px;
  }

  .emerging-card-content {
    padding: 24px 20px 24px 0;
  }

  .tech-grid {
    grid-template-columns: 1fr;
    margin-bottom: 52px;
  }

  .future-closing-quote { font-size: 1.4rem; }

  .testimonials { padding: 80px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(212, 168, 62, 0.18);
    border-bottom: 1px solid rgba(212, 168, 62, 0.18);
  }

  .cta-section { grid-template-columns: 1fr; padding: 80px 24px; text-align: center; gap: 40px; }
  .cta-actions { align-items: center; width: 100%; }

  .btn-primary,
  .btn-ghost,
  .btn-secondary { width: 100%; text-align: center; }

  footer { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 15px; padding: 30px 24px; text-align: center; }
}

.no-scroll { overflow: hidden !important; }
