:root {
  --ink: #09243d;
  --muted: #637182;
  --line: #e4e9ee;
  --soft: #f6f8fa;
  --blue: #0d395f;
  --blue-2: #174a73;
  --sky: #eaf4f8;
  --green: #0d6b5f;
  --gold: #b8894a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial,
    sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 168px;
}

.brand-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.brand-text {
  display: grid;
  gap: 2px;
  align-content: center;
}

.brand-text img:first-child {
  width: 66px;
}

.brand-text img:last-child {
  width: 92px;
}

.brand-text img {
  display: block;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 28px;
  color: #34485c;
  font-size: 15px;
}

.site-nav a {
  padding: 8px 0;
}

.header-cta,
.button,
form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.header-cta,
.button.primary,
form button {
  color: var(--white);
  background: var(--blue);
}

.button.secondary {
  color: var(--blue);
  background: var(--sky);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(44px, 6vw, 76px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(42px, 5.7vw, 72px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  color: #425568;
  font-size: clamp(18px, 1.8vw, 21px);
}

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

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 560px;
}

.image-tile,
.program-photo,
.band-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(13, 57, 95, 0.22), rgba(13, 107, 95, 0.16)),
    linear-gradient(120deg, #dfe9ee, #f9fbfc);
  border: 1px solid rgba(9, 36, 61, 0.08);
}

.image-tile::before,
.program-photo::before,
.band-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.22;
}

.image-tile span,
.program-photo span,
.band-image span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.tile-large {
  grid-row: 1 / 3;
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.12), rgba(9, 36, 61, 0.58)),
    radial-gradient(circle at 30% 22%, #b8ccd8 0, transparent 32%),
    linear-gradient(135deg, #164568, #7ea3b5);
}

.campus {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.08), rgba(9, 36, 61, 0.46)),
    radial-gradient(circle at 75% 18%, #e7d4ad 0, transparent 28%),
    linear-gradient(135deg, #7b9baa, #d4e0e5);
}

.city {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.08), rgba(9, 36, 61, 0.5)),
    radial-gradient(circle at 24% 70%, #b8894a 0, transparent 24%),
    linear-gradient(135deg, #0d395f, #c0d4dd);
}

.visual-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 2px;
  min-width: 150px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(9, 36, 61, 0.16);
  backdrop-filter: blur(16px);
}

.visual-note strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
}

.visual-note span {
  color: var(--muted);
  font-size: 14px;
}

.section,
.approach,
.process,
.ai-advisor,
.contact {
  padding: clamp(60px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  border-top: 1px solid var(--line);
}

.editorial h2 {
  max-width: 820px;
}

.editorial > p:last-child,
.contact p,
.ai-copy p,
.band-copy p {
  color: var(--muted);
  font-size: 18px;
}

.program-showcase {
  display: grid;
  gap: 22px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(60px, 8vw, 104px);
}

.program-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 520px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.program-feature.reverse {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
}

.program-feature.reverse .program-photo {
  order: 2;
}

.program-content {
  align-self: center;
  padding: clamp(32px, 5vw, 64px);
}

.program-content h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.15;
}

.program-content p,
.program-content li {
  color: var(--muted);
}

.program-content ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 32px;
  padding-left: 20px;
}

.program-content a {
  display: inline-flex;
  padding-bottom: 4px;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  font-weight: 800;
}

.clinical-photo {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.05), rgba(9, 36, 61, 0.6)),
    radial-gradient(circle at 30% 30%, #e8eef2 0, transparent 25%),
    linear-gradient(135deg, #0d395f, #9ab8c5);
}

.language-photo {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(13, 107, 95, 0.56)),
    radial-gradient(circle at 70% 28%, #e8d0a3 0, transparent 26%),
    linear-gradient(135deg, #6e96a7, #0d6b5f);
}

.approach {
  background: var(--white);
}

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

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.values div {
  min-height: 210px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.values span {
  color: var(--gold);
  font-weight: 800;
}

.values h3 {
  margin: 42px 0 10px;
}

.values p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-band {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(280px, 1fr) minmax(180px, 0.72fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(60px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: #f8fafb;
  border-block: 1px solid var(--line);
}

.band-copy {
  align-self: center;
  padding: clamp(12px, 3vw, 38px);
}

.band-image {
  min-height: 360px;
}

.hospital {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(9, 36, 61, 0.54)),
    linear-gradient(135deg, #cfdae0, #174a73);
}

.library {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(184, 137, 74, 0.52)),
    linear-gradient(135deg, #0d6b5f, #d4c4aa);
}

.process {
  background: var(--white);
}

.process ol {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process li {
  min-height: 150px;
  padding: 22px;
  background: var(--soft);
  font-weight: 800;
}

.process li span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 13px;
}

.ai-advisor {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #fbfcfd;
  border-top: 1px solid var(--line);
}

.chat-prototype {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(9, 36, 61, 0.07);
}

.chat-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.chat-top span {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.message {
  margin-bottom: 14px;
  padding: 16px;
  color: #32475a;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chat-option {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 14px 16px;
  color: var(--blue);
  text-align: left;
  background: var(--sky);
  border: 1px solid #d4e6f0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--blue);
  color: var(--white);
}

.contact .section-kicker {
  color: #e4bd80;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
}

.contact a {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.42);
  text-underline-offset: 4px;
}

.contact-methods {
  display: grid;
  max-width: 520px;
  gap: 12px;
  margin-top: 28px;
}

.contact-line {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-line span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.contact-line a {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.wechat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.wechat-card img {
  width: 116px;
  height: 116px;
  flex: 0 0 auto;
  object-fit: cover;
  background: var(--white);
  border-radius: 8px;
}

.wechat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 18px;
}

.wechat-card p {
  margin-bottom: 0;
  font-size: 15px;
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: #405367;
  font-size: 14px;
  font-weight: 800;
}

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

textarea {
  min-height: 104px;
  resize: vertical;
}

form button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  margin: 0;
}

.footer-contact a {
  color: inherit;
  text-decoration-color: rgba(91, 105, 120, 0.34);
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero,
  .editorial,
  .ai-advisor,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .program-feature,
  .program-feature.reverse {
    grid-template-columns: 1fr;
  }

  .program-feature.reverse .program-photo {
    order: 0;
  }

  .program-photo {
    min-height: 360px;
  }

  .values,
  .process ol,
  .image-band {
    grid-template-columns: 1fr;
  }

  .band-image {
    min-height: 240px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
  }

  .brand-text img:first-child {
    width: 62px;
  }

  .brand-text img:last-child {
    width: 86px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-actions,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 170px 170px;
    min-height: auto;
  }

  .tile-large {
    grid-row: auto;
  }

  .visual-note {
    right: 18px;
    bottom: 18px;
  }
}

.clinical-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
    linear-gradient(135deg, #ffffff 0%, #f4f8fa 56%, #e9f4f8 100%);
  border-bottom: 1px solid var(--line);
}

.clinical-hero-copy h1 {
  max-width: 850px;
}

.clinical-hero-copy > p:last-of-type {
  max-width: 720px;
  color: #425568;
  font-size: clamp(18px, 1.8vw, 21px);
}

.clinical-hero-card {
  padding: clamp(28px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(13, 57, 95, 0.12), rgba(13, 57, 95, 0.42)),
    linear-gradient(145deg, var(--blue), var(--blue-2));
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(9, 36, 61, 0.15);
}

.clinical-hero-card span {
  display: inline-flex;
  margin-bottom: 96px;
  color: #d7edf5;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.clinical-hero-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.clinical-hero-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.clinical-section {
  padding: clamp(60px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.clinical-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.clinical-summary div {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.clinical-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.clinical-summary strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.clinical-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.intro-panel {
  padding: clamp(26px, 4vw, 42px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-panel p {
  color: var(--muted);
}

.intro-panel p:last-child {
  margin-bottom: 0;
}

.clinical-route-section {
  background: #f8fafb;
  border-block: 1px solid var(--line);
}

.clinical-route-section .section-heading p,
.visit-format-section .section-heading p {
  color: var(--muted);
}

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

.clinical-route-grid article {
  min-height: 300px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.clinical-route-grid span {
  color: var(--gold);
  font-weight: 800;
}

.clinical-route-grid h3 {
  margin: 68px 0 12px;
  font-size: 26px;
  line-height: 1.2;
}

.clinical-route-grid p {
  color: var(--muted);
}

.clinical-route-grid a {
  display: inline-flex;
  margin-top: 12px;
  padding-bottom: 4px;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  font-weight: 800;
}

.specialty-grid,
.hospital-grid {
  display: grid;
  gap: 16px;
}

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

.specialty-grid article,
.hospital-grid article {
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.specialty-grid article {
  min-height: 360px;
}

.specialty-grid span,
.hospital-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.specialty-grid h3,
.hospital-grid h3 {
  margin: 28px 0 12px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
}

.specialty-grid p,
.specialty-grid li,
.hospital-grid p,
.section-heading p {
  color: var(--muted);
}

.specialty-grid ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding-left: 20px;
}

.hospital-section {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

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

.hospital-grid article {
  min-height: 260px;
}

.hospital-grid h3 {
  font-size: 22px;
}

.clinical-process {
  background: var(--white);
}

.visit-format-section {
  background: var(--white);
}

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

.visit-format-grid article {
  min-height: 260px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.visit-format-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.visit-format-grid h3 {
  margin: 54px 0 10px;
  font-size: 23px;
  line-height: 1.2;
}

.visit-format-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.material-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: #f8fafb;
  border-block: 1px solid var(--line);
}

.material-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.material-list div {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 18px 22px;
  background: var(--white);
  font-weight: 800;
}

.material-list span {
  color: var(--gold);
}

.clinical-process ol {
  grid-template-columns: repeat(6, 1fr);
}

.faq-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item button {
  width: 100%;
  padding: 20px 22px;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open p {
  display: block;
}

.compliance-note {
  padding: clamp(44px, 6vw, 72px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #082338;
}

.compliance-note h2 {
  max-width: 780px;
}

.compliance-note p:last-child {
  max-width: 1120px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.clinical-contact label:last-of-type,
.clinical-contact button {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .hospital-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  .clinical-hero,
  .clinical-intro,
  .clinical-route-grid,
  .material-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .specialty-grid,
  .clinical-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .hospital-grid,
  .visit-format-grid,
  .clinical-process ol,
  .clinical-contact form {
    grid-template-columns: 1fr;
  }
}

.education-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.8fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: #f8fafb;
  border-bottom: 1px solid var(--line);
}

.programme-label {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.education-hero-main h1 {
  max-width: 820px;
}

.education-hero-main > p:last-of-type {
  max-width: 690px;
  color: #425568;
  font-size: clamp(18px, 1.8vw, 21px);
}

.programme-panel {
  display: grid;
  gap: 14px;
}

.programme-photo {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.05), rgba(9, 36, 61, 0.48)),
    radial-gradient(circle at 72% 22%, #d9c39f 0, transparent 28%),
    linear-gradient(135deg, #7aa0b0, #0d395f);
}

.programme-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.2;
}

.programme-photo span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.programme-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.programme-facts div,
.programme-summary div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.programme-facts span,
.programme-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.programme-facts strong,
.programme-summary strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.programme-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.education-section {
  padding: clamp(60px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.route-section {
  background: var(--white);
}

.route-section .section-heading p,
.destination-section .section-heading p {
  color: var(--muted);
}

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

.route-grid article {
  min-height: 280px;
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-grid span {
  color: var(--gold);
  font-weight: 800;
}

.route-grid h3 {
  margin: 62px 0 12px;
  font-size: 26px;
  line-height: 1.2;
}

.route-grid p {
  color: var(--muted);
}

.route-grid a {
  display: inline-flex;
  margin-top: 12px;
  padding-bottom: 4px;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  font-weight: 800;
}

.destination-section {
  background: #f8fafb;
  border-block: 1px solid var(--line);
}

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

.destination-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.destination-image {
  position: relative;
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(9, 36, 61, 0.48)),
    linear-gradient(135deg, #d9e6eb, #174a73);
}

.destination-image span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.destination-image.brighton {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(13, 107, 95, 0.5)),
    linear-gradient(135deg, #b8d9df, #0d6b5f);
}

.destination-image.cambridge {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(184, 137, 74, 0.5)),
    linear-gradient(135deg, #0d395f, #d4c2a4);
}

.destination-image.eastbourne {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(9, 36, 61, 0.46)),
    linear-gradient(135deg, #d7e4e8, #759cad);
}

.destination-image.london-central {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(9, 36, 61, 0.56)),
    linear-gradient(135deg, #0d395f, #7d9cac);
}

.destination-image.london-highgate {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(13, 107, 95, 0.44)),
    linear-gradient(135deg, #e3ecef, #0d6b5f);
}

.destination-grid h3,
.destination-grid p,
.destination-grid ul {
  padding-inline: 20px;
}

.destination-grid h3 {
  margin: 20px 0 10px;
  font-size: 22px;
}

.destination-grid p,
.destination-grid li {
  color: var(--muted);
  font-size: 14px;
}

.destination-grid ul {
  display: grid;
  gap: 7px;
  margin: 18px 0 22px;
  padding-left: 38px;
}

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

.course-grid article {
  min-height: 300px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.course-grid span {
  color: var(--gold);
  font-weight: 800;
}

.course-grid h3 {
  margin: 78px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.course-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.highlight-section {
  background: #fbfcfd;
  border-block: 1px solid var(--line);
}

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

.highlight-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.highlight-image {
  position: relative;
  min-height: 210px;
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(9, 36, 61, 0.48)),
    linear-gradient(135deg, #d9e6eb, #174a73);
}

.highlight-image span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.community {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(13, 107, 95, 0.5)),
    linear-gradient(135deg, #c7dde5, #0d6b5f);
}

.city-learning {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(184, 137, 74, 0.52)),
    linear-gradient(135deg, #0d395f, #d8c4a3);
}

.pathway {
  background:
    linear-gradient(180deg, rgba(9, 36, 61, 0.04), rgba(9, 36, 61, 0.5)),
    linear-gradient(135deg, #6f9bab, #0d395f);
}

.highlight-grid h3,
.highlight-grid p {
  padding-inline: 22px;
}

.highlight-grid h3 {
  margin: 22px 0 10px;
}

.highlight-grid p {
  margin-bottom: 24px;
  color: var(--muted);
}

.selection-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.student-life-section {
  background: var(--white);
}

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

.student-life-grid article {
  min-height: 230px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.student-life-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.student-life-grid h3 {
  margin: 42px 0 10px;
}

.student-life-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.selection-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.selection-list div {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 74px;
  padding: 18px 22px;
  background: var(--soft);
  font-weight: 800;
}

.selection-list span {
  color: var(--gold);
}

.schedule-section {
  background: #f8fafb;
  border-block: 1px solid var(--line);
}

.schedule-section .section-heading p {
  color: var(--muted);
}

.schedule-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.schedule-table div {
  display: grid;
  grid-template-columns: 160px minmax(180px, 0.45fr) minmax(0, 1fr);
  gap: 20px;
  align-items: baseline;
  padding: 20px 22px;
  background: var(--white);
}

.schedule-table span {
  color: var(--gold);
  font-weight: 800;
}

.schedule-table strong {
  color: var(--ink);
}

.schedule-table p {
  margin-bottom: 0;
  color: var(--muted);
}

.education-faq {
  background: var(--white);
}

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

.education-contact label:last-of-type,
.education-contact button {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .course-grid,
  .highlight-grid,
  .destination-grid,
  .student-life-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .education-hero,
  .selection-section,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .programme-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .programme-facts,
  .course-grid,
  .highlight-grid,
  .destination-grid,
  .student-life-grid,
  .education-contact form {
    grid-template-columns: 1fr;
  }

.schedule-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.price-calculator {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: 18px;
  align-items: start;
}

.calculator-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 3vw, 30px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calc-group {
  display: contents;
}

.calc-group.is-hidden {
  display: none;
}

.checkbox-label {
  align-content: center;
  grid-template-columns: auto 1fr;
  min-height: 72px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  padding: 0;
}

.calculator-result {
  position: sticky;
  top: 96px;
  padding: clamp(24px, 3vw, 32px);
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), #082338);
  border-radius: 8px;
  box-shadow: 0 22px 64px rgba(9, 36, 61, 0.14);
}

.calculator-result > span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #c9e6ef;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.calculator-result > strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
}

.calculator-result > p {
  color: rgba(255, 255, 255, 0.76);
}

.price-lines {
  display: grid;
  gap: 1px;
  margin: 22px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.price-lines div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
}

.price-lines span {
  color: rgba(255, 255, 255, 0.72);
}

.price-lines strong {
  white-space: nowrap;
}

.calculator-note {
  margin-bottom: 0;
  font-size: 13px;
}

.calculator-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.calculator-actions button {
  min-height: 44px;
  padding: 0 14px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.calculator-actions button:last-child {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.calculator-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #c9e6ef;
  font-size: 13px;
}

#quoteSummaryField {
  min-height: 180px;
}

@media (max-width: 980px) {
  .calculator-shell,
  .calculator-form {
    grid-template-columns: 1fr;
  }

  .calculator-result {
    position: static;
  }

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