/* ===================================================
   Humans Unboxed — Brand CSS
   Color palette, typography, layout, and components
   =================================================== */

:root {
  /* Brand colors — Deep Navy palette */
  --hu-purple: #0F1F3D;
  --hu-purple-dark: #0A1528;
  --hu-aqua: #6BC4D1;
  --hu-aqua-light: #9CD3E2;
  --hu-mist: #F5F8FA;
  --hu-white: #FFFFFF;
  --hu-ink: #2C2E31;
  --hu-charcoal: #474B50;
  --hu-gold: #D4A574;
  --hu-peach: #F4C5B9;

  /* Semantic aliases */
  --bg: var(--hu-white);
  --surface: var(--hu-white);
  --surface-alt: var(--hu-mist);
  --primary: var(--hu-aqua);
  --primary-dark: #4a9faa;
  --accent: var(--hu-purple);
  --text: var(--hu-charcoal);
  --text-heading: var(--hu-ink);
  --text-muted: #8B9199;
  --text-on-dark: rgba(255,255,255,0.85);
  --text-on-dark-muted: rgba(255,255,255,0.55);

  /* Typography */
  --font-heading: 'Sora', 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing scale */
  --section-py: clamp(72px, 9vw, 140px);
  --container-max: 1160px;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-card: 0 18px 60px rgba(15, 31, 61, 0.08);
  --shadow-card-hover: 0 24px 72px rgba(15, 31, 61, 0.14);
  --shadow-btn: 0 8px 24px rgba(107, 196, 209, 0.3);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--text-heading);
  font-weight: 700;
}
h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  font-weight: 700;
}
h3 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  color: var(--text-heading);
  font-weight: 600;
}
h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-heading);
  font-weight: 600;
}
p { font-size: 18px; line-height: 1.7; color: var(--text); }
.small { font-size: 15px; line-height: 1.6; }

/* ── UTILITIES ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.copy-narrow { max-width: 760px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-on-dark { color: rgba(255,255,255,0.85); }
.text-aqua { color: var(--hu-aqua); }
.text-purple { color: var(--hu-purple); }
.section-py { padding-top: var(--section-py); padding-bottom: var(--section-py); }

/* ── EYEBROW ── */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hu-aqua);
  margin-bottom: 20px;
  display: inline-block;
}
.eyebrow--light { color: rgba(107, 196, 209, 0.75); }
.eyebrow--gold { color: var(--hu-gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--hu-aqua);
  color: var(--hu-purple);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--hu-aqua-light); box-shadow: 0 12px 32px rgba(107, 196, 209, 0.4); }

.btn-outline-white {
  background: transparent;
  color: var(--hu-white);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 13px 27px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }

.btn-outline-purple {
  background: transparent;
  color: var(--hu-purple);
  border: 1px solid var(--hu-purple);
  padding: 13px 27px;
}
.btn-outline-purple:hover { background: rgba(15,31,61,0.05); }

.btn-sm { font-size: 14px; padding: 10px 20px; }
.btn-lg { font-size: 18px; padding: 18px 36px; }

/* ── STARBURST MOTIF ── */
.starburst {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: var(--hu-aqua);
  clip-path: polygon(
    50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%,
    50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
  );
  flex-shrink: 0;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15,31,61,0.08);
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav__logo-wrap { flex-shrink: 0; }
.nav__logo-wrap img { height: 52px; width: auto; display: block; }
.nav__name { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--hu-ink); }
.nav__tagline { font-size: 11px; color: var(--hu-aqua); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: 20px; }
.nav__admin-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav__admin-link:hover { color: var(--hu-purple); }

/* ── HERO ── */
.hero {
  background: var(--hu-purple);
  padding: clamp(80px, 10vw, 140px) 24px clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(107,196,209,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(107,196,209,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow { color: rgba(107,196,209,0.7); margin-bottom: 24px; }
.hero__headline { color: var(--hu-white); margin-bottom: 28px; }
.hero__headline em {
  font-style: normal;
  color: var(--hu-aqua);
}
.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 0; }
.hero__soft { margin-top: 20px; }
.hero__soft a { color: rgba(255,255,255,0.6); font-size: 14px; text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.hero__soft a:hover { color: var(--hu-aqua); }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(360px, 40vw, 480px);
}
.hero__orb {
  width: clamp(240px, 28vw, 340px);
  height: clamp(240px, 28vw, 340px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(107,196,209,0.25) 0%,
    rgba(107,196,209,0.12) 45%,
    rgba(15,31,61,0.4) 100%
  );
  box-shadow:
    0 0 80px rgba(107,196,209,0.2),
    0 0 160px rgba(107,196,209,0.08),
    inset 0 0 60px rgba(107,196,209,0.15);
  animation: orbPulse 8s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.hero__orb::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(107,196,209,0.12);
}
.hero__ring--1 { width: clamp(300px, 36vw, 420px); height: clamp(300px, 36vw, 420px); animation: ringRotate 20s linear infinite; }
.hero__ring--2 { width: clamp(370px, 44vw, 520px); height: clamp(370px, 44vw, 520px); border-style: dashed; border-color: rgba(107,196,209,0.07); animation: ringRotate 32s linear infinite reverse; }
.hero__ring--3 { width: clamp(440px, 52vw, 620px); height: clamp(440px, 52vw, 620px); border-color: rgba(107,196,209,0.04); animation: ringRotate 50s linear infinite; }

@keyframes orbPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── WHO IS THIS FOR ── */
.audience {
  padding: var(--section-py) 24px;
  background: var(--hu-white);
}
.audience__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.audience__header { margin-bottom: 56px; }
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.audience-card {
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(15,31,61,0.1);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.audience-card--mist { background: var(--hu-mist); }
.audience-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--hu-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.audience-card__icon svg { width: 24px; height: 24px; fill: var(--hu-aqua); }
.audience-card h3 { margin-bottom: 14px; }
.audience-card p { font-size: 16px; color: var(--text-muted); }

/* ── PROGRAMS ── */
.programs {
  padding: var(--section-py) 24px;
  background: var(--hu-mist);
}
.programs__inner { max-width: var(--container-max); margin: 0 auto; }
.programs__header { margin-bottom: 56px; }
.programs__header p { color: var(--text-muted); max-width: 540px; margin-top: 12px; }

.programs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--hu-white);
  border: 1px solid rgba(15,31,61,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.program-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--hu-aqua);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.program-card--featured { border-color: var(--hu-purple); background: var(--hu-purple); }
.program-card--featured::before { background: var(--hu-gold); }

.program-card__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hu-aqua);
  margin-bottom: 16px;
}
.program-card--featured .program-card__badge { color: var(--hu-gold); }

.program-card__number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(15,31,61,0.08);
  line-height: 1;
  margin-bottom: 20px;
}
.program-card--featured .program-card__number { color: rgba(255,255,255,0.1); }

.program-card__name { font-size: 22px; margin-bottom: 12px; font-weight: 700; color: var(--text-heading); }
.program-card--featured .program-card__name { color: var(--hu-white); }

.program-card__desc { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.65; flex-grow: 1; }
.program-card--featured .program-card__desc { color: rgba(255,255,255,0.65); }

.program-card__price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--hu-purple);
  margin-bottom: 8px;
}
.program-card--featured .program-card__price { color: var(--hu-gold); }
.program-card__price-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.program-card--featured .program-card__price-note { color: rgba(255,255,255,0.4); }

.program-card__bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.program-card__bullets li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}
.program-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--hu-aqua);
  border-radius: 2px;
}
.program-card--featured .program-card__bullets li { color: rgba(255,255,255,0.75); }
.program-card--featured .program-card__bullets li::before { background: var(--hu-gold); }

.program-card__cta { margin-top: auto; }

/* ── METHOD ── */
.method {
  padding: var(--section-py) 24px;
  background: var(--hu-white);
}
.method__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.method__eyebrow { margin-bottom: 16px; }
.method__headline { margin-bottom: 24px; }
.method__sub { color: var(--text-muted); margin-bottom: 32px; }
.method__pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 20px; align-items: flex-start; }
.pillar__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--hu-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--hu-purple);
  border: 1px solid rgba(15,31,61,0.1);
}
.pillar__text h4 { margin-bottom: 6px; }
.pillar__text p { font-size: 15px; color: var(--text-muted); }

.method__visual {
  position: relative;
  background: var(--hu-purple);
  border-radius: var(--radius-lg);
  padding: 48px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.method__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(107,196,209,0.15) 0%, transparent 60%);
}
.method__visual-inner { position: relative; z-index: 1; }
.method__visual h3 { color: var(--hu-white); font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 28px; line-height: 1.2; }
.method__visual-steps { display: flex; flex-direction: column; gap: 20px; }
.method-step { display: flex; gap: 16px; align-items: flex-start; }
.method-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(107,196,209,0.2);
  border: 1px solid rgba(107,196,209,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--hu-aqua);
}
.method-step__text { padding-top: 6px; }
.method-step__text strong { display: block; font-size: 15px; color: var(--hu-white); margin-bottom: 4px; }
.method-step__text span { font-size: 14px; color: rgba(255,255,255,0.55); }

/* ── FOUNDER STORY ── */
.founder {
  padding: 0;
  background: var(--hu-white);
  position: relative;
}

/* Header band */
.founder__header {
  background: var(--hu-purple);
  padding: clamp(64px, 8vw, 100px) 24px clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}
.founder__header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 100% 50%, rgba(107,196,209,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.founder__header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.founder__eyebrow { color: rgba(107,196,209,0.65); margin-bottom: 16px; }
.founder__headline { color: var(--hu-white); margin-bottom: 20px; }
.founder__hook {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-width: 620px;
}
.founder__sidebar {
  min-width: 260px;
}
.founder__photo-wrap {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.founder__name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--hu-white);
  margin-bottom: 4px;
}
.founder__title-label {
  font-size: 13px;
  color: var(--hu-aqua);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.founder__bio-short {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}
.founder__certs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.founder__cert {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.founder__cert-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(107,196,209,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder__cert-icon svg { width: 14px; height: 14px; fill: var(--hu-aqua); }

/* Story body — magazine-style long-form */
.founder__story {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 24px;
}
.founder__story-beat {
  margin-bottom: clamp(40px, 5vw, 56px);
}
.founder__story-beat:last-child { margin-bottom: 0; }
.founder__beat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hu-aqua);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.founder__beat-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(15,31,61,0.1);
}
.founder__beat-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 18px;
  line-height: 1.2;
}
.founder__story-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
}
.founder__story-text p + p {
  margin-top: 18px;
}
.founder__story-text em {
  font-style: italic;
  color: var(--text-heading);
}

/* Pullquote — navy background callout */
.founder__pullquote {
  background: var(--hu-purple);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 48px);
  margin: clamp(32px, 4vw, 48px) -24px;
  position: relative;
  overflow: hidden;
}
.founder__pullquote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(107,196,209,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.founder__pullquote p {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 24px);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.founder__pullquote .founder__pullquote-attr {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  color: var(--hu-aqua);
  margin-top: 16px;
  display: block;
}

/* Career timeline */
.founder__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 28px 0;
  padding-left: 24px;
  border-left: 2px solid rgba(15,31,61,0.1);
}
.founder__milestone {
  padding: 12px 0 12px 20px;
  position: relative;
}
.founder__milestone::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hu-aqua);
  border: 3px solid var(--hu-white);
}
.founder__milestone-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hu-aqua);
  margin-bottom: 4px;
}
.founder__milestone-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

/* Closing CTA within story */
.founder__story-cta {
  text-align: center;
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(15,31,61,0.08);
  margin-top: clamp(40px, 5vw, 56px);
}
.founder__story-cta p {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-heading);
  margin-bottom: 24px;
  line-height: 1.4;
}

/* ── BOOKING / CALENDLY EMBED ── */
.booking {
  padding: var(--section-py) 24px;
  background: var(--hu-purple);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.booking::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(107,196,209,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(212,165,116,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.booking__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.booking__headline {
  color: var(--hu-white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.booking__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 48px;
}
.booking__embed {
  background: var(--hu-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  max-width: 960px;
  margin: 0 auto;
}
.booking__embed .calendly-inline-widget {
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 600px) {
  .booking { padding-left: 20px; padding-right: 20px; }
  .booking__embed { padding: 12px; }
  .booking__embed .calendly-inline-widget { min-height: 800px !important; }
}

/* ── CERTIFICATIONS ── */
.certs {
  padding: var(--section-py) 24px;
  background: var(--hu-mist);
}
.certs__inner { max-width: var(--container-max); margin: 0 auto; }
.certs__header { margin-bottom: 56px; text-align: center; }
.certs__header .eyebrow { display: block; text-align: center; }
.certs__header p { color: var(--text-muted); max-width: 560px; margin: 16px auto 0; }
.certs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cert-card {
  background: var(--hu-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid rgba(15,31,61,0.08);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.cert-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--hu-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.cert-card__icon svg { width: 28px; height: 28px; fill: var(--hu-aqua); }
.cert-card h4 { font-size: 17px; margin-bottom: 10px; color: var(--text-heading); }
.cert-card p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: var(--section-py) 24px;
  background: var(--hu-white);
}
.testimonials__inner { max-width: var(--container-max); margin: 0 auto; }
.testimonials__header { margin-bottom: 56px; }
.testimonials__header p { color: var(--text-muted); max-width: 520px; margin-top: 12px; }

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testimonial-card {
  background: var(--hu-mist);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid rgba(15,31,61,0.08);
  transition: transform 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-heading);
  margin-bottom: 24px;
  position: relative;
  padding-top: 20px;
}
.testimonial-card__quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 3px;
  background: var(--hu-aqua);
  border-radius: 2px;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--hu-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--hu-aqua);
  flex-shrink: 0;
}
.testimonial-card__name { font-size: 15px; font-weight: 600; color: var(--text-heading); }
.testimonial-card__program { font-size: 13px; color: var(--text-muted); }

/* ── CLOSING CTA ── */
.closing-cta {
  padding: var(--section-py) 24px;
  background: var(--hu-purple);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(107,196,209,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 100%, rgba(255,180,91,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.closing-cta__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-cta__eyebrow { color: rgba(107,196,209,0.65); margin-bottom: 20px; }
.closing-cta__headline { color: var(--hu-white); margin-bottom: 20px; }
.closing-cta__sub {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.closing-cta__body {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.closing-cta__actions { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.closing-cta__soft { font-size: 14px; color: rgba(255,255,255,0.4); }
.closing-cta__soft a { color: var(--hu-aqua); text-decoration: underline; text-underline-offset: 3px; }

/* ── CONTACT ── */
.contact {
  padding: clamp(64px, 8vw, 100px) 24px;
  background: var(--hu-purple);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(107,196,209,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.contact__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact__content { display: flex; flex-direction: column; align-items: center; }
.contact__headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--hu-white);
  margin-bottom: 20px;
}
.contact__sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
}
.contact__email {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--hu-aqua);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}
.contact__email:hover { color: var(--hu-aqua-light); }
.contact__email::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--hu-aqua);
  border-radius: 2px;
  opacity: 0.4;
  transition: opacity 0.2s ease;
}
.contact__email:hover::after { opacity: 0.8; }

/* ── FOOTER ── */
.footer {
  background: var(--hu-purple-dark);
  padding: 48px 24px 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__brand img { height: 52px; width: auto; }
.footer__tagline { font-size: 12px; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; text-transform: uppercase; }
.footer__cols { display: flex; gap: 60px; }
.footer__col h5 { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
.footer__col ul li a:hover { color: var(--hu-aqua); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.footer__copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__disclaimer { font-size: 12px; color: rgba(255,255,255,0.25); max-width: 480px; line-height: 1.6; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav { padding: 0 24px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .audience__grid { grid-template-columns: 1fr; }
  .programs__grid { grid-template-columns: 1fr; }
  .method__inner { grid-template-columns: 1fr; }
  .method__visual { display: none; }
  .founder__header-inner { grid-template-columns: 1fr; }
  .founder__sidebar { order: -1; }
  .founder__pullquote { margin-left: 0; margin-right: 0; }
  .certs__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; }
  .footer__cols { gap: 32px; }
  .footer__bottom { flex-direction: column; }
  .contact { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  h1 { font-size: clamp(36px, 9vw, 48px); }
  h2 { font-size: clamp(28px, 7vw, 36px); }
  .hero { padding: 60px 20px 60px; }
  .audience, .programs, .method, .certs, .testimonials, .closing-cta { padding-left: 20px; padding-right: 20px; }
  .closing-cta { padding-top: 72px; padding-bottom: 72px; }
  .founder, .footer { padding-left: 20px; padding-right: 20px; }
  .program-card { padding: 28px 24px; }
  .testimonial-card { padding: 28px 24px; }
  .footer__cols { flex-direction: column; gap: 24px; }
}