/* ============================================================
   PAGE SECTIONS — INTERNSHIPS.HTML
   ============================================================ */

/* ============================================================
   I1 · INTERNSHIPS — PAGE HERO
   ============================================================ */

/* ── Section shell ───────────────────────────────────────── */

.intern-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* ── Dot grid overlay ────────────────────────────────────── */

.intern-hero__dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(10, 22, 40, 0.1) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* ── Inner layout ────────────────────────────────────────── */

.intern-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ── Breadcrumb navy variant ─────────────────────────────── */

.breadcrumb--navy {
  width: 100%;
  display: flex;
  justify-content: center;
}

.breadcrumb__link--navy {
  color: rgba(10, 22, 40, 0.6);
  transition: color var(--transition-fast);
}

.breadcrumb__link--navy:hover {
  color: var(--color-navy);
}

.breadcrumb__sep--navy {
  color: rgba(10, 22, 40, 0.3);
}

.breadcrumb__current--navy {
  color: rgba(10, 22, 40, 0.5);
}

/* ── Hero content block ──────────────────────────────────── */

.intern-hero__content {
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.intern-hero__content .tag-pill--inverted {
  margin-bottom: 20px;
}

/* ── H1 heading ──────────────────────────────────────────── */

.intern-hero__heading {
  font-size: clamp(34px, 4.8vw, 68px);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* ── Subheading ──────────────────────────────────────────── */

.intern-hero__subheading {
  font-size: clamp(15px, 1.4vw, 18px);
  color: rgba(10, 22, 40, 0.68);
  line-height: 1.75;
  max-width: 58ch;
  margin: 0 auto 32px;
}

/* ── CTA buttons ─────────────────────────────────────────── */

.intern-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Primary button — navy fill */
.intern-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-body);
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-navy);
  background-color: var(--color-navy);
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.intern-hero__btn-primary:hover {
  background-color: #0d1f3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.3);
}

/* Ghost button — navy outline */
.intern-hero__btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--fs-body);
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(10, 22, 40, 0.35);
  background-color: transparent;
  color: var(--color-navy);
  text-decoration: none;
  white-space: nowrap;
  min-height: 52px;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast),
              transform var(--transition-fast);
}

.intern-hero__btn-ghost:hover {
  background-color: rgba(10, 22, 40, 0.1);
  border-color: var(--color-navy);
  transform: translateY(-2px);
}

.intern-hero__btn-ghost i {
  font-size: 13px;
  transition: transform var(--transition-fast);
}

.intern-hero__btn-ghost:hover i {
  transform: translateY(3px);
}

/* ── Stat pills row ──────────────────────────────────────── */

.intern-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Individual stat pill */
.intern-hero__stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(10, 22, 40, 0.08);
  border: 1px solid rgba(10, 22, 40, 0.16);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  transition: background-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
  cursor: default;
}

.intern-hero__stat-pill:hover {
  background-color: rgba(10, 22, 40, 0.14);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.15);
}

/* Stat pill icon */
.intern-hero__stat-pill-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(10, 22, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition-base);
}

.intern-hero__stat-pill-icon i {
  font-size: 15px;
  color: var(--color-navy);
}

.intern-hero__stat-pill:hover .intern-hero__stat-pill-icon {
  background-color: rgba(10, 22, 40, 0.2);
}

/* Stat pill text */
.intern-hero__stat-pill-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.intern-hero__stat-pill-text strong {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-navy);
  line-height: 1.2;
}

.intern-hero__stat-pill-text span {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(10, 22, 40, 0.6);
  line-height: 1.3;
}

/* ── Marquee strip ───────────────────────────────────────── */

.intern-hero__marquee {
  width: 100%;
  overflow: hidden;
  background-color: rgba(10, 22, 40, 0.08);
  border-top: 1px solid rgba(10, 22, 40, 0.12);
  border-bottom: 1px solid rgba(10, 22, 40, 0.12);
  padding: 12px 0;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.intern-hero__marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}

.intern-hero__marquee-track span {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(10, 22, 40, 0.55);
}

.intern-hero__marquee-dot {
  color: var(--color-navy) !important;
  opacity: 0.3;
  font-size: 8px !important;
}

/* ── Bottom wave ─────────────────────────────────────────── */

.intern-hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  pointer-events: none;
  z-index: 1;
}

.intern-hero__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ── Decorative floating nodes ───────────────────────────── */

.intern-hero__nodes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.intern-hero__node {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(10, 22, 40, 0.1);
  animation: floatUp 8s ease-in-out infinite;
}

.intern-hero__node--1 {
  width: 120px; height: 120px;
  top: 8%;  left: -2%;
  animation-duration: 10s;
  animation-delay: 0s;
}
.intern-hero__node--2 {
  width: 64px;  height: 64px;
  top: 70%; left: 3%;
  animation-duration: 12s;
  animation-delay: 1.5s;
}
.intern-hero__node--3 {
  width: 96px;  height: 96px;
  top: 12%; right: -1%;
  animation-duration: 9s;
  animation-delay: 0.6s;
}
.intern-hero__node--4 {
  width: 48px;  height: 48px;
  top: 75%; right: 4%;
  animation-duration: 11s;
  animation-delay: 2s;
}
.intern-hero__node--5 {
  width: 32px;  height: 32px;
  top: 40%; left: 6%;
  animation-duration: 14s;
  animation-delay: 3s;
}
.intern-hero__node--6 {
  width: 20px;  height: 20px;
  top: 30%; right: 8%;
  animation-duration: 8s;
  animation-delay: 4s;
}

/* ── Stagger delays ──────────────────────────────────────── */

.intern-hero__inner > .breadcrumb.fade-in-up    { transition-delay: 0.05s; }
.intern-hero__content .fade-in-up:nth-child(1)  { transition-delay: 0.10s; }
.intern-hero__content .fade-in-up:nth-child(2)  { transition-delay: 0.18s; }
.intern-hero__content .fade-in-up:nth-child(3)  { transition-delay: 0.26s; }
.intern-hero__content .fade-in-up:nth-child(4)  { transition-delay: 0.34s; }
.intern-hero__content .fade-in-up:nth-child(5)  { transition-delay: 0.42s; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .intern-hero {
    min-height: 90vh;
  }
}

@media (max-width: 768px) {
  .intern-hero {
    min-height: auto;
    padding: 80px 0 80px;
  }

  .intern-hero__heading br {
    display: none;
  }

  .intern-hero__subheading {
    font-size: 15px;
    max-width: none;
  }

  .intern-hero__ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    width: 100%;
  }

  .intern-hero__btn-primary,
  .intern-hero__btn-ghost {
    justify-content: center;
  }

  .intern-hero__stats {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    width: 100%;
    gap: 10px;
  }

  .intern-hero__stat-pill {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .intern-hero {
    padding: 72px 0 72px;
  }

  .intern-hero__stat-pill {
    padding: 10px 14px;
  }

  .intern-hero__stat-pill-icon {
    width: 32px;
    height: 32px;
  }

  .intern-hero__stat-pill-icon i {
    font-size: 13px;
  }
}

/* ============================================================
   I2 · INTERNSHIPS — PROGRAMME OVERVIEW
   ============================================================ */

/* ── Section inner — 2-column layout ────────────────────── */

.prog-overview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: var(--space-xl);
}

/* ── Left column ─────────────────────────────────────────── */

.prog-overview__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prog-overview__content .tag-pill {
  align-self: flex-start;
  margin-bottom: 20px;
}

/* ── Heading ─────────────────────────────────────────────── */

.prog-overview__heading {
  color: var(--color-dark-text);
  margin-bottom: 24px;
  line-height: 1.15;
}

/* ── Body paragraphs ─────────────────────────────────────── */

.prog-overview__body {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--color-muted-light);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 58ch;
}

.prog-overview__body:last-of-type {
  margin-bottom: 28px;
}

/* ── Key facts grid ──────────────────────────────────────── */

.prog-overview__facts {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--color-teal);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.05);
  gap: 0;
  flex-wrap: wrap;
}

/* Individual fact item */
.prog-fact {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1px;
  min-width: 80px;
  padding: 4px 8px;
}

/* Value + unit row */
.prog-fact__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--color-teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.prog-fact__unit {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  line-height: 1.2;
}

.prog-fact__label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted-light);
  line-height: 1.3;
  margin-top: 2px;
}

/* Vertical dividers between facts */
.prog-fact__sep {
  width: 1px;
  height: 40px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 201, 167, 0.3),
    transparent
  );
  flex-shrink: 0;
}

/* ── Nudge / info strip ──────────────────────────────────── */

.prog-overview__nudge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: rgba(0, 201, 167, 0.06);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.prog-overview__nudge i {
  color: var(--color-teal);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.prog-overview__nudge p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted-light);
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* ── Right column — benefit cards grid ───────────────────── */

.prog-overview__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ── Benefit card ────────────────────────────────────────── */

.benefit-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 24px 20px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.07);
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(10, 22, 40, 0.1);
  border-color: var(--color-teal);
}

/* Top accent line on hover */
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

/* ── Icon wrapper — colour variants ─────────────────────── */

.benefit-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background-color: var(--color-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background-color var(--transition-base),
              transform var(--transition-base);
}

.benefit-card:hover .benefit-card__icon-wrap {
  transform: scale(1.08) rotate(-4deg);
}

.benefit-card__icon-wrap--blue {
  background-color: rgba(21, 101, 200, 0.1);
}

.benefit-card__icon-wrap--green {
  background-color: rgba(5, 150, 105, 0.1);
}

.benefit-card__icon-wrap--orange {
  background-color: rgba(217, 119, 6, 0.1);
}

/* Icon colours */
.benefit-card__icon {
  font-size: 20px;
  color: var(--color-teal);
  transition: color var(--transition-base);
}

.benefit-card:hover .benefit-card__icon-wrap:not(.benefit-card__icon-wrap--blue):not(.benefit-card__icon-wrap--green):not(.benefit-card__icon-wrap--orange) {
  background-color: var(--color-teal);
}

.benefit-card:hover .benefit-card__icon {
  color: var(--color-navy);
}

.benefit-card__icon--blue  { color: var(--color-blue); }
.benefit-card__icon--green { color: #059669; }
.benefit-card__icon--orange{ color: #D97706; }

.benefit-card:hover .benefit-card__icon-wrap--blue {
  background-color: var(--color-blue);
}
.benefit-card:hover .benefit-card__icon--blue {
  color: var(--color-white);
}

.benefit-card:hover .benefit-card__icon-wrap--green {
  background-color: #059669;
}
.benefit-card:hover .benefit-card__icon--green {
  color: var(--color-white);
}

.benefit-card:hover .benefit-card__icon-wrap--orange {
  background-color: #D97706;
}
.benefit-card:hover .benefit-card__icon--orange {
  color: var(--color-white);
}

/* ── Card body ───────────────────────────────────────────── */

.benefit-card__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

/* Card title */
.benefit-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--color-dark-text);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.benefit-card:hover .benefit-card__title {
  color: var(--color-navy);
}

/* Card description */
.benefit-card__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted-light);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 14px;
  max-width: none;
}

/* Card tag */
.benefit-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-top: auto;
}

.benefit-card__tag i {
  font-size: 10px;
}

/* ── Inclusion statement strip ───────────────────────────── */

.prog-overview__inclusion {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--color-navy);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  flex-wrap: wrap;
}

/* Icon circle */
.prog-overview__inclusion-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(0, 201, 167, 0.12);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: infoPulse 3s ease-in-out infinite;
}

.prog-overview__inclusion-icon i {
  font-size: 18px;
  color: var(--color-teal);
}

/* Text */
.prog-overview__inclusion-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  min-width: 220px;
}

.prog-overview__inclusion-text strong {
  color: var(--color-white);
  font-weight: 500;
  margin-right: 4px;
}

/* CTA */
.prog-overview__inclusion-cta {
  flex-shrink: 0;
}

/* ── Stagger delays ──────────────────────────────────────── */

.prog-overview__content .fade-in-up:nth-child(1) { transition-delay: 0.05s; }
.prog-overview__content .fade-in-up:nth-child(2) { transition-delay: 0.12s; }
.prog-overview__content .fade-in-up:nth-child(3) { transition-delay: 0.18s; }
.prog-overview__content .fade-in-up:nth-child(4) { transition-delay: 0.24s; }
.prog-overview__content .fade-in-up:nth-child(5) { transition-delay: 0.30s; }
.prog-overview__content .fade-in-up:nth-child(6) { transition-delay: 0.36s; }
.prog-overview__content .fade-in-up:nth-child(7) { transition-delay: 0.42s; }
.prog-overview__cards .benefit-card:nth-child(1)  { transition-delay: 0.10s; }
.prog-overview__cards .benefit-card:nth-child(2)  { transition-delay: 0.18s; }
.prog-overview__cards .benefit-card:nth-child(3)  { transition-delay: 0.26s; }
.prog-overview__cards .benefit-card:nth-child(4)  { transition-delay: 0.34s; }
.prog-overview__inclusion.fade-in-up              { transition-delay: 0.28s; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .prog-overview__inner {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .prog-overview__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: var(--space-lg);
  }

  .prog-overview__heading br {
    display: none;
  }

  .prog-overview__body {
    max-width: none;
  }

  .prog-overview__facts {
    gap: 0;
  }

  .prog-overview__inclusion {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
  }

  .prog-overview__inclusion-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .prog-overview__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .prog-fact__sep {
    display: none;
  }

  .prog-overview__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 16px;
  }

  .prog-fact {
    min-width: auto;
    border: 1px solid rgba(0, 201, 167, 0.12);
    border-radius: var(--radius-sm);
    padding: 12px 8px;
    background-color: rgba(0, 201, 167, 0.03);
  }
}


/* ============================================================
   I3 · INTERNSHIPS — WHO CAN APPLY
   ============================================================ */

/* ── Section header ──────────────────────────────────────── */

.who-apply__header {
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.who-apply__title {
  color: var(--color-white);
}

.who-apply__title::after {
  margin-left: auto;
  margin-right: auto;
}

.who-apply__subheading {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--color-muted);
  line-height: 1.7;
  margin: var(--space-sm) auto 0;
  max-width: 48ch;
}

/* ── 2-column grid ───────────────────────────────────────── */

.who-apply__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: var(--space-xl);
}

/* ── Column wrapper ──────────────────────────────────────── */

.who-apply__col {
  background-color: var(--color-slate);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base);
}

.who-apply__col:hover {
  border-color: var(--color-teal);
  box-shadow: 0 8px 32px rgba(0, 201, 167, 0.08);
}

/* ── Column header row ───────────────────────────────────── */

.who-apply__col-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Column icon circle */
.who-apply__col-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: transform var(--transition-base);
}

.who-apply__col:hover .who-apply__col-icon {
  transform: scale(1.1) rotate(-6deg);
}

.who-apply__col-icon--teal {
  background-color: rgba(0, 201, 167, 0.12);
  border: 1.5px solid var(--color-border);
  color: var(--color-teal);
}

.who-apply__col-icon--gold {
  background-color: rgba(245, 158, 11, 0.12);
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  color: #F59E0B;
}

/* Column title */
.who-apply__col-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--color-white);
  line-height: 1.25;
}

.who-apply__col-title--gold {
  color: #F59E0B;
}

/* ── Checklist ───────────────────────────────────────────── */

.who-apply__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Individual item */
.who-apply__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Item icon circle */
.who-apply__item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform var(--transition-base),
              background-color var(--transition-base);
}

.who-apply__item:hover .who-apply__item-icon {
  transform: scale(1.1);
}

.who-apply__item-icon--check {
  background-color: rgba(0, 201, 167, 0.12);
  border: 1px solid var(--color-border);
  color: var(--color-teal);
}

.who-apply__item:hover .who-apply__item-icon--check {
  background-color: var(--color-teal);
  color: var(--color-navy);
}

.who-apply__item-icon--star {
  background-color: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}

.who-apply__item:hover .who-apply__item-icon--star {
  background-color: #F59E0B;
  color: var(--color-white);
}

/* Item text block */
.who-apply__item-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.who-apply__item-text strong {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.3;
}

.who-apply__item-text span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ── Equal opportunities strip ───────────────────────────── */

.who-apply__eo {
  margin-bottom: var(--space-xl);
}

.who-apply__eo-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-dark);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.who-apply__eo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 201, 167, 0.1);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.who-apply__eo-icon i {
  font-size: 14px;
  color: var(--color-teal);
}

.who-apply__eo-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: none;
  margin: 0;
}

.who-apply__eo-text strong {
  color: var(--color-white);
  font-weight: 500;
  margin-right: 4px;
}

/* ── Bottom CTA ──────────────────────────────────────────── */

.who-apply__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.who-apply__cta-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-muted);
  max-width: none;
  margin: 0;
}

.who-apply__cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Stagger delays ──────────────────────────────────────── */

.who-apply__header.fade-in-up                   { transition-delay: 0.05s; }
.who-apply__grid .who-apply__col:nth-child(1)   { transition-delay: 0.10s; }
.who-apply__grid .who-apply__col:nth-child(2)   { transition-delay: 0.18s; }

/* Left column items */
.who-apply__col:nth-child(1) .who-apply__item:nth-child(1) { transition-delay: 0.14s; }
.who-apply__col:nth-child(1) .who-apply__item:nth-child(2) { transition-delay: 0.20s; }
.who-apply__col:nth-child(1) .who-apply__item:nth-child(3) { transition-delay: 0.26s; }
.who-apply__col:nth-child(1) .who-apply__item:nth-child(4) { transition-delay: 0.32s; }
.who-apply__col:nth-child(1) .who-apply__item:nth-child(5) { transition-delay: 0.38s; }

/* Right column items */
.who-apply__col:nth-child(2) .who-apply__item:nth-child(1) { transition-delay: 0.22s; }
.who-apply__col:nth-child(2) .who-apply__item:nth-child(2) { transition-delay: 0.28s; }
.who-apply__col:nth-child(2) .who-apply__item:nth-child(3) { transition-delay: 0.34s; }
.who-apply__col:nth-child(2) .who-apply__item:nth-child(4) { transition-delay: 0.40s; }
.who-apply__col:nth-child(2) .who-apply__item:nth-child(5) { transition-delay: 0.46s; }

.who-apply__eo.fade-in-up  { transition-delay: 0.30s; }
.who-apply__cta.fade-in-up { transition-delay: 0.38s; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .who-apply__col {
    padding: 28px 22px;
  }
}

@media (max-width: 768px) {
  .who-apply__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .who-apply__cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 340px;
    width: 100%;
  }

  .who-apply__cta-buttons .btn-primary,
  .who-apply__cta-buttons .btn-secondary {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .who-apply__col {
    padding: 22px 18px;
    gap: 18px;
  }

  .who-apply__item {
    gap: 10px;
  }

  .who-apply__item-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .who-apply__eo-inner {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
}

/* ============================================================
   I4 · INTERNSHIPS — WHAT YOU'LL WORK ON
   ============================================================ */

/* ── Section header ──────────────────────────────────────── */

.work-on__header {
  max-width: 620px;
  margin: 0 auto var(--space-xl);
}

.work-on__title::after {
  margin-left: auto;
  margin-right: auto;
}

.work-on__subheading {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--color-muted-light);
  line-height: 1.7;
  margin: var(--space-sm) auto 0;
  max-width: 52ch;
}

/* ── Cards grid — 3 columns ──────────────────────────────── */

.work-on__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: var(--space-xl);
}

/* ── Individual work card ────────────────────────────────── */

.work-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 24px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.07);
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.1);
  border-color: var(--color-teal);
}

/* Watermark number — decorative */
.work-card::before {
  content: attr(data-wc-number);
  position: absolute;
  bottom: -10px;
  right: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 80px;
  color: rgba(0, 201, 167, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color var(--transition-slow);
}

.work-card:hover::before {
  color: rgba(0, 201, 167, 0.09);
}

/* ── Card top row ────────────────────────────────────────── */

.work-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

/* ── Icon wrapper — colour variants ─────────────────────── */

.work-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--color-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.work-card:hover .work-card__icon-wrap {
  transform: scale(1.08) rotate(-5deg);
}

.work-card__icon-wrap--blue   { background-color: rgba(21,101,200,0.1); }
.work-card__icon-wrap--purple { background-color: rgba(124,58,237,0.1); }
.work-card__icon-wrap--green  { background-color: rgba(5,150,105,0.1); }
.work-card__icon-wrap--orange { background-color: rgba(217,119,6,0.1); }
.work-card__icon-wrap--teal   { background-color: var(--color-mint); }

/* Icon colour variants */
.work-card__icon {
  font-size: 22px;
  color: var(--color-teal);
  transition: color var(--transition-base);
}

.work-card__icon--blue   { color: var(--color-blue); }
.work-card__icon--purple { color: #7C3AED; }
.work-card__icon--green  { color: #059669; }
.work-card__icon--orange { color: #D97706; }
.work-card__icon--teal   { color: var(--color-teal); }

/* Icon fill on hover — each variant */
.work-card:hover .work-card__icon-wrap { background-color: var(--color-teal); }
.work-card:hover .work-card__icon      { color: var(--color-navy); }

.work-card:hover .work-card__icon-wrap--blue   { background-color: var(--color-blue); }
.work-card:hover .work-card__icon--blue        { color: var(--color-white); }

.work-card:hover .work-card__icon-wrap--purple { background-color: #7C3AED; }
.work-card:hover .work-card__icon--purple      { color: var(--color-white); }

.work-card:hover .work-card__icon-wrap--green  { background-color: #059669; }
.work-card:hover .work-card__icon--green       { color: var(--color-white); }

.work-card:hover .work-card__icon-wrap--orange { background-color: #D97706; }
.work-card:hover .work-card__icon--orange      { color: var(--color-white); }

/* ── Card number label ───────────────────────────────────── */

.work-card__number {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  opacity: 0.6;
  line-height: 1;
  padding-top: 4px;
}

/* ── Card title ──────────────────────────────────────────── */

.work-card__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--color-dark-text);
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.work-card:hover .work-card__title {
  color: var(--color-navy);
}

/* ── Card description ────────────────────────────────────── */

.work-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted-light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 16px;
  max-width: none;
}

/* ── Tool tags ───────────────────────────────────────────── */

.work-card__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.work-card__tool {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  background-color: var(--color-cloud);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  padding: 3px 9px;
  transition: background-color var(--transition-fast),
              color var(--transition-fast);
}

.work-card:hover .work-card__tool {
  background-color: var(--color-mint);
  color: var(--color-teal);
  border-color: rgba(0, 201, 167, 0.2);
}

/* ── Card footer ─────────────────────────────────────────── */

.work-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ── Level badge ─────────────────────────────────────────── */

.work-card__level {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 4px 10px;
  white-space: nowrap;
}

.work-card__level i {
  font-size: 9px;
}

.work-card__level--beginner {
  background-color: rgba(5, 150, 105, 0.1);
  color: #059669;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.work-card__level--intermediate {
  background-color: rgba(245, 158, 11, 0.1);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.work-card__level--advanced {
  background-color: rgba(124, 58, 237, 0.1);
  color: #7C3AED;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

/* ── Honest banner ───────────────────────────────────────── */

.work-on__banner {
  margin-bottom: var(--space-lg);
}

.work-on__banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background-color: var(--color-navy);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  flex-wrap: wrap;
}

/* Left text block */
.work-on__banner-text {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 240px;
}

/* Mug icon */
.work-on__banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 201, 167, 0.1);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.work-on__banner-icon i {
  font-size: 18px;
  color: var(--color-teal);
}

.work-on__banner-heading {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--color-white);
  line-height: 1.3;
  margin-bottom: 6px;
}

.work-on__banner-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.65;
  max-width: none;
  margin: 0;
}

/* Right stats row */
.work-on__banner-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.work-on__banner-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: 0 20px;
}

.work-on__banner-stat-val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--color-teal);
  line-height: 1;
  letter-spacing: -0.01em;
}

.work-on__banner-stat-label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  line-height: 1.3;
  max-width: 10ch;
  text-align: center;
}

.work-on__banner-stat-sep {
  width: 1px;
  height: 36px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--color-border),
    transparent
  );
  flex-shrink: 0;
}

/* ── Level legend ────────────────────────────────────────── */

.work-on__legend {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
}

.work-on__legend-title {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  white-space: nowrap;
}

/* ── Stagger delays ──────────────────────────────────────── */

.work-on__header.fade-in-up                   { transition-delay: 0.05s; }
.work-on__grid .work-card:nth-child(1)        { transition-delay: 0.08s; }
.work-on__grid .work-card:nth-child(2)        { transition-delay: 0.14s; }
.work-on__grid .work-card:nth-child(3)        { transition-delay: 0.20s; }
.work-on__grid .work-card:nth-child(4)        { transition-delay: 0.26s; }
.work-on__grid .work-card:nth-child(5)        { transition-delay: 0.32s; }
.work-on__grid .work-card:nth-child(6)        { transition-delay: 0.38s; }
.work-on__banner.fade-in-up                   { transition-delay: 0.44s; }
.work-on__legend.fade-in-up                   { transition-delay: 0.50s; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .work-on__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .work-card {
    padding: 22px 18px 18px;
  }
}

@media (max-width: 768px) {
  .work-on__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .work-on__banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }

  .work-on__banner-stats {
    width: 100%;
    justify-content: space-between;
  }

  .work-on__banner-stat {
    padding: 0 8px;
    flex: 1;
  }

  .work-on__legend {
    gap: 8px;
  }

  .work-on__legend-title {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .work-on__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-card {
    padding: 20px 16px 16px;
  }

  .work-card__icon-wrap {
    width: 44px;
    height: 44px;
  }

  .work-card__icon {
    font-size: 18px;
  }

  .work-on__banner-text {
    flex-direction: column;
    gap: 12px;
  }

  .work-on__banner-stats {
    gap: 0;
  }
}

/* ============================================================
   I5 · INTERNSHIPS — APPLICATION PROCESS
   ============================================================ */

/* ── Section header ──────────────────────────────────────── */

.apply-process__header {
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.apply-process__title {
  color: var(--color-white);
}

.apply-process__title::after {
  margin-left: auto;
  margin-right: auto;
}

.apply-process__subheading {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--color-muted);
  line-height: 1.7;
  margin: var(--space-sm) auto 0;
  max-width: 52ch;
}

/* ── 4-step flow wrapper ─────────────────────────────────── */

.apply-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  position: relative;
  margin-bottom: var(--space-xl);
}

/* ── Connecting dashed line ──────────────────────────────── */

.apply-flow__line {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background-color: var(--color-border-dark);
  z-index: 0;
  overflow: hidden;
  border-radius: 2px;
}

.apply-flow__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--color-teal),
    rgba(0, 201, 167, 0.3)
  );
  transition: width 0.1s ease;
  border-radius: 2px;
}

/* ── Individual step ─────────────────────────────────────── */

.apply-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

/* ── Node wrap ───────────────────────────────────────────── */

.apply-step__node-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  width: 72px;
  height: 72px;
}

/* Main node circle */
.apply-step__node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-navy);
  border: 2px solid var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  font-size: 18px;
  position: relative;
  z-index: 2;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              transform var(--transition-base),
              box-shadow var(--transition-base);
}

.apply-step:hover .apply-step__node {
  background-color: var(--color-teal);
  color: var(--color-navy);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(0, 201, 167, 0.12);
}

/* Featured node — step 3 */
.apply-step__node--featured {
  background-color: var(--color-teal);
  color: var(--color-navy);
  width: 56px;
  height: 56px;
  font-size: 20px;
  box-shadow: 0 0 0 6px rgba(0, 201, 167, 0.15);
}

/* Ripple ring */
.apply-step__node-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--color-teal);
  opacity: 0;
  pointer-events: none;
}

.apply-step.is-active .apply-step__node-ring {
  animation: nodeRipple 1s ease-out forwards;
}

/* Step number badge */
.apply-step__node-number {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-navy);
  border: 1.5px solid var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  color: var(--color-teal);
  z-index: 3;
  line-height: 1;
}

.apply-step__node-number--featured {
  background-color: var(--color-teal);
  color: var(--color-navy);
  border-color: var(--color-navy);
}

/* ── Step card ───────────────────────────────────────────── */

.apply-step__card {
  background-color: var(--color-slate);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 16px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
  transition: border-color var(--transition-base),
              box-shadow var(--transition-base),
              transform var(--transition-base);
  position: relative;
}

.apply-step:hover .apply-step__card {
  border-color: var(--color-teal);
  box-shadow: 0 8px 28px rgba(0, 201, 167, 0.1);
  transform: translateY(-4px);
}

/* Featured card */
.apply-step__card--featured {
  border-color: var(--color-teal);
  background-color: rgba(0, 201, 167, 0.04);
}

/* Featured badge */
.apply-step__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-navy);
  background-color: var(--color-teal);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  white-space: nowrap;
}

/* ── Step title ──────────────────────────────────────────── */

.apply-step__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}

.apply-step:hover .apply-step__title {
  color: var(--color-teal);
}

/* ── Step description ────────────────────────────────────── */

.apply-step__desc {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: none;
  flex: 1;
}

/* ── Checklist ───────────────────────────────────────────── */

.apply-step__checklist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  text-align: left;
}

.apply-step__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.5;
}

.apply-step__checklist li i {
  color: var(--color-teal);
  font-size: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Time badge ──────────────────────────────────────────── */

.apply-step__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-muted);
  background-color: rgba(0, 201, 167, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  margin-top: auto;
}

.apply-step__time i {
  color: var(--color-teal);
  font-size: 9px;
}

/* ── Response time note ──────────────────────────────────── */

.apply-process__note {
  margin-bottom: var(--space-lg);
}

.apply-process__note-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-dark);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}

.apply-process__note-inner > i {
  color: var(--color-teal);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.apply-process__note-inner p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: none;
  margin: 0;
}

.apply-process__note-inner p strong {
  color: var(--color-white);
  font-weight: 500;
}

.apply-process__note-inner a {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition-fast);
}

.apply-process__note-inner a:hover {
  opacity: 0.8;
}

/* ── Timeline visual strip ───────────────────────────────── */

.apply-process__timeline {
  margin-bottom: var(--space-xl);
}

.apply-process__timeline-inner {
  background-color: var(--color-slate);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 32px;
}

.apply-process__timeline-label {
  display: block;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 20px;
  text-align: center;
}

/* Timeline track */
.apply-process__timeline-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* Timeline item */
.apply-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.apply-tl-item__day {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-muted);
  white-space: nowrap;
  order: -1;
}

.apply-tl-item__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--color-navy);
  border: 2px solid var(--color-teal);
  transition: background-color var(--transition-base),
              transform var(--transition-base);
}

.apply-tl-item:hover .apply-tl-item__dot {
  background-color: var(--color-teal);
  transform: scale(1.2);
}

/* Final dot — offer */
.apply-tl-item__dot--end {
  background-color: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(0, 201, 167, 0.2);
}

.apply-tl-item__label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
}

.apply-tl-item--end .apply-tl-item__label {
  color: var(--color-teal);
}

/* Connecting line between items */
.apply-tl-item__line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-teal),
    rgba(0, 201, 167, 0.25)
  );
  margin-bottom: 6px;
  min-width: 20px;
}

/* ── Bottom CTA ──────────────────────────────────────────── */

.apply-process__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.apply-process__cta-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-muted);
  max-width: none;
  margin: 0;
}

/* ── Stagger delays ──────────────────────────────────────── */

.apply-process__header.fade-in-up              { transition-delay: 0.05s; }
.apply-flow .apply-step:nth-child(2)           { transition-delay: 0.08s; }
.apply-flow .apply-step:nth-child(3)           { transition-delay: 0.16s; }
.apply-flow .apply-step:nth-child(4)           { transition-delay: 0.24s; }
.apply-flow .apply-step:nth-child(5)           { transition-delay: 0.32s; }
.apply-process__note.fade-in-up               { transition-delay: 0.20s; }
.apply-process__timeline.fade-in-up           { transition-delay: 0.28s; }
.apply-process__cta.fade-in-up                { transition-delay: 0.36s; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .apply-step {
    padding: 0 6px;
  }

  .apply-step__card {
    padding: 16px 12px 14px;
  }

  .apply-step__checklist {
    display: none;
  }

  .apply-process__timeline-inner {
    padding: 20px 20px;
  }
}

@media (max-width: 768px) {

  /* Switch to vertical single column */
  .apply-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .apply-flow__line {
    display: none;
  }

  .apply-step {
    flex-direction: row;
    align-items: flex-start;
    padding: 0 0 28px 0;
    gap: 16px;
    text-align: left;
  }

  .apply-step:last-of-type {
    padding-bottom: 0;
  }

  /* Vertical connecting line */
  .apply-step::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 68px;
    width: 2px;
    height: calc(100% - 36px);
    background: linear-gradient(
      180deg,
      var(--color-teal),
      rgba(0, 201, 167, 0.12)
    );
    z-index: 0;
  }

  .apply-step:last-of-type::before {
    display: none;
  }

  .apply-step__node-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 52px;
    height: 52px;
  }

  .apply-step__node {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .apply-step__node--featured {
    width: 52px;
    height: 52px;
  }

  .apply-step__card {
    flex: 1;
    text-align: left;
  }

  .apply-step__badge {
    left: 20px;
    transform: none;
  }

  .apply-step__time {
    justify-content: flex-start;
  }

  .apply-step__checklist {
    display: flex;
  }

  /* Timeline strip — horizontal scroll on mobile */
  .apply-process__timeline-inner {
    overflow-x: auto;
    padding: 20px 16px;
  }

  .apply-process__timeline-track {
    min-width: 480px;
  }

  .apply-process__note-inner {
    flex-direction: column;
    gap: 10px;
  }

  .apply-process__cta .btn-primary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .apply-step {
    gap: 12px;
  }

  .apply-step__node-wrap {
    width: 44px;
    height: 44px;
  }

  .apply-step__node {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .apply-step__node-number {
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .apply-step::before {
    left: 28px;
  }
}

/* ============================================================
   I6 · INTERNSHIPS — INTERN TESTIMONIALS
   ============================================================ */

/* ── Section header ──────────────────────────────────────── */

.intern-testimonials__header {
  max-width: 580px;
  margin: 0 auto var(--space-xl);
}

.intern-testimonials__title::after {
  margin-left: auto;
  margin-right: auto;
}

.intern-testimonials__subheading {
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--color-muted-light);
  line-height: 1.7;
  margin: var(--space-sm) auto 0;
  max-width: 48ch;
}

/* ── Track wrapper ───────────────────────────────────────── */

.intern-testi-wrap {
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

/* ── Cards track — 3 columns desktop ────────────────────── */

.intern-testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Individual testimonial card ─────────────────────────── */

.intern-testi-card {
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius-md);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
  position: relative;
  transition: transform var(--transition-base),
              box-shadow var(--transition-base),
              border-color var(--transition-base);
}

.intern-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.12);
  border-color: var(--color-teal);
}

/* ── Large quote mark ────────────────────────────────────── */

.intern-testi-card__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 80px;
  line-height: 0.65;
  color: var(--color-teal);
  opacity: 0.3;
  margin-bottom: 18px;
  user-select: none;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}

.intern-testi-card:hover .intern-testi-card__quote {
  opacity: 0.5;
}

/* ── Stars ───────────────────────────────────────────────── */

.intern-testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.intern-testi-card__stars i {
  color: #F59E0B;
  font-size: 13px;
}

/* ── Quote text ──────────────────────────────────────────── */

.intern-testi-card__text {
  flex: 1;
  margin-bottom: 20px;
  border-left: none;
  padding-left: 0;
}

.intern-testi-card__text p {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--color-dark-text);
  line-height: 1.8;
  max-width: none;
  margin: 0;
}

/* ── Teal divider ────────────────────────────────────────── */

.intern-testi-card__divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--color-teal),
    transparent
  );
  opacity: 0.3;
  margin-bottom: 18px;
  flex-shrink: 0;
}

/* ── Client footer ───────────────────────────────────────── */

.intern-testi-card__client {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* Avatar circle — colour variants */
.intern-testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.intern-testi-card:hover .intern-testi-card__avatar {
  transform: scale(1.06);
}

.intern-testi-card__avatar--teal {
  background-color: var(--color-teal);
  color: var(--color-navy);
}

.intern-testi-card__avatar--blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.intern-testi-card__avatar--purple {
  background-color: #7C3AED;
  color: var(--color-white);
}

/* Info stack */
.intern-testi-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.intern-testi-card__name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--color-dark-text);
  line-height: 1.2;
}

.intern-testi-card__course {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted-light);
  line-height: 1.3;
}

.intern-testi-card__uni {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted-light);
  line-height: 1.3;
}

.intern-testi-card__cohort {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-top: 3px;
}

.intern-testi-card__cohort i {
  font-size: 9px;
}

/* ── Outcome tag ─────────────────────────────────────────── */

.intern-testi-card__outcome {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted-light);
  background-color: var(--color-cloud);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-top: auto;
  flex-shrink: 0;
  transition: background-color var(--transition-fast),
              border-color var(--transition-fast);
}

.intern-testi-card__outcome i {
  color: var(--color-teal);
  font-size: 12px;
  flex-shrink: 0;
}

.intern-testi-card:hover .intern-testi-card__outcome {
  background-color: var(--color-mint);
  border-color: rgba(0, 201, 167, 0.2);
}

/* ── Dot navigation ──────────────────────────────────────── */

.intern-testi-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--space-lg);
}

.intern-testi-dots__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 201, 167, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  min-height: auto;
  transition: background-color var(--transition-base),
              width var(--transition-base),
              border-radius var(--transition-base);
}

.intern-testi-dots__dot.is-active {
  background-color: var(--color-teal);
  width: 24px;
  border-radius: 4px;
}

/* ── Stats bar ───────────────────────────────────────────── */

.intern-testi-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--color-teal);
  border-radius: var(--radius-md);
  padding: 24px 36px;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.05);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: 0;
}

.intern-testi-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 4px 12px;
  min-width: 120px;
}

.intern-testi-stat__val {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--color-teal);
  line-height: 1;
  letter-spacing: -0.02em;
}

.intern-testi-stat__label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted-light);
  line-height: 1.4;
  max-width: 16ch;
  text-align: center;
}

.intern-testi-stat__sep {
  width: 1px;
  height: 44px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 201, 167, 0.3),
    transparent
  );
  flex-shrink: 0;
}

/* ── Bottom CTA ──────────────────────────────────────────── */

.intern-testi-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.intern-testi-cta__text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-muted-light);
  max-width: none;
  margin: 0;
}

/* ── Stagger delays ──────────────────────────────────────── */

.intern-testimonials__header.fade-in-up              { transition-delay: 0.05s; }
.intern-testi-track .intern-testi-card:nth-child(1)  { transition-delay: 0.08s; }
.intern-testi-track .intern-testi-card:nth-child(2)  { transition-delay: 0.16s; }
.intern-testi-track .intern-testi-card:nth-child(3)  { transition-delay: 0.24s; }
.intern-testi-stats.fade-in-up                       { transition-delay: 0.32s; }
.intern-testi-cta.fade-in-up                         { transition-delay: 0.40s; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .intern-testi-card {
    padding: 26px 22px 20px;
  }
}

@media (max-width: 768px) {

  /* Switch to single-card carousel */
  .intern-testi-wrap {
    overflow: hidden;
  }

  .intern-testi-track {
    grid-template-columns: repeat(3, 100%);
    gap: 0;
  }

  .intern-testi-card {
    width: 100%;
  }

  /* Show dots on mobile */
  .intern-testi-dots {
    display: flex;
  }

  .intern-testi-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
    padding: 20px;
  }

  .intern-testi-stat__sep {
    display: none;
  }

  .intern-testi-stat {
    min-width: auto;
  }

  .intern-testi-cta .btn-primary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .intern-testi-card {
    padding: 24px 18px 18px;
  }

  .intern-testi-card__quote {
    font-size: 64px;
  }

  .intern-testi-stats {
    grid-template-columns: 1fr 1fr;
  }

  .intern-testi-stat__val {
    font-size: 22px;
  }
}

/* ============================================================
   I7 · INTERNSHIPS — APPLICATION FORM
   ============================================================ */

/* ── Section header ──────────────────────────────────────── */

.apply-form__header {
  max-width: 560px;
  margin: 0 auto var(--space-xl);
}

.apply-form__title {
  color: var(--color-white);
}

.apply-form__title::after {
  margin-left: auto;
  margin-right: auto;
}

.apply-form__subheading {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--color-muted);
  line-height: 1.7;
  margin: var(--space-sm) auto 0;
  max-width: 48ch;
}

/* ── Form card ───────────────────────────────────────────── */

.apply-form__card {
  max-width: 680px;
  margin: 0 auto;
  background-color: var(--color-slate);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.25);
}

/* ── Form layout ─────────────────────────────────────────── */

.apply-form__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 2-column row */
.apply-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Individual field ────────────────────────────────────── */

.apply-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Full-width field */
.apply-form__field--full {
  grid-column: 1 / -1;
}

/* ── Label ───────────────────────────────────────────────── */

.apply-form__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: normal;
  text-transform: none;
}

.apply-form__required {
  color: var(--color-teal);
  font-size: 14px;
  line-height: 1;
}

.apply-form__optional {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-muted);
  font-weight: 400;
  margin-left: 2px;
}

/* ── Input base ──────────────────────────────────────────── */

.apply-form__input,
.apply-form__select,
.apply-form__textarea {
  width: 100%;
  background-color: var(--color-navy);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--transition-fast),
              box-shadow var(--transition-fast);
  min-height: 48px;
}

.apply-form__input::placeholder,
.apply-form__textarea::placeholder {
  color: var(--color-muted);
}

.apply-form__input:focus,
.apply-form__select:focus,
.apply-form__textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.12);
}

/* Error state */
.apply-form__input.is-error,
.apply-form__select.is-error,
.apply-form__textarea.is-error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.12);
}

/* ── Date input ──────────────────────────────────────────── */

.apply-form__input--date {
  color-scheme: dark;
}

/* ── Select wrapper ──────────────────────────────────────── */

.apply-form__select-wrap {
  position: relative;
}

.apply-form__select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.apply-form__select option {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.apply-form__select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-muted);
  font-size: 12px;
  pointer-events: none;
  transition: color var(--transition-fast);
}

.apply-form__select-wrap:focus-within .apply-form__select-arrow {
  color: var(--color-teal);
}

/* ── Textarea ────────────────────────────────────────────── */

.apply-form__textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.65;
}

.apply-form__textarea-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.apply-form__char-count {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--color-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.apply-form__char-count.is-warning {
  color: #F59E0B;
}

.apply-form__char-count.is-limit {
  color: var(--color-error);
}

/* ── File upload ─────────────────────────────────────────── */

.apply-form__file-wrap {
  position: relative;
}

.apply-form__file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.apply-form__file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 20px;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  background-color: rgba(0, 201, 167, 0.03);
  cursor: pointer;
  transition: border-color var(--transition-base),
              background-color var(--transition-base);
  text-align: center;
  min-height: 100px;
}

.apply-form__file-label:hover,
.apply-form__file-wrap:focus-within .apply-form__file-label {
  border-color: var(--color-teal);
  background-color: rgba(0, 201, 167, 0.06);
}

.apply-form__file-label i {
  font-size: 28px;
  color: var(--color-teal);
  margin-bottom: 4px;
}

.apply-form__file-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.4;
}

.apply-form__file-text strong {
  color: var(--color-teal);
  font-weight: 500;
}

.apply-form__file-sub {
  font-family: var(--font-label);
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
}

/* File selected state */
.apply-form__file-label.has-file {
  border-color: var(--color-teal);
  background-color: rgba(0, 201, 167, 0.06);
}

.apply-form__file-label.has-file i {
  color: var(--color-teal);
}

/* Error state for file */
.apply-form__file-label.is-error {
  border-color: var(--color-error);
  background-color: rgba(255, 107, 107, 0.04);
}

/* ── Hint text ───────────────────────────────────────────── */

.apply-form__hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
}

.apply-form__hint--checkbox {
  padding-left: 30px;
}

/* ── Error message ───────────────────────────────────────── */

.apply-form__error {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-error);
  line-height: 1.4;
  min-height: 18px;
  display: block;
}

/* ── Checkbox ────────────────────────────────────────────── */

.apply-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 400;
  font-family: var(--font-body);
}

.apply-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Custom checkbox UI */
.apply-form__checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 4px;
  border: 1.5px solid var(--color-border);
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: border-color var(--transition-fast),
              background-color var(--transition-fast);
  flex-shrink: 0;
}

/* Checked state — teal fill with navy checkmark */
.apply-form__checkbox:checked + .apply-form__checkbox-custom {
  background-color: var(--color-teal);
  border-color: var(--color-teal);
}

.apply-form__checkbox:checked + .apply-form__checkbox-custom::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid var(--color-navy);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

/* Focus ring on custom checkbox */
.apply-form__checkbox:focus-visible + .apply-form__checkbox-custom {
  outline: 2px solid var(--color-teal);
  outline-offset: 2px;
}

/* Error state */
.apply-form__checkbox.is-error + .apply-form__checkbox-custom {
  border-color: var(--color-error);
}

.apply-form__checkbox-text {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

.apply-form__link {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition-fast);
}

.apply-form__link:hover {
  opacity: 0.8;
}

/* ── Submit button ───────────────────────────────────────── */

.apply-form__submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  min-height: 56px;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.apply-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Submit note */
.apply-form__submit-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.5;
  text-align: center;
  margin: 0;
  max-width: none;
}

.apply-form__submit-note i {
  color: var(--color-teal);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Success state ───────────────────────────────────────── */

.apply-form__success {
  max-width: 680px;
  margin: 0 auto;
}

.apply-form__success-inner {
  background-color: var(--color-slate);
  border: 1px solid var(--color-teal);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  animation: fadeInUp 0.5s ease forwards;
  box-shadow: 0 16px 64px rgba(0, 201, 167, 0.12);
}

.apply-form__success-icon {
  font-size: 56px;
  color: var(--color-teal);
  margin-bottom: 20px;
  animation: iconPulse 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards;
}

.apply-form__success-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--color-white);
  margin-bottom: 12px;
}

.apply-form__success-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.apply-form__success-next {
  background-color: rgba(0, 201, 167, 0.06);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 28px;
  text-align: left;
}

.apply-form__success-next-label {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
  max-width: none;
}

.apply-form__success-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apply-form__success-steps li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
}

.apply-form__success-steps li i {
  color: var(--color-teal);
  font-size: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.apply-form__success-btn {
  display: inline-flex;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .apply-form__card,
  .apply-form__success-inner {
    padding: 32px 24px;
  }

  .apply-form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .apply-form__card,
  .apply-form__success-inner {
    padding: 24px 18px;
  }

  .apply-form__label {
    font-size: 13px;
  }

  .apply-form__submit {
    font-size: 15px;
    min-height: 52px;
  }

  .apply-form__textarea-footer {
    flex-direction: column;
    gap: 4px;
  }
}
/* ============================================================
   I8 · CREDENTIALS SHOWCASE
   ============================================================ */

.cred-showcase__header {
  max-width: 640px;
  margin: 0 auto;
}

.cred-showcase__title { color: #fff; }

.cred-showcase__subheading {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.75;
  margin: 16px 0 0;
}

/* ── Tabs ───────────────────────────────────────────────────── */
.cred-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 48px 0 56px;
  flex-wrap: wrap;
}

.cred-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.cred-tab i { font-size: 0.8rem; }

.cred-tab:hover {
  border-color: rgba(0,201,167,0.35);
  color: #fff;
  background: rgba(0,201,167,0.07);
}

.cred-tab.is-active {
  background: #00C9A7;
  border-color: #00C9A7;
  color: #0D1B2A;
  font-weight: 700;
  box-shadow: 0 0 28px rgba(0,201,167,0.35);
}

/* ── Stage ──────────────────────────────────────────────────── */
.cred-stage { position: relative; }

.cred-stage__spotlight {
  position: absolute;
  top: 40%;
  left: 28%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(0,201,167,0.1) 0%, transparent 68%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
  transition: left 0.55s cubic-bezier(0.4,0,0.2,1), background 0.55s ease;
}

/* ── Panels ─────────────────────────────────────────────────── */
.cred-panel { display: none; position: relative; z-index: 1; }

.cred-panel.is-active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  animation: credFadeUp 0.45s ease forwards;
}

@keyframes credFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Mockup wrapper ─────────────────────────────────────────── */
.cred-mockup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cred-mockup {
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1),
              box-shadow 0.45s ease,
              filter 0.45s ease;
  border-radius: 10px;
  box-shadow:
    0 40px 90px rgba(0,0,0,0.55),
    0 12px 30px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.07);
  filter: drop-shadow(0 0 36px rgba(0,201,167,0.14));
  cursor: default;
}

/* Landscape: certificate */
.cred-mockup--landscape {
  max-width: 420px;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.cred-mockup--landscape:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-8px);
  box-shadow:
    0 56px 110px rgba(0,0,0,0.55),
    0 20px 48px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.12);
  filter: drop-shadow(0 0 56px rgba(0,201,167,0.28));
}

/* Portrait: letters */
.cred-mockup--portrait {
  max-width: 360px;
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
}

.cred-mockup--portrait:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-8px);
  box-shadow:
    0 56px 110px rgba(0,0,0,0.55),
    0 20px 48px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.12);
  filter: drop-shadow(0 0 56px rgba(0,201,167,0.22));
}

/* ── Document viewport + scale transform ────────────────────── */
/* Clips the scaled-down doc to its display dimensions          */
.cdoc-viewport {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  width: 100%;
}

/* Certificate: 800px inner, scale 0.43 → ~344px wide display  */
.cdoc-cert-viewport  { height: 256px; }

/* Letters: 520px inner, scale 0.648 → ~337px wide display     */
.cdoc-letter-viewport { height: 468px; }

/* Inner divs: written at natural width, scaled down visually  */
.cdoc-inner { transform-origin: top left; }

.cdoc-cert-inner {
  width: 800px;
  transform: scale(0.43);
}

.cdoc-letter-inner {
  width: 520px;
  transform: scale(0.648);
}

/* ── Glow beneath mockup ────────────────────────────────────── */
.cred-mockup__glow {
  width: 75%;
  height: 30px;
  background: linear-gradient(to bottom, rgba(0,201,167,0.12), transparent);
  border-radius: 0 0 50% 50%;
  filter: blur(10px);
  flex-shrink: 0;
}

.cred-mockup__glow--blue   { background: linear-gradient(to bottom, rgba(96,165,250,0.14), transparent); }
.cred-mockup__glow--purple { background: linear-gradient(to bottom, rgba(167,139,250,0.14), transparent); }

/* ── Info panel ─────────────────────────────────────────────── */
.cred-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cred-info__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.2);
  color: #00C9A7;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
}

.cred-info__tag--blue   { background: rgba(96,165,250,0.1);  border-color: rgba(96,165,250,0.2);  color: #60A5FA; }
.cred-info__tag--purple { background: rgba(167,139,250,0.1); border-color: rgba(167,139,250,0.2); color: #A78BFA; }

.cred-info__title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
}

.cred-info__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}

.cred-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

.cred-info__list li i {
  color: #00C9A7;
  font-size: 0.875rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.cred-info__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #00C9A7;
  color: #0D1B2A;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  width: fit-content;
  letter-spacing: 0.01em;
}

.cred-info__cta:hover {
  background: #00ddb8;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,201,167,0.38);
}

.cred-info__cta--blue   { background: #3B82F6; color: #fff; }
.cred-info__cta--blue:hover   { background: #60A5FA; box-shadow: 0 10px 28px rgba(59,130,246,0.38); }

.cred-info__cta--purple { background: #7C3AED; color: #fff; }
.cred-info__cta--purple:hover { background: #8B5CF6; box-shadow: 0 10px 28px rgba(124,58,237,0.38); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .cred-panel.is-active {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .cred-mockup-wrap { order: 1; }
  .cred-info        { order: 2; }

  .cred-mockup--landscape,
  .cred-mockup--portrait {
    max-width: 380px;
    transform: none;
    margin: 0 auto;
  }

  .cred-mockup--landscape:hover,
  .cred-mockup--portrait:hover {
    transform: translateY(-6px);
  }

  .cred-stage__spotlight { left: 50%; top: 20%; }
  .cred-info__title      { font-size: 1.5rem; }
}

@media (max-width: 560px) {
  .cred-tabs { gap: 8px; margin: 32px 0 40px; }
  .cred-tab  { padding: 10px 16px; font-size: 0.8rem; }

  .cred-mockup--landscape,
  .cred-mockup--portrait { max-width: 300px; }

  .cdoc-cert-viewport   { height: 200px; }
  .cdoc-letter-viewport { height: 370px; }

  .cdoc-cert-inner   { transform: scale(0.34); }
  .cdoc-letter-inner { transform: scale(0.514); }

  .cred-info__title { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  .cred-mockup--landscape,
  .cred-mockup--portrait,
  .cred-mockup--landscape:hover,
  .cred-mockup--portrait:hover,
  .cred-stage__spotlight {
    transition: none;
    transform: none;
    animation: none;
  }
}
/* ═══════════════════════════════════════════════════════════
   MULTI-REGION CREDENTIAL TABS
   ═══════════════════════════════════════════════════════════ */

/* ── Outer region tab row ──────────────────────────────────── */
.cred-region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.cred-region-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 20px 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.18s;
  min-width: 150px;
}
.cred-region-tab:hover {
  background: rgba(0,201,167,0.06);
  border-color: rgba(0,201,167,0.3);
  transform: translateY(-2px);
}
.cred-region-tab.is-active {
  background: rgba(0,201,167,0.1);
  border-color: rgba(0,201,167,0.55);
}

.crd-flags {
  display: flex;
  gap: 4px;
  align-items: center;
}

.crd-region-label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.crd-region-sub {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

/* ── Region panels — show/hide ─────────────────────────────── */
.cred-region-panel {
  display: none;
}
.cred-region-panel.is-active {
  display: block;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .cred-region-tab {
    min-width: 120px;
    padding: 10px 14px 8px;
  }
  .crd-region-label { font-size: 11px; }
}
/* ═══════════════════════════════════════════════════════════
   CAREER PATHWAY — CPATH
   ═══════════════════════════════════════════════════════════ */

.career-path__sub {
  max-width: 620px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  text-align: center;
}

/* ── Flow ────────────────────────────────────────────────── */
.cpath-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 44px;
}

.cpath-step {
  flex: 1;
  min-width: 130px;
  max-width: 160px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 26px 12px 16px;
  text-align: center;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.cpath-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,201,167,0.15);
  border-color: rgba(0,201,167,0.35);
}
.cpath-step--highlight {
  border-color: rgba(0,201,167,0.3);
  background: rgba(0,201,167,0.06);
}
.cpath-step--final {
  border-color: rgba(0,201,167,0.55);
  background: rgba(0,201,167,0.11);
}

.cpath-step__num {
  position: absolute;
  top: -11px; left: 50%;
  transform: translateX(-50%);
  background: #00C9A7;
  color: #060F1C;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 9px; font-weight: 800;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.cpath-step__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,201,167,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 4px auto 10px;
  color: #00C9A7;
  font-size: 16px;
  transition: background 0.2s;
}
.cpath-step:hover .cpath-step__icon {
  background: rgba(0,201,167,0.22);
}

.cpath-step__label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 11.5px; font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.cpath-step__desc {
  font-size: 10.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
  margin-bottom: 10px;
}
.cpath-step__desc strong {
  color: #00C9A7;
  font-weight: 600;
}

.cpath-step__tag {
  display: inline-block;
  background: rgba(0,201,167,0.1);
  border: 1px solid rgba(0,201,167,0.28);
  color: #00C9A7;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}

.cpath-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 52px;
  flex-shrink: 0;
  width: 24px;
  color: rgba(0,201,167,0.38);
  font-size: 13px;
}

/* ── Roles ───────────────────────────────────────────────── */
.cpath-roles {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,201,167,0.14);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 20px;
}

.cpath-roles__heading {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #00C9A7;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}

.cpath-roles__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cpath-role {
  background: rgba(0,201,167,0.07);
  border: 1px solid rgba(0,201,167,0.2);
  color: rgba(255,255,255,0.72);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 12px; font-weight: 500;
  padding: 6px 13px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  cursor: default;
}
.cpath-role:hover {
  background: rgba(0,201,167,0.15);
  border-color: rgba(0,201,167,0.42);
  color: #fff;
}
.cpath-role i {
  color: #00C9A7;
  font-size: 12px;
}

/* ── Remote note ─────────────────────────────────────────── */
.cpath-remote {
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: 10px;
  overflow: hidden;
}
.cpath-remote__inner {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
}
.cpath-remote__icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,201,167,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #00C9A7; font-size: 17px;
  flex-shrink: 0;
}
.cpath-remote__text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
}
.cpath-remote__text strong {
  color: #fff;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .cpath-step { min-width: 115px; max-width: 145px; }
}
@media (max-width: 640px) {
  .cpath-flow {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .cpath-step {
    min-width: 280px;
    max-width: 360px;
    width: 100%;
  }
  .cpath-arrow {
    padding-top: 0;
    width: auto;
    height: 20px;
    transform: rotate(90deg);
  }
  .cpath-remote__inner { flex-direction: column; }
}


/* ═══════════════════════════════════════════════════════════
   COHORT SCHEDULE — I5B
   ═══════════════════════════════════════════════════════════ */

.cohort-schedule__sub {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: var(--color-text-muted, #5A6A7A);
  line-height: 1.75;
  text-align: center;
}
.cohort-schedule__sub strong {
  color: var(--color-navy, #0A1628);
  font-weight: 700;
}

/* ── Season cards ────────────────────────────────────────── */
.cohort-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.cohort-card {
  background: #fff;
  border: 1px solid #E4EBF5;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.22s, box-shadow 0.22s;
}
.cohort-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,201,167,0.1);
}
.cohort-card--summer {
  border-top: 3px solid #00C9A7;
}
.cohort-card--winter {
  border-top: 3px solid #1568C8;
}

/* Card header */
.cohort-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.cohort-card__icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(0,201,167,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #00C9A7;
  font-size: 18px;
  flex-shrink: 0;
}
.cohort-card__icon--winter {
  background: rgba(21,104,200,0.1);
  color: #1568C8;
}
.cohort-card__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0A1628;
  line-height: 1.2;
}
.cohort-card__year {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 11px;
  color: #8A9AAA;
  font-weight: 500;
}
.cohort-card__badge {
  margin-left: auto;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.cohort-card__badge--summer {
  background: rgba(0,201,167,0.1);
  color: #00A887;
  border: 1px solid rgba(0,201,167,0.3);
}
.cohort-card__badge--winter {
  background: rgba(21,104,200,0.1);
  color: #1568C8;
  border: 1px solid rgba(21,104,200,0.3);
}

/* Month timeline */
.cohort-months {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.cohort-month {
  flex: 1;
  text-align: center;
}
.cohort-month__name {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: #4A5A6A;
  display: block;
  margin-bottom: 4px;
}
.cohort-month__bar {
  height: 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}
.cohort-month__bar--reg {
  background: #F59E0B;
}
.cohort-month__bar--intern {
  background: #00C9A7;
}
.cohort-card--winter .cohort-month__bar--intern {
  background: #1568C8;
}
.cohort-month__label {
  font-size: 8px;
  color: #8A9AAA;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
}

/* Legend hint */
.cohort-month--reg .cohort-month__name { color: #B45309; }

/* Key dates */
.cohort-dates {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cohort-date {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #3A4A5A;
  line-height: 1.4;
}
.cohort-date i {
  color: #00C9A7;
  font-size: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}
.cohort-card--winter .cohort-date i {
  color: #1568C8;
}
.cohort-date strong {
  color: #0A1628;
  font-weight: 600;
}

/* Spots */
.cohort-spots {
  background: #F5F8FF;
  border: 1px solid #E4EBF5;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cohort-spots__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.cohort-spots__label {
  font-size: 12px;
  color: #5A6A7A;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cohort-spots__label i {
  color: #00C9A7;
  font-size: 12px;
}
.cohort-spots__val {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #0A1628;
}
.cohort-spots__val--gold {
  color: #D97706;
}

/* ── Global stats bar ────────────────────────────────────── */
.cohort-global-stats {
  background: #0A1628;
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cohort-global-stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.cohort-global-stat__val {
  display: block;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #00C9A7;
  line-height: 1;
  margin-bottom: 5px;
}
.cohort-global-stat__val--gold {
  color: #F59E0B;
}
.cohort-global-stat__label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.cohort-global-stat__sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── Countdown block ─────────────────────────────────────── */
.cohort-countdown {
  background: #0A1628;
  border: 1px solid rgba(0,201,167,0.2);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 28px;
}

.cohort-countdown__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.cohort-countdown__header > i {
  font-size: 22px;
  color: #00C9A7;
  margin-top: 2px;
  flex-shrink: 0;
}
.cohort-countdown__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00C9A7;
  margin-bottom: 3px;
}
.cohort-countdown__sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Timers row */
.cohort-timers {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cohort-timer {
  flex: 1;
  min-width: 240px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,201,167,0.15);
  border-radius: 10px;
  padding: 16px 18px;
  text-align: center;
}
.cohort-timer--intern {
  border-color: rgba(21,104,200,0.25);
}

.cohort-timer__label {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00C9A7;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cohort-timer--intern .cohort-timer__label {
  color: #5B9BF0;
}

.cohort-timer__display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}
.cohort-timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}
.cohort-timer__num {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 58px;
  text-align: center;
}
.cohort-timer__name {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.cohort-timer__colon {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: rgba(0,201,167,0.4);
  padding-bottom: 18px;
}
.cohort-timer__date {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 10.5px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

.cohort-timers__sep {
  font-size: 20px;
  color: rgba(0,201,167,0.3);
  flex-shrink: 0;
}

/* Scarcity note */
.cohort-countdown__scarcity {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.22);
  border-radius: 8px;
  padding: 12px 16px;
}
.cohort-countdown__scarcity i {
  color: #F59E0B;
  font-size: 15px;
  margin-top: 1px;
  flex-shrink: 0;
}
.cohort-countdown__scarcity p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}
.cohort-countdown__scarcity strong {
  color: #F59E0B;
}

/* ── Bottom CTA ──────────────────────────────────────────── */
.cohort-cta__text {
  font-size: 14px;
  color: #5A6A7A;
  margin-bottom: 16px;
  line-height: 1.6;
}
.cohort-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 760px) {
  .cohort-cards {
    grid-template-columns: 1fr;
  }
  .cohort-global-stats {
    gap: 16px;
  }
  .cohort-global-stat__sep {
    display: none;
  }
  .cohort-global-stats {
    justify-content: center;
  }
  .cohort-global-stat {
    min-width: 120px;
    flex: 0 0 40%;
  }
  .cohort-timers {
    flex-direction: column;
  }
  .cohort-timers__sep {
    transform: rotate(90deg);
  }
  .cohort-timer {
    min-width: unset;
    width: 100%;
  }
  .cohort-timer__num {
    font-size: 24px;
    min-width: 44px;
  }
}
@media (max-width: 480px) {
  .cohort-months {
    gap: 3px;
  }
  .cohort-month__name {
    font-size: 8px;
  }
}

/* ============================================================
   END — INTERNSHIPS.HTML PAGE STYLES
   ============================================================ */