@import url("https://fonts.googleapis.com/css2?family=Gidole&family=Oswald:wght@200..700&family=Poppins:wght@400;600&display=swap");

/* Palette aligned with Global Environmental University of America (https://www.geua.us/) — reference scrape in .noupload/raw */
:root {
  --geua-purple: #46166b;
  --geua-purple-dark: #371154;
  --geua-gold: #eeb211;
  --geua-gold-hover: #edba32;
  --geua-charcoal: #333333;
  --geua-charcoal-2: #222222;
  --green-900: #46166b;
  --green-700: #371154;
  --green-600: #46166b;
  --green-100: #ede6f3;
  --gold: #eeb211;
  --coral: #eeb211;
  --coral-dark: #edba32;
  --text: #333333;
  --muted: #666666;
  --bg: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(70, 22, 107, 0.14);
  --radius: 8px;
  --max: 1180px;
  --font: "Gidole", system-ui, -apple-system, sans-serif;
  --font-display: "Oswald", system-ui, sans-serif;
  --font-nav: "Poppins", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font);
}

.section h2,
.page-hero h1,
.hero-caption h1 {
  font-family: var(--font-display);
  font-weight: 600;
}

a {
  color: var(--green-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Same content rail as courses page — use with .container site-wide */
.container.programs-wide {
  max-width: var(--max);
}

.container.programs-wide.prose {
  max-width: none;
}

/* ----- Header & navigation (GEUA-style: https://www.geua.us/) ----- */
.site-header.geua-site-header {
  background: var(--geua-charcoal);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 50;
}

.geua-header-bar {
  background: var(--geua-charcoal);
  text-align: left;
  padding: 0.65rem 0 0.75rem;
}

/* Mobile-only strip: date, year, search, language (hidden on desktop) */
.geua-mobile-topstrip {
  display: none;
  box-sizing: border-box;
}

.geua-header-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  color: inherit;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  max-width: min(280px, 52vw);
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  flex-shrink: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--geua-purple), var(--geua-purple-dark));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 0.95rem;
}

/* Top utility row — gold links, white date (cf. GEUA .top-nav) */
.geua-util-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem 0.85rem;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
}

.geua-util-nav__tagline {
  color: #cccccc;
  font-weight: 500;
  margin-right: 0.25rem;
}

.geua-util-nav a {
  color: var(--geua-gold);
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.geua-util-nav a:hover {
  background-color: var(--geua-gold);
  color: #000000;
  text-decoration: none;
}

.geua-util-nav .geua-date {
  color: #ffffff;
  font-weight: 600;
}

.geua-lang-pill {
  color: #ffffff;
  opacity: 0.95;
  font-size: 0.8rem;
  padding: 0.15rem 0.45rem;
  border: 1px solid #666666;
  border-radius: 4px;
}

.geua-search-trigger {
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  padding: 0.25rem 0.45rem;
  border-radius: 5px;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.geua-search-trigger:hover {
  background-color: var(--geua-gold);
  color: #000000;
}

.geua-search-trigger__icon {
  font-size: 1.15rem;
  display: block;
}

/* Slide-down search strip (cf. GEUA .search-container) */
.geua-search-slide {
  background: var(--geua-charcoal);
  border-bottom: 0.5px solid #888888;
  padding: 0.65rem 0;
}

.geua-search-slide__inner {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  box-sizing: border-box;
}

.geua-search-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 640px;
}

.geua-search-input {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  outline: none;
  font-family: inherit;
}

.geua-search-submit {
  padding: 0.55rem 1.25rem;
  background: var(--geua-gold);
  color: #000000;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: var(--font-nav);
}

.geua-search-submit:hover {
  background: var(--geua-gold-hover);
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  border: 1px solid #888888;
  background: transparent;
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  font-size: 1.25rem;
  cursor: pointer;
  color: #ffffff;
}

/* Second row: full-width navbar (cf. GEUA .navbar) */
.geua-navbar-shell {
  position: relative;
  background: var(--geua-charcoal);
  border-top: 0.5px solid #888888;
  font-family: var(--font-nav);
  font-weight: 600;
}

.geua-main-nav-wrap {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  box-sizing: border-box;
}

.geua-main-nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
  width: 100%;
}

.geua-main-nav > li {
  list-style: none;
  position: relative;
  margin: 0;
}

.geua-nav-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  min-height: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  text-decoration: none;
  box-sizing: border-box;
  white-space: normal;
  line-height: 1.25;
}

a.geua-nav-trigger {
  cursor: pointer;
}

.geua-main-nav > li > a.geua-nav-trigger:hover,
.geua-main-nav > li > button.geua-nav-trigger:hover {
  background: rgba(238, 178, 17, 0.15);
  color: var(--geua-gold);
  text-decoration: none;
}

.geua-main-nav > li > a.geua-nav-trigger.is-active,
.geua-main-nav > li > button.geua-nav-trigger.is-active {
  background: var(--geua-purple);
  color: #ffffff;
}

.has-sub > button.geua-nav-trigger::after {
  content: "▼";
  font-size: 0.55rem;
  margin-left: 0.15rem;
  opacity: 0.85;
}

/* Full-width mega row (cf. GEUA .fullwidth-dropdown + .dropdown-section) */
.geua-mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--geua-charcoal-2);
  border-top: 1px solid #444444;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  z-index: 60;
}

.geua-navbar-shell:hover .geua-mega,
.geua-navbar-shell:focus-within .geua-mega,
.geua-mega:hover {
  display: block;
}

.geua-mega-inner {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  box-sizing: border-box;
}

.geua-mega-col {
  padding: 1.1rem 0.85rem 1.35rem;
  min-height: 160px;
  transition: background-color 0.25s ease;
  border-right: 1px solid #3a3a3a;
}

.geua-mega-col:last-child {
  border-right: none;
}

.geua-mega-col:hover {
  background-color: var(--geua-purple);
}

.geua-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.geua-mega-col li {
  margin: 0;
}

.geua-mega-col a {
  display: block;
  padding: 0.4rem 0.35rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
}

.geua-mega-col a:hover {
  background: var(--geua-gold);
  color: #000000;
  text-decoration: none;
}

.geua-mega-col a.is-active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .geua-nav-trigger {
    font-size: 0.78rem;
    padding-inline: 0.35rem;
  }

  .geua-mega-col {
    padding-inline: 0.55rem;
  }

  .geua-mega-col a {
    font-size: 0.8rem;
  }
}

.subnav {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: var(--geua-charcoal-2);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border: 1px solid #444444;
  padding: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.15s, transform 0.15s;
}

.has-sub:hover .subnav,
.has-sub:focus-within .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.subnav a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 6px;
  color: #ffffff;
}

.subnav a:hover {
  background: var(--geua-gold);
  color: #000000;
  text-decoration: none;
}

@media (min-width: 901px) {
  .geua-main-nav .has-sub .subnav {
    display: none !important;
  }

  .geua-navbar-shell:hover .has-sub .subnav,
  .geua-navbar-shell:focus-within .has-sub .subnav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  background: var(--green-900);
  color: #fff;
  overflow: hidden;
}

/* Home hero overlay — caption panel inspired by GEUA carousel (https://www.geua.us/) */
.hero--udyog .hero-slides {
  min-height: min(78vh, 620px);
}

.hero-udyog-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
  padding: 2.5rem 0 3.25rem;
  pointer-events: none;
}

.hero-udyog-overlay .container {
  pointer-events: auto;
  position: relative;
  max-width: min(100% - 2rem, 720px);
  margin-left: min(7%, 2rem);
  margin-right: auto;
  padding: 1.75rem 1.5rem 1.5rem;
  background-color: rgb(55 17 84 / 39%);
}

.hero-udyog__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.hero-udyog__headline {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-udyog__dreams {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-udyog__dreams li {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.6vw, 1.65rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-udyog__dreams .hash {
  color: var(--gold);
  font-weight: 800;
  margin-right: 0.08em;
}

.hero-udyog__sub {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  max-width: 34rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.hero-udyog__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-udyog-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem 0.9rem;
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  background-color: var(--geua-purple);
  color: #ffffff;
  border: 1px solid var(--geua-purple);
  box-shadow: none;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn-udyog-primary:hover {
  color: #ffffff;
  background-color: var(--geua-purple-dark);
  border-color: var(--geua-purple-dark);
  text-decoration: none;
}

.btn-udyog-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.2rem 0.85rem;
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  background: #ffffff;
  color: var(--geua-purple);
  border: 1px solid #ffffff;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn-udyog-secondary:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
  color: var(--geua-purple-dark);
  text-decoration: none;
}

.btn-udyog-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.15rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #ffffff;
  border-bottom: 2px solid var(--geua-gold);
  text-decoration: none;
}

.btn-udyog-ghost:hover {
  color: var(--geua-gold-hover);
  text-decoration: none;
}

.hero--udyog .hero-caption {
  display: none;
}

.hero--udyog .hero-dots {
  z-index: 5;
}

.hero-slides {
  position: relative;
  min-height: min(72vh, 560px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.is-visible {
  opacity: 1;
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  
}

.hero-caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(72vh, 560px);
  padding: 3rem 0;
  max-width: 640px;
}

.hero-caption h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}

.hero-caption p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.95;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.hero-dots button.is-active {
  background: #fff;
  border-color: #fff;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section.alt {
  background: #f8f8f8;
}

.section h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green-900);
}

.section .lead {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 720px;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e3ebe5;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--green-700);
}

.card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.card--photo {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.card__photo {
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
  background: var(--green-900);
}

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

.card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card--photo .card__body h3 {
  margin-top: 0;
}

.card--photo .card__body p {
  flex: 1;
}

.card--photo .card__body .btn {
  margin-top: 0.35rem;
  align-self: flex-start;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--green-600);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-700);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-600);
}

.btn-outline:hover {
  background: var(--green-100);
}

/* Highlights row */
.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.highlight {
  background: linear-gradient(160deg, var(--green-100), #fff);
  border: 1px solid #dddddd;
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.highlight strong {
  display: block;
  color: var(--green-900);
  margin-bottom: 0.35rem;
}

.highlight span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(120deg, var(--geua-purple-dark), var(--geua-purple));
  color: #fff;
  padding: 2.5rem 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.page-hero p {
  margin: 0.5rem 0 0;
  opacity: 0.95;
  max-width: 720px;
}

.page-hero p.page-hero__lead {
  max-width: none;
}

.page-hero--courses {
  position: relative;
  overflow: hidden;
}

.page-hero--courses::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 80%, rgba(201, 162, 39, 0.12), transparent 50%);
  pointer-events: none;
}

.page-hero--courses > .container {
  position: relative;
  z-index: 1;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
  color: var(--green-900);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

.tagline-banner {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.tagline-banner h2 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}

.tagline-banner p {
  margin: 0;
  color: var(--muted);
}

.course-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0 2rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.course-table th,
.course-table td {
  border: 1px solid #e0ebe4;
  padding: 0.6rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.course-table th {
  background: var(--green-100);
  color: var(--green-900);
}

.notice-box {
  background: #fff9e6;
  border: 1px solid #e8d48a;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.notice-box strong {
  color: var(--green-900);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Courses page — GEUA-style intro + card grid */
.programs-page {
  background: linear-gradient(180deg, #f0f7f2 0%, var(--white) 12%, var(--white) 100%);
}

.programs-page .container.programs-narrow {
  max-width: 920px;
}

.programmes-overview {
  margin-bottom: 2.5rem;
  width: 100%;
  max-width: none;
}

.programs-page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3.2vw, 2.05rem);
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.65rem;
}

.programs-page-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.5rem;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--green-600));
}

.programs-page-tagline {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: none;
}

.programmes-summary-card {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid #dddddd;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 12px 40px rgba(70, 22, 107, 0.08);
  overflow: hidden;
}

.programmes-summary-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, #f7fbf8 0%, #fff 100%);
  border-bottom: 1px solid #e4efe8;
}

.programmes-summary-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.programmes-summary-card__note {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
}

.programmes-summary-card__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-900);
  background: linear-gradient(135deg, #e8f5ee, #d4eadc);
  border: 1px solid #b8d9c6;
}

.programmes-summary-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
}

.programmes-meta-tile {
  padding: 1.15rem 1.35rem;
  border-right: 1px solid #ecf4ef;
  border-bottom: 1px solid #ecf4ef;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 5.5rem;
  justify-content: center;
}

.programmes-meta-tile:nth-child(3n) {
  border-right: none;
}

.programmes-meta-tile--wide {
  grid-column: 1 / -1;
  border-right: none;
  border-bottom: none;
  min-height: unset;
  padding-top: 1.25rem;
  padding-bottom: 1.35rem;
  background: linear-gradient(180deg, #fafdfb 0%, #fff 100%);
}

.programmes-meta-tile__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
}

.programmes-meta-tile__value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

.programmes-meta-tile__value strong {
  font-weight: 700;
  color: var(--green-900);
}

@media (max-width: 720px) {
  .programmes-summary-meta {
    grid-template-columns: 1fr;
  }

  .programmes-meta-tile {
    border-right: none;
    min-height: unset;
  }

  .programmes-meta-tile:not(.programmes-meta-tile--wide) {
    border-bottom: 1px solid #ecf4ef;
  }
}

.course-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
  margin-top: 0.25rem;
}

.course-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d8e8df;
  box-shadow: 0 4px 20px rgba(70, 22, 107, 0.07);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(70, 22, 107, 0.14);
  border-color: #b8d4c4;
}

.course-card__media {
  margin: 0;
  position: relative;
  aspect-ratio: 8 / 5;
  background: var(--green-900);
  overflow: hidden;
}

.course-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(70, 22, 107, 0.35) 100%);
  pointer-events: none;
}

.course-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.course-card:hover .course-card__media img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .course-card {
    transition: none;
  }

  .course-card:hover {
    transform: none;
  }

  .course-card__media img {
    transition: none;
  }

  .course-card:hover .course-card__media img {
    transform: none;
  }
}

.course-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.course-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.course-card__meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--green-600);
}

.programs-more {
  max-width: var(--max);
  margin-inline: auto;
}

.programs-more h2 {
  margin-top: 2.5rem;
}

/* Homepage section titles — GEUA-style Oswald uppercase */
.section-title-uw {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  color: var(--green-900);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title-uw .hash-mark {
  color: var(--geua-gold);
  font-weight: 600;
}

.section-lead-uw {
  margin: 0 0 2rem;
  color: var(--muted);
  max-width: 640px;
  font-size: 1.02rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -3rem;
  position: relative;
  z-index: 6;
}

.stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.35rem 1.15rem;
  text-align: center;
  border: 1px solid #e0ebe4;
  box-shadow: 0 16px 40px rgba(70, 22, 107, 0.1);
}

.stat-card__value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-card__label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.vision-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.vision-split__visual {
  border-radius: 18px;
  min-height: 280px;
  background: var(--green-900);
  position: relative;
  overflow: hidden;
  border: 1px solid #c5e0d2;
  box-shadow: 0 12px 40px rgba(70, 22, 107, 0.12);
}

.vision-split__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vision-split__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(70, 22, 107, 0.2) 0%, transparent 40%),
    linear-gradient(15deg, rgba(70, 22, 107, 0.75) 0%, transparent 55%),
    linear-gradient(145deg, rgba(35, 139, 82, 0.35) 0%, transparent 50%);
}

.vision-split__visual::after {
  content: "Skilling Youths · Empowering India";
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.home-showcase__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
}

.home-showcase__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.25;
}

.home-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(160px, 1fr) minmax(160px, 1fr);
  gap: 1rem;
  min-height: 340px;
}

.home-showcase__item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d5e8dd;
  box-shadow: 0 10px 32px rgba(70, 22, 107, 0.08);
}

.home-showcase__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.home-showcase__item:hover img {
  transform: scale(1.04);
}

.home-showcase__item--left {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.home-showcase__item--top-mid {
  grid-column: 2;
  grid-row: 1;
}

.home-showcase__item--bot-mid {
  grid-column: 2;
  grid-row: 2;
}

.home-showcase__item--right {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.vision-split__kicker {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
}

.vision-split h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--green-900);
  line-height: 1.25;
}

.vision-split p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  border: 1px solid #e3ebe5;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(70, 22, 107, 0.1);
}

.why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-100), #fff);
  border: 1px solid #d5e8dd;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-900);
}

.why-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.top-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.top-course-card {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dddddd;
  box-shadow: 0 4px 18px rgba(70, 22, 107, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.top-course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(70, 22, 107, 0.12);
  text-decoration: none;
}

.top-course-card__img {
  aspect-ratio: 16 / 10;
  background: var(--green-900);
  overflow: hidden;
}

.top-course-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-course-card__body {
  padding: 1rem 1.15rem 1.25rem;
}

.top-course-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}

.top-course-card__title {
  margin: 0.25rem 0 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.35;
}

.top-course-card__meta {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

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

.video-card {
  margin: 0;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #dddddd;
  box-shadow: 0 4px 18px rgba(70, 22, 107, 0.06);
  padding: 0.65rem;
}

.video-card__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--geua-charcoal-2);
  border: 1px solid #555555;
}

.video-card__activate {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--geua-charcoal-2);
  border-radius: 10px;
}

.video-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 0.2s ease;
}

.video-card__activate:hover .video-card__thumb,
.video-card__activate:focus-visible .video-card__thumb {
  opacity: 1;
}

.video-card__activate:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.video-card__playfacade {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, transparent 35%, rgba(55, 17, 84, 0.5) 100%);
  pointer-events: none;
}

.video-card__playicon {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--geua-gold);
  color: #000000;
  font-size: 1.1rem;
  padding-left: 0.2em;
  line-height: 1;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.video-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.leadership-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.75rem;
  align-items: center;
  background: linear-gradient(135deg, #fff 0%, var(--green-100) 100%);
  border: 1px solid #dddddd;
  border-radius: 18px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
}

.leadership-card__avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-600), var(--green-900));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(70, 22, 107, 0.2);
}

.leadership-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--green-900);
}

.leadership-card .role {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-600);
}

.leadership-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.mission-uw {
  background: var(--geua-charcoal);
  color: #e8e0f0;
  padding: 3rem 0;
  text-align: center;
}

.mission-uw h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  max-width: 52rem;
  margin-inline: auto;
  line-height: 1.45;
  text-transform: uppercase;
}

.mission-uw .mission-note {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.section--tight-top {
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -2rem;
  }

  .vision-split {
    grid-template-columns: 1fr;
  }

  .home-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .home-showcase__item--left {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 260px;
  }

  .home-showcase__item--top-mid {
    grid-column: 2;
    grid-row: 1;
    min-height: 160px;
  }

  .home-showcase__item--bot-mid {
    grid-column: 2;
    grid-row: 2;
    min-height: 160px;
  }

  .home-showcase__item--right {
    grid-column: 1 / span 2;
    grid-row: 3;
    min-height: 200px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .top-courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .leadership-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leadership-card__avatar {
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .home-showcase {
    grid-template-columns: 1fr;
  }

  .home-showcase__item--left,
  .home-showcase__item--top-mid,
  .home-showcase__item--bot-mid,
  .home-showcase__item--right {
    grid-column: 1;
    grid-row: auto;
    min-height: 200px;
  }

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

  .top-courses-grid {
    grid-template-columns: 1fr;
  }

  .hero-udyog__cta {
    flex-direction: column;
    align-items: stretch;
  }
}

.site-footer {
  background: var(--geua-charcoal);
  color: #999999;
  padding: 2.75rem 0 1.5rem;
  margin-top: 0;
}

.site-footer h3 {
  color: #ffffff;
  font-size: 1rem;
  margin: 0 0 0.75rem;
  font-family: var(--font-nav);
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.site-footer .footer-grid p {
  color: #cccccc;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: #cccccc;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--geua-gold);
}

.site-footer a {
  color: var(--geua-gold);
}

.site-footer a:hover {
  color: var(--geua-gold-hover);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  text-align: center;
  color: #999999;
}

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

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

  .geua-mobile-topstrip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.45rem max(1rem, env(safe-area-inset-left)) 0.45rem max(1rem, env(safe-area-inset-right));
    border-bottom: 0.5px solid #888888;
    background: #2a2a2a;
    font-family: var(--font-nav);
    font-weight: 600;
    font-size: 0.82rem;
  }

  .geua-mobile-topstrip__lhs {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.35rem;
    min-width: 0;
    flex: 1 1 auto;
  }

  .geua-mobile-topstrip__dm {
    color: #ffffff;
  }

  .geua-mobile-topstrip__year {
    color: var(--geua-gold);
    font-size: 0.92rem;
    letter-spacing: 0.02em;
  }

  .geua-mobile-topstrip__rhs {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .geua-lang-wrap {
    display: flex;
    align-items: center;
  }

  .geua-lang-select {
    margin: 0;
    max-width: min(32vw, 128px);
    padding: 0.3rem 0.45rem;
    font-size: 0.74rem;
    font-weight: 600;
    font-family: var(--font-nav);
    color: #ffffff;
    background-color: #444444;
    border: 1px solid #777777;
    border-radius: 5px;
    cursor: pointer;
  }

  .geua-lang-select option {
    color: #111111;
    background: #ffffff;
  }

  .geua-search-trigger--compact {
    padding: 0.2rem 0.4rem;
  }

  .geua-search-trigger--compact .geua-search-trigger__icon {
    font-size: 1.05rem;
  }

  .geua-util-nav {
    display: none !important;
  }

  .geua-header-bar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .geua-header-bar__inner {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.5rem 0 0.55rem;
  }

  .geua-header-bar .brand {
    flex: 1 1 auto;
    min-width: 0;
    margin-right: auto;
  }

  .geua-header-bar .brand-logo {
    height: 52px;
    max-width: min(220px, calc(100vw - 4.5rem));
  }

  .geua-mega {
    display: none !important;
  }

  .geua-navbar-shell:hover .geua-mega,
  .geua-navbar-shell:focus-within .geua-mega,
  .geua-mega:hover {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .geua-main-nav {
    display: none;
    position: absolute;
    right: 1rem;
    left: 1rem;
    top: calc(100% + 0.35rem);
    z-index: 55;
    flex-direction: column;
    align-items: stretch;
    grid-template-columns: 1fr;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
    min-width: 0;
    max-height: min(70vh, 520px);
    overflow-y: auto;
  }

  .geua-main-nav.is-open {
    display: flex;
  }

  .geua-main-nav.is-open > li > a.geua-nav-trigger,
  .geua-main-nav.is-open > li > button.geua-nav-trigger {
    color: var(--text);
    width: 100%;
  }

  .geua-main-nav.is-open > li > a.geua-nav-trigger:hover,
  .geua-main-nav.is-open > li > button.geua-nav-trigger:hover {
    background: var(--green-100);
    color: var(--green-900);
  }

  .geua-main-nav.is-open > li > a.geua-nav-trigger.is-active,
  .geua-main-nav.is-open > li > button.geua-nav-trigger.is-active {
    background: var(--green-100);
    color: var(--green-900);
  }

  /* Submenus: tap-to-expand (hover is unreliable on touch; see site.js) */
  .geua-main-nav.is-open .has-sub:not(.is-sub-open) .subnav {
    display: none;
  }

  .geua-main-nav.is-open .has-sub.is-sub-open .subnav {
    display: block;
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    padding: 0.35rem 0.35rem 0.35rem 0.65rem;
    margin-top: 0.25rem;
    border-left: 2px solid var(--green-100);
    background: #f3f3f3;
    border-radius: 6px;
  }

  .geua-main-nav.is-open .has-sub.is-sub-open .subnav a {
    color: var(--text);
  }

  .geua-main-nav.is-open .has-sub.is-sub-open .subnav a:hover {
    background: var(--geua-gold);
    color: #000000;
  }

  .has-sub > button.geua-nav-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .has-sub > button.geua-nav-trigger::after {
    transition: transform 0.2s ease;
  }

  .has-sub.is-sub-open > button.geua-nav-trigger::after {
    transform: rotate(180deg);
  }
}

/* Contact page — aligned cards + definition list */
.contact-page {
  padding-block: 0.25rem 2.5rem;
}

.contact-intro {
  margin-bottom: 1.5rem;
}

.contact-intro__org {
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid #dddddd;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(70, 22, 107, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-intro__line {
  display: block;
  line-height: 1.45;
}

.contact-intro__line--strong {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--green-900);
}

.contact-intro__meta {
  font-size: 0.92rem;
  color: var(--muted);
}

.contact-intro__tagline {
  font-weight: 600;
  color: var(--green-700);
  margin-top: 0.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.contact-card {
  margin: 0;
  padding: 1.35rem 1.5rem 1.5rem;
  background: var(--white);
  border: 1px solid #dddddd;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(70, 22, 107, 0.06);
}

.contact-card__title {
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--green-100);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-900);
}

.contact-card__address {
  margin: 0 0 1.25rem;
  line-height: 1.65;
  color: var(--text);
}

.contact-card__subtitle {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
}

.contact-floors {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-floors li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.65rem 1rem;
  align-items: baseline;
  padding: 0.5rem 0;
  margin: 0;
  border-bottom: 1px solid #eef5f0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.contact-floors li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-floors__label {
  font-weight: 600;
  color: var(--green-900);
}

.contact-floors__value {
  color: var(--text);
}

.contact-dl {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.65rem 1rem;
  margin: 0;
  align-items: start;
}

.contact-dl dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.15rem;
}

.contact-dl dd {
  margin: 0;
  line-height: 1.5;
  word-break: break-word;
}

.contact-dl__stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-dl a {
  font-weight: 500;
}

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

  .contact-floors li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .contact-floors__label {
    font-size: 0.85rem;
  }

  .contact-dl {
    grid-template-columns: 1fr;
    gap: 0.15rem 0;
  }

  .contact-dl dt {
    padding-top: 0.65rem;
  }

  .contact-dl dt:first-of-type {
    padding-top: 0;
  }

  .contact-dl dd {
    margin-bottom: 0.35rem;
  }
}

/* Course detail — Digital Marketing & E-Commerce */
a.course-card--link {
  text-decoration: none;
  color: inherit;
}

a.course-card--link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

:root {
  /* Keep the in-page course subnav right under the sticky site header */
  --course-sticky-offset-desktop: 5.25rem;
  --course-sticky-offset-mobile: 6.5rem;
}

.page-hero--course-digital {
  position: relative;
  overflow: hidden;
  padding-bottom: 2.75rem;
}

.page-hero--course-digital::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 25%, rgba(238, 178, 17, 0.14), transparent 52%),
    radial-gradient(ellipse 60% 45% at 92% 88%, rgba(255, 255, 255, 0.1), transparent 48%);
  pointer-events: none;
}

.course-detail-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr min(38%, 340px);
  gap: 2rem 2.25rem;
  align-items: center;
}

.course-detail-hero__text {
  min-width: 0;
}

.course-detail-breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.82rem;
}

.course-detail-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.course-detail-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
}

.course-detail-breadcrumb li:not(:last-child)::after {
  content: "/";
  opacity: 0.55;
  font-weight: 400;
}

.course-detail-breadcrumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.course-detail-breadcrumb a:hover {
  color: var(--gold);
}

.course-detail-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.page-hero--course-digital h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.page-hero--course-digital .page-hero__lead {
  font-size: 1.02rem;
  line-height: 1.55;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.course-detail-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.course-detail-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.course-detail-pill--link {
  color: #fff;
  text-decoration: none;
  background: rgba(238, 178, 17, 0.2);
  border-color: rgba(238, 178, 17, 0.55);
}

.course-detail-pill--link:hover {
  background: rgba(238, 178, 17, 0.3);
  border-color: rgba(238, 178, 17, 0.85);
  text-decoration: none;
}

.course-detail-pill--link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.course-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.course-detail-hero__btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.course-detail-hero__btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

.course-detail-hero__figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.course-detail-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.course-detail-main {
  background: linear-gradient(180deg, #f0f7f2 0%, #fafafa 14%, #fafafa 100%);
  padding-top: 2.25rem;
  padding-bottom: 2.5rem;
}

.course-detail-section {
  margin-bottom: 2.75rem;
  scroll-margin-top: calc(var(--course-sticky-offset-desktop) + 4rem);
}

.course-detail-section__head {
  margin-bottom: 1.35rem;
  max-width: 640px;
}

.course-detail-section__head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--green-900);
  letter-spacing: -0.02em;
}

.course-detail-section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.course-importance-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
  max-width: 820px;
}

.course-importance-list li {
  color: var(--text);
  line-height: 1.55;
}

.course-content-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
  max-width: 900px;
}

.course-content-list li {
  color: var(--text);
  line-height: 1.55;
}

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

.course-importance-card {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #dde8e0;
  box-shadow: 0 6px 24px rgba(70, 22, 107, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.course-importance-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(70, 22, 107, 0.1);
}

.course-importance-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
  background: linear-gradient(145deg, #f4edfb, #e8dff5);
  border: 1px solid #d4c4e4;
  position: relative;
}

.course-importance-card__icon::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(238, 178, 17, 0.18);
}

.course-importance-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: var(--green-900);
}

.course-importance-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.course-module-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: module;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(70, 22, 107, 0.06);
}

.course-module-timeline > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 1px solid #e0ebe4;
  border-bottom: none;
  position: relative;
}

.course-module-timeline > li:first-child {
  border-radius: 0;
}

.course-module-timeline > li:last-child {
  border-bottom: 1px solid #e0ebe4;
  border-radius: 0;
}

.course-module-timeline__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green-900);
  background: linear-gradient(145deg, #f4edfb, #e8dff5);
  border: 1px solid #d4c4e4;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.course-module-timeline > li:not(:last-child) .course-module-timeline__num::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 6px);
  background: linear-gradient(180deg, rgba(70, 22, 107, 0.25), rgba(70, 22, 107, 0.05));
}
.course-module-timeline__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  color: var(--green-900);
  letter-spacing: -0.02em;
}

.course-module-timeline__body p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.course-detail-highlight {
  margin-top: 0.5rem;
  scroll-margin-top: calc(var(--course-sticky-offset-desktop) + 4rem);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(125deg, var(--geua-purple-dark), #5c2d87 55%, #46166b);
  color: #fff;
  box-shadow: var(--shadow);
}

.course-detail-highlight__inner {
  padding: 1.75rem 1.5rem 1.85rem;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.course-qr {
  margin-top: 1rem;
  background: #ffffff;
  border-radius: 14px;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.course-qr img {
  width: min(420px, 82vw);
  height: auto;
  display: block;
  image-rendering: auto;
}

.course-detail-highlight__inner h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  color: #fff;
}

.course-detail-highlight__inner p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
  line-height: 1.55;
}

.course-detail-highlight .btn-primary {
  background: var(--gold);
  color: var(--geua-charcoal-2);
}

.course-detail-highlight .btn-primary:hover {
  background: var(--geua-gold-hover);
  color: var(--geua-charcoal-2);
}

.course-detail-cta-band {
  background: #fff;
  border-top: 1px solid #e4efe8;
  padding: 1.35rem 0 1.5rem;
}

.course-detail-cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.course-detail-cta-band__inner p {
  margin: 0;
  flex: 1 1 220px;
  font-size: 1rem;
  color: var(--text);
}

.course-detail-cta-band__ghost {
  border-color: #c9bdd4;
  color: var(--green-900);
}

.course-detail-cta-band__ghost:hover {
  background: var(--green-100);
}

@media (max-width: 900px) {
  .course-detail-hero {
    grid-template-columns: 1fr;
  }

  .course-detail-hero__figure {
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .course-importance-grid {
    grid-template-columns: 1fr;
  }

  .course-module-timeline > li {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .course-module-timeline__num {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.88rem;
  }

  .course-module-timeline > li:not(:last-child) .course-module-timeline__num::after {
    display: none;
  }

  .course-detail-cta-band__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .course-detail-cta-band__inner .btn {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .course-importance-card {
    transition: none;
  }

  .course-importance-card:hover {
    transform: none;
  }
}
