:root {
  --ink: #111416;
  --muted: #666666;
  --paper: #ffffff;
  --surface: #ffffff;
  --soft: #f6f8f8;
  --line: #e6ecec;
  --orange: #f2af29;
  --orange-dark: #d99500;
  --yellow: #fec44f;
  --teal: #38c5b5;
  --teal-dark: #2da194;
  --green: #276458;
  --charcoal: #111111;
  --shadow: 0 22px 60px rgba(20, 24, 24, 0.13);
  --font-display:
    Inter, "Helvetica Neue", Arial, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  --font-body:
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial,
    sans-serif;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
.hero-stats dt,
.button,
.header-cta,
.selector-cta,
.card-cta {
  font-family: var(--font-display);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(230, 236, 236, 0.9);
  backdrop-filter: blur(18px);
}

.site-header > *,
.hero-content,
.hero-actions > *,
.hero-stats > *,
.pathways > *,
.pathway-links > *,
.course-grid > *,
.timeline-grid > *,
.review-grid > * {
  min-width: 0;
}

.brand img {
  width: 176px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--muted);
}

.main-nav a,
.nav-dropdown-toggle,
.header-cta {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-dropdown:hover > .nav-dropdown-toggle,
.nav-dropdown:focus-within > .nav-dropdown-toggle,
.nav-dropdown-toggle[aria-current="page"],
.header-cta:hover {
  color: var(--teal-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  display: grid;
  min-width: 250px;
  gap: 4px;
  padding: 10px;
  background: white;
  border: 1px solid rgba(39, 100, 88, 0.14);
  border-radius: 8px;
  box-shadow: 0 20px 54px rgba(20, 24, 24, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 8px;
  white-space: nowrap;
}

.dropdown-menu a:hover,
.dropdown-menu a[aria-current="page"] {
  color: var(--green);
  background: #eef6f4;
}

.header-cta {
  padding: 11px 16px;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-weight: 700;
}

.header-cta:hover {
  color: white;
  background: #1f5a50;
}

.hero {
  position: relative;
  min-height: min(748px, calc(115svh - 136px));
  display: grid;
  align-items: end;
  padding: 88px clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 20, 22, 0.68), rgba(17, 20, 22, 0.35)),
    linear-gradient(0deg, rgba(17, 20, 22, 0.58), transparent 52%);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  max-width: 980px;
  color: white;
}

.hero-legacy-logo {
  position: absolute;
  right: clamp(18px, 4.5vw, 68px);
  bottom: clamp(20px, 4vw, 46px);
  z-index: 2;
  width: clamp(170px, 18vw, 275px);
  height: auto;
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.32));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 6rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.12rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #16120b;
  background: var(--orange);
  box-shadow: 0 16px 32px rgba(245, 163, 55, 0.26);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button.ghost {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.button.dark {
  color: white;
  background: var(--charcoal);
}

.german-hero {
  position: relative;
  min-height: min(700px, calc(108svh - 136px));
  display: grid;
  align-items: end;
  padding: 88px clamp(18px, 5vw, 72px) 44px;
  overflow: hidden;
  background: var(--green);
}

.german-hero-media {
  position: absolute;
  inset: 0;
}

.german-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 45, 40, 0.84), rgba(18, 45, 40, 0.42)),
    linear-gradient(0deg, rgba(18, 45, 40, 0.72), transparent 58%);
}

.german-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.german-hero-content {
  position: relative;
  max-width: 960px;
  color: white;
}

.german-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.german-hero-content > p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  font-weight: 500;
  line-height: 1.58;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 760px;
  margin: 36px 0 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  font-size: 1.42rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 500;
}

.pathways,
.course-selector,
.course-promo,
.german-intro,
.corporate-intro,
.german-plans,
.section,
.split-section,
.reviews,
.consultation,
.site-footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.german-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding-top: 88px;
  padding-bottom: 92px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.german-intro h2,
.german-plans h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.german-intro p:not(.eyebrow),
.german-plans .section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.consult-card {
  padding: 28px;
  color: white;
  background:
    linear-gradient(135deg, rgba(39, 100, 88, 0.98), rgba(56, 197, 181, 0.8)),
    var(--green);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.consult-card span,
.plan-list span {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.consult-card h3 {
  margin: 18px 0 0;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.05;
}

.german-intro .consult-card p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.corporate-hero {
  min-height: min(760px, calc(112svh - 136px));
}

.corporate-hero .german-hero-media::after {
  background:
    linear-gradient(90deg, rgba(17, 42, 38, 0.88), rgba(17, 42, 38, 0.48)),
    linear-gradient(0deg, rgba(17, 42, 38, 0.74), transparent 58%);
}

.corporate-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.56fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  padding-top: 90px;
  padding-bottom: 96px;
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.82), rgba(56, 197, 181, 0.1)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.corporate-intro h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.corporate-intro p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.corporate-intro .consult-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.corporate-intro .consult-card p {
  margin: 18px 0 28px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.consult-card .selector-cta {
  color: #16120b;
  background: var(--orange);
}

.german-selector {
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.96), rgba(56, 197, 181, 0.1)),
    var(--soft);
}

.german-selector .selector-heading h2 {
  max-width: 920px;
  white-space: normal;
}

.corporate-selector {
  background: var(--paper);
}

.corporate-selector .selector-heading h2 {
  max-width: 980px;
  white-space: normal;
}

.corporate-selector .selector-grid {
  align-items: stretch;
}

.corporate-selector .selector-card {
  min-height: 286px;
}

.german-plans {
  padding-top: 104px;
  padding-bottom: 110px;
  background: var(--paper);
}

.corporate-plans {
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.94), rgba(56, 197, 181, 0.08)),
    var(--soft);
}

.plan-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plan-list article {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.plan-list article.highlight {
  background: #fdf8ec;
  border-color: rgba(242, 175, 41, 0.45);
}

.plan-list h3 {
  margin: 10px 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.plan-list p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.plan-list strong {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 10px 14px;
  color: var(--green);
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.corporate-split {
  background: var(--paper);
}

.corporate-process {
  background:
    linear-gradient(135deg, rgba(39, 100, 88, 0.99), rgba(32, 88, 78, 0.96)),
    var(--green);
}

.corporate-page {
  background: #f7faf9;
}

.corporate-hero-v2 {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.56fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(88px, 9vw, 132px) clamp(18px, 5vw, 72px) 44px;
  background:
    linear-gradient(135deg, rgba(247, 250, 249, 0.94), rgba(219, 237, 233, 0.78)),
    #f7faf9;
  border-bottom: 1px solid rgba(39, 100, 88, 0.14);
}

.corporate-hero-copy {
  max-width: 940px;
}

.corporate-hero-copy h1 {
  max-width: 930px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.corporate-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  font-weight: 500;
  line-height: 1.62;
}

.corporate-hero-v2 .button.secondary {
  color: var(--green);
  background: white;
  border: 1px solid rgba(39, 100, 88, 0.26);
}

.corporate-brief {
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(39, 100, 88, 0.14);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(20, 24, 24, 0.12);
}

.corporate-brief img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.corporate-brief-body {
  padding: 26px;
}

.corporate-brief span,
.corporate-program-main span,
.corporate-program-stack span,
.corporate-model-grid span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.corporate-brief h2 {
  margin: 14px 0 18px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  line-height: 1.04;
}

.corporate-brief ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.corporate-brief li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.5;
}

.corporate-brief li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 50%;
}

.corporate-signal-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0 0;
  overflow: hidden;
  background: rgba(39, 100, 88, 0.18);
  border: 1px solid rgba(39, 100, 88, 0.18);
  border-radius: 8px;
}

.corporate-signal-strip div {
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.72);
}

.corporate-signal-strip dt {
  color: var(--green);
  font-size: 1.24rem;
  font-weight: 900;
}

.corporate-signal-strip dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.corporate-context,
.corporate-programs,
.corporate-operating-model,
.corporate-workplace {
  padding-inline: clamp(18px, 5vw, 72px);
}

.corporate-context {
  padding-top: 92px;
  padding-bottom: 96px;
  background: white;
}

.corporate-context > div {
  max-width: 980px;
  margin-inline: auto;
}

.corporate-context h2,
.corporate-section-heading h2,
.corporate-workplace h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.corporate-context p:not(.eyebrow),
.corporate-section-heading p,
.corporate-program-main p,
.corporate-program-stack p,
.corporate-model-grid p,
.corporate-workplace-copy > p,
.corporate-focus-list span {
  color: var(--muted);
  line-height: 1.62;
}

.corporate-context p:not(.eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  font-size: 1.12rem;
}

.corporate-programs {
  padding-top: 100px;
  padding-bottom: 108px;
  background: #eef6f4;
}

.corporate-section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.corporate-section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.corporate-program-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 20px;
}

.corporate-program-main {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 46px);
  color: white;
  background:
    linear-gradient(135deg, rgba(39, 100, 88, 0.98), rgba(32, 88, 78, 0.94)),
    var(--green);
  border-radius: 8px;
}

.corporate-program-main span {
  color: var(--yellow);
}

.corporate-program-main h3 {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 0.98;
}

.corporate-program-main p {
  max-width: 620px;
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.78);
}

.corporate-program-main .selector-cta {
  color: #16120b;
  background: var(--orange);
}

.corporate-program-stack {
  display: grid;
  gap: 14px;
}

.corporate-program-stack article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px;
  background: white;
  border: 1px solid rgba(39, 100, 88, 0.14);
  border-radius: 8px;
}

.corporate-program-stack span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: #e6f2ef;
  border-radius: 8px;
}

.corporate-program-stack h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.06;
}

.corporate-program-stack p {
  margin: 12px 0 0;
}

.corporate-operating-model {
  padding-top: 96px;
  padding-bottom: 104px;
  background: white;
}

.corporate-model-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(39, 100, 88, 0.16);
  border: 1px solid rgba(39, 100, 88, 0.16);
  border-radius: 8px;
}

.corporate-model-grid article {
  min-height: 290px;
  padding: 28px;
  background: #fbfdfc;
}

.corporate-model-grid h3 {
  margin: 66px 0 12px;
  font-size: clamp(1.3rem, 1.8vw, 1.72rem);
  line-height: 1.08;
}

.corporate-model-grid p {
  margin: 0;
}

.corporate-workplace {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.92fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding-top: 104px;
  padding-bottom: 112px;
  background: #f7faf9;
}

.corporate-workplace figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.corporate-workplace img {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  object-fit: cover;
}

.corporate-workplace-copy > p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.corporate-focus-list {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid rgba(39, 100, 88, 0.18);
}

.corporate-focus-list div {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(39, 100, 88, 0.18);
}

.corporate-focus-list strong {
  color: var(--green);
  font-size: 1.02rem;
}

.german-community {
  background: var(--soft);
}

.course-selector {
  padding-top: 82px;
  padding-bottom: 88px;
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.96), rgba(56, 197, 181, 0.1)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.selector-heading {
  max-width: 100%;
  margin-bottom: 34px;
}

.selector-heading h2 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  white-space: nowrap;
}

.selector-heading p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.65;
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.selector-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: white;
  border: 1px solid rgba(39, 100, 88, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 24, 24, 0.08);
}

.selector-card.featured {
  background:
    linear-gradient(135deg, rgba(39, 100, 88, 0.96), rgba(56, 197, 181, 0.78)),
    var(--green);
  color: white;
}

.selector-card.private {
  border-color: rgba(242, 175, 41, 0.5);
  box-shadow: 0 22px 50px rgba(39, 100, 88, 0.14);
}

.bestseller-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  color: #16120b;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(242, 175, 41, 0.28);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.selector-card.private > span {
  max-width: calc(100% - 118px);
}

.selector-card span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.selector-card.featured span {
  color: var(--yellow);
}

.selector-card.private span {
  color: var(--orange-dark);
}

.selector-card h3 {
  margin: 18px 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.selector-card p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.selector-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.selector-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 11px 15px;
  color: white;
  background: var(--green);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.selector-cta:hover {
  transform: translateY(-2px);
  background: #1f5a50;
}

.selector-card.featured .selector-cta {
  color: #16120b;
  background: var(--orange);
}

.selector-card.featured .selector-cta:hover {
  background: var(--yellow);
}

.course-promo {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(34px, 7vw, 108px);
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.62), rgba(56, 197, 181, 0.14)),
    #b7cbc3;
  border-bottom: 1px solid rgba(39, 100, 88, 0.16);
}

.course-promo-copy {
  max-width: 720px;
}

.course-promo h2 {
  max-width: 680px;
  margin: 0;
  color: #343838;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.promo-title-lines span {
  display: block;
  white-space: nowrap;
}

.course-promo-copy > p {
  max-width: 610px;
  margin: 24px 0 0;
  color: #44504e;
  font-size: 1.16rem;
  line-height: 1.62;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  color: #2f3b39;
  font-size: 1.05rem;
  line-height: 1.4;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list li::before {
  content: "";
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--green);
  clip-path: polygon(14% 48%, 38% 73%, 86% 19%, 100% 32%, 39% 94%, 0 58%);
}

.promo-actions {
  display: grid;
  gap: 16px;
}

.promo-actions a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 22px 24px;
  color: white;
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
  transition:
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.promo-actions a:hover {
  transform: translateY(-2px);
  background: #1f5a50;
  box-shadow: 0 24px 44px rgba(17, 17, 17, 0.16);
}

.promo-actions span {
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.promo-actions strong {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: #15110a;
  background: var(--orange);
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.pathways {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-top: 74px;
  padding-bottom: 78px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading.compact {
  margin: 0;
}

.section-heading h2,
.split-copy h2,
.reviews h2,
.consultation h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.consultation p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.pathway-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pathway-links a {
  display: grid;
  gap: 14px;
  min-height: 212px;
  align-content: start;
  padding: 24px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.pathway-links a:hover {
  transform: translateY(-2px);
  background: white;
  border-color: var(--teal);
}

.pathway-links span {
  font-size: 1.12rem;
  line-height: 1.15;
  font-weight: 900;
}

.pathway-links small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.card-cta {
  align-self: end;
  justify-self: start;
  margin-top: auto;
  padding: 10px 12px;
  color: #15110a;
  background: var(--orange);
  border-radius: 8px;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 900;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #fffdfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.section {
  padding-top: 118px;
  padding-bottom: 124px;
}

.page-hero {
  display: grid;
  min-height: 460px;
  align-items: end;
  padding: 110px clamp(18px, 5vw, 72px) 74px;
  color: white;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(39, 100, 88, 0.88)),
    url("assets/classroom-clean.png") center / cover;
}

.page-hero.teal {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(45, 161, 148, 0.78)),
    url("assets/group.jpg") center / cover;
}

.page-hero.yellow {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(254, 196, 79, 0.82)),
    url("assets/classroom-clean.png") center / cover;
}

.page-hero.green {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(39, 100, 88, 0.9)),
    url("assets/group.jpg") center / cover;
}

.page-hero.timetable-hero {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(39, 100, 88, 0.86)),
    url("assets/classroom-clean.png") center / cover;
}

.page-hero.about-hero {
  min-height: min(620px, calc(100svh - 120px));
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.88), rgba(39, 100, 88, 0.82)),
    url("assets/group.jpg") center / cover;
}

.page-hero.legal-hero {
  min-height: 380px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(183, 203, 195, 0.86)),
    var(--soft);
}

.page-hero > div {
  max-width: 920px;
}

.page-hero h1,
.contact-page h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow),
.contact-page p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}

.page-hero.yellow p:not(.eyebrow) {
  color: var(--muted);
}

.page-hero.legal-hero p:not(.eyebrow) {
  color: var(--muted);
}

.legal-section {
  padding: 86px clamp(18px, 5vw, 72px) 104px;
  background: var(--paper);
}

.legal-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 24, 24, 0.06);
}

.legal-content h2 {
  margin: 34px 0 12px;
  color: var(--green);
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

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

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.legal-content p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.68;
}

.legal-content strong {
  color: var(--ink);
}

.about-story,
.about-difference,
.about-community,
.about-program,
.about-visit {
  padding-inline: clamp(18px, 5vw, 72px);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.66fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  padding-top: 100px;
  padding-bottom: 104px;
  background: var(--paper);
}

.about-story h2,
.about-section-heading h2,
.about-community h2,
.about-visit h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.about-story-copy p:not(.eyebrow),
.about-section-heading p:not(.eyebrow),
.about-community-copy > p,
.about-visit > div > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.about-story-media,
.about-community-media {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-story-media img,
.about-community-media img {
  width: 100%;
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
}

.about-story-media figcaption {
  padding: 18px 20px;
  color: var(--muted);
  line-height: 1.5;
}

.about-difference {
  padding-top: 98px;
  padding-bottom: 104px;
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.96), rgba(56, 197, 181, 0.08)),
    var(--soft);
}

.about-section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.about-card-grid,
.about-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-card-grid article,
.about-program-grid article,
.about-visit-details article {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: var(--surface);
  border: 1px solid rgba(39, 100, 88, 0.14);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(20, 24, 24, 0.06);
}

.about-card-grid span,
.about-program-grid span,
.about-visit-details span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-card-grid h3,
.about-program-grid h3 {
  margin: 22px 0 14px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.about-card-grid p,
.about-program-grid p,
.about-visit-details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.about-community {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.76fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
  padding-top: 106px;
  padding-bottom: 112px;
  background: var(--paper);
}

.about-community-list {
  display: grid;
  gap: 0;
  margin-top: 38px;
  border-top: 1px solid rgba(39, 100, 88, 0.18);
}

.about-community-list div {
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(39, 100, 88, 0.18);
}

.about-community-list strong {
  color: var(--green);
}

.about-community-list span {
  color: var(--muted);
  line-height: 1.55;
}

.about-program {
  padding-top: 98px;
  padding-bottom: 104px;
  background: #eef6f4;
}

.about-program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-program-grid article {
  min-height: 300px;
}

.about-visit {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
  padding-top: 104px;
  padding-bottom: 110px;
  background: var(--paper);
}

.about-visit-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-visit-details article {
  min-height: 260px;
  background: #fdf8ec;
  border-color: rgba(242, 175, 41, 0.38);
  box-shadow: none;
}

.about-visit-details strong {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 1.15rem;
}

.timetable-picker,
.timetable-section {
  padding-inline: clamp(18px, 5vw, 72px);
}

.timetable-picker {
  padding-top: 82px;
  padding-bottom: 88px;
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.96), rgba(56, 197, 181, 0.1)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.timetable-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timetable-card-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timetable-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  background: white;
  border: 1px solid rgba(39, 100, 88, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 24, 24, 0.08);
}

.timetable-card.featured {
  color: white;
  background:
    linear-gradient(135deg, rgba(39, 100, 88, 0.96), rgba(56, 197, 181, 0.78)),
    var(--green);
}

.timetable-card span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timetable-card.featured span {
  color: var(--yellow);
}

.timetable-card h3 {
  margin: 18px 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.timetable-card p {
  margin: 16px 0 24px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

.timetable-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.timetable-section {
  padding-top: 92px;
  padding-bottom: 96px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 96px;
}

.timetable-section.soft {
  background: var(--soft);
}

.timetable-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: end;
  margin-bottom: 30px;
}

.timetable-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.4rem);
  line-height: 0.98;
}

.timetable-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.62;
}

.timetable-term {
  display: grid;
  gap: 16px;
}

.timetable-term + .timetable-term {
  margin-top: 34px;
}

.timetable-term h3 {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.table-shell {
  overflow-x: auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(20, 24, 24, 0.06);
}

.course-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.course-table.timetable-simple {
  min-width: 640px;
}

.course-table th,
.course-table td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.course-table th {
  color: var(--green);
  background: #f3faf8;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-table td {
  color: #3e4745;
  line-height: 1.42;
}

.course-table tbody tr:last-child td {
  border-bottom: 0;
}

.table-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: white;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.table-cta.outline {
  color: var(--green);
  background: transparent;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-grid article {
  min-height: 250px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(20, 24, 24, 0.06);
}

.detail-grid span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-grid h3 {
  margin: 44px 0 12px;
  font-size: 1.48rem;
  line-height: 1.1;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.other-language-intro {
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.96), rgba(56, 197, 181, 0.1)),
    var(--paper);
}

.language-showcase {
  background: var(--paper);
}

.language-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.language-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 24, 24, 0.07);
}

.language-card.featured {
  color: white;
  background:
    linear-gradient(135deg, rgba(39, 100, 88, 0.98), rgba(56, 197, 181, 0.78)),
    var(--green);
  border-color: rgba(39, 100, 88, 0.35);
}

.language-card span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.language-card.featured span {
  color: var(--yellow);
}

.language-card h3 {
  margin: 34px 0 14px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.08;
}

.language-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.language-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.small-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.visa-intro {
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.94), rgba(56, 197, 181, 0.1)),
    white;
}

.visa-packages {
  background:
    linear-gradient(135deg, rgba(238, 246, 244, 0.98), rgba(255, 255, 255, 0.94)),
    var(--soft);
}

.visa-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.visa-package-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: white;
  border: 1px solid rgba(39, 100, 88, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(20, 24, 24, 0.08);
}

.visa-package-card.featured {
  color: white;
  background:
    linear-gradient(135deg, rgba(39, 100, 88, 0.98), rgba(56, 197, 181, 0.78)),
    var(--green);
}

.visa-package-card span {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visa-package-card.featured span {
  color: var(--yellow);
}

.visa-package-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.05;
}

.visa-package-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.58;
}

.visa-package-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.visa-package-card dl {
  display: grid;
  width: 100%;
  gap: 0;
  margin: auto 0 24px;
  border-top: 1px solid rgba(39, 100, 88, 0.16);
}

.visa-package-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(39, 100, 88, 0.16);
}

.visa-package-card dt,
.visa-package-card dd {
  margin: 0;
  line-height: 1.35;
}

.visa-package-card dt {
  color: var(--muted);
  font-weight: 700;
}

.visa-package-card dd {
  color: var(--green);
  font-weight: 900;
  text-align: right;
}

.visa-package-card.featured dl,
.visa-package-card.featured dl div {
  border-color: rgba(255, 255, 255, 0.24);
}

.visa-package-card.featured dt {
  color: rgba(255, 255, 255, 0.72);
}

.visa-package-card.featured dd {
  color: white;
}

.visa-package-card.featured .selector-cta {
  color: #15110a;
  background: var(--orange);
}

.visa-letter {
  background: white;
}

.visa-apply {
  background:
    linear-gradient(135deg, rgba(238, 246, 244, 0.98), rgba(255, 255, 255, 0.94)),
    var(--soft);
  color: var(--ink);
}

.visa-apply .split-copy p:not(.eyebrow) {
  color: var(--muted);
}

.visa-apply .button.primary {
  color: white;
  background: var(--green);
}

.visa-step-list {
  display: grid;
  gap: 12px;
}

.visa-step-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: white;
  border: 1px solid rgba(39, 100, 88, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(20, 24, 24, 0.06);
}

.visa-step-list span {
  display: inline-flex;
  min-width: 38px;
  justify-content: center;
  color: var(--orange-dark);
  font-weight: 900;
}

.visa-step-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.visa-accommodation {
  background: var(--paper);
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.resource-list a {
  display: flex;
  min-height: 96px;
  align-items: center;
  padding: 20px;
  color: var(--green);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.35;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.resource-list a:hover {
  transform: translateY(-2px);
  background: white;
  border-color: var(--teal);
}

.private-intro {
  background:
    linear-gradient(135deg, rgba(246, 248, 248, 0.96), rgba(56, 197, 181, 0.1)),
    var(--paper);
}

.private-packages {
  background: var(--paper);
}

.private-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.private-package-card {
  display: flex;
  min-height: 380px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(20, 24, 24, 0.06);
}

.private-package-card.featured {
  color: white;
  background:
    linear-gradient(135deg, rgba(39, 100, 88, 0.98), rgba(56, 197, 181, 0.78)),
    var(--green);
  border-color: rgba(39, 100, 88, 0.35);
}

.private-package-card.happy-hour {
  background:
    linear-gradient(135deg, rgba(253, 248, 236, 0.98), rgba(255, 255, 255, 0.96)),
    white;
  border-color: rgba(242, 175, 41, 0.35);
}

.private-package-card span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.private-package-card.featured span,
.private-package-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.private-package-card.happy-hour span {
  color: var(--orange-dark);
}

.private-package-card h3 {
  margin: 20px 0 14px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
}

.private-package-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.private-package-card strong {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: auto;
  margin-bottom: 18px;
  padding: 9px 12px;
  color: var(--green);
  background: white;
  border: 1px solid rgba(39, 100, 88, 0.16);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
}

.private-package-card.featured strong {
  color: #15110a;
  background: var(--yellow);
  border-color: transparent;
}

.private-package-card.featured .selector-cta {
  color: #15110a;
  background: var(--orange);
}

.private-how {
  background:
    linear-gradient(135deg, rgba(238, 246, 244, 0.98), rgba(255, 255, 255, 0.94)),
    var(--soft);
}

.format-list {
  display: grid;
  gap: 12px;
}

.format-list a {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.format-list a:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
}

.format-list a::after {
  content: "View option";
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  color: #15110a;
  background: var(--orange);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.format-list strong {
  font-size: 1.12rem;
}

.format-list span {
  color: var(--muted);
  line-height: 1.5;
}

.contact-page {
  min-height: calc(100svh - 90px);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.course-card {
  min-height: 372px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 44px rgba(20, 24, 24, 0.06);
}

.course-card.featured {
  color: white;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.tag {
  align-self: flex-start;
  padding: 6px 9px;
  color: var(--charcoal);
  background: var(--orange);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.course-card h3 {
  margin: 54px 0 12px;
  font-size: 1.55rem;
}

.course-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.course-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.course-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  border-radius: 8px;
  margin-top: auto;
  color: var(--teal-dark);
  font-weight: 900;
}

.course-card.featured a {
  color: white;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  padding-top: 124px;
  padding-bottom: 124px;
  background: var(--soft);
}

.benefits {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.benefits div {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid rgba(95, 104, 104, 0.22);
}

.benefits strong {
  font-size: 1.08rem;
}

.benefits span {
  color: var(--muted);
}

.image-panel {
  margin: 0;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-panel figcaption {
  padding: 18px 20px;
  color: var(--muted);
  line-height: 1.5;
}

.band {
  background:
    linear-gradient(135deg, rgba(39, 100, 88, 0.98), rgba(31, 88, 77, 0.96)),
    var(--green);
  color: white;
}

.band .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.timeline-grid article {
  min-height: 235px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.timeline-grid span {
  color: var(--orange);
  font-weight: 900;
}

.timeline-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.5rem;
}

.timeline-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.reviews {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1fr;
  gap: clamp(28px, 5vw, 72px);
  padding-top: 116px;
  padding-bottom: 124px;
  background: var(--surface);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

blockquote {
  margin: 0;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

blockquote p {
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.6;
}

cite {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 900;
}

.consultation {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding-top: 124px;
  padding-bottom: 124px;
  background: var(--teal);
  color: white;
}

.consultation .eyebrow {
  color: #ffe2aa;
}

.consultation p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

.lead-form label span {
  color: rgba(255, 255, 255, 0.86);
}

.lead-form .button {
  margin-top: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  padding-top: 46px;
  padding-bottom: 46px;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 190px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: white;
  font-size: 1.1rem;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-legal a:hover {
  color: var(--yellow);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: min(760px, calc(115svh - 100px));
  }

  .pathways,
  .course-promo,
  .german-intro,
  .corporate-intro,
  .split-section,
  .reviews,
  .consultation {
    grid-template-columns: 1fr;
  }

  .corporate-hero-v2,
  .corporate-context,
  .corporate-program-layout,
  .corporate-workplace,
  .about-story,
  .about-community,
  .about-visit {
    grid-template-columns: 1fr;
  }

  .corporate-model-grid,
  .about-card-grid,
  .about-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .timetable-card-grid {
    grid-template-columns: 1fr;
  }

  .timetable-heading {
    grid-template-columns: 1fr;
  }

  .pathway-links,
  .course-grid,
  .timeline-grid,
  .detail-grid,
  .language-card-grid,
  .visa-package-grid,
  .private-package-grid,
  .resource-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .format-list a {
    grid-template-columns: 1fr;
  }

  .promo-actions a {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 14px 16px;
    gap: 12px;
  }

  .brand img {
    width: 136px;
  }

  .header-cta {
    justify-self: end;
    width: min(160px, calc(100vw - 188px));
    max-width: min(160px, calc(100vw - 188px));
    padding: 10px 12px;
    font-size: 0.86rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    max-width: 100vw;
    padding: 96px 18px 112px;
  }

  .hero-legacy-logo {
    right: 18px;
    bottom: 26px;
    width: min(210px, 52vw);
  }

  .german-hero {
    min-height: auto;
    padding: 96px 18px 32px;
  }

  .german-hero h1 {
    font-size: 2.55rem;
  }

  .german-hero-content > p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .hero-content {
    width: min(100%, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: calc(100vw - 36px);
    font-size: 2.58rem;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1.02rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 154px;
    min-height: 48px;
    padding-inline: 10px;
    font-size: 0.93rem;
  }

  .hero-stats,
  .pathway-links,
  .course-grid,
  .timeline-grid,
  .detail-grid,
  .language-card-grid,
  .visa-package-grid,
  .private-package-grid,
  .resource-list,
  .review-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .language-card,
  .visa-package-card,
  .private-package-card {
    min-height: auto;
    padding: 21px;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
    margin-top: 22px;
  }

  .hero-stats div {
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 1.05rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .corporate-hero-v2 {
    padding-top: 84px;
  }

  .corporate-hero-copy h1 {
    font-size: 2.6rem;
  }

  .corporate-hero-copy > p:not(.eyebrow) {
    font-size: 1.02rem;
  }

  .corporate-brief img {
    height: 210px;
  }

  .corporate-signal-strip,
  .corporate-model-grid {
    grid-template-columns: 1fr;
  }

  .corporate-context h2,
  .corporate-section-heading h2,
  .corporate-workplace h2,
  .about-story h2,
  .about-section-heading h2,
  .about-community h2,
  .about-visit h2 {
    font-size: 2.45rem;
  }

  .corporate-program-main {
    min-height: 380px;
    padding: 24px;
  }

  .corporate-program-stack article,
  .corporate-focus-list div,
  .about-community-list div {
    grid-template-columns: 1fr;
  }

  .about-card-grid,
  .about-program-grid,
  .about-visit-details {
    grid-template-columns: 1fr;
  }

  .about-card-grid article,
  .about-program-grid article,
  .about-visit-details article {
    min-height: auto;
    padding: 22px;
  }

  .corporate-model-grid article {
    min-height: auto;
    padding: 24px;
  }

  .corporate-model-grid h3 {
    margin-top: 44px;
  }

  .section,
  .course-selector,
  .course-promo,
  .german-intro,
  .corporate-intro,
  .corporate-hero-v2,
  .corporate-context,
  .corporate-programs,
  .corporate-operating-model,
  .corporate-workplace,
  .about-story,
  .about-difference,
  .about-community,
  .about-program,
  .about-visit,
  .german-plans,
  .timetable-picker,
  .timetable-section,
  .split-section,
  .reviews,
  .consultation {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .selector-heading {
    margin-bottom: 24px;
  }

  .selector-heading h2 {
    font-size: 2.5rem;
    white-space: normal;
  }

  .selector-heading p:not(.eyebrow) {
    font-size: 1rem;
  }

  .selector-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timetable-card-grid {
    gap: 14px;
  }

  .timetable-card-grid.two-up {
    grid-template-columns: 1fr;
  }

  .timetable-card {
    min-height: auto;
    padding: 21px;
  }

  .timetable-heading h2 {
    font-size: 2.45rem;
  }

  .plan-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .selector-card {
    min-height: auto;
    padding: 21px;
  }

  .german-intro h2,
  .corporate-intro h2,
  .german-plans h2 {
    font-size: 2.45rem;
  }

  .consult-card {
    padding: 22px;
  }

  .plan-list article {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 21px;
  }

  .plan-list strong {
    justify-self: start;
  }

  .course-promo h2 {
    font-size: 2.45rem;
  }

  .course-promo-copy > p {
    font-size: 1rem;
  }

  .promo-actions a {
    min-height: 76px;
    padding: 19px;
  }

  .page-hero {
    min-height: 420px;
    padding: 86px 18px 52px;
  }

  .page-hero h1,
  .contact-page h1 {
    font-size: 2.6rem;
  }

}
