/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   2. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg: #F2F2F0;
  --white: #FFFFFF;
  --black: #111111;
  --grey: #666666;
  --green: #2D6A4F;
  --green-light: #E8F5EE;
  --orange: #E8845C;
  --teal: #4AADA8;
  --lavender: #8B7EC8;
  --sage: #7BAE9B;
  --card-dark: #1A1A2E;

  --radius-card: 20px;
  --radius-btn: 12px;
  --radius-pill: 999px;

  --shadow-card: 0 2px 16px rgba(0,0,0,.06);
  --shadow-hover: 0 8px 32px rgba(0,0,0,.12);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

* { transition: all 200ms ease; }

/* ============================================================
   3. TYPOGRAPHY UTILITIES
   ============================================================ */
.display { font-weight: 900; font-size: 64px; line-height: 1.05; letter-spacing: -0.02em; }
h1 { font-size: clamp(32px, 4vw, 56px); font-weight: 900; text-transform: uppercase; letter-spacing: -1px; line-height: 1.05; margin: 0; }
h2.section-title { font-weight: 900; font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -1px; text-transform: uppercase; }
h3 { font-weight: 700; font-size: 22px; }
.caption { font-size: 13px; color: var(--grey); }
.muted { color: var(--grey); }

@media (max-width: 768px) {
  .display { font-size: 36px; }
  h1 { font-size: 28px; }
  h2.section-title { font-size: 28px; }
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
@media (max-width: 768px) { .section { padding: 56px 0; } }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }

.packages-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.packages-grid > * { flex: 0 1 460px; }
@media (max-width: 767px) { .packages-grid > * { flex: 1 1 100%; } }
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.text-center { text-align: center; }

/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  padding: 20px 0;
}
.navbar.scrolled {
  background: rgba(242,242,240,0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; }
.navbar__logo { display: flex; align-items: center; }
.navbar__logo-img { height: 26px; width: auto; display: block; }
.navbar__nav { display: flex; align-items: center; gap: 4px; }
.navbar__nav a {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--grey);
}
.navbar__nav a:hover { color: var(--black); }
.navbar__nav a.active {
  color: var(--black);
}
.navbar__burger { display: none; font-size: 22px; }
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  margin: 8px 24px 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a { padding: 16px 24px; font-weight: 600; border-bottom: 1px solid var(--bg); }
.navbar__mobile a.active { color: var(--green); }

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .navbar__burger { display: block; }
}

/* ============================================================
   6. FOOTER
   ============================================================ */
.footer { background: var(--black); color: var(--white); padding: 64px 0 24px; }
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer__logo { font-family: monospace; font-weight: 900; font-size: 20px; margin-bottom: 12px; }
.footer__tagline { color: rgba(255,255,255,.6); max-width: 280px; font-size: 14px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,.7); font-size: 14px; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { padding-top: 24px; color: rgba(255,255,255,.4); font-size: 13px; }

@media (max-width: 768px) {
  .footer__inner { flex-direction: column; }
}

.footer-v3 { background: var(--white); padding: 40px 0 28px; color: #3D1B2E; }
.footer-v3__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(61,27,46,.15);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .02em;
  line-height: 1.7;
}
.footer-v3__col--right { text-align: right; }
.footer-v3__contact-line a { color: inherit; text-decoration: underline; }
.footer-v3__social a { color: inherit; text-decoration: none; }
.footer-v3__social a:hover { text-decoration: underline; }
.footer-v3__legal a { color: inherit; text-decoration: none; }
.footer-v3__legal a:hover { text-decoration: underline; }
.footer-v3__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-weight: 800; text-transform: uppercase; font-size: 13px; }
.footer-v3__brand { display: flex; align-items: center; gap: 10px; }
.footer-v3__logo-img { height: 22px; width: auto; display: block; }
.footer-v3__legal { text-align: right; max-width: 640px; line-height: 1.7; }

@media (max-width: 768px) {
  .footer-v3__top { flex-direction: column; }
  .footer-v3__col--right { text-align: left; }
  .footer-v3__bottom { flex-direction: column; align-items: flex-start; }
  .footer-v3__legal { text-align: left; }
}

/* ============================================================
   7. FLOATING WIDGET
   ============================================================ */
.floating-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.floating-widget__btn {
  background: var(--black);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-hover);
  white-space: nowrap;
}
.floating-widget__btn:hover { transform: translateY(-2px); }
.floating-widget__btn--secondary { background: var(--white); color: var(--black); }

@media (max-width: 768px) {
  .floating-widget { right: 50%; transform: translateX(50%); bottom: 16px; }
}

/* ============================================================
   8. MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  width: 100%;
  max-width: 460px;
  padding: 40px;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--grey);
}
.modal__close:hover { color: var(--black); }
.modal h3 { margin-bottom: 6px; }
.modal p.muted { margin-bottom: 24px; font-size: 14px; }
.modal label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 16px;
}
.modal input, .modal textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 14px;
  background: var(--bg);
}
.modal input:focus, .modal textarea:focus { outline: 2px solid var(--green); }
.modal textarea { resize: vertical; min-height: 90px; }
.modal__submit { width: 100%; margin-top: 24px; }
.modal__success { text-align: center; padding: 24px 0; }
.modal__success .icon { font-size: 40px; margin-bottom: 12px; }

/* ============================================================
   9. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.btn--primary { background: var(--black); color: var(--white); }
.btn--primary:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn--outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn--small { padding: 10px 18px; font-size: 13px; }
.btn--full { width: 100%; }
.btn--light { background: var(--white); color: var(--black); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* ============================================================
   10. CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px;
}
.card:hover { box-shadow: var(--shadow-hover); }

.format-card {
  justify-content: space-between;
  align-items: flex-start;
  min-height: 460px;
  padding: 36px 32px;
  position: relative;
}
.bento-cell.format-card--big { min-height: 620px; padding: 48px 44px; }
.format-card--big .format-card__cta { width: 100%; text-align: center; }
.format-card--big .bento-cell__title { font-size: 28px; }
.format-card--big .bento-cell__desc { font-size: 15px; max-width: 100%; }
.format-card--big .format-card__bullets li { font-size: 15px; }
.format-card--accent {
  background: linear-gradient(155deg, #0B3324 0%, #14512F 40%, #2D8659 75%, #8FD9B4 100%);
  border: none;
  box-shadow: 0 12px 40px rgba(11,51,36,.35);
}
.format-card--accent:hover { transform: translateY(-6px); }
.format-card__cta { border: none; }
.format-card__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.format-card .bento-cell__icon {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg);
  border-radius: 16px;
  color: var(--green);
}
.bento-cell__icon--svg svg { width: 30px; height: 30px; }
.format-card--accent .bento-cell__icon { background: rgba(255,255,255,.18); color: var(--white); }
.format-card__divider { height: 1px; background: rgba(0,0,0,.08); margin: 18px 0; align-self: stretch; }
.format-card--accent .format-card__divider { background: rgba(255,255,255,.25); }
.format-card p { color: var(--grey); font-size: 14px; }
.format-card__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.format-card__bullets li { font-size: 14px; color: var(--black); padding-left: 22px; position: relative; line-height: 1.4; }
.format-card__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00B67A;
  font-weight: 800;
}
.format-card__bullets--light li { color: rgba(255,255,255,.95); }
.format-card__bullets--light li::before { color: var(--white); }
.format-card .btn { margin-top: 24px; align-self: stretch; text-align: center; }
.btn--trustpilot-accent { background: var(--white); color: #00B67A; border: none; font-weight: 800; }
.btn--trustpilot-accent:hover { background: rgba(255,255,255,.9); }

/* NICHE CAROUSEL */
.niche-carousel-section { padding-bottom: 80px; }
.niche-carousel { position: relative; padding: 0 24px; }
.niche-carousel__track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px calc(50% - 210px) 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.niche-carousel__track::-webkit-scrollbar { display: none; }
.niche-card {
  flex: 0 0 420px;
  scroll-snap-align: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 200ms ease;
}
.niche-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.niche-card__image {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}
.niche-card__title { font-size: 24px; font-weight: 700; padding: 0 28px; }
.niche-card__desc { font-size: 14px; color: var(--grey); line-height: 1.6; padding: 0 28px; }
.niche-card__bullets { list-style: none; margin: 0; padding: 4px 28px 28px; display: flex; flex-direction: column; gap: 8px; }
.niche-card__bullets li {
  font-size: 13px;
  color: var(--black);
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}
.niche-card__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00B67A;
  font-weight: 800;
}
.niche-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  background: var(--white);
  box-shadow: var(--shadow-card);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all 200ms ease;
}
.niche-carousel__nav:hover { box-shadow: var(--shadow-hover); }
.niche-carousel__nav--prev { left: 0; }
.niche-carousel__nav--next { right: 0; }

@media (max-width: 768px) {
  .niche-carousel { padding: 0 8px; }
  .niche-carousel__track { padding: 8px 24px 24px; }
  .niche-card { flex: 0 0 300px; }
  .niche-card__image { height: 140px; }
  .niche-carousel__nav { display: none; }
}

/* HOW IT WORKS (zigzag) */
.howitworks { background: #DCEFF3; overflow: hidden; padding: 80px 0; position: relative; }
.howitworks__head { margin-bottom: 64px; }
.howitworks__head .section-title { margin-bottom: 12px; }
.howitworks__row { display: flex; align-items: stretch; }
.howitworks__body { flex: 1 1 auto; min-width: 0; }
.howitworks__cta { margin-top: 48px; }
@media (max-width: 768px) {
  .howitworks__row { flex-direction: column; }
  .howitworks__head .section-title { font-size: 28px; }
}
.accent-marker {
  color: #00B67A;
}

.howitworks-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  margin-bottom: 72px;
}
.howitworks-row:last-child { margin-bottom: 0; }
.howitworks-list { display: flex; flex-direction: column; }
.howitworks-item { display: grid; grid-template-columns: 120px 1fr; align-items: flex-start; border-top: 1px solid rgba(0,0,0,.12); gap: 0; }
.howitworks-item:last-child { border-bottom: 1px solid rgba(0,0,0,.12); }
.howitworks-item__num { font-size: clamp(64px, 8vw, 120px); font-weight: 900; color: rgba(0,0,0,.1); line-height: 1; padding: 24px 0; letter-spacing: -4px; user-select: none; }
.howitworks-item__body { padding: 28px 0; }
.howitworks-item__body h3 { font-size: clamp(18px, 2vw, 26px); font-weight: 900; margin: 0 0 8px; text-transform: uppercase; letter-spacing: -0.5px; color: var(--black); }
.howitworks-item__body p { font-size: 15px; color: var(--grey); margin: 0; line-height: 1.65; }
@media (max-width: 768px) {
  .howitworks-item { grid-template-columns: 72px 1fr; }
  .howitworks-item__num { font-size: 48px; letter-spacing: -2px; padding: 16px 0; }
  .howitworks-item__body { padding: 20px 0; }
  .howitworks-item__body h3 { font-size: 16px; }
}
.howitworks-row--reverse .howitworks-row__media { grid-column: 2; grid-row: 1; }
.howitworks-row--reverse .howitworks-row__card { grid-column: 1; grid-row: 1; }

.howitworks-row__media { position: relative; }
.howitworks .howitworks-row {
  align-items: stretch;
  grid-template-columns: 320px 420px;
  justify-content: center;
  gap: 0;
  margin-bottom: 32px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.howitworks .howitworks-row--reverse { grid-template-columns: 420px 320px; }
.howitworks .howitworks-row__media--icon { max-width: none; width: 320px; height: auto; }
.howitworks .howitworks-row__media--icon img { height: 100%; width: 320px; aspect-ratio: auto; display: block; }
.howitworks .howitworks-row__card { height: auto; justify-content: center; }
.howitworks-row__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
}
.howitworks .howitworks-row__media--icon img { object-fit: cover; padding: 0; border-radius: 0; box-shadow: none; }

.howitworks-row__card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.howitworks .howitworks-row__card { border-radius: 0; box-shadow: none; }
.howitworks-row__label { font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--grey); }
.howitworks-row__card h3 { font-size: 26px; font-weight: 800; margin: 0; }
.howitworks-row__card p { font-size: 15px; color: var(--grey); margin: 0; line-height: 1.5; }
.howitworks-row__card .btn--dark-pill { margin-top: 12px; align-self: flex-start; }
.btn--dark-pill { background: var(--black); color: var(--white); border-radius: var(--radius-pill); padding: 10px 22px; border: none; }
.btn--dark-pill:hover { background: #2a2a2a; }

@media (max-width: 768px) {
  .howitworks-row, .howitworks-row--reverse .howitworks-row__media, .howitworks-row--reverse .howitworks-row__card {
    grid-column: auto; grid-row: auto;
  }
  .howitworks-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .howitworks .howitworks-row__media--icon, .howitworks .howitworks-row__media--icon img, .howitworks .howitworks-row__card { height: auto; max-width: none; margin-left: 0; transform: none; }
  .howitworks .howitworks-row__media--icon { width: 100%; }
  .howitworks .howitworks-row__media--icon img { width: 100%; aspect-ratio: 1/1; }
}

.instructor-card {
  flex: 0 0 340px;
  position: relative;
  height: 520px;
  background: var(--card-dark);
  border-radius: var(--radius-card);
  overflow: hidden;
  color: var(--white);
  display: block;
  cursor: pointer;
}
.instructor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.instructor-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instructor-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 32%, rgba(0,0,0,0) 62%);
}
.instructor-card__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.instructor-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px 6px 8px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.instructor-card__topic {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.2px;
  white-space: pre-line;
  color: var(--white);
}
.instructor-card__divider { height: 1px; background: rgba(255,255,255,.25); margin: 2px 0; }
.instructor-card__name { font-size: 17px; font-weight: 700; }
.instructor-card__title { font-size: 13px; opacity: .7; }
.instructor-card__actions { display: flex; gap: 8px; padding-top: 6px; }

.instructor-grid-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.instructor-grid-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.instructor-grid-card__header {
  height: 320px;
  position: relative;
  overflow: hidden;
  display: block;
}
.instructor-grid-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.instructor-grid-card__pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.instructor-grid-card__category-pill,
.instructor-grid-card__company-pill {
  background: rgba(255,255,255,.95);
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.instructor-grid-card__company-pill { background: var(--black); color: var(--white); }
.instructor-grid-card__body { padding: 20px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.instructor-grid-card__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.instructor-grid-card__bio { font-size: 14px; color: var(--grey); flex: 1; }
.instructor-grid-card__actions { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }

.course-card { background: var(--bg); border-radius: var(--radius-card); padding: 28px; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--black); transition: all 200ms ease; }
.course-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.course-card__topics { display: flex; flex-direction: column; gap: 6px; font-size: 14px; color: var(--grey); flex: 1; }
.course-card__topics li::before { content: "• "; color: var(--green); font-weight: 700; }

.skill-card { background: var(--white); border-radius: var(--radius-card); padding: 24px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-card); }
.skill-card__icon { font-size: 28px; }
.skill-card p { font-size: 14px; color: var(--grey); }

.social-card { border-radius: var(--radius-card); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.social-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 200ms ease;
}
.review-card__head { display: flex; align-items: center; gap: 10px; }
.review-card__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-card__name { font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.review-card__badge { width: 16px; height: 16px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; color: var(--white); flex-shrink: 0; }
.review-card__badge--linkedin { background: #0A66C2; }
.review-card__badge--trustpilot { background: #00B67A; }
.review-card__stars { color: #00B67A; font-size: 13px; letter-spacing: 1px; }
.review-card__stars--trustpilot { display: inline-flex; gap: 3px; letter-spacing: 0; }
.review-card__stars--trustpilot .tp-star {
  width: 16px; height: 16px;
  background: #00B67A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  color: #FFFFFF;
  font-size: 10px;
  line-height: 1;
}
.review-card__source { font-size: 11px; color: var(--grey); }
.review-card__source a { color: inherit; text-decoration: none; font-weight: 600; }
.review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
  flex: 1;
}
.review-card__course {
  background: var(--bg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  align-self: flex-start;
}

/* BENTO GRID (Best Learning Experience / Course Niches) */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.bento-cell, .review-card {
  position: relative;
}
.bento-cell {
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.bento-cell:hover, .review-card:hover {
  box-shadow: var(--shadow-hover), 0 0 0 1.5px var(--teal);
  transform: translateY(-2px);
}
.bento-cell__icon { font-size: 32px; line-height: 1; }
.bento-cell__icon img { width: 56px; height: 56px; object-fit: contain; }
.bento-cell__title { font-size: 22px; font-weight: 700; color: var(--black); line-height: 1.25; }
.bento-cell__desc { font-size: 14px; color: var(--grey); line-height: 1.5; margin-top: 8px; max-width: 80%; }
.bento-cell--lg { grid-column: span 1; }

.bento-grid--4 { grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; }

.bento-cell--niche {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-card);
}
.bento-cell--niche:hover { border-color: transparent; }
.bento-cell__icon--badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.bento-cell--niche .bento-cell__title { font-size: 24px; }
.bento-cell--niche .bento-cell__desc { max-width: 100%; }

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .bento-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   11. TICKER / MARQUEE
   ============================================================ */
.ticker { background: var(--bg); padding: 16px 0 40px; overflow: hidden; }
.ticker__row { display: flex; align-items: center; gap: 40px; }
.ticker__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker__track-wrap { overflow: hidden; flex: 1; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.ticker__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.ticker__track-wrap:hover .ticker__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-logo { height: 32px; width: auto; object-fit: contain; filter: grayscale(1) opacity(0.5); flex-shrink: 0; }
.ticker-logo:hover { filter: grayscale(0) opacity(1); }

/* ============================================================
   12. FILTER PILLS
   ============================================================ */
.instructor-search {
  max-width: 560px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  padding: 12px 20px;
}
.instructor-search__icon { font-size: 16px; flex-shrink: 0; }
.instructor-search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  color: var(--black);
}
.instructor-search input::placeholder { color: var(--grey); }
.instructor-grid__empty { text-align: center; grid-column: 1 / -1; padding: 48px 0; font-size: 15px; }

.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.filter-pill {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: var(--white);
  font-weight: 600;
  font-size: 14px;
  box-shadow: var(--shadow-card);
}
.filter-pill:hover { box-shadow: var(--shadow-hover); }
.filter-pill.active { background: var(--black); color: var(--white); }

/* ============================================================
   13. SECTIONS (hero, formats, how-it-works, social proof)
   ============================================================ */
.hero { padding: 20px 0 24px; }
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-top: 8px;
}
.hero__pill-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}
.hero__pill-stars .tp-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 13px;
  background: #00B67A;
  color: var(--white);
  border-radius: 4px;
  line-height: 1;
  flex-shrink: 0;
}
.hero__quote { font-size: 17px; max-width: 560px; margin: 0 auto; }
.hero__quote-attr { margin-top: 10px; font-size: 13px; color: var(--grey); }

.hero-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 760px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner__gridmotion {
  position: absolute;
  inset: -10% -10%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  transform: rotate(-6deg) scale(1.25);
}
.gridmotion-row { display: flex; gap: 14px; width: max-content; will-change: transform; }
.gridmotion-row img { width: 170px; height: 230px; object-fit: cover; object-position: top center; border-radius: 16px; flex-shrink: 0; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.gridmotion-row--left { animation: gm-left 36s linear infinite; }
.gridmotion-row--right { animation: gm-right 36s linear infinite; }
.hero-banner:hover .gridmotion-row { animation-play-state: paused; }
@keyframes gm-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes gm-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.hero-banner__scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(10,10,15,.78) 0%, rgba(10,10,15,.6) 45%, rgba(10,10,15,.78) 100%);
}
.hero-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px;
  max-width: 760px;
}
.hero-banner__title { color: var(--white); margin: 8px 0 0; }
.hero-banner__subtitle { color: rgba(255,255,255,.8); font-size: 18px; max-width: 520px; margin: 4px 0 0; }
.hero-banner__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 16px; }
.btn--outline-light {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.7);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn--outline-light:hover { background: rgba(255,255,255,.22); }
.btn--trustpilot { background: #00B67A; color: var(--white); border: none; }
.btn--trustpilot:hover { background: #009c69; }

@media (max-width: 768px) {
  .hero-banner { min-height: 480px; }
  .hero-banner__title { font-size: 36px; }
  .gridmotion-row img { width: 120px; height: 163px; }
}

.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }

.how-it-works__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-step { background: var(--white); border-radius: var(--radius-card); padding: 28px; box-shadow: var(--shadow-card); }
.how-step__num { font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 12px; }
@media (max-width: 768px) { .how-it-works__row { grid-template-columns: 1fr; } }

.instructors-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}
.instructors-row .instructor-card { scroll-snap-align: start; }

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 56px;
  font-weight: 700;
  color: #BBB;
  font-size: 18px;
}

/* ============================================================
   14. INSTRUCTOR DETAIL PAGE
   ============================================================ */
.breadcrumb { font-size: 14px; color: var(--grey); padding: 24px 0; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { color: var(--black); font-weight: 600; }

.profile-header { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: start; padding-bottom: 64px; }
.profile-header__portrait { border-radius: var(--radius-card); width: 100%; aspect-ratio: 1; object-fit: cover; }
.profile-header__pill {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
.profile-header__pill--white { background: var(--white); }
.profile-header__title { color: var(--grey); margin-bottom: 16px; font-size: 16px; }
.profile-header__bio { margin-bottom: 20px; max-width: 560px; }
.profile-header__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.tag-pill { background: var(--white); padding: 6px 14px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; box-shadow: var(--shadow-card); }
.profile-header__stats { display: flex; gap: 40px; margin-bottom: 32px; }
.stat__num { font-size: 28px; font-weight: 800; }
.stat__label { font-size: 13px; color: var(--grey); }
.profile-header__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.instructor-hero-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; }
.instructor-hero-section__intro { display: flex; flex-direction: column; gap: 16px; padding: 80px 48px 80px 0; justify-content: flex-start; }
.instructor-hero { max-height: 600px; }
.instructor-hero-section__intro h1 { font-size: clamp(32px, 4vw, 56px); font-weight: 900; text-transform: uppercase; letter-spacing: -1px; line-height: 1.05; margin: 0; }
.instructor-hero-section__intro .instructor-hero__title { color: var(--grey); font-size: 16px; }
.instructor-hero-section__intro .instructor-hero__tagline { color: var(--grey); font-size: 17px; line-height: 1.6; max-width: 480px; margin: 0; }
.instructor-hero {
  position: relative;
  overflow: hidden;
}
.instructor-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.instructor-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.85) 100%); }
.instructor-hero__overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; color: var(--white); }
.instructor-hero__eyebrow { display: block; font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.25); }
.instructor-hero__overlay h3 { color: var(--white); font-size: 24px; margin-bottom: 2px; }
.instructor-hero__overlay .instructor-hero__title { color: rgba(255,255,255,.82); font-size: 14px; }
.instructor-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: -8px 0 24px; }
.instructor-hero__tags .tag-pill { background: var(--bg); box-shadow: none; }
.instructor-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 768px) {
  .instructor-hero-section { grid-template-columns: 1fr; }
  .instructor-hero-section__intro { padding: 48px 24px; }
  .instructor-hero { height: 260px; }
}

.skills-panel-section { padding: 96px 0; }
.skills-panel-section .container { max-width: 1280px; padding: 0 72px; }
.skills-panel {
  display: flex;
  flex-direction: column;
}
.skills-panel__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}
.skills-panel__intro .section-title { margin-bottom: 0; }
.skills-panel__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.skills-panel__card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.skills-panel__card h4 { font-size: 18px; margin: 0 0 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(0,0,0,.08); }
.skills-panel__card p { font-size: 14px; color: var(--grey); margin: 0; line-height: 1.6; }
@media (max-width: 900px) {
  .skills-panel__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .skills-panel__cards { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .profile-header { grid-template-columns: 1fr; }
}

.about-section {
  background: #DCEFF3;
  color: var(--black);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
  position: relative;
}
.about-section__container { flex: 1 1 auto; min-width: 0; padding: 96px 72px; }
.about-section .about-section__body {
  max-width: 1100px;
  margin: 0 auto;
}
.about-section__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 18%;
  min-width: 48px;
  max-width: 220px;
  height: 100%;
  background: #0F7B57;
  clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 45% 100%, 45% 92%, 18% 92%, 18% 80%, 45% 80%, 45% 72%, 22% 72%, 22% 64%, 45% 64%, 45% 40%, 32% 40%, 32% 33%, 45% 33%, 45% 26%, 20% 26%, 20% 8%, 45% 8%);
  pointer-events: none;
}
.about-section__body p { margin-bottom: 16px; color: var(--grey); }
.about-section__head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.about-section__head .section-title { margin-bottom: 0; color: var(--black); }
.about-section__block { margin-bottom: 28px; }
.about-section__block:last-child { margin-bottom: 0; }
.about-section__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--green); margin-bottom: 10px; }
@media (max-width: 900px) {
  .about-section { flex-direction: column; }
  .about-section__container { padding: 64px 24px; }
}
@media (max-width: 768px) {
  .about-section__accent { display: none; }
}
@media (max-width: 640px) {
  .about-section__container { padding: 40px 24px; }
}
.linkedin-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.1);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  white-space: nowrap;
}
.linkedin-chip:hover { box-shadow: var(--shadow-hover); }
.linkedin-chip__icon { width: 18px; height: 18px; border-radius: 4px; background: #0A66C2; color: var(--white); font-size: 11px; display: inline-flex; align-items: center; justify-content: center; }
.about-section .linkedin-chip { background: none; border: none; box-shadow: none; padding: 0; font-size: 14px; font-weight: 600; color: var(--black); }
.about-section .linkedin-chip:hover { box-shadow: none; text-decoration: underline; }

.course-card__image { height: 140px; border-radius: var(--radius-card) var(--radius-card) 0 0; background-size: cover; background-position: center; margin: -28px -28px 4px; }

.apply-section {
  background: linear-gradient(155deg, #0B3324 0%, #14512F 40%, #2D8659 75%, #BFEBD4 100%);
  overflow: hidden;
}
.apply-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  color: var(--white);
  position: relative;
  padding: 64px 0;
}
.apply-panel__intro { display: flex; flex-direction: column; align-items: center; }
.apply-panel__eyebrow { display: block; font-size: 64px; font-weight: 900; letter-spacing: -.5px; text-transform: uppercase; margin-bottom: 32px; line-height: 1; }
.apply-panel__intro h2 { font-size: 40px; line-height: 1.15; margin: 0 auto; max-width: 640px; }

.apply-form-card { background: var(--white); border-radius: var(--radius-card); padding: 40px; color: var(--black); box-shadow: var(--shadow-hover); max-width: 480px; width: 100%; margin: 0 auto; text-align: left; }
.apply-form-card h2, .apply-form-card > p.muted { display: none; }
.apply-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.apply-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--grey);
  margin-bottom: 8px;
  margin-top: 20px;
}
.apply-form input {
  width: 100%;
  padding: 8px 2px;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  font-family: inherit;
  font-size: 16px;
  background: transparent;
  color: var(--black);
  transition: border-color 150ms ease;
}
.apply-form input::placeholder { color: #bbb; }
.apply-form input:focus { outline: none; border-bottom-color: var(--green); }
.apply-form__phone-row { display: flex; gap: 12px; align-items: flex-end; }
.apply-form__phone-code { flex-shrink: 0; width: 90px; }
.apply-form__phone-code select {
  width: 100%;
  padding: 8px 2px;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  color: var(--black);
  font-size: 16px;
  font-family: inherit;
}
.apply-form__phone-number { flex: 1; }
.apply-form__consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--grey); margin-top: 24px; }
.apply-form__consent input { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.apply-form__submit { margin-top: 28px; width: 100%; background: var(--green); color: var(--white); }
.apply-form__submit:hover { background: #245a3f; }
.apply-form__terms { font-size: 12px; color: var(--grey); margin-top: 16px; }
.apply-form__success { text-align: center; padding: 24px 0; }
.apply-form__success .icon { font-size: 40px; margin-bottom: 12px; }
.apply-meeting { text-align: center; padding: 8px 0; }
.apply-meeting__icon { font-size: 40px; margin-bottom: 16px; }
.apply-meeting h3 { margin-bottom: 8px; }
.apply-meeting .muted { margin-bottom: 28px; }
.apply-meeting__options { display: flex; flex-direction: column; gap: 12px; }
.apply-meeting__btn { width: 100%; justify-content: center; text-align: center; }
@media (max-width: 640px) {
  .apply-form-card { padding: 28px; }
  .apply-form__row { grid-template-columns: 1fr; gap: 0; }
  .apply-panel__stats { gap: 24px; }
}

.cta-banner { background: var(--card-dark); color: var(--white); border-radius: var(--radius-card); padding: 64px 40px; text-align: center; margin: 0 24px; }
.cta-banner h2 { margin-bottom: 28px; }

.video-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.video-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; filter: brightness(.7); }
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 200ms ease;
}
.video-card__play:hover { transform: translate(-50%, -50%) scale(1.08); }
.potential-topics-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.potential-topic { background: var(--bg); border: 1px dashed rgba(0,0,0,.18); }

.video-card__caption {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   16. PROGRAMS (listing + detail)
   ============================================================ */
.program-grid { align-items: stretch; }
.program-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  color: var(--black);
  text-decoration: none;
  cursor: pointer;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.program-card__header { padding: 24px; color: var(--white); position: relative; min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end; gap: 8px; background-size: cover; background-position: center; }
.program-card__duration {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,.15);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.program-card__title { font-size: 20px; font-weight: 700; margin: 0; max-width: 80%; }
.program-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.program-card__desc { font-size: 14px; color: var(--grey); flex: 1; }
.program-card__meta { font-size: 13px; color: var(--grey); }
.program-card__instructor { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--black); }
.program-card__instructor img { width: 28px; height: 28px; border-radius: 4px; object-fit: cover; }
.program-card__actions { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }

.program-hero { padding: 0; }
.program-hero__top { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; }
.program-hero__content { padding: 80px 48px 80px 0; display: flex; flex-direction: column; justify-content: flex-end; color: var(--black); }
.program-hero__content .profile-header__pill { align-self: flex-start; }
.program-hero__image { background-size: cover; background-position: center; }
.program-hero__title { font-size: clamp(32px, 4vw, 56px); font-weight: 900; margin: 16px 0 12px; text-transform: uppercase; letter-spacing: -1px; line-height: 1.05; }
.program-hero__tagline { font-size: 17px; color: var(--grey); max-width: 640px; margin-bottom: 32px; }
.program-hero__meta { display: flex; flex-wrap: wrap; gap: 32px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.15); }
.program-hero__meta-item { display: flex; flex-direction: column; gap: 4px; font-size: 15px; font-weight: 600; }
.program-hero__meta-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; color: rgba(255,255,255,.55); }
.program-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.program-hero__ctas > * { min-width: 220px; text-align: center; }

.program-description { max-width: 760px; margin: 0 auto; }
.program-description h2 { margin-bottom: 20px; }
.program-description p { color: var(--grey); margin-bottom: 16px; font-size: 16px; line-height: 1.6; }

.audience-section .container { max-width: 1280px; padding: 0 72px; }
.audience-heading {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
}
.audience-section { padding: 80px 0 160px; }
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px 80px; }
.audience-item { display: flex; flex-direction: column; gap: 12px; }
.audience-item__dash { color: #bbb; font-size: 14px; line-height: 1; }
.audience-item__title { font-size: clamp(18px, 2vw, 24px); font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: #00B67A; line-height: 1.2; margin: 0; }
.audience-item__text { font-size: 15px; line-height: 1.65; color: var(--black); margin: 0; }
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; gap: 36px; }
  .audience-section .container { padding: 0 24px; }
  .audience-heading { font-size: 36px; letter-spacing: -1px; }
}

.whatyoudo-section {
  background: #DCEFF3;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.whatyoudo-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 72px;
}
.whatyoudo-container > .section-title { margin-bottom: 48px; }
.whatyoudo-accent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 18%;
  min-width: 48px;
  max-width: 240px;
  background: #0F7B57;
  clip-path: polygon(45% 0%, 100% 0%, 100% 100%, 45% 100%, 45% 92%, 18% 92%, 18% 80%, 45% 80%, 45% 72%, 22% 72%, 22% 64%, 45% 64%, 45% 40%, 32% 40%, 32% 33%, 45% 33%, 45% 26%, 20% 26%, 20% 8%, 45% 8%);
}
.whatyoudo-list { display: flex; flex-direction: column; gap: 0; }
.whatyoudo-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.whatyoudo-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.whatyoudo-item__left { display: flex; flex-direction: column; }
.whatyoudo-item__num {
  font-size: 13px;
  font-weight: 800;
  color: #00B67A;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  line-height: 1;
}
.whatyoudo-item__title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.whatyoudo-item__right { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.whatyoudo-item__right p { font-size: 15px; color: #3a5a5a; line-height: 1.7; margin: 0; }
@media (max-width: 768px) {
  .whatyoudo-accent { display: none; }
  .whatyoudo-item { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
}

/* Program instructor — new two-column layout */
.prog-instructor-section { background: var(--white); padding: 80px 0; }
.prog-instructor-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
  max-width: 1280px;
  margin: 0 auto;
}
.prog-instructor__left {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.prog-instructor__name {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--black);
}
.prog-instructor__role { font-size: 14px; color: var(--grey); margin: 0 0 24px; }
.prog-instructor__left .linkedin-chip {
  border: none;
  box-shadow: none;
  background: none;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  align-self: flex-start;
}
.prog-instructor__left .linkedin-chip:hover { box-shadow: none; text-decoration: underline; }
.prog-instructor__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin: 36px 0 24px;
}
.prog-instructor__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 24px; }
.prog-instructor__list li { display: flex; flex-direction: column; gap: 6px; font-size: 15px; line-height: 1.5; color: var(--black); }
.prog-instructor__list li::before { content: "—"; color: #bbb; font-size: 14px; }
.prog-instructor__right { overflow: hidden; }
.prog-instructor__right img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
@media (max-width: 768px) {
  .prog-instructor-card { grid-template-columns: 1fr; }
  .prog-instructor__left { padding: 48px 24px; }
  .prog-instructor__right { height: 460px; }
}

.program-instructor-full {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 40px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.program-instructor-full img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.program-instructor-full__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 16px; }
.program-instructor-full p { color: var(--grey); margin-bottom: 12px; font-size: 15px; line-height: 1.6; }

.syllabus-customize {
  text-align: center;
  padding: 12px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.syllabus-customize__icon { font-size: 40px; margin-bottom: 16px; line-height: 1; }
.syllabus-customize h3 { color: var(--black); font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.syllabus-customize p { color: var(--grey); font-size: 15px; line-height: 1.7; margin: 0; max-width: 520px; }
.syllabus-section .container { max-width: 1280px; padding: 0 72px; }
.syllabus-section .section-title {
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
}
.syllabus-list { display: flex; flex-direction: column; max-width: 100%; margin: 0 auto; }
.syllabus-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: flex-start;
  gap: 0;
  border-top: 1px solid #e0e0e0;
  padding: 0;
  background: none;
  border-radius: 0;
  cursor: pointer;
}
.syllabus-item:last-child { border-bottom: 1px solid #e0e0e0; }
.syllabus-item__num {
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 900;
  color: #e8e8e8;
  line-height: 1;
  padding: 20px 0 20px 0;
  user-select: none;
  letter-spacing: -4px;
}
.syllabus-item__body { padding: 32px 24px 32px 0; }
.syllabus-item__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00B67A;
  margin-bottom: 8px;
}
.syllabus-item__body h3 { font-size: clamp(18px, 2vw, 26px); font-weight: 900; margin: 0; line-height: 1.15; color: var(--black); text-transform: uppercase; letter-spacing: -0.5px; }
.syllabus-item__detail { font-size: 15px; color: var(--grey); line-height: 1.65; margin-top: 12px; display: none; }
.syllabus-item__detail.open { display: block; }
.syllabus-item__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 36px 0 36px 16px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--black);
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
}
.syllabus-item__toggle-plus {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.25s, color 0.2s;
  color: var(--black);
}
.syllabus-item.open .syllabus-item__toggle-plus {
  transform: rotate(45deg);
  color: #00B67A;
}
.syllabus-item.open .syllabus-item__toggle-word { color: #00B67A; }
@media (max-width: 640px) {
  .syllabus-item { grid-template-columns: 60px 1fr auto; }
  .syllabus-item__num { font-size: 48px; letter-spacing: -2px; }
  .syllabus-item__body { padding: 20px 8px 20px 0; }
  .syllabus-item__body h3 { font-size: 16px; }
  .syllabus-item__toggle { padding: 24px 0 24px 8px; font-size: 11px; }
  .syllabus-section .container { padding: 0 20px; }
  .syllabus-section .section-title { font-size: 36px; letter-spacing: -1px; }
}

@media (max-width: 768px) {
  .program-hero { padding: 0; }
  .program-hero__top { grid-template-columns: 1fr; }
  .program-hero__image { display: block; height: 260px; }
  .program-hero__content { padding: 48px 24px; }
  .program-hero__title { font-size: 28px; }
  .program-hero__ctas { flex-direction: column; }
  .program-hero__ctas > * { flex: none; width: 100%; }
  .program-instructor-full { flex-direction: column; text-align: center; }
  .program-instructor-full__tags { justify-content: center; }
  .syllabus-item { gap: 12px; }
  .syllabus-section .container { padding: 0 20px; }
  .whatyoudo-container { padding: 0 24px; }
  .audience-section { padding: 80px 0; }
}

/* ============================================================
   15. RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1024px) {
  .instructor-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .program-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .instructor-grid { grid-template-columns: 1fr !important; }
  .skills-grid { grid-template-columns: 1fr !important; }
  .program-grid { grid-template-columns: 1fr !important; }
}
