/* ============================================================
   SAS-CCE - Master Stylesheet
   Brand: Victory Blue / Champion Navy / Energy Red / Athlete Sand
   Type: Inter (web fallback for Neue Haas Grotesk), Source Serif Pro (web fallback for Meta Serif Pro)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --victory-blue: #0344dc;
  --victory-blue-dark: #022da9;
  --champion-navy: #01203f;
  --champion-navy-2: #022b54;
  --energy-red: #ff1800;
  --athlete-sand: #cdccc8;
  --athlete-sand-light: #f4f3f0;
  --white: #ffffff;
  --ink: #0a1426;
  --grey-900: #1a2230;
  --grey-700: #3a4252;
  --grey-500: #6b7280;
  --grey-300: #d4d6dc;
  --grey-100: #f3f4f6;

  --font-sans: "Inter", "Neue Haas Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: "Source Serif Pro", "Meta Serif Pro", Georgia, serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(1, 32, 63, 0.06);
  --shadow-md: 0 8px 24px rgba(1, 32, 63, 0.08);
  --shadow-lg: 0 20px 60px rgba(1, 32, 63, 0.16);

  --container: 1240px;
  --header-h: 100px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--victory-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }

/* ---------- Type ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-sans); font-weight: 800; letter-spacing: -0.02em; color: var(--champion-navy); margin: 0 0 0.5em; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); line-height: 1.25; }
h4 { font-size: 1.125rem; line-height: 1.3; }
p  { margin: 0 0 1em; color: var(--grey-700); }
.lead { font-size: 1.25rem; color: var(--grey-700); line-height: 1.5; }
.eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--victory-blue); margin: 0 0 0.5em; }
.subtle { color: var(--grey-500); font-size: 0.95rem; }
.serif { font-family: var(--font-serif); font-style: italic; }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section--tight { padding: clamp(32px, 4vw, 56px) 0; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--grey-100);
  height: var(--header-h);
}
.header__inner { display: flex; align-items: center; gap: 20px; height: var(--header-h); flex-wrap: nowrap; padding: 0 12px; }
.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--champion-navy); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px;
}
.brand:hover { text-decoration: none; }
/* Header: oversized SAS emblem (per Joe - go bold with the logo). Footer: full Primary A logo. */
.brand__logo { height: 88px; width: 88px; display: block; flex-shrink: 0; }
.brand__name { display: block; line-height: 1.05; white-space: nowrap; }
.brand__name { font-size: 1.15rem; }
.brand__name small { display: block; font-weight: 500; color: var(--grey-500); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 3px; }
/* Hide the country subtitle in header — it's redundant with the country-switcher pill */
.brand__name small { display: none; }
@media (max-width: 768px) {
  /* Compact header on mobile: smaller logo + tighter header */
  .brand__logo { height: 56px; width: 56px; }
}
@media (max-width: 600px) {
  .brand__logo { height: 52px; width: 52px; }
  .brand__name { display: none; }
}
@media (max-width: 768px) {
  :root { --header-h: 80px; }
  .header__inner { gap: 10px; padding: 0 12px; }
  .nav { display: none; }  /* mobile: rely on menu-toggle */
  .country-switch { display: none; }
  .footer__brand-wrap img { height: 70px; }
}
/* Below 480px the portal-pill + wa-pill + menu-toggle don't all fit. Drop portal-pill
   here (it's in the menu-toggle drawer anyway). */
@media (max-width: 480px) {
  .header .portal-pill { display: none; }
  .wa-pill { font-size: 0.75rem; padding: 6px 10px; }
}
/* Hard cap: prevent any descendant from forcing horizontal scroll on mobile */
html, body { overflow-x: hidden; }
.footer__brand-wrap { display: flex; align-items: flex-start; gap: 12px; }
.footer__brand-wrap img { height: 110px; width: auto; margin-left: -8px; }
.footer__brand-wrap .footer__brand { display: none; }

/* =============================================
   ACCESSIBILITY - focus styles, skip-to-content, motion preference
   ============================================= */
*:focus-visible {
  outline: 3px solid #0344dc;
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, button:focus-visible, a.btn:focus-visible, .portal-pill:focus-visible {
  outline: 3px solid #ff1800;
  outline-offset: 3px;
}
.skip-link {
  position: absolute;
  top: -40px; left: 8px;
  background: var(--champion-navy); color: #fff;
  padding: 8px 14px; border-radius: 6px;
  text-decoration: none; font-weight: 700; font-size: 0.88rem;
  z-index: 1000;
  transition: top 0.15s;
}
.skip-link:focus { top: 8px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================
   BRAND WATERMARK - drop into any navy hero/panel.
   Adds the SAS cursive emblem as a giant translucent watermark bleeding off the right edge.
   ============================================= */
.has-emblem-watermark { position: relative; overflow: hidden; }
.has-emblem-watermark > * { position: relative; z-index: 1; }
.has-emblem-watermark::before {
  content: "";
  position: absolute;
  right: -18%;
  top: 50%;
  transform: translateY(-50%);
  width: 78%;
  height: 130%;
  background: url("../images/logos/sas-cce-emblem-blue.svg") no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.has-emblem-watermark--left::before { right: auto; left: -18%; }
.has-emblem-watermark--strong::before { opacity: 0.18; }
@media (max-width: 768px) {
  .has-emblem-watermark::before { width: 110%; right: -40%; opacity: 0.09; }
}
.nav a { white-space: nowrap; }
.country-switch { white-space: nowrap; flex-shrink: 0; }
.country-switch span[data-country-label] { white-space: nowrap; }
.wa-pill { flex-shrink: 0; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav a {
  color: var(--champion-navy); font-weight: 600; font-size: 0.95rem;
  padding: 8px 4px; border-bottom: 2px solid transparent; text-decoration: none;
}
.nav a:hover { border-bottom-color: var(--victory-blue); text-decoration: none; }
.nav a.is-active { border-bottom-color: var(--victory-blue); }

.country-switch {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--grey-300);
  background: #fff; font-size: 0.85rem; font-weight: 600; color: var(--champion-navy);
}
.country-switch:hover { border-color: var(--victory-blue); }
.country-switch__flag { width: 18px; height: 12px; border-radius: 2px; display: inline-block; }
.flag-lb { background: linear-gradient(to bottom, #ed1c24 28%, #fff 28% 72%, #ed1c24 72%); position: relative; }
.flag-lb::after { content: ""; position: absolute; left: 50%; top: 50%; width: 8px; height: 6px; background: #009543; transform: translate(-50%,-50%); border-radius: 1px; }
.flag-ae { background: linear-gradient(to bottom, #00732f 33%, #fff 33% 66%, #000 66%); position: relative; }
.flag-ae::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: #ff0000; }
.flag-sa { background: #006c35; position: relative; }
.flag-sa::after { content: "ـ"; position: absolute; inset: 0; color: #fff; font-size: 7px; display: grid; place-items: center; }

.wa-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 14px; border-radius: 999px; background: #25d366; color: #fff;
  font-size: 0.85rem; font-weight: 700; text-decoration: none;
  box-shadow: var(--shadow-sm);
}
.wa-pill:hover { background: #1eb858; text-decoration: none; color: #fff; }
.wa-pill svg { width: 16px; height: 16px; }

.menu-toggle { display: none; background: none; border: none; padding: 8px; color: var(--champion-navy); }
.menu-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .nav { display: none; position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; background: #fff; padding: 16px 24px; gap: 8px; align-items: stretch; border-bottom: 1px solid var(--grey-100); box-shadow: var(--shadow-md); }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; }
  .menu-toggle { display: block; margin-left: auto; }
  .country-switch, .wa-pill { font-size: 0.8rem; padding: 7px 10px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius); font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: 2px solid transparent; transition: all 0.15s ease;
  white-space: nowrap; line-height: 1;
}
.btn--primary { background: var(--victory-blue); color: #fff; border-color: var(--victory-blue); }
.btn--primary:hover { background: var(--victory-blue-dark); border-color: var(--victory-blue-dark); text-decoration: none; color: #fff; }
.btn--ghost { background: transparent; color: var(--champion-navy); border-color: var(--champion-navy); }
.btn--ghost:hover { background: var(--champion-navy); color: #fff; text-decoration: none; }
.btn--accent { background: var(--energy-red); color: #fff; border-color: var(--energy-red); }
.btn--accent:hover { background: #d11400; border-color: #d11400; text-decoration: none; color: #fff; }
.btn--on-dark { background: #fff; color: var(--champion-navy); border-color: #fff; }
.btn--on-dark:hover { background: var(--victory-blue); color: #fff; border-color: var(--victory-blue); text-decoration: none; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--full { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--champion-navy) 0%, var(--champion-navy-2) 55%, var(--victory-blue) 100%);
  color: #fff;
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(3, 68, 220, 0.4), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(255, 24, 0, 0.18), transparent 45%);
}
/* Photo hero variant: pass photo via inline style --hero-img */
.hero--photo {
  background:
    linear-gradient(115deg, rgba(1, 32, 63, 0.88) 0%, rgba(1, 32, 63, 0.72) 45%, rgba(3, 68, 220, 0.55) 100%),
    var(--hero-img) center / cover no-repeat;
}
.hero--photo::before {
  background:
    radial-gradient(circle at 75% 25%, rgba(3, 68, 220, 0.35), transparent 55%),
    radial-gradient(circle at 5% 95%, rgba(255, 24, 0, 0.15), transparent 50%);
}
/* Half-emblem watermark on every hero - sits on top of the photo overlay,
   under the text. Subtle (8% opacity) so it adds brand texture without competing. */
.hero::after {
  content: "";
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
  height: 150%;
  background: url("../images/logos/sas-cce-emblem-blue.svg") no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero::after { width: 110%; right: -40%; opacity: 0.06; }
}

.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: #fff; }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.2rem; max-width: 560px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__badges {
  display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 32px;
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
}
.hero__badges span { display: inline-flex; align-items: center; gap: 6px; }
.hero__badges svg { width: 16px; height: 16px; color: #6cf; }

/* ---------- Cards / Programs ---------- */
.card {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--grey-100);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex; flex-direction: column; height: 100%;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card__tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--victory-blue); margin-bottom: 8px; }
.card__title { font-size: 1.2rem; margin-bottom: 8px; color: var(--champion-navy); }
.card__desc { color: var(--grey-700); font-size: 0.95rem; flex: 1; }
.card__meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--grey-100); font-size: 0.85rem; color: var(--grey-500); }
.card__price { color: var(--champion-navy); font-weight: 700; font-size: 0.95rem; }
.card__arrow { margin-left: auto; color: var(--victory-blue); font-weight: 700; }

/* Program card with image */
.program-card { overflow: hidden; padding: 0; }
.program-card__img { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--victory-blue), var(--champion-navy)); position: relative; }
.program-card__img::after { content: ""; position: absolute; inset: 0; background: rgba(1, 32, 63, 0.15); }
.program-card__body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }

/* ---------- Country picker (homepage) ---------- */
.country-picker { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.country-tile {
  display: flex; flex-direction: column; gap: 8px;
  background: #fff; border: 2px solid var(--grey-100); border-radius: var(--radius-lg);
  padding: 28px; text-decoration: none; color: var(--champion-navy);
  transition: all 0.18s ease;
}
.country-tile:hover { border-color: var(--victory-blue); transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.country-tile__flag { width: 40px; height: 28px; border-radius: 4px; margin-bottom: 8px; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.country-tile__title { font-size: 1.3rem; font-weight: 800; margin: 0; color: var(--champion-navy); }
.country-tile__cred { font-size: 0.85rem; color: var(--grey-500); }
.country-tile__cta { margin-top: auto; color: var(--victory-blue); font-weight: 700; font-size: 0.9rem; }

/* ---------- Accreditation badge strip ---------- */
.acc-strip {
  display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  background: var(--athlete-sand-light); border-radius: var(--radius-lg); padding: 24px;
}
.acc-badge { display: flex; flex-direction: column; gap: 4px; }
.acc-badge__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-500); }
.acc-badge__value { font-weight: 700; color: var(--champion-navy); font-size: 1rem; }

/* ---------- Logo wall (placeholder) ---------- */
.logo-wall {
  display: grid; gap: 24px 32px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  align-items: center; justify-items: center;
}
.logo-wall__item {
  height: 60px; width: 100%; background: var(--grey-100); border-radius: var(--radius);
  display: grid; place-items: center; color: var(--grey-500); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
}
.logo-wall__item--img { background: transparent; padding: 8px; }
.logo-wall__item--img img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; filter: grayscale(1) brightness(0.6); transition: filter 0.2s; }
.logo-wall__item--img:hover img { filter: none; }
.instructor__avatar { overflow: hidden; }

/* ---------- Partner band (named anchor partner + coming soon) ---------- */
.partner-band {
  display: grid; grid-template-columns: 2fr 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--grey-200);
}
.partner-band__featured {
  background: var(--champion-navy); color: #fff;
  padding: clamp(24px, 3vw, 36px);
}
.partner-band__soon {
  background: var(--athlete-sand); color: var(--champion-navy);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 720px) {
  .partner-band { grid-template-columns: 1fr; }
}

/* ---------- Compare plans (course pages) ---------- */
.plans { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 24px; }
.plan {
  background: #fff; border: 2px solid var(--grey-100); border-radius: var(--radius-lg);
  padding: 28px; position: relative; display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--victory-blue); box-shadow: 0 12px 32px rgba(3, 68, 220, 0.15); }
.plan__badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--victory-blue); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 6px 12px; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase;
}
.plan__title { font-size: 1.1rem; font-weight: 800; margin: 0; color: var(--champion-navy); }
.plan__for { font-size: 0.85rem; color: var(--grey-500); margin: 4px 0 16px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan__price-amt { font-size: 2.25rem; font-weight: 800; color: var(--champion-navy); }
.plan__price-unit { font-size: 0.95rem; color: var(--grey-500); }
.plan__total { font-size: 0.85rem; color: var(--grey-500); margin-bottom: 20px; }
.plan__save { display: inline-block; background: var(--energy-red); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; margin-left: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.plan__features { list-style: none; padding: 0; margin: 0 0 24px; }
.plan__features li { padding: 8px 0 8px 24px; position: relative; font-size: 0.92rem; color: var(--grey-700); }
.plan__features li::before { content: "✓"; position: absolute; left: 0; color: var(--victory-blue); font-weight: 700; }

/* ---------- What's included icon grid ---------- */
.includes { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.include {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px; background: var(--athlete-sand-light); border-radius: var(--radius);
}
.include__icon {
  flex: 0 0 36px; height: 36px; border-radius: 8px;
  background: var(--victory-blue); color: #fff; display: grid; place-items: center;
}
.include__icon svg { width: 18px; height: 18px; }
.include__title { font-weight: 700; color: var(--champion-navy); font-size: 0.92rem; margin: 0 0 2px; }
.include__desc { font-size: 0.82rem; color: var(--grey-500); margin: 0; }

/* ---------- Career strip ---------- */
.career {
  background: linear-gradient(90deg, var(--energy-red) 0%, #c41200 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 24px 28px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.career__icon { font-size: 1.75rem; }
.career__text { flex: 1; min-width: 240px; }
.career__text strong { font-size: 1.05rem; font-weight: 800; }
.career__text small { display: block; opacity: 0.85; font-size: 0.78rem; margin-top: 2px; }

/* ---------- Instructor card ---------- */
.instructor {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--grey-100);
  box-shadow: 0 2px 8px rgba(1, 32, 63, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.instructor:hover { box-shadow: 0 8px 24px rgba(1, 32, 63, 0.10); transform: translateY(-2px); }
.instructor > div:last-child { width: 100%; }
.instructor__avatar {
  width: 140px; height: 140px; border-radius: 50%; background: var(--athlete-sand);
  flex: 0 0 140px; overflow: hidden;
  display: grid; place-items: center; color: var(--champion-navy); font-weight: 800; font-size: 1.9rem;
}
.instructor__avatar img {
  width: 100% !important; height: 100% !important;
  object-fit: cover; object-position: center 20%;
}
@media (max-width: 600px) {
  .instructor__avatar { width: 112px; height: 112px; flex: 0 0 112px; }
}
.instructor__name { font-weight: 800; color: var(--champion-navy); margin: 0 0 4px; font-size: 1.1rem; line-height: 1.25; }
.instructor__role { font-size: 0.88rem; color: var(--grey-500); margin: 0 0 12px; line-height: 1.35; }
.instructor__bio { font-size: 0.92rem; color: var(--grey-700); margin: 0; line-height: 1.55; }

/* ---------- Footer ---------- */
.footer {
  background: var(--champion-navy); color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}
.footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.footer a { color: rgba(255,255,255,0.75); font-size: 0.9rem; display: block; padding: 4px 0; }
.footer a:hover { color: #fff; text-decoration: none; }
.footer__grid { display: grid; gap: 32px; grid-template-columns: 1.4fr repeat(4, 1fr); }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand { color: #fff; font-weight: 800; font-size: 1.1rem; }
.footer__copy { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 12px; }
.form label { font-size: 0.85rem; font-weight: 600; color: var(--champion-navy); }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--grey-300); border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; background: #fff; color: var(--ink);
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--victory-blue); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-2 { gap: 16px; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.bg-sand { background: var(--athlete-sand-light); }
.bg-navy { background: var(--champion-navy); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,0.8); }

/* Section with a photo behind a heavy tint - keeps text readable */
.section--photo-light {
  background:
    linear-gradient(180deg, rgba(244,243,240,0.92) 0%, rgba(244,243,240,0.94) 100%),
    var(--section-img, none) center / cover no-repeat fixed;
}
.section--photo-dark {
  background:
    linear-gradient(115deg, rgba(1,32,63,0.88) 0%, rgba(1,32,63,0.78) 60%, rgba(3,68,220,0.62) 100%),
    var(--section-img, none) center / cover no-repeat;
  color: #fff;
}
.section--photo-dark h2,
.section--photo-dark h3,
.section--photo-dark .eyebrow { color: #fff; }
.section--photo-dark p,
.section--photo-dark .lead { color: rgba(255,255,255,0.85); }
.section--photo-dark .card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(6px); }
.section--photo-dark .card .card__title { color: #fff; }
.section--photo-dark .card .card__desc { color: rgba(255,255,255,0.78); }
.section--photo-dark .card .card__tag { color: #6cf; }

/* ============================================================
   LAUNCHPAD - country front-door (the new /)
   ============================================================ */
.launchpad {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--champion-navy);
  color: #fff;
}
.launchpad__top {
  padding: 40px clamp(28px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.launchpad__brand {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.15s;
}
.launchpad__brand:hover { opacity: 0.88; }
.launchpad__brand img { height: 120px; width: auto; }
.launchpad__brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.launchpad__brand-text strong { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.01em; }
.launchpad__brand-text small { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 10px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.launchpad__top-links { display: flex; gap: 36px; align-items: center; font-size: 1rem; }
.launchpad__top-links a { color: rgba(255,255,255,0.78); transition: color 0.15s; }
.launchpad__top-links a:hover { color: #fff; text-decoration: none; }

.launchpad__hero {
  padding: clamp(40px, 7vw, 80px) clamp(20px, 4vw, 48px) clamp(24px, 4vw, 40px);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
/* Half-emblem watermark on the launchpad - sits behind the hero text */
.launchpad { position: relative; overflow: hidden; }
.launchpad::before {
  content: "";
  position: absolute;
  right: -32%;
  top: 50%;
  transform: translateY(-50%);
  width: 65%;
  height: 90%;
  background: url("../images/logos/sas-cce-emblem-blue.svg") no-repeat center center;
  background-size: contain;
  filter: brightness(0) invert(1);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}
/* Second watermark removed - Joe explicitly wants ONE watermark only (right side, half off). */
.launchpad__top, .launchpad__tiles, .launchpad__socials, .launchpad__bottom { position: relative; z-index: 2; }
.launchpad__hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: 0 0 12px;
}
.launchpad__hero p {
  color: rgba(255,255,255,0.75);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.launchpad__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6cf;
  background: rgba(108, 204, 255, 0.08);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(108, 204, 255, 0.25);
  margin-bottom: 20px;
}

.launchpad__tiles {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: transparent;
  margin: clamp(20px, 3vw, 40px) clamp(20px, 4vw, 48px) clamp(24px, 4vw, 48px);
  border-radius: 16px;
  overflow: hidden;
  min-height: 480px;
}
.launchpad-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3vw, 40px);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.4s, box-shadow 0.4s;
  overflow: hidden;
  min-height: 440px;
}
.launchpad-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(1,32,63,0.0) 0%, rgba(1,32,63,0.0) 35%, rgba(1,32,63,0.55) 65%, rgba(1,32,63,0.96) 100%);
  transition: background 0.4s;
}
.launchpad-tile:hover::before {
  background: linear-gradient(180deg, rgba(3,68,220,0.10) 0%, rgba(1,32,63,0.20) 35%, rgba(1,32,63,0.60) 65%, rgba(1,32,63,0.97) 100%);
}
.launchpad-tile:hover { text-decoration: none; }
.launchpad-tile > * { position: relative; z-index: 1; }
.launchpad-tile__flag {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
  display: inline-block;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.45));
}

/* OS-rendered flag emoji in the upper-left corner of each country tile.
   Uses the system's accurate national flag rendering (proper Saudi shahada,
   real UAE proportions, real Lebanese cedar). Skew + shadow gives it
   subtle "fabric" presence in the corner. */
.launchpad-tile__flag-corner {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 64px;
  line-height: 1;
  z-index: 3;
  pointer-events: none;
  transform: skewX(-4deg) skewY(1deg);
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.55));
}
@media (max-width: 880px) {
  .launchpad-tile__flag-corner { font-size: 52px; top: 12px; left: 14px; }
}
.launchpad-tile__country {
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
}
.launchpad-tile__cred {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 6px;
  font-weight: 600;
}
.launchpad-tile__currency {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.launchpad-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--champion-navy);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  width: max-content;
  transition: background 0.2s;
}
.launchpad-tile:hover .launchpad-tile__cta {
  background: var(--energy-red);
  color: #fff;
}
.launchpad-tile__cta::after { content: "→"; font-size: 1.1em; }

.launchpad__bottom {
  padding: 20px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
}
.launchpad__bottom a { color: rgba(255,255,255,0.7); margin-left: 16px; }
.launchpad__bottom a:hover { color: #fff; text-decoration: none; }

@media (max-width: 900px) {
  .launchpad__tiles { grid-template-columns: 1fr; min-height: auto; }
  .launchpad-tile { min-height: 320px; }
}
@media (max-width: 640px) {
  .launchpad__top { flex-wrap: wrap; gap: 14px; padding: 18px 20px; }
  .launchpad__brand { gap: 12px; }
  .launchpad__brand img { height: 52px; }
  .launchpad__brand-text strong { font-size: 1rem; }
  .launchpad__brand-text small { font-size: 0.66rem; margin-top: 5px; }
  .launchpad__top-links { gap: 16px; font-size: 0.85rem; width: 100%; justify-content: flex-end; flex-wrap: wrap; }
  .launchpad__bottom { font-size: 0.72rem; padding: 14px 18px; }
  .launchpad__bottom a { margin-left: 10px; }
}

/* ============================================================
   LOGO WALL - uniform monochrome treatment
   ============================================================ */
.cred-strip { padding: clamp(28px, 4vw, 48px) 0; background: var(--athlete-sand-light); border-block: 1px solid #e4e3df; }
.cred-strip__label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 700;
  margin: 0 0 20px;
}
.cred-strip__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.cred-strip__item {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}
.cred-strip__item:hover { opacity: 1; filter: grayscale(0%); }
.cred-strip__item img { height: 100%; width: auto; object-fit: contain; max-width: 160px; }
.cred-strip__item--text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--champion-navy);
}

/* ============================================================
   EARLY-REG BANNER + DISCOUNT ELIGIBILITY
   ============================================================ */
.earlybird {
  background: linear-gradient(135deg, var(--energy-red), #ff4a2a);
  color: #fff;
  padding: 18px 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 24px;
  flex-wrap: wrap;
  box-shadow: 0 8px 24px rgba(255,24,0,0.20);
}
.earlybird__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.earlybird__body {
  flex: 1;
  min-width: 220px;
}
.earlybird__title {
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 2px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.earlybird__title span { font-weight: 800; }
.earlybird__sub {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
}
.earlybird__price {
  font-weight: 800;
  font-size: 1.4rem;
  background: rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 8px;
  white-space: nowrap;
}
/* Toggle: add .earlybird--off to body or section to hide */
.earlybird--off { display: none !important; }

.discount-table {
  background: var(--athlete-sand-light);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e4e3df;
  margin-top: 32px;
}
.discount-table h3 {
  margin: 0;
  padding: 18px 24px;
  background: var(--champion-navy);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.discount-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.discount-table td {
  padding: 12px 24px;
  border-bottom: 1px solid #e4e3df;
  vertical-align: top;
}
.discount-table tr:last-child td { border-bottom: none; }
.discount-table .who {
  font-weight: 700;
  color: var(--champion-navy);
  width: 38%;
}
.discount-table .price {
  font-weight: 800;
  color: var(--victory-blue);
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.discount-table .price--active {
  color: var(--energy-red);
}
.discount-table .price--active::before {
  content: "● ";
  font-size: 0.8em;
}
.discount-table .save {
  font-size: 0.82rem;
  color: var(--grey-500);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.testimonial {
  background: #fff;
  border-radius: 12px;
  padding: 28px 26px;
  border: 1px solid #e4e3df;
  box-shadow: 0 4px 16px rgba(1,32,63,0.05);
  display: flex;
  flex-direction: column;
}
.testimonial__mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--victory-blue);
  margin: 0 0 12px;
  height: 18px;
}
.testimonial__quote {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 24px;
  flex: 1;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0eee9;
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--athlete-sand-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  color: var(--champion-navy);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testimonial__name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--champion-navy);
  margin: 0;
}
.testimonial__role {
  font-size: 0.82rem;
  color: var(--grey-500);
  margin: 2px 0 0;
}
.testimonial--featured { background: var(--champion-navy); color: #fff; border-color: transparent; }
.testimonial--featured .testimonial__mark { color: #6cf; }
.testimonial--featured .testimonial__quote { color: rgba(255,255,255,0.92); }
.testimonial--featured .testimonial__author { border-color: rgba(255,255,255,0.12); }
.testimonial--featured .testimonial__name { color: #fff; }
.testimonial--featured .testimonial__role { color: rgba(255,255,255,0.6); }
.testimonial--featured .testimonial__avatar { background: rgba(255,255,255,0.12); color: #fff; }

.text-center { text-align: center; }
.text-center > * { margin-left: auto; margin-right: auto; }
@media (max-width: 640px) {
  .earlybird { padding: 14px 18px; }
  .earlybird__price { font-size: 1.1rem; }
  .discount-table td { padding: 10px 14px; font-size: 0.85rem; }
}

/* ----- FAQ accordion ----- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid #e4e3df;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item[open] { border-color: var(--victory-blue); box-shadow: 0 8px 22px rgba(3,68,220,0.08); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--champion-navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--victory-blue);
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(3,68,220,0.08);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item__body {
  padding: 0 22px 20px;
  color: var(--grey-500);
  font-size: 0.95rem;
  line-height: 1.6;
}
.faq-item__body a { color: var(--victory-blue); font-weight: 600; }

/* ----- Breadcrumb ----- */
.breadcrumb {
  padding: 18px 0 0;
  font-size: 0.85rem;
  color: var(--grey-500);
}
.breadcrumb__list { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; list-style: none; padding: 0; margin: 0; }
.breadcrumb__list li { display: flex; align-items: center; gap: 6px; }
.breadcrumb__list li + li::before { content: "›"; color: var(--grey-300, #c5c4bf); margin-right: 4px; }
.breadcrumb__list a { color: var(--grey-500); text-decoration: none; }
.breadcrumb__list a:hover { color: var(--victory-blue); text-decoration: underline; }
.breadcrumb__list [aria-current="page"] { color: var(--champion-navy); font-weight: 600; }

/* ----- Cookie banner ----- */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--champion-navy);
  color: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 16px 40px rgba(1,32,63,0.32);
  z-index: 200;
  display: none;
  font-size: 0.9rem;
  line-height: 1.5;
}
.cookie-banner.is-visible { display: block; animation: cookie-rise .25s ease; }
.cookie-banner__title { font-weight: 700; margin: 0 0 6px; font-size: 0.95rem; }
.cookie-banner__body { margin: 0 0 12px; color: rgba(255,255,255,0.78); }
.cookie-banner__body a { color: #6cf; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__btn {
  background: var(--victory-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.cookie-banner__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
}
.cookie-banner__btn:hover { opacity: 0.92; }
@keyframes cookie-rise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (max-width: 480px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 14px 16px; }
}

/* ---------- Footer socials ---------- */
.footer__socials {
  margin-top: 32px; margin-bottom: 28px; padding-top: 24px; padding-bottom: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.footer__socials-label {
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-right: 6px;
}
.footer__social-link {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start;
  gap: 9px;
  color: rgba(255,255,255,0.92); text-decoration: none;
  padding: 9px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-size: 0.85rem; font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  transition: background 0.18s, border-color 0.18s, transform 0.18s;
}
.footer__social-link:hover {
  background: var(--victory-blue);
  border-color: var(--victory-blue);
  transform: translateY(-1px);
}
.footer__social-link svg { width: 16px; height: 16px; flex-shrink: 0; display: block; vertical-align: middle; }
.launchpad__socials {
  margin-top: 32px; margin-bottom: 64px; display: flex; gap: 12px; align-items: center; justify-content: center;
}
.launchpad__socials a {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.86rem; font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.launchpad__socials a:hover { background: rgba(255,255,255,0.14); }
.launchpad__socials svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- Student portal login pill (in header + launchpad nav) ---------- */
.portal-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem; font-weight: 600;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.portal-pill:hover {
  background: var(--white);
  color: var(--champion-navy);
  border-color: var(--white);
  text-decoration: none;
}
.portal-pill svg { width: 14px; height: 14px; }

/* When portal pill sits inside the white header (.header) on internal pages, invert for contrast */
.header .portal-pill {
  color: var(--champion-navy);
  border-color: rgba(1,32,63,0.18);
}
.header .portal-pill:hover {
  background: var(--champion-navy);
  color: var(--white);
  border-color: var(--champion-navy);
}

@media (max-width: 720px) {
  .portal-pill { padding: 7px 11px; font-size: 0.78rem; }
}

/* ----- Job Connect block (Lebanon, replaces acc-strip) ----- */
.job-connect {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 24px 32px;
  box-shadow: 0 6px 20px rgba(1, 32, 63, 0.08);
  border: 1px solid rgba(1, 32, 63, 0.08);
}
.job-connect__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f9ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.job-connect__body { min-width: 0; }
.job-connect__title {
  margin: 4px 0 8px;
  font-size: 1.45rem;
  color: var(--champion-navy);
  font-weight: 700;
  line-height: 1.2;
}
.job-connect__desc {
  margin: 0;
  color: #475569;
  line-height: 1.5;
  font-size: 0.96rem;
}
.job-connect__desc strong { color: var(--champion-navy); }
.job-connect__perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
}
.job-connect__perks li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--champion-navy);
  font-size: 0.92rem;
  font-weight: 500;
}
.job-connect__perk-tick {
  color: #25D366;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .job-connect {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 22px 24px;
  }
  .job-connect__perks { min-width: 0; }
}

/* =============================================
   DESIGN SYSTEM: Best Seller, Discount, View
   Brand tokens (no NASM/Enhance crossover).
   ============================================= */
:root {
  --best-seller: var(--victory-blue);        /* blue for best-seller framing */
  --best-seller-tint: rgba(3, 68, 220, 0.12);
  --best-seller-dark: var(--victory-blue-dark);
  --discount-red: var(--energy-red);         /* red ONLY for savings/discounts */
  --discount-red-tint: #fee4e0;
  --view-link: var(--champion-navy);
}

/* "Best seller" highlight on program/plan cards */
.plan--featured,
.program-card--bestseller {
  border: 2px solid var(--best-seller) !important;
  position: relative;
}
.plan--featured .plan__badge,
.program-card--bestseller .card__tag--bestseller {
  background: var(--best-seller) !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
}
.program-card--bestseller .card__tag--bestseller {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

/* Saving/discount badges always red */
.savings-pill,
.plan__save,
.discount-badge {
  background: var(--discount-red-tint);
  color: var(--discount-red);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}

/* Save-amount text on red backgrounds — keep WHITE for legibility */
.earlybird .earlybird__title,
.earlybird .earlybird__title span,
.earlybird .earlybird__sub,
.earlybird .earlybird__sub strong { color: #fff; }
.earlybird .earlybird__title span {
  background: rgba(255,255,255,0.18);
  padding: 2px 10px;
  border-radius: 999px;
  font-weight: 800;
}

/* Make .program-card the whole-card clickable surface */
.program-card { position: relative; }
.program-card .card__arrow a {
  position: relative;
  z-index: 2;
}
.program-card__link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.program-card__link-overlay:focus { outline: 3px solid var(--victory-blue); outline-offset: 4px; }
.program-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(1,32,63,0.12); transition: transform 0.2s ease, box-shadow 0.2s ease; }

/* ---------- Launchpad hero with photo backdrop ---------- */
.launchpad__hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}
/* Hero card on solid navy with emblem watermark behind it */
.launchpad__hero--photo {
  color: #fff;
  padding: 80px 50px;
}
.launchpad__hero--photo h1,
.launchpad__hero--photo p { color: #fff; }
.launchpad__hero--photo .launchpad__eyebrow {
  background: rgba(255,255,255,0.18);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 18px;
}
.launchpad > * { position: relative; z-index: 1; }
.launchpad__hero-ctas {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap;
}
.launchpad__hero-or {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}

/* =============================================
   ACCREDITATION + PARTNERS strips
   ============================================= */
.accreditation-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: var(--athlete-sand-light);
  border-radius: var(--radius-lg);
  margin: 32px 0;
}
.accreditation-strip__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.accreditation-strip__logo {
  height: 84px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: none;
  opacity: 0.95;
}
.accreditation-strip__label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
}
@media (max-width: 720px) {
  .accreditation-strip__logo { height: 62px; }
  .accreditation-strip { gap: 18px; padding: 22px 16px; }
}

/* Partners block (PF + Young Talents kind of section) */
.partners-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.partner-card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.partner-card:hover { box-shadow: 0 12px 28px rgba(1,32,63,0.08); transform: translateY(-2px); }
.partner-card__tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey-500); margin: 0 0 6px;
}
.partner-card__title {
  font-size: 1.15rem; font-weight: 800;
  color: var(--champion-navy); margin: 0 0 8px;
}
.partner-card__desc {
  font-size: 0.94rem; color: var(--grey-700); line-height: 1.5; margin: 0 0 12px;
}
.partner-card__link {
  font-weight: 700; color: var(--victory-blue); font-size: 0.92rem;
}

/* Featured partner (PF) variant: spans full width, has photos + perk pills */
.partner-card--featured {
  grid-column: 1 / -1;
  padding: 28px;
  background: linear-gradient(180deg, #fff 0%, #f8fafd 100%);
  border-color: rgba(3, 68, 220, 0.18);
}
.partner-card__head {
  display: flex; align-items: center; gap: 18px; margin-bottom: 14px; flex-wrap: wrap;
}
.partner-card__head img {
  height: 64px; width: auto; max-width: 200px; object-fit: contain;
}
.partner-card__head h3 { margin: 0; font-size: 1.4rem; }
.partner-card__photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 18px 0 20px;
}
.partner-card__photos img {
  width: 100%; height: 150px; object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.partner-card__perks {
  list-style: none; padding: 0; margin: 16px 0 18px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px 18px;
}
.partner-card__perks li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.95rem; color: var(--grey-700); line-height: 1.45;
}
.partner-card__perks li strong { color: var(--champion-navy); }
.partner-card__perks svg {
  flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px;
  color: var(--victory-blue);
}
.partner-card__cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}

/* Discount-eligibility block (used on PT diploma page below pricing) */
.discount-eligibility { margin-top: 64px; }
.discount-eligibility .eyebrow { margin-top: 0; }
.discount-eligibility h3 { font-size: 1.6rem; margin-bottom: 12px; color: var(--champion-navy); }
.discount-eligibility__lead { max-width: 720px; color: var(--grey-700); margin-bottom: 24px; }

.discount-card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.discount-card:hover { box-shadow: 0 12px 28px rgba(1,32,63,0.08); transform: translateY(-2px); }
.discount-card__tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey-500); margin: 0;
}
.discount-card__title {
  font-size: 1.05rem; font-weight: 800;
  color: var(--champion-navy); margin: 0;
}
.discount-card__prices {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  background: var(--athlete-sand-50, #f3f1ec);
  border-radius: var(--radius-md); padding: 12px 14px; margin: 4px 0 8px;
}
.discount-card__price-row { display: flex; flex-direction: column; }
.discount-card__price-label {
  font-size: 0.72rem; font-weight: 600; color: var(--grey-600);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.discount-card__price-amt {
  font-size: 1.2rem; font-weight: 800; color: var(--victory-blue);
  line-height: 1.1; margin-top: 2px;
}
.discount-card__desc { font-size: 0.92rem; color: var(--grey-700); margin: 0; line-height: 1.5; }

.discount-note {
  background: var(--discount-red-tint, #fff5f3);
  border-left: 4px solid var(--discount-red, #ff1800);
  padding: 14px 18px; border-radius: var(--radius-md);
  margin-top: 24px; font-size: 0.95rem; line-height: 1.55;
  color: var(--champion-navy);
}
.discount-note strong { color: var(--discount-red, #ff1800); }

/* Internship-hours callout used on program pages */
.internship-card {
  background: #fff;
  border: 1px solid var(--grey-100);
  border-left: 4px solid var(--victory-blue);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin: 28px 0;
}
.internship-card__eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--victory-blue); margin: 0 0 6px;
}
.internship-card h3 { margin: 0 0 10px; font-size: 1.15rem; color: var(--champion-navy); }
.internship-card p { margin: 0 0 10px; color: var(--grey-700); font-size: 0.95rem; line-height: 1.55; }
.internship-card__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px; margin-top: 14px;
}
.internship-card__stat {
  background: var(--athlete-sand-50, #f3f1ec);
  border-radius: var(--radius-md); padding: 12px 14px;
}
.internship-card__stat strong {
  display: block; font-size: 1.4rem; color: var(--champion-navy);
  font-weight: 800; line-height: 1.1; margin-bottom: 4px;
}
.internship-card__stat span { font-size: 0.85rem; color: var(--grey-600); }
