:root {
  --blue: #064fbc;
  --blue-dark: #0547a6;
  --blue-deeper: #0a3a86;
  --dark: #231f20;
  --gold: #cea73a;
  --gold-light: #d9b95c;
  --cream: #f6f5e8;
  --light: #f5f5f5;
  --white: #ffffff;
  --ink: #3a3a3c;
  --ink-soft: #6b6b6e;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 34px rgba(6, 79, 188, 0.12);
  --shadow-lg: 0 24px 60px rgba(6, 79, 188, 0.18);
  --font-head: 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --header-h: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.text-gold { color: var(--gold); }
.text-brand { color: var(--blue); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow-brand { color: var(--blue); }
.eyebrow-gold { color: var(--gold); }

.section {
  padding: 88px 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.section-head-light h2 { color: var(--white); }

.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.section-sub-light { color: rgba(255, 255, 255, 0.78); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 15px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(206, 167, 58, 0.35);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(206, 167, 58, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* Announcement bar */
.announcement-bar {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 9px 16px;
}

.announcement-bar a { text-decoration: underline; text-underline-offset: 3px; }

.announcement-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dark);
  margin-right: 8px;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 79, 188, 0.12);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(6, 79, 188, 0.10); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand img { height: 72px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav > a:not(.nav-cta) {
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  position: relative;
  padding: 6px 0;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav > a:not(.nav-cta):hover::after { width: 100%; }

.main-nav > a.is-active { color: var(--blue); }
.main-nav > a.is-active::after { width: 100%; }

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  padding: 11px 22px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
}

.nav-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px;
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 80;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-group {
  display: block;
  padding: 10px 20px 6px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background: var(--light);
  color: var(--blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

/* Hero */
.hero {
  position: relative;
  color: var(--white);
  background: linear-gradient(160deg, var(--blue-deeper) 0%, #0547a6 45%, var(--blue) 100%);
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://kajabi-storefronts-production.kajabi-cdn.com/kajabi-storefronts-production/file-uploads/themes/2160414719/settings_images/420dde1-2285-ba5c-bb85-00f76267a0b2_8741.jpg');
  background-size: cover;
  background-position: center bottom;
  opacity: 0.30;
  filter: saturate(0.85);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 85% 10%, rgba(206, 167, 58, 0.18), transparent 60%),
    radial-gradient(600px 400px at 10% 85%, rgba(35, 31, 32, 0.45), transparent 65%);
}

.hero-content {
  position: relative;
  padding: 72px 0 88px;
}

.countdown {
  display: inline-flex;
  gap: 14px;
  margin-bottom: 44px;
}

.countdown-item {
  min-width: 92px;
  padding: 18px 14px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.countdown-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6.2vw, 4.8rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.01em;
  max-width: 950px;
  margin: 0 auto 22px;
}

.hero-sub {
  max-width: 820px;
  margin: 0 auto 10px;
  font-size: clamp(1.02rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-tagline {
  font-size: 1.12rem;
  color: var(--gold-light);
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-partners {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 36px;
}

.partners-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 22px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partners-logos img {
  height: 84px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 1;
}

/* Challenges */
.section-challenges { background: var(--cream); }

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
  margin-bottom: 72px;
}

.challenge-card {
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.12);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.challenge-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.challenge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(6, 79, 188, 0.08);
  color: var(--blue);
  margin-bottom: 18px;
}

.challenge-icon svg {
  width: 26px;
  height: 26px;
}

.challenge-card h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.challenge-card p { font-size: 0.92rem; color: var(--ink-soft); }

.challenge-context {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.context-text p {
  font-size: 1.06rem;
  color: var(--ink);
}

.context-media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Outcomes */
.section-outcomes {
  background: linear-gradient(150deg, var(--blue-deeper), var(--blue-dark) 60%, var(--blue));
  color: var(--white);
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 34px;
}

.outcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.outcome-check {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.outcome-item p { font-size: 0.98rem; color: rgba(255, 255, 255, 0.94); }

.outcome-note {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

/* Program / capabilities */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto 84px;
}

.capability {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--light);
  border: 1px solid rgba(6, 79, 188, 0.10);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.capability:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.capability-num {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  flex: none;
  line-height: 1.4;
}

.capability p { font-weight: 600; color: var(--dark); }

.program-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--cream);
}

.program-intro h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
}

.program-total {
  text-align: center;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 34px;
  box-shadow: var(--shadow);
}

.program-total-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
}

.program-total-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* Modules tabs */
.modules {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 30px;
  align-items: start;
}

.modules-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.module-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.module-tab:hover { border-color: rgba(6, 79, 188, 0.35); transform: translateX(4px); }

.module-tab.is-active {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(6, 79, 188, 0.30);
}

.module-tab-num {
  flex: none;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.18);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue);
  transition: background 0.25s ease, color 0.25s ease;
}

.module-tab.is-active .module-tab-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.module-tab-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--dark);
  line-height: 1.3;
  transition: color 0.25s ease;
}

.module-tab.is-active .module-tab-title { color: var(--white); }

.module-tab-hours {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(6, 79, 188, 0.09);
  padding: 3px 10px;
  border-radius: 999px;
}

.module-tab.is-active .module-tab-hours {
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.14);
}

.module-panels {
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.14);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
  min-height: 380px;
}

.module-panel {
  display: none;
  padding: 44px 48px;
  animation: fadeSlide 0.35s ease;
}

.module-panel.is-active { display: block; }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(206, 167, 58, 0.10);
  border: 1px solid rgba(206, 167, 58, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.panel-top h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 12px;
}

.panel-top p {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 28px;
}

.panel-skills li {
  position: relative;
  padding: 13px 0 13px 40px;
  border-top: 1px dashed rgba(6, 79, 188, 0.18);
  font-weight: 600;
  color: var(--dark);
}

.panel-skills li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 11px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-cta { text-align: center; margin-top: 52px; }

/* Schedule */
.section-schedule { background: var(--dark); padding: 56px 0; }

.schedule-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 22px;
}

.schedule-icon {
  flex: none;
  font-size: 1.6rem;
  filter: grayscale(0.2);
}

.schedule-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
}

.schedule-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

/* Faculty */
.faculty-grid {
  display: flex;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  transition: transform 0.55s ease;
}

.faculty-grid > .faculty-card {
  flex: 0 0 calc(33.3333% - 24px);
  width: calc(33.3333% - 24px);
  margin: 0 12px;
}

.faculty-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.faculty-controls .slider-btn {
  position: static;
  transform: none;
  width: 46px;
  height: 46px;
  box-shadow: 0 8px 20px rgba(206, 167, 58, 0.4);
}

.faculty-controls .slider-btn:hover {
  transform: scale(1.08);
}

.faculty-grid ~ .slider-dots .slider-dot {
  background: rgba(6, 79, 188, 0.25);
}

.faculty-grid ~ .slider-dots .slider-dot.is-active {
  background: var(--gold);
}

.faculty-view-all {
  text-align: center;
  margin-top: 34px;
}

.faculty-card {
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.12);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.faculty-photo {
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
}

.faculty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.faculty-card:hover .faculty-photo img { transform: scale(1.06); }

.faculty-info { padding: 22px 22px 26px; }

.faculty-info h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.faculty-role {
  display: block;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.faculty-info p { font-size: 0.9rem; color: var(--ink-soft); }

.faculty-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deeper));
}

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

.faculty-grid-static .faculty-card {
  margin: 0;
}

@media (max-width: 1024px) {
  .faculty-grid-static { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .faculty-grid-static { grid-template-columns: 1fr; }
  .faculty-avatar { font-size: 2rem; }
}

/* Instructor */
.section-director { background: var(--cream); }

.director-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.director-photo {
  position: relative;
}

.director-photo img {
  width: 100%;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-lg);
}

.director-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(206, 167, 58, 0.4);
}

.director-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}

.director-content p {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1rem;
}

.director-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat {
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.12);
  border-radius: var(--radius);
  text-align: center;
  padding: 20px 12px;
  box-shadow: var(--shadow);
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Video testimonials */
.section-videos {
  background: linear-gradient(155deg, var(--dark) 0%, var(--blue-deeper) 100%);
}

.video-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.video-track {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform 0.55s ease;
}

.video-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 6px;
}

.video-slide .video-card {
  max-width: 720px;
  margin: 0 auto;
  transition: transform 0.25s ease;
}

.video-slide .video-card:hover { transform: translateY(-6px); }

.slider-btn {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: var(--gold);
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(206, 167, 58, 0.45);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 5;
}

.slider-btn:hover {
  background: var(--gold-light);
  transform: translateY(-50%) scale(1.08);
}

.slider-prev { left: -8px; }
.slider-next { right: -8px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.slider-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  overflow: hidden;
  background:
    radial-gradient(320px 200px at 80% 15%, rgba(206, 167, 58, 0.35), transparent 65%),
    linear-gradient(150deg, var(--blue) 0%, var(--blue-deeper) 55%, var(--dark) 100%);
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease;
}

.video-card:hover .video-poster { box-shadow: var(--shadow-lg); }

.video-quote {
  position: absolute;
  top: -18px;
  left: 22px;
  font-family: Georgia, serif;
  font-size: 7.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.14);
  line-height: 1;
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  padding-right: 70px;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(206, 167, 58, 0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-play-triangle {
  width: 0;
  height: 0;
  border-left: 20px solid var(--dark);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 5px;
}

.video-card:hover .video-play {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold-light);
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6px 0;
}

.video-meta h3 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--white);
}

.video-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Video modal */
.video-modal[hidden] { display: none; }

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 42, 0.82);
  backdrop-filter: blur(6px);
}

.video-modal-box {
  position: relative;
  width: min(880px, 100%);
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--light);
  color: var(--dark);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-modal-close:hover { background: var(--gold); color: var(--white); transform: rotate(90deg); }

.video-modal-player {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  padding: 30px;
  color: rgba(255, 255, 255, 0.85);
}

.video-soon { max-width: 480px; font-size: 0.98rem; }

.video-embed {
  width: 100%;
  height: 100%;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-actions {
  margin-top: 18px;
  text-align: center;
}

.video-external {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: var(--blue);
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-external:hover { background: var(--blue-dark); transform: translateY(-1px); text-decoration: none; }

.video-external.is-hidden { display: none; }

/* Differentiators */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.diff-card {
  text-align: center;
  background: var(--light);
  border: 1px solid rgba(6, 79, 188, 0.10);
  border-radius: var(--radius);
  padding: 34px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.diff-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(206, 167, 58, 0.4);
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.diff-card h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.diff-card p { font-size: 0.9rem; color: var(--ink-soft); }

/* Pricing */
.section-pricing { background: var(--cream); }

.countdown-dark .countdown-item {
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.14);
  box-shadow: var(--shadow);
}

.countdown-dark .countdown-number { color: var(--dark); }
.countdown-dark .countdown-label { color: var(--gold); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.pricing-card {
  position: relative;
  background: var(--white);
  border: 2px solid rgba(6, 79, 188, 0.14);
  border-radius: var(--radius);
  text-align: center;
  padding: 36px 24px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.pricing-featured {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(6, 79, 188, 0.35);
}

.pricing-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(206, 167, 58, 0.12);
  border: 1px solid rgba(206, 167, 58, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 22px;
}

.pricing-featured .pricing-tag {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.pricing-price {
  display: block;
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 14px;
}

.pricing-price small {
  font-size: 1.1rem;
  font-weight: 600;
  vertical-align: super;
  margin-right: 4px;
  color: var(--blue);
}

.pricing-featured .pricing-price { color: var(--white); }
.pricing-featured .pricing-price small { color: var(--gold-light); }

.pricing-note { font-size: 0.9rem; color: var(--ink-soft); }
.pricing-featured .pricing-note { color: rgba(255, 255, 255, 0.8); }

/* Waitlist */
.waitlist {
  background: var(--white);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.waitlist-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  background: rgba(206, 167, 58, 0.2);
  border: 1px solid rgba(206, 167, 58, 0.5);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 20px;
}

.waitlist-info h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.waitlist-info p { color: var(--ink-soft); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-row input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row input:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-status {
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--blue);
  min-height: 1.4em;
}

.form-status.is-error { color: #b3261e; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand-footer img {
  height: 76px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer p { font-size: 0.86rem; }

/* Reveal on scroll */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1024px) {
  .modules { grid-template-columns: 1fr; }
  .schedule-strip { grid-template-columns: repeat(2, 1fr); }
  .director-wrap { grid-template-columns: 1fr; gap: 44px; }
  .director-photo { max-width: 480px; }
  .challenge-context { grid-template-columns: 1fr; gap: 40px; }
  .faculty-grid > .faculty-card {
    flex-basis: calc(50% - 24px);
    width: calc(50% - 24px);
  }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    border-bottom: 1px solid rgba(6, 79, 188, 0.12);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px 28px;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 99;
  }

  .main-nav.is-open { transform: translateY(0); }

  .main-nav > a { padding: 12px 6px; text-align: left; }

  .main-nav > a::after { display: none; }

  .nav-cta { text-align: center; margin-top: 10px; }

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown-toggle {
    padding: 12px 6px;
    text-align: left;
    justify-content: space-between;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 14px;
    border-left: 2px solid rgba(6, 79, 188, 0.15);
    margin-left: 4px;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
    transform: none;
  }

  .module-panel { padding: 32px 26px; }

  .waitlist { grid-template-columns: 1fr; gap: 30px; padding: 36px 28px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .outcome-list, .capability-grid { grid-template-columns: 1fr; }
  .schedule-strip { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .countdown { gap: 8px; }
  .countdown-item { min-width: 74px; padding: 14px 8px 12px; }
  .hero-content { padding: 52px 0 68px; }
.allies-logos { gap: 30px; }
  .allies-logos img { height: 54px; }
  .sponsors-logos { gap: 40px; }
  .sponsors-logos img { height: 46px; }
  .course-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .faculty-grid > .faculty-card {
    flex-basis: calc(100% - 24px);
    width: calc(100% - 24px);
  }
}

/* Hero eyebrow */
.hero-eyebrow {
  display: block;
  color: var(--gold-light);
  margin-bottom: 22px;
}

/* Allies strip */
.section-allies {
  background: var(--white);
  padding: 56px 0;
  text-align: center;
}

.allies-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.allies-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.allies-logos img {
  height: 68px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.allies-logos img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* Sponsors strip */
.section-sponsors {
  background: var(--blue-deeper);
  padding: 56px 0;
  text-align: center;
}

.sponsors-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 30px;
}

.sponsors-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 72px;
  flex-wrap: wrap;
}

.sponsors-logos img {
  height: 58px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sponsors-logos img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* About */
.section-about { background: var(--cream); }

.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 22px;
}

.about-content p {
  color: var(--ink);
  margin-bottom: 14px;
  font-size: 1rem;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
}

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

.pillar {
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.12);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(6, 79, 188, 0.08);
  color: var(--blue);
  margin-bottom: 18px;
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
}

.pillar h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Stats band */
.section-stats { background: var(--dark); padding: 0; }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 56px 0;
}

.stats-band .stat {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.stats-band .stat-num { color: var(--gold); }
.stats-band .stat-label { color: rgba(255, 255, 255, 0.72); }

/* Courses */
.section-courses { background: var(--white); }

.course-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: stretch;
}

.course-card {
  display: flex;
  flex-direction: column;
  background: var(--light);
  border: 1px solid rgba(6, 79, 188, 0.10);
  border-radius: calc(var(--radius) + 6px);
  padding: 44px 40px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.course-featured {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deeper) 100%);
  border-color: var(--blue);
  color: var(--white);
}

.course-badge {
  align-self: flex-start;
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(206, 167, 58, 0.12);
  border: 1px solid rgba(206, 167, 58, 0.45);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 24px;
}

.course-featured .course-badge {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.course-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
}

.course-featured h3 { color: var(--white); }

.course-card > p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 22px;
}

.course-featured > p { color: rgba(255, 255, 255, 0.85); }

.course-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.course-facts li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.course-facts li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.68rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.course-soon-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.course-card .btn { margin-top: auto; }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact */
.section-contact { background: var(--cream); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-list a {
  font-weight: 600;
  color: var(--dark);
  transition: color 0.2s ease;
}

.contact-list a:hover { color: var(--blue); }

.contact-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.14);
  color: var(--blue);
  box-shadow: var(--shadow);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.12);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}

.form-group { margin-bottom: 14px; }

.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--light);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
}

/* Social icons */
.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(6, 79, 188, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-social a:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-social svg {
  width: 17px;
  height: 17px;
}

.nav-social-footer a {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.nav-social-footer a:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Responsive additions */
@media (max-width: 1024px) {
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .course-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav-social { display: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .course-facts { grid-template-columns: 1fr; }
}
/* ===== Página Sobre Nosotros (diseño diferenciado) ===== */
.page-hero {
  background: linear-gradient(160deg, var(--blue-deeper) 0%, var(--blue) 55%, var(--blue-dark) 100%);
  padding: 132px 0 96px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.page-hero-copy h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  margin: 14px 0 20px;
}

.page-hero-copy p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 540px;
}

.page-hero-media { position: relative; }

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
  border: 6px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-lg);
  display: block;
}

.page-hero-badge {
  position: absolute;
  left: 24px;
  bottom: -20px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(206, 167, 58, 0.45);
}

.timeline {
  position: relative;
  margin-top: 56px;
  display: grid;
  gap: 8px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(6, 79, 188, 0.18) 100%);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 16px 0;
}

.timeline-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 1;
}

.timeline-body h3 {
  font-family: var(--font-head);
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--dark);
  margin: 2px 0 6px;
}

.timeline-body p {
  color: rgba(8, 32, 64, 0.72);
  margin: 0;
  max-width: 620px;
}

.section-dark { background: var(--dark); }

.section-dark .section-head h2 { color: var(--white); }

@media (max-width: 860px) {
  .page-hero { padding: 116px 0 84px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .page-hero-badge { bottom: -16px; left: 16px; }
}

/* ===== Taller de Finanzas Avanzadas ===== */
.agenda-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.agenda-day {
  background: var(--white);
  border: 1px solid rgba(6, 79, 188, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 32px;
}

.agenda-day h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 2px;
}

.agenda-day-sub {
  color: rgba(8, 32, 64, 0.66);
  font-weight: 600;
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(6, 79, 188, 0.12);
}

.agenda-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.agenda-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(6, 79, 188, 0.08);
}

.agenda-item:last-child { border-bottom: 0; }

.agenda-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.agenda-title {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.98rem;
  line-height: 1.4;
}

.agenda-hours {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand);
  background: rgba(6, 79, 188, 0.07);
  padding: 3px 10px;
  border-radius: 999px;
}

.quote-band {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.45;
  margin-top: 10px;
  padding-left: 20px;
  border-left: 4px solid var(--gold);
}

@media (max-width: 860px) {
  .agenda-wrap { grid-template-columns: 1fr; }
}

/* ===== Countdown ===== */
.countdown-band {
  background: linear-gradient(150deg, var(--blue-deeper), var(--blue-dark) 60%, var(--blue));
  color: var(--white);
  padding: 46px 0;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.countdown-copy .eyebrow { margin-bottom: 8px; }

.countdown-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.35;
}

.countdown {
  display: flex;
  gap: 14px;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 14px 22px;
  text-align: center;
  min-width: 88px;
}

.countdown-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 640px) {
  .countdown-inner { justify-content: center; text-align: center; }
  .countdown { flex-wrap: wrap; justify-content: center; }
  .countdown-item { min-width: 76px; padding: 12px 16px; }
  .countdown-num { font-size: 1.6rem; }
}

/* ===== Testimonios textuales ===== */
.text-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.text-testimonial {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
  border-top: 4px solid var(--gold);
}

.text-testimonial-mark {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.text-testimonial p {
  color: rgba(8, 32, 64, 0.86);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 16px;
}

.text-testimonial-role {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

@media (max-width: 860px) {
  .text-testimonials { grid-template-columns: 1fr; }
}

/* ===== Botón iniciar sesión ===== */
.nav-login {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-login:hover { border-color: var(--gold); color: var(--gold); }
