:root {
  --blue:        #661a28;
  --blue-dark:   #4d141e;
  --blue-light:  #8a2235;
  --blue-50:     #FBE9EC;
  --blue-100:    #F4D4D9;
  --orange:      #FFD700;
  --orange-dark: #D4B300;
  --orange-50:   #FFFBE0;
  --white:    #FFFFFF;
  --paper:    #F7FAFC;
  --paper-2:  #EDF2F7;
  --line:     #E2E8F0;
  --line-2:   #CBD5E0;
  --ink:      #0F1F3D;
  --ink-2:    #2D3855;
  --ink-soft: #5B6478;
  --gold:        #FFD700;
  --shadow-1: 0 1px 2px rgba(15, 31, 61, .06), 0 4px 12px rgba(15, 31, 61, .04);
  --shadow-2: 0 8px 24px rgba(15, 31, 61, .08), 0 24px 48px rgba(15, 31, 61, .06);
  --shadow-blue: 0 12px 32px rgba(102,26,40,.22);
  --shadow-orange: 0 8px 24px rgba(212,179,0,.35);
  --sans: "DM Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --display: "Poppins", "DM Sans", ui-sans-serif, sans-serif;
  --container: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 20px;}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

::selection { background: var(--orange); color: var(--white); }

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 16px 36px rgba(102,26,40,.3); }
.btn--accent {
  background: var(--orange);
  color: var(--blue);
  box-shadow: var(--shadow-orange);
}
.btn--accent:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(212,179,0,.45); }
.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--paper); border-color: var(--ink); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--block { width: 100%; }
.sec-head { margin-bottom: 48px; }
.sec-head--center { text-align: center; }
.sec-head--center p { max-width: 60ch; margin-left: auto; margin-right: auto; }
.sec-head__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--orange);
  padding: 6px 14px;
  background: var(--orange-50);
  border-radius: 999px;
  margin-bottom: 18px;
}
.sec-head__eyebrow--light {
  color: var(--white);
  background: rgba(255,255,255,.15);
}
.sec-head h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 16px;
  color: var(--ink);
  text-wrap: balance;
}
.sec-head h2 em { font-style: normal; color: var(--orange); }
.sec-head p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 64ch;
  text-wrap: pretty;
}

/* ───────── Utility bar ───────── */
.util {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 13px;
}
.util__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.util__pill {
  font-weight: 600;
  letter-spacing: .01em;
}
.util__right {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 500;
}
.util__right a:hover { color: var(--gold); }
.util__brochure {
  background: var(--orange);
  color: var(--blue) !important;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
}
.util__brochure:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

/* ───────── Header ───────── */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.hdr__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  gap: 24px;
}
.hdr__logo { display: inline-flex; align-items: center; gap: 12px; }
.hdr__logo img {
    display: block;
    max-width: 180px; 
    height: auto;}

.hdr__logo:hover img {
    opacity: 0.85; 
    transition: opacity 0.3s ease;
}
.hdr__mark {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.01em;
  box-shadow: 0 4px 12px rgba(102,26,40,.3);
}
.hdr__text { display: flex; flex-direction: column; line-height: 1.1; }
.hdr__text strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  letter-spacing: -.005em;
}
.hdr__text em {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: .02em;
}
.hdr__nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  font-size: 14.5px;
  font-weight: 500;
}
.hdr__nav a {
  color: var(--ink-2);
  padding: 6px 0;
  position: relative;
  transition: color .15s ease;
}
.hdr__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.hdr__nav a:hover { color: var(--blue); }
.hdr__nav a:hover::after { transform: scaleX(1); }
.hdr__cta { display: flex; gap: 10px; }
.hdr__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.hdr__burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* ───────── Hero ───────── */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(255,215,0,.10), transparent 60%),
    radial-gradient(50% 80% at 0% 100%, rgba(102,26,40,.07), transparent 60%),
    linear-gradient(180deg, var(--white), var(--paper));
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,.12), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--orange-50);
  color: var(--orange-dark);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 24px;
}
.hero__copy h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 20px;
  color: var(--ink);
  text-wrap: balance;
}
.hero__copy h1 span {
  color: var(--blue);
  position: relative;
  white-space: nowrap;
}
.hero__copy h1 span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: var(--orange-50);
  z-index: -1;
}
.hero__sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 56ch;
  text-wrap: pretty;
}
.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.hero__bullets span {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: 50%;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-soft);
}
.hero__trust strong { color: var(--ink); }
.hero__dot {
  width: 4px; height: 4px;
  background: var(--line-2);
  border-radius: 50%;
}

/* Form */
.hero__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-2);
  position: relative;
}
.hero__form::before {
  content: "";
  position: absolute;
  top: -4px; left: -4px; right: -4px;
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: var(--radius-l) var(--radius-l) 0 0;
}
.form__head { margin-bottom: 20px; }
.form__head h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.015em;
  margin: 0 0 6px;
  color: var(--ink);
}
.form__head p { margin: 0; font-size: 14px; color: var(--ink-soft); }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(102,26,40,.12);
}
.field__split { display: grid; grid-template-columns: 90px 1fr; gap: 8px; }

.field__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 16px 0;
  cursor: pointer;
}
.field__check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--orange); }

.form__fineprint {
  margin: 14px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ───────── Trust band ───────── */
.trust {
  padding: 30px 0;
  overflow: hidden;
}

.trust__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.trust__label {
  display: block;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}


.trust__marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}


.trust__track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}


.trust__track img {
  margin: 0 40px;
  height: 70px; 
  width: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  padding: 1px 34px;
  border-radius: 12px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust__track:hover { animation-play-state: paused; }
@keyframes trust { to { transform: translateX(-50%); } }
.trust__track span {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink-2);
  transition: border-color .15s, color .15s, transform .15s;
}
.trust__track span:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ───────── Stats bar ───────── */
.stats {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: clamp(48px, 6vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,.22), transparent 60%);
  pointer-events: none;
}
.stats__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2vw, 32px);
  position: relative;
}
.stat-card {
  text-align: center;
  padding: clamp(20px, 2vw, 28px) clamp(16px, 2vw, 24px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-m);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, background .25s ease;
}
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.stat-card__icon {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  background: var(--orange);
  color: var(--blue);
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
  box-shadow: var(--shadow-orange);
}
.stat-card__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--white);
}
.stat-card__num small {
  font-size: .35em;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-left: 4px;
  letter-spacing: 0;
}
.stat-card__lab {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin: 10px 0 4px;
}
.stat-card__sub {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .02em;
}

/* ───────── Why ───────── */
.why { padding: clamp(64px, 8vw, 120px) 0; }
.why__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: transparent;
}
.why-card__ico {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: 14px;
  font-size: 28px;
}
.why-card:hover .why-card__ico {
  background: var(--orange);
  color: var(--white);
}
.why-card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.why-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ───────── Program ───────── */
.prog {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--paper);
  position: relative;
}
.prog__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.prog__tabs {
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 0 auto 40px;
  display: flex;
  width: fit-content;
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-1);
}
.ptab {
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
  white-space: nowrap;
}
.ptab.is-active {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.ptab:not(.is-active):hover { color: var(--blue); }

.prog__panel { display: none; }
.prog__panel.is-active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.course {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.course:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: var(--shadow-2);
}
.course span {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  background: var(--orange-50);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.course h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.course p { margin: 0; font-size: 14px; color: var(--ink-soft); }
.course p em {
  display: inline-block;
  margin-left: 4px;
  background: var(--orange);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
}
.course--new::before {
  content: "NEW";
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
  background: var(--orange);
  padding: 3px 8px;
  border-radius: 4px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.spec-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  border-radius: var(--radius-m);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.spec-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.spec-card--blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
}
.spec-card--orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
}
.spec-card__no {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  opacity: .7;
}
.spec-card h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -.02em;
  margin: 4px 0;
}
.spec-card p {
  margin: 0;
  font-size: 14px;
  opacity: .85;
  line-height: 1.45;
}
.spec-card span {
  margin-top: auto;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
  padding-top: 14px;
}
.prog__note {
  margin: 24px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
}
.prog__note strong { color: var(--ink); }

.bridge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bridge__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 32px;
  border-top: 4px solid var(--orange);
}
.bridge__card:nth-child(2) { border-top-color: var(--blue); }
.bridge__card h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  margin: 0;
  letter-spacing: -.015em;
}
.bridge__sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 4px 0 16px;
}
.bridge__card ul {
  list-style: none;
  padding: 0; margin: 0;
}
.bridge__card li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
.bridge__card li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ───────── Outcomes ───────── */
.outcomes {
  padding: clamp(64px, 8vw, 120px) 0;
}
.outcomes__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.outcomes__media {
  position: relative;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-l);
  overflow: visible;
}
.outcomes__photo {
  position: absolute;
  inset: 0;
   background-size: cover;
  border-radius: var(--radius-l);
}
.outcomes__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 30% 40%, rgba(255,255,255,.4), transparent 50%),
    radial-gradient(2px 2px at 70% 60%, rgba(255,255,255,.3), transparent 50%),
    radial-gradient(2px 2px at 50% 80%, rgba(255,255,255,.25), transparent 50%);
  border-radius: var(--radius-l);
}
.outcomes__badge {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--orange);
  color: var(--blue);
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-orange);
  text-align: center;
}
.outcomes__badge strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -.02em;
}
.outcomes__badge span {
  font-size: 12px;
  opacity: .9;
  letter-spacing: .04em;
}
.outcomes__chip {
  position: absolute;
  bottom: -32px; left: -32px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
  width: 260px;
}
.oc__row {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 10px;
  padding: 8px 0;
  font-size: 13px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.oc__row:last-child { border-bottom: 0; }
.oc__row i {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
}
.oc__row span { color: var(--ink-2); font-weight: 500; }
.oc__row b { color: var(--blue); font-family: var(--display); font-weight: 700; font-size: 14px; }

.outcomes__copy { padding-left: 0; }
.outcomes__copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 16px 0;
  color: var(--ink);
  text-wrap: balance;
}
.outcomes__copy h2 em { font-style: normal; color: var(--orange); }
.outcomes__copy > p {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
.outcomes__list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.outcomes__list li {
  background: var(--paper);
  border-radius: 12px;
  padding: 16px 18px;
  border-left: 4px solid var(--orange);
}
.outcomes__list strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--blue);
  letter-spacing: -.015em;
}
.outcomes__list span { font-size: 13px; color: var(--ink-soft); }

/* ───────── Voices ───────── */
.voices {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--paper);
}
.voices__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vcard {
  background: var(--white);
  border-radius: var(--radius-m);
  padding: 28px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.vcard--feat {
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border: 0;
}
.vcard__rate {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: .04em;
}
.vcard p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 500;
}
.vcard--feat p { color: var(--white); }
.vcard__who {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.vcard--feat .vcard__who { border-color: rgba(255,255,255,.18); }
.vcard__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--orange), var(--orange-dark));
}
[data-avatar="2"] .vcard__avatar,
.vcard[data-avatar="2"] .vcard__avatar { background: radial-gradient(circle at 30% 30%, var(--blue-light), var(--blue)); }
.vcard:nth-child(2) .vcard__avatar { background: radial-gradient(circle at 30% 30%, var(--gold), var(--orange-dark)); }
.vcard:nth-child(3) .vcard__avatar { background: radial-gradient(circle at 30% 30%, var(--orange-50), var(--orange)); }
.vcard__who strong {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.005em;
}
.vcard__who span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.vcard--feat .vcard__who span { color: rgba(255,255,255,.7); }

.voices__more {
  text-align: center;
  margin-top: 36px;
}
.voices__more a {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  padding-bottom: 4px;
}
.voices__more a:hover { color: var(--orange); border-color: var(--orange); }

.vcard__avatar {
    width: 55px;  
    height: 55px;
    border-radius: 50%; 
    overflow: hidden;    
    display: inline-block;
    border: 2px solid #ccc; 
}

.vcard__avatar img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;     
    display: block;
}

/* ───────── International ───────── */
.intl {
  padding: clamp(64px, 8vw, 120px) 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.intl::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(255,215,0,.3), transparent 60%);
  pointer-events: none;
}
.intl__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.intl__copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 16px 0;
  color: var(--white);
}
.intl__copy h2 em { font-style: normal; color: var(--orange); }
.intl__copy > p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  margin: 0 0 24px;
  max-width: 50ch;
}
.intl__list {
  list-style: none;
  padding: 0; margin: 0;
}
.intl__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: 15.5px;
}
.intl__list li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.intl__list span {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--blue);
  border-radius: 50%;
  font-weight: 700;
  font-size: 11px;
  flex-shrink: 0;
}

.intl__partners {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.intl__card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-m);
  padding: 22px 24px;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease;
}
.intl__card:hover { background: rgba(255,255,255,.14); transform: translateX(4px); }
.intl__card--soon { opacity: .8; border-style: dashed; }
.intl__flag {
  width: 60px; 
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: #fff;
  border-radius:12px;
}

.intl__flag img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.intl__card h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  margin: 0;
  color: var(--white);
  letter-spacing: -.01em;
}
.intl__card p {
  margin: 4px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,.75);
}
.intl__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .04em;
}

/* ───────── Campus ───────── */
.sec-head { max-width: 640px; }
.sec-head--center { margin: 0 auto; text-align: center; }
.sec-head__eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-50);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.sec-head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.sec-head h2 em {
  font-style: normal;
  color: var(--blue);
  position: relative;
  white-space: nowrap;
}
.sec-head h2 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  opacity: .35;
  border-radius: 4px;
  z-index: -1;
}
.sec-head p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--ink-soft);
  margin: 0;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--outline {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: var(--white);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}


.campus {
  padding: clamp(64px, 8vw, 120px) 0;
  background:
    radial-gradient(80% 60% at 100% 0%, var(--blue-50), transparent 60%),
    radial-gradient(70% 50% at 0% 100%, var(--orange-50), transparent 55%),
    var(--white);
}
.campus__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.campus .sec-head { margin-bottom: clamp(40px, 5vw, 56px); }

.gal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.gal__item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: linear-gradient(160deg, var(--blue), var(--blue-dark));
  box-shadow: var(--shadow-1);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  cursor: pointer;
  isolation: isolate;
}
.gal__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.gal__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  z-index: -2;
}
.gal__item:hover img { transform: scale(1.07); }
.gal__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(77,20,30,0) 30%,
    rgba(77,20,30,.15) 55%,
    rgba(77,20,30,.78) 100%
  );
  z-index: -1;
  transition: opacity .3s ease;
}
.gal__item:hover::after { opacity: .92; }
.gal__item--lg { grid-column: span 2; grid-row: span 2; }
.gal__item figcaption {
  position: absolute;
  left: 16px; bottom: 16px; right: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.gal__item figcaption::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,215,0,.25);
  flex: none;
}

.campus__cta { text-align: center; margin-top: 44px; }

/* ───────── FAQ ───────── */
.faq {
  padding: clamp(64px, 8vw, 120px) 0;
  background: var(--paper);
}
.faq__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] {
  border-color: var(--blue);
  box-shadow: var(--shadow-1);
}
.faq__item summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--blue);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  flex-shrink: 0;
}
.faq__item[open] .faq__plus {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}
.faq__body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.faq__body p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ───────── Final CTA ───────── */
.cta {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(255,255,255,.18), transparent 55%),
    radial-gradient(40% 60% at 0% 100%, rgba(77,20,30,.35), transparent 55%);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.cta__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  background: rgba(255,255,255,.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.cta__copy h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -.025em;
  margin: 0 0 14px;
  text-wrap: balance;
}
.cta__copy p {
  font-size: 17px;
  margin: 0 0 28px;
  opacity: .9;
}
.cta__row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta__row .btn--accent {
  background: var(--white);
  color: var(--blue);
}
.cta__row .btn--accent:hover { background: var(--blue-dark); color: var(--white); box-shadow: 0 16px 36px rgba(0,0,0,.25); }

.cta__count {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cta__count > div {
  text-align: center;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 18px 6px;
}
.cta__count span {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.025em;
}
.cta__count em {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 6px;
  display: block;
}

/* ───────── Footer ───────── */
.ftr {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
  padding: clamp(48px, 6vw, 80px) 0 24px;
}
.ftr__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.ftr__brand { max-width: 320px; }
.ftr__brand .hdr__mark { background: var(--orange); box-shadow: var(--shadow-orange); }
.ftr__brand .hdr__text strong { color: var(--white); }
.ftr__brand .hdr__text em { color: rgba(255,255,255,.6); }
.ftr__brand p {
  margin: 18px 0;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.ftr__socials {
  display: flex;
  gap: 10px;
}
.ftr__socials a {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.08);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: background .15s ease, transform .15s ease;
}
.ftr__socials a:hover { background: var(--orange); transform: translateY(-2px); }

.ftr__col h6 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}
.ftr__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr__col a, .ftr__col li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  transition: color .15s ease;
}
.ftr__col a:hover { color: var(--orange); }

.ftr__bottom {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 24px var(--pad) 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.ftr__bottom a { color: rgba(255,255,255,.7); margin: 0 4px; }
.ftr__bottom a:hover { color: var(--orange); }

/* ───────── Sticky mobile CTA ───────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 80;
  background: var(--orange);
  color: var(--blue);
  padding: 16px 24px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(212,179,0,.55);
}

/* ───────── Responsive ───────── */
@media (max-width: 1100px) {
  .util__right { gap: 14px; font-size: 12px; }
  .hdr__nav { display: none; }
  .hdr__burger { display: flex; margin-left: auto; }
  .hdr__cta .btn--outline { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__form { max-width: 560px; }
  .stats__inner { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid, .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .bridge { grid-template-columns: 1fr; }
  .outcomes__inner { grid-template-columns: 1fr; }
  .outcomes__media { max-width: 480px; margin: 0 auto; }
  .voices__grid { grid-template-columns: 1fr; }
  .intl__inner { grid-template-columns: 1fr; }
  .gal { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gal__item--lg { grid-column: span 2; }
  .cta__inner { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr 1fr; }
    .gal { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gal__item--lg { grid-column: span 2; }
}

@media (max-width: 720px) {
  .util { font-size: 11px; }
  .util__inner { flex-direction: column; align-items: flex-start; gap: 6px; padding: 8px var(--pad); }
  .util__right { gap: 12px; flex-wrap: wrap; }
  .util__right a:not(.util__brochure) { display: none; }
  .hero { padding-top: 32px; }
  .hero__copy h1 { font-size: clamp(36px, 8vw, 48px); }
  .hero__bullets { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 12px; }
  .stat-card__num { font-size: 36px; }
  .why__grid { grid-template-columns: 1fr; }
  .course-grid, .spec-grid { grid-template-columns: 1fr; }
  .outcomes__list { grid-template-columns: 1fr; }
  .outcomes__chip { width: 220px; left: -16px; bottom: -24px; }
  .outcomes__badge { right: -10px; top: -10px; padding: 14px 18px; }
  .outcomes__badge strong { font-size: 22px; }
  .gal { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal__item--lg { grid-column: span 2; }
  .cta__row { flex-direction: column; }
  .cta__row .btn { width: 100%; }
  .cta__count { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .cta__count > div { padding: 12px 4px; }
  .cta__count span { font-size: 28px; }
  .ftr__top { grid-template-columns: 1fr; gap: 28px; }
  .ftr__bottom { flex-direction: column; }
  .sticky-cta { display: block; }
  .prog__tabs { width: 100%; overflow-x: auto; }
  .ptab { padding: 10px 16px; font-size: 13px; }
    .gal { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gal__item--lg { grid-column: span 2; }
}

@media (max-width: 768px) {
    .hdr__logo img {width: 140px;}
    .trust__track img {margin: 0 25px;height: 65px;}
    .trust__label{font-size:24px} 
    .outcomes__inner {display: block;}
    .outcomes__media {margin-bottom: 20px;}


      }

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hdr__cta .btn--primary { padding: 10px 16px; font-size: 13px; }
  .hdr__mark { width: 38px; height: 38px; font-size: 14px; }
  .hdr__text strong { font-size: 16px; }
  .stats__inner { grid-template-columns: 1fr; }
  .gal { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gal__item--lg { grid-column: span 1; }
  .hdr__logo img {width: 120px;}
  .trust__track img {margin: 0 15px;height: 65px;}
   .outcomes__photo {padding-top: 75%;}
     .gal { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal__item--lg { grid-column: span 1; grid-row: span 1; }
}