/* ============================================================
   MINA NASIF -Landing Page Styles
   Colors: Navy #102649  |  Gold #F7C100
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand primaries */
  --navy:        #102649;
  --gold:        #F7C100;
  --blue:        #1581B9;   /* accent blue -tags, links, LEARN panel, headings */
  --blue-deep:   #007DB6;   /* heading accent -"Treasury" */
  --blue-linked: #0A66C2;   /* LinkedIn brand */

  /* Navy scale (dark sections) */
  --navy-dark:   #0c1e3d;
  --navy-darker: #091629;
  --navy-mid:    #132e57;
  --navy-card:   #1a3560;
  --navy-section:#0e2247;

  /* Light scale (NEW -light sections) */
  --light-bg:     #F7F9FC;
  --light-card:   #FFFFFF;
  --light-border: rgba(16,38,73,0.08);
  --light-shadow: 0 2px 20px rgba(16,38,73,0.08);
  --light-shadow-hover: 0 8px 40px rgba(16,38,73,0.14);

  /* Text on light sections */
  --text-primary:   #102649;
  --text-secondary: #4A6080;
  --text-muted:     #7A92AA;

  /* Gold variants */
  --gold-light: #ffd233;
  --gold-dim:   rgba(247,193,0,0.18);
  --gold-bg:    rgba(247,193,0,0.10);
  --gold-bg-hover: rgba(247,193,0,0.18);

  /* Borders */
  --border:      rgba(255,255,255,0.08);
  --border-dark: rgba(255,255,255,0.08);
  --border-gold: rgba(247,193,0,0.22);

  /* Blue variants */
  --blue-light: #1e93cd;
  --blue-bg:    rgba(21,129,185,0.10);
  --blue-dim:   rgba(21,129,185,0.35);

  /* Legacy */
  --white:      #ffffff;
  --gray:       #94a3b8;
  --gray-light: #9fb3cc;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  -webkit-tap-highlight-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

/* Prevent iOS zoom on input focus */
input, select {
  font-size: 16px;
}


/* ============================================================
   NAVBAR
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background: rgba(16, 38, 73, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: none;
  transition: box-shadow 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(16,38,73,0.12);
}

/* ── Scroll progress bar (doubles as the nav's bottom border) ── */
.nav__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
}

.nav__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--gold);
}

.nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(16, 38, 73, 0.98);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border-gold);
  z-index: 199;
  list-style: none;
}

.nav__drawer.is-open {
  display: flex;
}

.nav__drawer a {
  color: var(--gray);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.nav__drawer a:hover {
  color: var(--gold);
}

.nav__drawer .nav__cta {
  display: inline-block;
  text-align: center;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
}


/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 100vh;
  /* iOS Safari fix -svh units */
  min-height: 100svh;
  padding: 110px 2rem 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  background-image: url('../assets/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Legibility overlay -heaviest behind the copy, opening up toward the skyline */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
              rgba(16, 38, 73, 0.95) 0%,
              rgba(16, 38, 73, 0.88) 40%,
              rgba(16, 38, 73, 0.70) 75%,
              rgba(16, 38, 73, 0.60) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__glow-top {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 193, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero__glow-bottom {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19, 46, 87, 0.6) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__title-highlight {
  color: var(--gold);
}

.hero__title-blue {
  color: var(--blue);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 520px;
}

.hero__tagline {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__countdown {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__countdown-block {
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  min-width: 70px;
}

.hero__countdown-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.hero__countdown-label {
  font-size: 0.62rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: var(--navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  margin-left: -8px;
}

.hero__avatar:first-child {
  margin-left: 0;
}

.hero__trust-text {
  font-size: 0.85rem;
  color: var(--gray);
}

.hero__trust-text strong {
  color: var(--white);
}

.hero__image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.hero__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   REGISTRATION CARD (Hero right column)
   ============================================================ */

.reg-card {
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.reg-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.reg-card__subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.reg-card__note {
  text-align: center;
  font-size: 0.78rem;
  color: #4d6080;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}


/* ============================================================
   FORMS (shared)
   ============================================================ */

.form-group {
  margin-bottom: 0.9rem;
}

.form-group__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group__input,
.form-group__select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 0.72rem 1rem;
  color: var(--white);
  font-size: 16px; /* Prevents iOS zoom */
  outline: none;
  transition: border-color 0.2s;
}

.form-group__input::placeholder {
  color: #4d6080;
}

.form-group__input:focus,
.form-group__select:focus {
  border-color: var(--gold);
}

.form-group__select option {
  background: var(--navy-mid);
  color: var(--white);
}

/* Custom select arrow */
.form-group__select-wrap {
  position: relative;
}

.form-group__select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--gray);
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}


/* ============================================================
   BUTTONS (shared)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 0;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(247, 193, 0, 0.3);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(247, 193, 0, 0.4);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--navy {
  background: var(--navy);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(16,38,73,0.3);
}

.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,38,73,0.4);
}

.btn--navy:active {
  transform: translateY(0);
}

.btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(21, 129, 185, 0.30);
}

.btn--blue:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(21, 129, 185, 0.40);
}

.btn--blue:active {
  transform: translateY(0);
}

.btn--linkedin {
  background: var(--blue-linked);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(10, 102, 194, 0.3);
}

.btn--linkedin:hover {
  background: #084a94;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.btn--linkedin:active {
  transform: translateY(0);
}

.btn--full {
  width: 100%;
}

.btn--success {
  background: #22c55e !important;
  color: var(--white) !important;
  box-shadow: none !important;
  pointer-events: none;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-weight: 700;
  transition: all 0.2s;
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn__icon {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.btn--primary:hover .btn__icon,
.btn--secondary:hover .btn__icon {
  transform: translateX(3px);
}


/* ============================================================
   LEARN / PASS / LEAD
   ============================================================ */

.journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.journey__panel {
  padding: 1.75rem 1rem;
  text-align: center;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.journey__panel--learn {
  background: var(--blue);
  color: var(--white);
}

.journey__panel--pass {
  background: var(--gold);
  color: var(--navy);
}

.journey__panel--lead {
  background: var(--navy);
  color: var(--white);
}


/* ============================================================
   STATS STRIP
   ============================================================ */

.stats {
  background: var(--light-bg);
  border-top: none;
  border-bottom: 1px solid var(--light-border);
  padding: 4rem 2rem;
}

.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stats__item {
  padding: 1.5rem;
  border-right: 1px solid var(--light-border);
}

.stats__item:last-child {
  border-right: none;
}

.stats__num {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stats__label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-top: 8px;
  font-weight: 500;
}


/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */

.section {
  padding: 5rem 2rem;
}

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

.section--light {
  background: var(--light-bg);
}

.section--light .section__title {
  color: var(--text-primary);
}

.section--light .section__tag {
  color: var(--navy);
  opacity: 0.45;
}

.section--light p,
.section--light .test-card__quote {
  color: var(--text-secondary);
}

.section--light h3,
.section--light h4 {
  color: var(--text-primary);
}

/* Cards on light sections */
.section--light .philosophy-card,
.section--light .cert-card,
.section--light .test-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  box-shadow: var(--light-shadow);
}

.section--light .philosophy-card:hover,
.section--light .cert-card:hover {
  box-shadow: var(--light-shadow-hover);
  border-top: 3px solid var(--gold);
  transform: translateY(-4px);
}

.section--light .cert-card__num {
  color: var(--gold);
}

.section--light .cert-card__name {
  color: var(--text-primary);
}

.section--light .cert-card__org {
  color: var(--text-muted);
}

/* About section on light */
.section--light .about__exp-company {
  color: var(--text-primary);
}

.section--light .about__exp-period {
  color: var(--text-secondary);
}

/* Philosophy cards on light */
.section--light .philosophy-card__text {
  color: var(--text-secondary);
}

/* Testimonials on light */
.section--light .test-card__name {
  color: var(--text-primary);
}

/* FAQ on light */
.section--light .faq-item {
  border-bottom-color: var(--light-border);
}

.section--light .faq-item summary {
  color: var(--text-primary);
}

.section--light .faq-item summary:hover {
  color: var(--navy);
}

.section--light .faq-item details[open] summary {
  color: var(--navy);
}

.section--light .faq-item details p {
  color: var(--text-secondary);
}

.section--cta {
  background: linear-gradient(135deg, #0e2247 0%, var(--navy-dark) 100%);
  border-top: 1px solid rgba(247, 193, 0, 0.1);
  border-bottom: 1px solid rgba(247, 193, 0, 0.1);
}

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section__title-highlight {
  color: var(--gold);
}

.section__title-blue {
  color: var(--blue-deep);
}

.section--dark .section__title-blue {
  color: var(--blue);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.7;
}

.section__header {
  margin-bottom: 3rem;
}

.section__accent-bar {
  width: 40px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.pass-rate--gold .section__accent-bar {
  background: var(--navy);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about__photo-wrap {
  position: relative;
  display: grid;
  gap: 1rem;
}

.about__portrait-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(16, 38, 73, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 249, 252, 0.9) 42%, rgba(16, 38, 73, 0.08) 100%),
    var(--light-card);
  box-shadow: 0 24px 60px rgba(16, 38, 73, 0.14);
}

.about__portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(16, 38, 73, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 38, 73, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.45;
  pointer-events: none;
}

.about__portrait-card::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -32%;
  z-index: 0;
  width: 78%;
  aspect-ratio: 1;
  border: 42px solid rgba(247, 193, 0, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.about__portrait-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0;
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about__portrait-topline strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.82rem;
  box-shadow: 0 12px 28px rgba(16, 38, 73, 0.22);
}

.about__ctp-logo {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: transparent;
  padding: 0;
  box-shadow: none;
  object-fit: contain;
}

.about__photo {
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-height: 415px;
  padding: 0.5rem 1.5rem 0;
}

.about__photo-img {
  width: 100%;
  max-width: 330px;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 34px rgba(16, 38, 73, 0.2));
  display: block;
  margin-bottom: -1px;
}

.about__photo-badge {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 1.15rem 1.25rem;
}

.about__photo-name {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.15;
}

.about__photo-tagline {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.4;
}

.about__photo-role {
  display: block;
  max-width: 100%;
  text-align: left;
  font-size: 0.88rem;
  color: var(--gray-light);
  font-weight: 500;
  line-height: 1.5;
}

/* LinkedIn CTA sitting directly under the portrait card */
.about__linkedin {
  margin-top: 0.5rem;
}

/* Paired CTAs at the end of the About copy */
.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.about__credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about__credential {
  min-height: 104px;
  padding: 1rem;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  background: var(--light-card);
  box-shadow: var(--light-shadow);
}

.about__credential strong {
  display: block;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.about__credential span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.45;
  font-weight: 600;
}

.about__content {
  max-width: 650px;
}

.about__lead {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}

.about__text {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
  text-align: justify;
}

.about__proof-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.7rem 0 1.9rem;
}

.about__proof-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.05rem;
  border: 1px solid var(--light-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.about__proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--gold-bg);
  color: var(--navy);
  border: 1px solid rgba(247, 193, 0, 0.28);
  font-size: 0.78rem;
  font-weight: 900;
}

.about__proof-item h3 {
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.25rem;
}

.about__proof-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.about__exp-list {
  list-style: none;
  margin-bottom: 1.75rem;
}

.about__exp-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about__exp-item:last-child {
  border-bottom: none;
}

.about__exp-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.about__exp-company {
  display: block;
  font-weight: 600;
  color: var(--white);
  font-size: 0.92rem;
}

.about__exp-period {
  color: var(--gray);
  font-size: 0.82rem;
}


/* ============================================================
   PROGRAMS / COURSES
   ============================================================ */

.programs__split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.programs__intro {
  margin-bottom: 0;
}

.program-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 0;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, border-left-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  border-left-color: var(--gold);
  border-color: rgba(247, 193, 0, 0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Featured card is inverted -light card against the navy section */
.program-card--featured {
  background: #F8F8F8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.program-card--featured:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.program-card--featured .program-card__title {
  color: var(--text-primary);
}

.program-card--featured .program-card__title a {
  color: inherit;
  text-decoration: none;
}

.program-card--featured .program-card__desc {
  color: var(--text-secondary, #4a5568);
}

.program-card--featured .tag {
  background: var(--blue);
  color: var(--light-bg);
}

.program-card--featured .program-card__link {
  color: var(--blue);
}

.program-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.program-card__badge {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.program-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.program-card__logo {
  height: 60px;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.program-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.program-card__desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.program-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.tag {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-light);
  padding: 7px 14px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s;
}

.program-card__link:hover {
  gap: 10px;
}


/* ============================================================
   CTP PASS RATE CALLOUT
   ============================================================ */

.pass-rate {
  background: linear-gradient(135deg, #0e2247 0%, #102649 50%, #0c1d3a 100%);
  border-top: 1px solid rgba(247, 193, 0, 0.15);
  border-bottom: 1px solid rgba(247, 193, 0, 0.15);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle background glow */
.pass-rate::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 193, 0, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.pass-rate__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.pass-rate__stat {
  text-align: center;
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}

.pass-rate__number {
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  /* Subtle text glow */
  text-shadow: 0 0 60px rgba(247, 193, 0, 0.25);
}

.pass-rate__percent {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--gold);
  vertical-align: top;
  margin-top: 0.3em;
  display: inline-block;
}

.pass-rate__stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
}

.pass-rate__divider {
  width: 1px;
  height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(247, 193, 0, 0.3), transparent);
  flex-shrink: 0;
}

.pass-rate__content {
  text-align: left;
}

.pass-rate__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.pass-rate__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.pass-rate__title-highlight {
  color: var(--gold);
}

.pass-rate__text {
  color: var(--gray-light);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.pass-rate__text strong {
  color: var(--white);
  font-weight: 700;
}

.pass-rate__compare {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.pass-rate__compare-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1rem 1.25rem;
  text-align: center;
  flex: 1;
  min-width: 110px;
}

.pass-rate__compare-item--highlight {
  border-color: rgba(247, 193, 0, 0.2);
  background: rgba(247, 193, 0, 0.05);
}

.pass-rate__compare-item--gold {
  border-color: rgba(247, 193, 0, 0.45);
  background: rgba(247, 193, 0, 0.1);
  box-shadow: 0 0 24px rgba(247, 193, 0, 0.1);
}

.pass-rate__compare-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.pass-rate__compare-item--highlight .pass-rate__compare-num,
.pass-rate__compare-item--gold .pass-rate__compare-num {
  color: var(--gold);
}

.pass-rate__compare-label {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.4;
}

.pass-rate__compare-label strong {
  color: var(--white);
}

.pass-rate__compare-arrow {
  font-size: 1.25rem;
  color: rgba(247, 193, 0, 0.4);
  flex-shrink: 0;
}

.pass-rate__content .btn {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .pass-rate {
    padding: 4rem 1.5rem;
  }

  .pass-rate__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .pass-rate__divider {
    display: none;
  }

  .pass-rate__content {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .pass-rate {
    padding: 3rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .pass-rate__inner {
    box-sizing: border-box;
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 480px) {
  .pass-rate {
    padding: 3rem 1rem;
  }

  .pass-rate__inner {
    padding: 0;
  }

  .pass-rate__number {
    font-size: clamp(3rem, 18vw, 7rem);
  }

  .pass-rate__percent {
    font-size: clamp(2rem, 12vw, 4rem);
  }

  .pass-rate__compare {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .pass-rate__compare-item {
    width: 100%;
    max-width: 280px;
    min-width: unset;
  }

  .pass-rate__compare-arrow {
    transform: rotate(90deg);
    align-self: center;
    text-align: center;
  }

  .pass-rate__content > div[style*="flex"] {
    flex-direction: column;
    align-items: center;
  }

  .pass-rate__content > div[style*="flex"] .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.pass-rate--gold {
  background: linear-gradient(135deg, #F7C100 0%, #ffd233 60%, #F7C100 100%);
  border-top: none;
  border-bottom: none;
}

.pass-rate--gold .pass-rate__number {
  color: var(--navy);
  text-shadow: none;
}

.pass-rate--gold .pass-rate__percent {
  color: var(--navy);
}

.pass-rate--gold .pass-rate__stat-label {
  color: rgba(16,38,73,0.6);
}

.pass-rate--gold .pass-rate__title {
  color: var(--navy);
}

.pass-rate--gold .pass-rate__title-highlight {
  color: var(--navy-dark);
}

.pass-rate--gold .pass-rate__text {
  color: rgba(16,38,73,0.75);
}

.pass-rate--gold .pass-rate__text strong {
  color: var(--navy);
}

.pass-rate--gold .pass-rate__divider {
  background: linear-gradient(to bottom, transparent, rgba(16,38,73,0.2), transparent);
}

.pass-rate--gold .pass-rate__compare-item {
  background: var(--navy);
  border-color: var(--navy);
}

.pass-rate--gold .pass-rate__compare-num {
  color: var(--white);
}

.pass-rate--gold .pass-rate__compare-label {
  color: rgba(255,255,255,0.65);
}

.pass-rate--gold .pass-rate__compare-item--highlight .pass-rate__compare-num,
.pass-rate--gold .pass-rate__compare-item--gold .pass-rate__compare-num {
  color: var(--white);
}

.pass-rate--gold .section__tag {
  color: rgba(16,38,73,0.5);
}

.pass-rate--gold .btn--primary {
  background: var(--navy);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(16,38,73,0.3);
}

.pass-rate--gold .btn--primary:hover {
  background: var(--navy-dark);
  box-shadow: 0 8px 30px rgba(16,38,73,0.4);
}

/* ============================================================
   TEACHING METHODOLOGY
   ============================================================ */

.methodology__content {
  max-width: 1000px;
  margin: 0 auto;
}

.methodology__intro {
  font-size: 1.15rem;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 3rem;
  padding: 2rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-bg);
}

.methodology__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.formula__block {
  min-height: 320px;
  perspective: 1200px;
}

.formula__block-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.formula__block:hover .formula__block-inner,
.formula__block:focus-within .formula__block-inner {
  transform: rotateY(180deg);
}

.formula__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.formula__face--front {
  background: var(--navy-card);
}

.formula__face--back {
  background: var(--white);
  border-color: var(--light-border);
  transform: rotateY(180deg);
}

.formula__percent {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.formula__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.formula__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.methodology__outcome {
  text-align: center;
  padding: 2.5rem;
  background: var(--gold);
  border-radius: 0;
  margin-bottom: 3rem;
}

.methodology__outcome p {
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.8;
}

.methodology__outcome strong {
  color: var(--navy);
}

/* ── Curriculum: icon-card grid + delivery stats ── */
.curriculum {
  margin-bottom: 3rem;
}

.curriculum__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.curriculum__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.curriculum__title-highlight {
  color: var(--gold);
}

.curriculum__subtitle {
  font-size: 0.95rem;
  color: var(--gray);
}

.curriculum__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.curriculum__card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  padding: 2rem;
}

.curriculum__card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.curriculum__icon {
  color: var(--white);
  flex-shrink: 0;
}

.curriculum__card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.curriculum__card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.75;
}

.curriculum__card:nth-child(4) .curriculum__icon {
  color: var(--gold);
}

.curriculum__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.curriculum__stat {
  background: var(--blue);
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.curriculum__stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.curriculum__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .curriculum__grid,
  .curriculum__stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .curriculum__grid,
  .curriculum__stats {
    grid-template-columns: 1fr;
  }
}

.methodology__cta {
  text-align: center;
  padding: 2rem;
}

.methodology__cta p {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.methodology__cta strong {
  color: var(--gold);
}

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

@media (max-width: 768px) {
  .methodology__grid {
    grid-template-columns: 1fr;
  }

  .methodology__intro {
    padding: 1.5rem;
  }

  .formula__face {
    padding: 1.75rem;
  }

  .methodology__details {
    padding: 1.75rem;
  }
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: 0;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.why-card__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.why-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-card__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}


/* ============================================================
   CERTIFICATIONS
   ============================================================ */

.certs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cert-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1.25rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.2s;
}

.cert-card:hover {
  border-color: rgba(247, 193, 0, 0.3);
  transform: translateY(-3px);
}

.cert-card__name {
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cert-card__org {
  font-size: 0.74rem;
  color: var(--gray);
}


/* ============================================================
   PHILOSOPHY
   ============================================================ */

.philosophy__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.philosophy-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.philosophy-card:hover {
  border-color: rgba(247, 193, 0, 0.3);
  transform: translateY(-3px);
}

.philosophy-card__num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

/* Why / How / What each carry their own brand colour */
.philosophy-card__num--gold { color: var(--gold); }
.philosophy-card__num--blue { color: var(--blue); }
.philosophy-card__num--navy { color: var(--navy); }

.philosophy-card__text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray);
  flex: 1;
}

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

@media (max-width: 768px) {
  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}


/* ============================================================
   VIDEOS
   ============================================================ */

.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: visible;
  border-radius: 12px;
  background: var(--navy-card);
}

.video-label {
  position: absolute;
  top: -2.5rem;
  left: 0;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(247, 193, 0, 0.1);
  border: 1px solid rgba(247, 193, 0, 0.3);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.video-embed-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

@media (max-width: 768px) {
  .videos__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .video-embed-wrap {
    margin-top: 2.5rem;
    overflow: visible;
  }
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */

/* Carousel container */
.testimonials__carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Each card: fixed width for 3-up desktop */
.testimonials__track .test-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}

/* Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-card);
  border: 1.5px solid var(--light-border);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--light-shadow);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.testimonials__btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.testimonials__dots {
  display: flex;
  gap: 6px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-border);
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}

.testimonials__dot.is-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Mobile: 1 card */
@media (max-width: 768px) {
  .testimonials__track .test-card {
    flex: 0 0 100%;
  }
}

/* Tablet: 2 cards */
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials__track .test-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

.test-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.test-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.test-card__quote {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-style: italic;
  flex: 1;
}

.test-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}

.test-card__name {
  font-weight: 600;
  font-size: 0.88rem;
}

.test-card__role {
  font-size: 0.78rem;
  color: var(--gray);
}


/* ============================================================
   CAREER OUTCOMES
   ============================================================ */

.careers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.career-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 0;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: border-left-color 0.3s, transform 0.2s, box-shadow 0.2s;
}

.career-card:hover {
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.career-card__num {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: inline-block;
  width: auto;
}

.career-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.career-card__desc {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  flex: 1;
}

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

@media (max-width: 768px) {
  .careers__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .career-card {
    padding: 1.75rem;
  }
}


/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item details {
  padding: 1.25rem 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item details[open] summary {
  color: var(--gold);
}

.faq-item summary::after {
  content: "▼";
  font-size: 0.7rem;
  transition: transform 0.3s;
  margin-left: 1rem;
}

.faq-item details[open] summary::after {
  transform: rotate(180deg);
}

.faq-item details p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 0;
}


/* ============================================================
   BOTTOM CTA SECTION
   ============================================================ */

.cta-section__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.cta-section__desc {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-form-card {
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 0;
  padding: 2.5rem;
  text-align: left;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__info {}

.contact__details {
  list-style: none;
  margin-top: 1.5rem;
}

.contact__details-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact__details-item:last-child {
  border-bottom: none;
}

.contact__icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact__form-wrap {}

.form-group__textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Form feedback messages */
.form-feedback {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-feedback.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

.form-feedback.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--navy-darker);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand-desc {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 1rem 0 1.25rem;
  max-width: 300px;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.82rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer__social-link:hover {
  background: var(--gold-bg);
  color: var(--gold);
  border-color: var(--border-gold);
}

.footer__col-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__col-list {
  list-style: none;
}

.footer__col-list li {
  margin-bottom: 0.6rem;
}

.footer__col-list a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer__col-list a:hover {
  color: var(--gold);
}

.footer__bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #3d5470;
  flex-wrap: wrap;
  gap: 0.75rem;
}


/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.35); }
}


/* ============================================================
   PROGRAM DETAIL PAGES -COMPONENTS
   ============================================================ */

/* Program overview grid -2 col: description + at-a-glance */
.program-overview__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* At-a-glance card */
.program-glance-card {
  background: var(--navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 14px;
  padding: 2rem;
}

.program-glance-card__item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.program-glance-card__item:last-child {
  border-bottom: none;
}

.program-glance-card__label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

.program-glance-card__value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-align: right;
  max-width: 60%;
}

/* Curriculum grid */
.curriculum__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.curriculum-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.curriculum-item:hover {
  border-color: var(--border-gold);
}

.curriculum-item__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.curriculum-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* Light section overrides for curriculum */
.section--light .curriculum-item {
  background: var(--light-card);
  border-color: var(--light-border);
  box-shadow: var(--light-shadow);
}

.section--light .curriculum-item:hover {
  border-color: var(--gold);
}

.section--light .curriculum-item__num {
  color: var(--gold);
}

.section--light .curriculum-item__title {
  color: var(--text-primary);
}

/* Audience cards */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.audience-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: var(--light-shadow);
}

.audience-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.audience-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.audience-card__desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* How it works steps */
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.step__content p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin: 0;
}

/* Breadcrumb back link */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Program card detail link (on index.html cards) */
.program-card__details-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  border-bottom: 1px solid rgba(247,193,0,0.4);
  padding-bottom: 2px;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: color 0.2s, border-color 0.2s;
}

.program-card__details-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Program page hero */
.program-hero {
  background: var(--navy);
  padding: 100px 2rem 60px;
  text-align: center;
}

.program-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.program-hero__breadcrumb {
  margin-bottom: 1.5rem;
}

.program-hero__title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.program-hero__tagline {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 2rem;
  font-weight: 500;
}

.program-hero__cta {
  display: inline-block;
}

/* Program section headings */
.program-section__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3rem;
  text-align: center;
}

.section--light .program-section__title {
  color: var(--text-primary);
}

/* Responsive adjustments for program pages */
@media (max-width: 1024px) {
  .program-overview__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .curriculum__grid {
    grid-template-columns: 1fr;
  }

  .audience__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .program-hero {
    padding: 80px 1.5rem 50px;
  }

  .program-hero__title {
    font-size: 1.8rem;
  }

  .program-hero__tagline {
    font-size: 1rem;
  }

  .program-section__title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .steps__list {
    max-width: 100%;
  }

  .step {
    gap: 1rem;
  }

  .step__num {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .step__content h3 {
    font-size: 0.95rem;
  }

  .step__content p {
    font-size: 0.85rem;
  }
}


/* ============================================================
   RESPONSIVE -TABLET  (max 1024px)
   ============================================================ */

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

  .hero__image {
    display: none; /* Hidden on mobile */
  }

  .reg-card {
    display: none; /* Hidden on mobile -use bottom CTA form */
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .programs__split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .certs__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .methodology__details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   RESPONSIVE -MOBILE  (max 768px)
   ============================================================ */

@media (max-width: 768px) {
  html {
    overflow-x: hidden;
    width: 100%;
  }

  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }

  .section,
  .pass-rate,
  .hero {
    max-width: 100vw;
    width: 100%;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  .about__content,
  .pass-rate__content,
  .pass-rate__stat {
    min-width: 0;
  }

  .about__content .btn,
  .pass-rate__content .btn,
  .methodology__cta .btn,
  .contact__info .btn {
    width: 100%;
    justify-content: center;
  }

  p, h1, h2, h3, h4 {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .about__photo-wrap {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .about__photo {
    min-height: 360px;
    padding-inline: 1rem;
  }

  .about__photo-img {
    max-width: 285px;
  }

  .about__photo-name {
    font-size: 1.1rem;
  }

  .about__credential-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about__lead {
    font-size: 1rem;
  }

  .about__proof-item {
    grid-template-columns: 40px 1fr;
    gap: 0.85rem;
    padding: 0.95rem;
  }

  .about__proof-icon {
    width: 40px;
    height: 40px;
  }

  .program-card--featured {
    padding: 1.75rem;
  }

  .methodology__details-grid {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .certs__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .stats__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .stats__item:nth-child(2n) {
    border-right: none;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-form-card {
    padding: 1.5rem;
  }

  /* Allow outline buttons to wrap text on mobile */
  .btn--outline {
    white-space: normal;
    line-height: 1.4;
    word-break: break-word;
  }
}


/* ============================================================
   RESPONSIVE -SMALL MOBILE  (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .hero {
    padding: 100px 1.25rem 60px;
  }

  .about__portrait-topline {
    padding: 0.85rem 0.85rem 0;
    font-size: 0.66rem;
  }

  .about__portrait-topline strong {
    width: 40px;
    height: 40px;
    font-size: 0.74rem;
  }

  .about__photo {
    min-height: 320px;
  }

  .about__photo-img {
    max-width: 250px;
  }

  .about__photo-badge {
    padding: 1rem;
  }

  .about__credential-grid {
    grid-template-columns: 1fr;
  }

  .about__credential {
    min-height: auto;
  }

  .about__proof-item {
    grid-template-columns: 1fr;
  }

  .hero__countdown {
    gap: 0.5rem;
  }

  .hero__countdown-block {
    min-width: 60px;
    padding: 0.6rem 0.75rem;
  }

  .hero__countdown-num {
    font-size: 1.4rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 0 1.25rem;
  }

  .stats__num {
    font-size: 2rem;
  }
}
