@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Inter:wght@400;500;600&display=swap');

/* ===================================
   Variables
   =================================== */
:root {
  --gold:       #C8A951;
  --gold-dark:  #A88828;
  --gold-pale:  #FBF5E0;
  --navy:       #0D1B2A;
  --navy-mid:   #162436;
  --ink:        #1E2B38;
  --slate:      #4A5A6A;
  --mist:       #8090A0;
  --white:      #FFFFFF;
  --cloud:      #F6F8FA;
  --border:     #E2E8EE;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --transition: 0.22s ease;
  --container:  1160px;
  --nav-height: 80px;
}

/* ===================================
   Reset & Base
   =================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--ink);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.15rem); font-weight: 600; }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); font-weight: 600; }
p  { color: var(--slate); line-height: 1.8; }

/* ===================================
   Container
   =================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   Navigation
   =================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 62px; width: auto; object-fit: contain; }

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

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__link:hover {
  color: var(--gold-dark);
}

.nav__link.active {
  color: var(--navy);
  font-weight: 600;
  position: relative;
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px;
  padding-top: 12px;
  border: 1px solid var(--border);
  list-style: none;
}
/* Invisible bridge fills the gap so mouse movement doesn't break hover */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__dropdown-menu li a:hover {
  color: var(--gold-dark);
}

.nav__dropdown-menu li a.active {
  color: var(--navy);
  font-weight: 600;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}

/* Nav CTA */
.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  margin-left: 8px;
}
.nav__cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
  transform: none;
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 201;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================
   Hero (Homepage)
   =================================== */
.hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #162436 60%, #1A2D45 100%);
  padding: 100px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Gold radial glow — top right, echoes the logo spark */
.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(200,169,81,0.16) 0%, transparent 62%);
  pointer-events: none;
}

/* Arc ring — echoes the circular swoosh in the logo */
.hero::after {
  content: '';
  position: absolute;
  top: -220px;
  right: -220px;
  width: 860px;
  height: 860px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,81,0.09);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero__content { max-width: 680px; }

.hero__eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.hero__title {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 22px;
  line-height: 1.15;
}
.hero__title em {
  color: var(--gold);
  font-style: normal;
}

.hero__text {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  line-height: 1.82;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stat card (right column) */
.hero__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,81,0.2);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  z-index: 1;
}
.hero__card-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__stat-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.hero__stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__stat-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero__stat-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.55;
}
.hero__stat-text strong {
  color: var(--white);
  font-weight: 600;
}

/* ===================================
   Page Hero (inner pages)
   =================================== */
.page-hero {
  background: linear-gradient(135deg, #0D1B2A 0%, #162436 60%, #1A2D45 100%);
  padding: 68px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(200,169,81,0.13) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,81,0.08);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.page-hero__title { color: var(--white); margin-bottom: 14px; }
.page-hero__text {
  color: rgba(255,255,255,0.68);
  font-size: 1.02rem;
  max-width: 580px;
  line-height: 1.82;
}

/* ===================================
   Breadcrumb
   =================================== */
.breadcrumb {
  background: var(--cloud);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--mist);
}
.breadcrumb__inner a { color: var(--slate); transition: var(--transition); }
.breadcrumb__inner a:hover { color: var(--gold-dark); }
.breadcrumb__sep { color: var(--border); }

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

/* Gold fill — primary action on dark and light backgrounds */
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(168,136,40,0.35);
}

/* White outline — secondary action inside dark/navy sections */
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* Gold outline — secondary action on white/cloud backgrounds */
.btn--outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn--full { width: 100%; justify-content: center; }
.btn--sm { padding: 9px 18px; font-size: 0.86rem; }

/* ===================================
   Sections
   =================================== */
.section { padding: 88px 0; }
.section--cloud { background: var(--cloud); }
.section--navy  { background: var(--navy); }

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section__eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section__title { color: var(--ink); margin-bottom: 14px; }
.section__title--light { color: var(--white); }
.section__subtitle { color: var(--slate); font-size: 1.02rem; }

/* ===================================
   Course Cards (Homepage)
   =================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card__stripe { height: 5px; background: var(--gold); }

.card__body { padding: 32px; flex: 1; }

.card__level {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.card__title {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 13px;
}

.card__text {
  color: var(--slate);
  font-size: 0.91rem;
  line-height: 1.78;
  margin-bottom: 24px;
}

.card__meta {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.card__meta-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--mist);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.card__meta-value {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
}

.card__footer {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
}

/* ===================================
   Feature List (checklist)
   =================================== */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
}
.check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-body);
}

/* ===================================
   Info Bar (Duration / Delivery / Cert)
   =================================== */
.info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 48px;
}
.info-bar__item {
  background: var(--white);
  padding: 26px 22px;
  border-right: 1px solid var(--border);
}
.info-bar__item:last-child { border-right: none; }
.info-bar__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.info-bar__value {
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ===================================
   Course Grid (2-col, course pages)
   =================================== */
.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.content-block + .content-block { margin-top: 40px; }

.content-block__title {
  display: inline-block;
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

/* ===================================
   Suitable For Tags
   =================================== */
.suitable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.suitable-tag {
  background: var(--white);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
}

/* ===================================
   Next Step / Progression Callout (course pages)
   =================================== */
.next-step {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}
.next-step__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 6px;
}
.next-step__title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ===================================
   Quote Section
   =================================== */
.quote-section {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,81,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.quote__mark {
  display: block;
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 0.55;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 24px;
}
.quote__text {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.12rem, 2.5vw, 1.5rem);
  color: var(--white);
  line-height: 1.7;
}
.quote__source {
  margin-top: 28px;
  color: rgba(255,255,255,0.38);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ===================================
   CTA Band (gold)
   =================================== */
.cta-band {
  background: var(--gold);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -5%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-band__title {
  font-family: var(--font-heading);
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
}
.cta-band__text {
  color: rgba(13,27,42,0.78);
  margin-bottom: 36px;
  font-size: 1.02rem;
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.cta-band .btn--navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13,27,42,0.3);
}
.cta-band .btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: rgba(13,27,42,0.3);
}
.cta-band .btn--outline-navy:hover {
  border-color: var(--navy);
  background: rgba(13,27,42,0.07);
}

/* ===================================
   Values Grid (Why Choose Us)
   =================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(200,169,81,0.3);
}
.value-card__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.value-card__title {
  color: var(--navy);
  font-family: var(--font-heading);
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.value-card__text { font-size: 0.91rem; }

/* ===================================
   Progression Steps (horizontal pathway)
   =================================== */
.progression {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.progression__step {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  flex: 1;
  min-width: 160px;
  text-align: center;
  transition: var(--transition);
}
.progression__step:hover { border-color: var(--gold); }
.progression__step--active { border-color: var(--gold); background: var(--white); }
.progression__level {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.progression__name {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
}
.progression__arrow {
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0 10px;
  flex-shrink: 0;
}

/* ===================================
   EPA Steps (numbered list)
   =================================== */
.epa-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.epa-step {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 30px;
  transition: var(--transition);
}
.epa-step:hover { border-color: rgba(200,169,81,0.35); box-shadow: var(--shadow-sm); }
.epa-step__num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}
.epa-step__title {
  color: var(--navy);
  font-family: var(--font-heading);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.epa-step__text { font-size: 0.91rem; }

/* ===================================
   EPA Strip (Homepage — 2-panel support overview)
   =================================== */
.epa-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.epa-strip__panel {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.epa-strip__icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.epa-strip__title {
  font-family: var(--font-heading);
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.epa-strip__text {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.78;
  margin-bottom: 24px;
  flex: 1;
}
.epa-strip__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.epa-strip__link:hover { gap: 10px; }

/* ===================================
   Contact Grid & Form
   =================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info__title {
  color: var(--navy);
  font-family: var(--font-heading);
  margin-bottom: 18px;
}
.contact-info__text { margin-bottom: 36px; }
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.contact-info__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-info__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}
.contact-info__value {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 500;
}

.employer-callout {
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--cloud);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
}
.employer-callout p {
  color: var(--ink);
  font-size: 0.91rem;
  line-height: 1.72;
}
.employer-callout strong { color: var(--gold-dark); }

/* Form */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 7px; }
.form__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}
.form__label span { color: var(--gold-dark); }
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.12);
}
.form__textarea { min-height: 130px; resize: vertical; }
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4L6 8L10 4' stroke='%234A5A6A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form__note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--mist);
  text-align: center;
  margin-top: -8px;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--navy);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer__brand { }
.footer__logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 18px;
  opacity: 0.92;
}
.footer__tagline {
  color: rgba(255,255,255,0.42);
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.78;
  max-width: 260px;
}
.footer__tagline em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
  display: block;
  margin-top: 12px;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer__heading {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  color: rgba(255,255,255,0.28);
  font-family: var(--font-body);
  font-size: 0.82rem;
}

/* ===================================
   About page — intro grid
   =================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-intro p { margin-bottom: 22px; }
.about-intro p:last-child { margin-bottom: 0; }

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { display: none; }
}

@media (max-width: 900px) {
  .nav__menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    gap: 4px;
    overflow-y: auto;
    align-items: stretch;
    border-top: 1px solid var(--border);
  }
  .nav__menu.open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__link { font-size: 1rem; padding: 12px 14px; }
  .nav__cta { text-align: center; margin-left: 0; margin-top: 8px; padding: 13px 20px !important; }
  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--cloud);
    border-radius: var(--radius-sm);
    display: none !important;
    margin-top: 4px;
    min-width: unset;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block !important; }
  .course-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .progression { flex-direction: column; align-items: stretch; }
  .progression__arrow { transform: rotate(90deg); text-align: center; }
  .info-bar { grid-template-columns: 1fr; }
  .info-bar__item { border-right: none; border-bottom: 1px solid var(--border); }
  .info-bar__item:last-child { border-bottom: none; }
  .next-step { flex-direction: column; text-align: center; }
  .epa-strip { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .form__row { grid-template-columns: 1fr; }
  .quote-section { padding: 64px 0; }
  .cta-band { padding: 64px 0; }
  .epa-strip__panel { padding: 28px 24px; }
}

/* ===================================
   Form feedback states
   =================================== */
.form__success,
.form__error {
  display: none;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.93rem;
  line-height: 1.6;
}
.form__success {
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--white);
}
.form__success strong { color: var(--gold); }
.form__error {
  background: var(--white);
  border: 1.5px solid #C0392B;
  color: #7B1F1F;
}
.form__success.visible,
.form__error.visible { display: block; }

.btn[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
