:root {
  --navy: #101d35;
  --blue: #1167b1;
  --cyan: #2fb4c8;
  --orange: #ef7f32;
  --paper: #f4f1eb;
  --white: #fff;
  --ink: #172033;
  --muted: #667085;
  --line: #d9dee7;
  --shadow: 0 22px 55px rgba(16, 29, 53, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header {
  height: 86px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border-bottom: 1px solid #e8ebf0;
}
.brand { display: flex; align-items: center; gap: 16px; text-decoration: none; font-weight: 700; color: var(--navy); }
.brand img { width: 142px; }
.brand span { padding-left: 16px; border-left: 1px solid var(--line); }
nav { display: flex; gap: 34px; }
nav a { text-decoration: none; font-size: 14px; font-weight: 700; }
nav a:hover { color: var(--blue); }
.hero {
  min-height: 610px;
  padding: 90px clamp(24px, 8vw, 130px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(47, 180, 200, .25), transparent 28%),
    linear-gradient(125deg, #0b1930 0%, #123d68 70%, #126ca1 100%);
}
.eyebrow, .step-label { margin: 0 0 14px; color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(48px, 7vw, 92px); line-height: 1.04; letter-spacing: -.05em; }
.hero-lead { max-width: 650px; margin: 28px 0 36px; color: #dce7f2; font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 50px; padding: 12px 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 4px; text-decoration: none; font-weight: 800; }
.button-primary { color: #fff; background: var(--orange); }
.button-primary:hover { background: #d96720; }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.55); }
.hero-card { padding: 34px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(10px); box-shadow: var(--shadow); }
.card-number { color: var(--cyan); font-size: 54px; font-weight: 300; line-height: 1; }
.hero-card h2 { margin: 24px 0 10px; font-size: 25px; }
.hero-card p { color: #dce7f2; }
.hero-card a { color: #fff; font-weight: 800; text-decoration: none; }
.quick-notes {
  width: min(1120px, calc(100% - 48px));
  margin: -36px auto 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
}
.quick-notes div { padding: 24px 28px; border-right: 1px solid var(--line); }
.quick-notes div:last-child { border-right: 0; }
.quick-notes strong, .quick-notes span { display: block; }
.quick-notes strong { font-size: 13px; color: var(--muted); }
.quick-notes span { margin-top: 3px; font-weight: 800; color: var(--navy); }
.fee-amount, .quick-notes .fee-amount { display: inline; color: #d92d20; font-weight: 800; }
.content-section { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 700px; margin-bottom: 52px; }
.section-heading h2, .downloads-section h2 { margin: 0; color: var(--navy); font-size: clamp(36px, 5vw, 58px); line-height: 1.12; letter-spacing: -.035em; }
.section-heading > p:last-child { color: var(--muted); font-size: 18px; }
.process-grid { display: grid; grid-template-columns: 1.5fr .65fr; gap: 42px; align-items: start; }
.steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.steps li { padding: 26px 0; display: grid; grid-template-columns: 54px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--orange); font-size: 14px; font-weight: 800; }
.steps h3, .timeline h3 { margin: 0 0 6px; font-size: 19px; }
.steps p, .timeline p { margin: 0; color: var(--muted); }
.steps a { color: var(--blue); font-weight: 700; }
.download-card { padding: 34px; color: #fff; background: var(--navy); box-shadow: var(--shadow); }
.download-card p { margin: 0; color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.download-card h3 { margin: 45px 0 5px; font-size: 28px; }
.download-card span { display: block; color: #afbdce; }
.download-card .button { width: 100%; margin-top: 34px; }
.example { margin-top: 44px; border: 1px solid var(--line); }
.example h3 { margin: 0; padding: 18px 22px; color: var(--navy); font-size: 18px; }
.example img { width: min(760px, 100%); margin: 0 auto; padding: 22px; }
.decision-section { padding: 105px clamp(24px, 8vw, 130px); color: #fff; background: var(--navy); }
.decision-section .section-heading { width: min(1120px, 100%); margin-left: auto; margin-right: auto; }
.section-heading.light h2 { color: #fff; }
.decision-grid { width: min(1120px, 100%); margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.decision-grid article { padding: 34px; background: #182844; border-top: 4px solid var(--cyan); }
.decision-grid article:nth-child(2) { border-color: var(--orange); }
.decision-grid article:nth-child(3) { border-color: #78b45a; }
.status { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-weight: 800; }
.condition { min-height: 82px; margin: 28px 0; color: #bfc9d7; }
.condition strong { color: #fff; }
.decision-grid h3 { margin: 0 0 10px; font-size: 21px; }
.decision-grid article > p:last-of-type { color: #bfc9d7; }
.decision-grid a { display: inline-block; margin-top: 18px; color: var(--cyan); font-weight: 800; text-decoration: none; }
.programme-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 48px; }
.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.timeline > div { padding: 30px; background: #fff; }
.timeline span { color: var(--orange); font-size: 32px; font-weight: 300; }
.tips { padding: 34px; background: var(--paper); }
.tips h3 { margin: 0 0 18px; color: var(--navy); font-size: 27px; }
.tips ul { padding-left: 20px; }
.tips li { margin: 14px 0; }
.form-gallery { margin-top: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-gallery figure { margin: 0; padding: 22px; background: var(--paper); }
.form-gallery img { width: 100%; height: 620px; object-fit: contain; background: #fff; }
.form-gallery figcaption { padding-top: 15px; color: var(--muted); font-size: 13px; text-align: center; }
.downloads-section { padding: 85px max(24px, calc((100% - 1120px) / 2)); display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; background: var(--paper); }
.downloads-section > div > p:last-child { color: var(--muted); }
.download-list { display: grid; gap: 14px; }
.download-list a { padding: 22px; display: grid; grid-template-columns: 54px 1fr auto; gap: 18px; align-items: center; background: #fff; border: 1px solid #e1ded7; text-decoration: none; }
.download-list a > span { width: 48px; height: 48px; display: grid; place-items: center; color: #fff; background: var(--blue); font-size: 11px; font-weight: 800; }
.download-list strong, .download-list small { display: block; }
.download-list small { color: var(--muted); }
.download-list b { color: var(--blue); font-size: 14px; }
footer { padding: 40px max(24px, calc((100% - 1120px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: #aeb9c9; background: #091426; font-size: 12px; }
footer img { width: 130px; filter: brightness(0) invert(1); }
footer p { max-width: 620px; text-align: right; }

@media (max-width: 850px) {
  nav { display: none; }
  .site-header { height: 72px; }
  .brand img { width: 118px; }
  .hero { min-height: auto; padding-top: 70px; padding-bottom: 90px; grid-template-columns: 1fr; }
  .hero-card { max-width: 500px; }
  .quick-notes { grid-template-columns: 1fr 1fr; }
  .quick-notes div:nth-child(2) { border-right: 0; }
  .quick-notes div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-grid, .programme-layout, .downloads-section { grid-template-columns: 1fr; }
  .decision-grid { grid-template-columns: 1fr; }
  .condition { min-height: auto; }
  .downloads-section { gap: 30px; }
}

@media (max-width: 560px) {
  .brand span { display: none; }
  .hero h1 { font-size: 47px; }
  .quick-notes { width: calc(100% - 28px); grid-template-columns: 1fr; }
  .quick-notes div { border-right: 0; border-bottom: 1px solid var(--line); }
  .quick-notes div:nth-child(3) { border-bottom: 1px solid var(--line); }
  .content-section { width: calc(100% - 36px); padding: 80px 0; }
  .timeline, .form-gallery { grid-template-columns: 1fr; }
  .form-gallery img { height: auto; }
  .download-list a { grid-template-columns: 48px 1fr; }
  .download-list b { grid-column: 2; }
  footer { align-items: flex-start; flex-direction: column; }
  footer p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
