:root {
  --red: #d80d18;
  --red-deep: #9f0911;
  --gold: #f3b229;
  --ink: #14213d;
  --muted: #667085;
  --paper: #fffaf1;
  --line: #e8dfd1;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 6vw;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(232, 223, 209, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 64px;
  height: 64px;
  background: transparent;
}

.brand-mark img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #1d1d1f;
  font-size: 14px;
  letter-spacing: 0;
}

.main-nav a,
.nav-dropdown-trigger {
  padding: 32px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.main-nav a.is-active {
  color: var(--red);
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger::after {
  content: "+";
  margin-left: 8px;
  color: var(--red);
}

.dropdown-panel {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 280px;
  transform: translateX(-50%) translateY(8px);
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border: 1px solid #f0ece4;
  box-shadow: var(--shadow);
  transition: 180ms ease;
}

.dropdown-panel.compact {
  width: 220px;
}

.dropdown-panel a {
  display: block;
  padding: 16px 20px;
  border-bottom: 1px solid #f3eee7;
}

.dropdown-panel a:hover {
  color: var(--red);
  background: #fff7ed;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px 6vw 96px;
  background: var(--paper);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.86) 38%, rgba(255, 253, 248, 0.2) 72%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0.86));
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1030px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1080px;
  margin-bottom: 34px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(52px, 6.5vw, 75px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero-scope {
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-copy {
  max-width: 960px;
  margin-bottom: 38px;
  color: #28344f;
  font-size: 18px;
  white-space: nowrap;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  transition: 180ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(216, 13, 24, 0.18);
}

.intro,
.logo-band,
.services,
.visa-strip,
.process,
.cta {
  padding: 96px 6vw;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 7vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

h2 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.intro p:last-child {
  max-width: 820px;
  color: #34405a;
  font-size: 21px;
}

.logo-band {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(300px, 1fr);
  align-items: center;
  gap: 7vw;
  background: #fff8ed;
}

.logo-band img {
  width: min(100%, 360px);
  justify-self: center;
}

.logo-band .section-kicker {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.18;
  text-transform: none;
}

.about-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.38;
}

.about-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.about-copy p + p {
  margin-top: 18px;
}

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

.section-heading h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 430px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: 220ms ease;
}

.service-card:hover {
  background: #fff9ef;
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(20, 33, 61, 0.08);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--red);
  font-weight: 700;
}

.service-card h3,
.timeline h3 {
  font-size: 26px;
  line-height: 1.25;
}

.service-card p {
  color: #34405a;
}

.service-card ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 10px 0;
  border-top: 1px solid #f0e8dd;
  color: var(--muted);
}

.visa-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1.3fr);
  gap: 6vw;
  align-items: start;
  background: var(--ink);
  color: var(--white);
}

.visa-strip .section-kicker {
  display: inline-block;
  width: auto;
  margin-left: 0;
  color: var(--gold);
  text-align: left;
}

.visa-strip h2 {
  text-align: left;
}

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

.visa-list span {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.process {
  background: #fffdf8;
}

#process .section-heading h2 {
  font-size: 50px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline div {
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline strong {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 500;
}

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

.cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, #b90813 0%, var(--red) 58%, #f0aa20 160%);
  color: var(--white);
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 33, 61, 0.2), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 120px);
  opacity: 0.35;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.7fr);
  gap: 7vw;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.cta .section-kicker {
  color: var(--gold);
}

.cta h2 {
  max-width: 720px;
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(40px, 5.8vw, 74px);
  font-weight: 700;
  line-height: 1.08;
}

.cta h2 span {
  display: block;
}

.cta h2 span:nth-child(2) {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.cta-copy {
  padding-bottom: 8px;
}

.cta-copy p {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.85;
}

.cta .button.primary {
  color: var(--red);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 6vw;
  color: #7a8395;
  background: #111827;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.study-page {
  background: #fffdf8;
}

.visa-page {
  background: #fffdf8;
}

.business-page {
  background: #fffdf8;
}

.process-page {
  background: #fffdf8;
}

.process-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(320px, 0.55fr);
  gap: 6vw;
  align-items: center;
  min-height: 590px;
  padding: 110px 6vw 96px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.7)),
    url("./vamos-hero.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.process-hero h1 {
  max-width: 880px;
  margin-bottom: 24px;
}

.process-hero-title {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(48px, 5.8vw, 72px);
  line-height: 1.08;
  font-weight: 800;
}

.process-hero-title span {
  display: block;
}

.process-hero-scope {
  margin-bottom: 22px;
  color: var(--red);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
}

.process-hero p:not(.section-kicker) {
  max-width: 720px;
  color: #34405a;
  font-size: 20px;
}

.process-hero p.process-hero-scope {
  max-width: none;
  color: var(--red);
  font-size: clamp(18px, 2vw, 24px);
}

.process-hero-panel {
  justify-self: end;
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid rgba(232, 223, 209, 0.92);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.process-hero-panel span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.process-framework,
.process-section,
.process-cta {
  padding: 92px 6vw;
  border-bottom: 1px solid var(--line);
}

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

.process-framework > h2,
.process-section h2,
.process-cta h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 700;
}

.process-step-list,
.process-service-grid,
.deliverable-grid,
.rhythm-grid {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.process-step-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.process-step-list article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.process-step-list span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.process-step-list h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.process-step-list p {
  color: var(--muted);
}

.process-service-grid,
.deliverable-grid,
.rhythm-grid {
  display: grid;
  gap: 16px;
}

.process-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.process-timeline-section {
  background:
    linear-gradient(180deg, #fffaf1 0%, #fffdf8 100%);
}

.process-timeline-head {
  align-items: stretch;
  margin-bottom: 34px;
}

.process-timeline-head h2 {
  align-self: end;
  padding-top: 22px;
  border-top: 4px solid var(--red);
  font-size: clamp(38px, 4.4vw, 50px);
}

.process-timeline-head p:not(.section-kicker) {
  align-self: end;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 42px rgba(20, 33, 61, 0.06);
}

.process-timeline-section .rhythm-grid {
  position: relative;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 26px;
}

.process-timeline-section .rhythm-grid::before {
  content: "";
  position: absolute;
  top: 47px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--line);
}

.process-service-grid article,
.deliverable-grid article,
.rhythm-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.process-service-grid h3,
.deliverable-grid h3,
.rhythm-grid h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.process-service-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.deliverable-grid p,
.rhythm-grid p {
  color: var(--muted);
}

.rhythm-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 28px;
}

.process-timeline-section .rhythm-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 42px 26px 28px;
  border-right: 0;
  background: rgba(255, 255, 255, 0.86);
}

.process-timeline-section .rhythm-grid article + article {
  border-left: 0;
}

.process-timeline-section .rhythm-grid article::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 26px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(216, 13, 24, 0.22);
}

.process-timeline-section .rhythm-grid strong {
  margin-bottom: 18px;
  color: var(--red);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
}

.process-timeline-section .rhythm-grid h3 {
  font-size: 25px;
}

.process-cta {
  text-align: center;
  color: var(--white);
  background: var(--red);
}

.process-cta .section-kicker {
  color: var(--gold);
}

.process-cta p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.process-cta .button.primary {
  color: var(--red);
  background: var(--white);
  border-color: var(--white);
}

.business-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(320px, 0.55fr);
  gap: 6vw;
  align-items: center;
  min-height: 590px;
  padding: 110px 6vw 96px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.7)),
    url("./vamos-hero.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.business-hero h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(46px, 4.6vw, 60px);
  line-height: 1.08;
}

.business-hero p:not(.section-kicker) {
  max-width: 720px;
  color: #34405a;
  font-size: 18px;
}

.business-hero-panel {
  justify-self: end;
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  padding: 28px;
  border: 1px solid rgba(232, 223, 209, 0.92);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.business-hero-panel p {
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 700;
}

.business-hero-panel span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.business-snapshot,
.business-section,
.business-cta,
.business-sources {
  padding: 76px 6vw;
  border-bottom: 1px solid var(--line);
}

.business-snapshot {
  background: var(--white);
}

.business-page h1,
.business-section-head h2,
.business-cta h2,
.business-sources h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.business-section-head h2,
.business-cta h2,
.business-sources h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.16;
}

.business-page h3 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.snapshot-grid,
.setup-timeline,
.cost-grid,
.relocation-grid,
.business-source-links {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

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

.snapshot-grid article,
.relocation-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.snapshot-grid span,
.setup-timeline span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 700;
}

.snapshot-grid h3,
.relocation-grid h3 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.snapshot-grid p,
.relocation-grid p {
  color: var(--muted);
}

.business-expo {
  background: #fffaf1;
}

.expo-photo-grid,
.expo-reason-grid,
.expo-city-grid,
.expo-company-types {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.expo-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.expo-photo-grid figure {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.expo-photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
}

.expo-photo-grid figcaption {
  padding: 15px 18px;
  color: #34405a;
  font-weight: 700;
}

.expo-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}

.expo-reason-grid article,
.expo-city-card,
.expo-company-types {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.expo-reason-grid article {
  padding: 24px;
}

.expo-reason-grid span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.expo-reason-grid h3 {
  margin: 14px 0 8px;
  font-size: 22px;
}

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

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

.expo-city-card {
  padding: 26px;
}

.expo-city-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

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

.expo-list p {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.expo-list strong {
  color: var(--ink);
}

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

.expo-company-types {
  margin-top: 18px;
  padding: 24px;
}

.expo-company-types h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.expo-company-types div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expo-company-types span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  color: #34405a;
  background: #fffaf1;
  font-weight: 700;
}

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

.muted-section {
  background: #fffaf1;
}

.business-section-head {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(340px, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 32px;
}

.business-section-head--solo {
  grid-template-columns: 1fr;
}

.business-section-head .section-kicker {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 10px;
}

.business-section-head h2 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
}

.business-section-head p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 2;
  color: #34405a;
  font-size: 17px;
  line-height: 1.75;
}

.business-section-head--solo h2 {
  max-width: 760px;
}

.setup-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  padding-top: 16px;
  border: 0;
}

.setup-timeline::before {
  content: "";
  position: absolute;
  top: 43px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: var(--line);
}

.setup-timeline article {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 66px 20px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.setup-timeline article::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 14px;
  height: 14px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px var(--red);
}

.setup-timeline span {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 22px;
}

.setup-timeline h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.setup-timeline p {
  color: var(--muted);
  font-size: 14px;
}

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

.cost-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.cost-grid h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.cost-grid dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.cost-grid dt {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.cost-grid dd {
  margin: -8px 0 0;
  color: var(--muted);
}

.cost-highlight {
  max-width: 1180px;
  margin: 0 auto 20px;
  padding: 16px 20px;
  border-left: 3px solid var(--red);
  color: var(--ink);
  background: rgba(216, 13, 24, 0.055);
  font-weight: 700;
}

.business-note {
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 16px 18px;
  color: #5e4a24;
  background: rgba(240, 170, 32, 0.14);
  border-left: 3px solid var(--gold);
}

.relocation-conversion {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.relocation-intro h2 {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.16;
}

.relocation-intro > p:not(.section-kicker) {
  max-width: 720px;
  color: #34405a;
  font-size: 17px;
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.client-fit-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff7ec;
}

.client-fit-card > p {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
}

.client-fit-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.client-fit-card li {
  position: relative;
  padding-left: 20px;
  color: #4d5870;
}

.client-fit-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
}

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

.relocation-grid article {
  min-height: 205px;
}

.business-page .support-grid article {
  position: relative;
  min-height: 220px;
  padding-top: 64px;
}

.support-index {
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.business-cta {
  text-align: center;
  color: var(--white);
  background: var(--red);
}

.business-cta .section-kicker {
  color: var(--gold);
}

.business-cta p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.business-cta .button.primary {
  color: var(--red);
  background: var(--white);
  border-color: var(--white);
}

.business-sources {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(420px, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  background: #f6f2ea;
}

.business-sources p {
  color: #6d7483;
  font-size: 13px;
}

.business-source-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.business-source-links a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visa-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(320px, 0.55fr);
  gap: 6vw;
  align-items: center;
  min-height: 560px;
  padding: 110px 6vw 96px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.68)),
    url("./vamos-hero.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.visa-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
}

.visa-hero p:not(.section-kicker) {
  max-width: 700px;
  color: #34405a;
  font-size: 20px;
}

.visa-quick-nav {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(138px, 1fr));
  gap: 10px;
  width: min(100%, 430px);
  padding: 28px;
  border: 1px solid rgba(232, 223, 209, 0.92);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
}

.visa-quick-nav p {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
}

.visa-quick-nav a {
  padding: 16px 18px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.visa-quick-nav a:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.visa-overview,
.visa-card-grid,
.visa-cta,
.visa-sources {
  padding: 86px 6vw;
  border-bottom: 1px solid var(--line);
}

.visa-overview {
  background: var(--white);
}

.visa-overview > h2,
.visa-cta h2,
.visa-sources h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(34px, 4.4vw, 54px);
  font-weight: 700;
}

.visa-choice-grid,
.visa-card-grid,
.visa-source-grid {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.visa-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.visa-choice-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.visa-choice-grid span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}

.visa-choice-grid h3 {
  margin: 16px 0 10px;
  font-size: 23px;
}

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

.visa-card-grid {
  display: grid;
  gap: 22px;
  background: #fffaf1;
}

.visa-card {
  scroll-margin-top: 110px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.visa-card-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(240px, 0.5fr);
  gap: 24px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.visa-card-head .section-kicker {
  grid-column: 1;
  margin-bottom: 10px;
}

.visa-card-head h2 {
  grid-column: 1;
  margin-bottom: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
}

.visa-head-meta {
  justify-self: end;
  display: grid;
  gap: 8px;
  max-width: 380px;
  text-align: right;
}

.visa-head-meta span {
  color: var(--red);
  font-weight: 700;
}

.visa-time-badge {
  justify-self: end;
  display: inline-block;
  padding: 8px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(240, 170, 32, 0.16);
  color: #5e4a24;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.visa-summary {
  max-width: 840px;
  margin: 22px 0 28px;
  color: #34405a;
  font-size: 18px;
}

.visa-time {
  display: inline-block;
  margin: -12px 0 26px;
  padding: 10px 14px;
  color: #5e4a24;
  background: rgba(240, 170, 32, 0.14);
  border-left: 3px solid var(--gold);
  font-size: 15px;
  line-height: 1.6;
}

.visa-time strong {
  color: var(--ink);
}

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

.visa-columns > div {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fffdf8;
}

.visa-columns h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.visa-columns ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.strict-list li {
  line-height: 1.65;
}

.strict-list li::marker {
  color: var(--red);
}

.official-note {
  margin: 22px 0 0;
  padding: 14px 18px;
  color: #5e4a24;
  background: rgba(240, 170, 32, 0.14);
  border-left: 3px solid var(--gold);
}

.visa-cta {
  text-align: center;
  background: var(--red);
  color: var(--white);
}

.visa-cta .section-kicker {
  color: var(--gold);
}

.visa-cta p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.visa-cta .button.primary {
  color: var(--red);
  background: var(--white);
  border-color: var(--white);
}

.visa-sources {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(420px, 1fr);
  gap: 7vw;
  background: #f6f2ea;
}

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

.visa-source-grid a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visa-sources p {
  margin-top: 24px;
  color: #6d7483;
  font-size: 13px;
}

.study-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(320px, 0.55fr);
  gap: 6vw;
  align-items: center;
  min-height: 560px;
  padding: 110px 6vw 96px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.72)),
    url("./vamos-hero.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.study-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
}

.study-hero p:not(.section-kicker) {
  max-width: 700px;
  color: #34405a;
  font-size: 20px;
}

.study-hero-copy {
  padding-top: 12px;
}

.study-stage-panel {
  justify-self: end;
  width: min(100%, 400px);
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(232, 223, 209, 0.92);
  backdrop-filter: blur(14px);
}

.study-stage-panel > p {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.study-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(128px, 1fr));
  gap: 10px;
}

.study-tabs a {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 700;
  transition: 180ms ease;
}

.study-tabs a:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.education-overview {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 7vw;
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 6vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.education-overview h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 700;
}

.education-intro p {
  max-width: 680px;
  color: #34405a;
  font-size: 18px;
}

.education-intro p + p {
  margin-top: 18px;
}

.education-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 34px;
}

.education-timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 10px;
  width: 1px;
  background: var(--line);
}

.education-timeline article {
  position: relative;
  padding: 0 0 30px;
}

.education-timeline article:last-child {
  padding-bottom: 0;
}

.education-timeline span {
  position: absolute;
  top: 2px;
  left: -34px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--white);
  background: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.education-timeline h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.3;
}

.education-timeline p {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
}

.study-section {
  padding: 96px 6vw;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.study-section:nth-of-type(even) {
  background: #fffaf1;
}

.study-section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 7vw;
  align-items: end;
  max-width: 1180px;
  margin-right: auto;
  margin-bottom: 42px;
  margin-left: auto;
}

.study-section-head .section-kicker {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 14px;
}

.study-section-head h2 {
  grid-column: 1;
  grid-row: 2;
  margin-bottom: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
}

.study-section-head p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 2;
  max-width: 560px;
  color: #34405a;
  font-size: 18px;
}

.city-grid {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.path-overview {
  background: #fffdf8;
}

.education-path-cards,
.language-layout,
.master-layout,
.apply-logic-grid,
.subsection-block,
.data-accordion,
.phd-grid,
.support-grid {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.education-path-cards {
  display: grid;
  gap: 16px;
}

.education-path-cards article {
  display: grid;
  grid-template-columns: 70px minmax(140px, 0.36fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.education-path-cards span,
.apply-logic-grid span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.education-path-cards h3 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 25px;
}

.education-path-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.education-path-cards strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.language-layout,
.master-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: 28px;
  align-items: start;
}

.language-info {
  display: grid;
  gap: 16px;
}

.planning-copy {
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.planning-copy h3 {
  margin-bottom: 18px;
  font-size: 28px;
}

.planning-copy p {
  color: var(--muted);
  font-size: 16px;
}

.planning-copy p + p {
  margin-top: 14px;
}

.spain-map-card {
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 246, 232, 0.92), rgba(255, 253, 248, 0.84)),
    var(--white);
}

.map-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.map-title span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-title strong {
  color: var(--ink);
  font-size: 15px;
}

.spain-map-card svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-outline {
  fill: rgba(255, 255, 255, 0.46);
  stroke: rgba(20, 33, 61, 0.62);
  stroke-width: 2.2;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.map-coast-line {
  fill: none;
  stroke: rgba(20, 33, 61, 0.2);
  stroke-width: 1.4;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.map-portugal-border {
  fill: none;
  stroke: rgba(20, 33, 61, 0.28);
  stroke-width: 1.7;
  stroke-dasharray: 4 6;
  stroke-linecap: round;
}

.map-island {
  fill: none;
  stroke: rgba(20, 33, 61, 0.42);
  stroke-width: 1.7;
  stroke-linecap: round;
}

.map-marker circle {
  fill: var(--red);
  stroke: var(--white);
  stroke-width: 3;
}

.map-marker text {
  fill: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.city-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.city-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.city-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(232, 223, 209, 0.75);
}

.city-card h3,
.subsection-block h3,
.materials-panel h3 {
  margin-bottom: 0;
  font-size: 26px;
}

.city-card-head span {
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.city-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.city-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
}

.table-scroll {
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: var(--white);
}

.data-table th,
.data-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.data-table th {
  color: var(--ink);
  background: #fff6e8;
  font-weight: 700;
  white-space: nowrap;
}

.data-table td {
  color: #45516a;
}

.data-table th:nth-child(5),
.data-table td:nth-child(5) {
  min-width: 54px;
  white-space: nowrap;
}

[data-render="bachelor-universities"] th:nth-child(7),
[data-render="bachelor-universities"] td:nth-child(7),
[data-render="master-universities"] th:nth-child(8),
[data-render="master-universities"] td:nth-child(8) {
  display: none;
}

.data-table a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.university-cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.university-logo {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(232, 223, 209, 0.9);
  background: var(--white);
  object-fit: contain;
}

.school-cell {
  position: relative;
  display: inline-grid;
  grid-template-columns: 34px minmax(100px, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 150px;
}

.school-logo,
.school-logo-fallback {
  grid-column: 1;
  grid-row: 1;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(232, 223, 209, 0.95);
  border-radius: 8px;
  background: var(--white);
}

.school-logo {
  position: relative;
  z-index: 1;
  padding: 4px;
  object-fit: contain;
}

.school-logo-fallback {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 14px;
  font-weight: 800;
}

.school-cell > span:last-child {
  grid-column: 2;
  line-height: 1.35;
}

.compact-table {
  min-width: 1120px;
}

.subsection-block {
  margin-top: 56px;
}

.subsection-block > h3,
.materials-panel > h3 {
  margin-bottom: 22px;
}

.explain-grid,
.apply-logic-grid,
.major-grid,
.phd-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.explain-grid article,
.apply-logic-grid article,
.major-card,
.phd-grid article,
.support-grid article,
.materials-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.explain-grid h3,
.apply-logic-grid h3,
.major-card h4,
.phd-grid h3,
.support-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.explain-grid p,
.apply-logic-grid p,
.phd-grid p,
.support-grid p {
  color: var(--muted);
}

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

.apply-logic-grid article {
  min-height: 220px;
}

.apply-logic-grid span {
  display: block;
  margin-bottom: 26px;
}

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

.major-card dl {
  margin: 0;
}

.major-illustration {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  margin-bottom: 22px;
  border: 1px solid rgba(232, 223, 209, 0.86);
  background: #fff7ec;
  object-fit: cover;
}

.major-card dt {
  margin-top: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.major-card dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.materials-panel {
  margin-top: 0;
}

.materials-panel ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.materials-panel li,
.tag-grid span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fffaf1;
  color: #34405a;
}

.materials-panel li {
  position: relative;
  padding-left: 42px;
}

.materials-panel li::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 9px;
  height: 9px;
  background: var(--red);
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
}

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

.phd-grid article {
  min-height: 220px;
}

.phd-grid article.is-warning {
  border-color: rgba(224, 7, 18, 0.35);
  background: #fff5f1;
}

.phd-grid article.is-warning h3 {
  color: var(--red);
}

.service-support {
  background: #fffdf8;
}

.service-support .study-section-head h2 {
  font-size: clamp(38px, 4.4vw, 50px);
}

.source-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(360px, 1.4fr);
  gap: 7vw;
  padding: 46px 6vw;
  background: #f6f2ea;
  color: #5f6878;
}

.source-note h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.source-note p,
.source-note span {
  color: #6d7483;
  font-size: 13px;
}

.source-note ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.source-note li {
  display: grid;
  grid-template-columns: minmax(160px, 0.45fr) minmax(260px, 1fr);
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid rgba(25, 39, 70, 0.12);
}

.source-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.data-accordion {
  margin-top: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.data-accordion summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  list-style-position: outside;
}

.data-accordion[open] summary {
  border-bottom: 1px solid var(--line);
}

.study-programs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 6vw 96px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.study-programs article {
  min-height: 330px;
  padding: 42px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.study-programs article:first-child {
  border-left: 1px solid var(--line);
}

.study-programs span {
  display: block;
  margin-bottom: 22px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.study-programs h2 {
  margin-bottom: 18px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.study-programs p {
  color: var(--muted);
  font-size: 17px;
}

.study-cta {
  padding: 88px 6vw;
  text-align: center;
  background: #fff7ec;
  color: var(--white);
}

.study-cta .section-kicker {
  width: min(860px, 100%);
  margin: 0 auto 10px;
  text-align: left;
  color: var(--red);
}

.study-cta h2 {
  margin: 0 auto 18px;
  max-width: 860px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
}

.study-cta p:not(.section-kicker) {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #34405a;
  font-size: 18px;
}

.study-cta .button.primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.button.ghost-light {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
}

.consult-modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 33, 61, 0.54);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  width: min(860px, 100%);
  padding: 40px;
  border: 1px solid rgba(232, 223, 209, 0.85);
  background: #fffdf8;
  box-shadow: 0 28px 80px rgba(20, 33, 61, 0.25);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.modal-copy h2 {
  margin-bottom: 14px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
}

.modal-copy > p:not(.section-kicker) {
  max-width: 520px;
  color: #34405a;
  font-size: 17px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-list p {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-list strong {
  color: var(--ink);
}

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

.contact-list p.contact-list-wechat {
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
}

.contact-list-copy {
  padding: 8px 12px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.contact-list-copy:hover {
  color: var(--white);
  background: var(--ink);
}

.qr-panel {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff6e8;
  text-align: center;
}

.wechat-qr {
  position: relative;
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  background:
    linear-gradient(90deg, #14213d 12px, transparent 12px) 0 0 / 24px 24px,
    linear-gradient(#14213d 12px, transparent 12px) 0 0 / 24px 24px,
    #ffffff;
  border: 14px solid #ffffff;
  box-shadow: inset 0 0 0 1px rgba(20, 33, 61, 0.18);
}

.wechat-qr::before,
.wechat-qr::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border: 10px solid var(--red);
  background: #fff;
}

.wechat-qr::before {
  top: 12px;
  left: 12px;
}

.wechat-qr::after {
  right: 12px;
  bottom: 12px;
}

.wechat-qr img {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  padding: 6px;
  background: #fff;
  object-fit: contain;
}

.wechat-qr--official {
  width: min(100%, 240px);
  height: auto;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 33, 61, 0.08);
}

.wechat-qr--official::before,
.wechat-qr--official::after {
  display: none;
}

.wechat-qr--official img {
  width: 100%;
  height: auto;
  padding: 0;
  background: transparent;
  object-fit: contain;
}

.qr-panel p {
  margin: 8px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.qr-panel span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px 6vw 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav a,
  .nav-dropdown-trigger {
    display: block;
    width: 100%;
    padding: 13px 0;
    text-align: left;
  }

  .dropdown-panel {
    position: static;
    visibility: visible;
    opacity: 1;
    width: 100%;
    transform: none;
    box-shadow: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero-copy {
    max-width: 760px;
    white-space: normal;
  }

  .intro,
  .logo-band,
  .visa-strip {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .timeline,
  .study-programs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .study-hero,
  .visa-hero,
  .business-hero,
  .process-hero,
  .education-overview,
  .study-section-head,
  .business-section-head,
  .relocation-conversion,
  .education-path-cards article,
  .visa-card-head,
  .visa-columns,
  .visa-sources,
  .business-sources,
  .process-step-list article,
  .language-layout,
  .master-layout,
  .source-note {
    grid-template-columns: 1fr;
  }

  .study-section-head .section-kicker,
  .study-section-head h2,
  .study-section-head p:not(.section-kicker),
  .business-section-head .section-kicker,
  .business-section-head h2,
  .business-section-head p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
  }

  .study-stage-panel {
    justify-self: start;
  }

  .visa-quick-nav {
    justify-self: start;
  }

  .business-hero-panel {
    justify-self: start;
  }

  .process-hero-panel {
    justify-self: start;
  }

  .visa-head-meta {
    justify-self: start;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .explain-grid,
  .apply-logic-grid,
  .major-grid,
  .phd-grid,
  .support-grid,
  .visa-choice-grid,
  .snapshot-grid,
  .setup-timeline,
  .cost-grid,
  .relocation-grid,
  .expo-photo-grid,
  .expo-reason-grid,
  .expo-city-grid,
  .process-service-grid,
  .deliverable-grid,
  .rhythm-grid,
  .materials-panel ul,
  .city-choice-grid,
  .tag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .setup-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .setup-timeline::before {
    display: none;
  }

  .education-path-cards article {
    gap: 14px;
  }

  .process-timeline-section .rhythm-grid::before {
    display: none;
  }
}

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

  .brand small {
    display: none;
  }

  .main-nav {
    top: 76px;
  }

  .hero {
    min-height: 620px;
    padding-top: 96px;
  }

  h1 {
    font-size: 50px;
  }

  .process-hero-title {
    font-size: 44px;
  }

  .process-hero p.process-hero-scope {
    font-size: 18px;
  }

  .intro,
  .logo-band,
  .services,
  .visa-strip,
  .visa-overview,
  .visa-card-grid,
  .visa-cta,
  .visa-sources,
  .business-snapshot,
  .business-section,
  .business-cta,
  .business-sources,
  .process-framework,
  .process-section,
  .process-cta,
  .process,
  .cta,
  .study-section,
  .source-note {
    padding: 72px 6vw;
  }

  .service-grid,
  .timeline,
  .visa-list,
  .study-programs,
  .study-tabs,
  .visa-quick-nav,
  .study-section-head,
  .business-section-head,
  .relocation-conversion,
  .education-path-cards article,
  .process-step-list article,
  .visa-choice-grid,
  .snapshot-grid,
  .setup-timeline,
  .cost-grid,
  .relocation-grid,
  .expo-photo-grid,
  .expo-reason-grid,
  .expo-city-grid,
  .process-service-grid,
  .deliverable-grid,
  .rhythm-grid,
  .visa-card-head,
  .visa-columns,
  .visa-sources,
  .business-sources,
  .language-layout,
  .master-layout,
  .explain-grid,
  .apply-logic-grid,
  .major-grid,
  .phd-grid,
  .support-grid,
  .materials-panel ul,
  .city-choice-grid,
  .tag-grid,
  .source-note li {
    grid-template-columns: 1fr;
  }

  .business-actions {
    display: grid;
  }

  .business-actions .button {
    width: 100%;
  }

  .business-page .support-grid article {
    min-height: 0;
    padding: 60px 24px 24px;
  }

  .expo-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .process-timeline-head h2 {
    padding-top: 18px;
  }

  .process-timeline-head p:not(.section-kicker) {
    padding: 18px 20px;
  }

  .process-timeline-section .rhythm-grid {
    gap: 14px;
    padding-top: 0;
  }

  .process-timeline-section .rhythm-grid article {
    min-height: 0;
    padding: 28px 24px 24px 56px;
    border: 1px solid var(--line);
  }

  .process-timeline-section .rhythm-grid article::before {
    top: 34px;
    left: 24px;
  }

  .process-timeline-section .rhythm-grid article::after {
    content: "";
    position: absolute;
    top: 54px;
    bottom: -15px;
    left: 34px;
    width: 1px;
    background: var(--line);
  }

  .process-timeline-section .rhythm-grid article:last-child::after {
    display: none;
  }

  .study-hero,
  .visa-hero,
  .business-hero,
  .process-hero,
  .education-overview,
  .study-cta {
    padding: 72px 6vw;
  }

  .city-card-head {
    display: block;
  }

  .city-card-head span {
    display: block;
    margin-top: 6px;
  }

  .data-table th,
  .data-table td {
    padding: 13px 14px;
    font-size: 13px;
  }

  .education-path-cards article,
  .planning-copy,
  .city-card,
  .apply-logic-grid article,
  .major-card,
  .phd-grid article,
  .support-grid article,
  .visa-choice-grid article,
  .visa-card,
  .visa-columns > div,
  .snapshot-grid article,
  .setup-timeline article,
  .cost-grid article,
  .relocation-grid article,
  .process-step-list article,
  .process-service-grid article,
  .deliverable-grid article,
  .rhythm-grid article,
  .materials-panel {
    padding: 24px;
  }

  .data-accordion summary {
    padding: 18px 20px;
    font-size: 16px;
  }

  .tag-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .tag-grid span {
    width: 100%;
  }

  .cta-actions {
    display: grid;
  }

  .service-card {
    min-height: 0;
    padding: 30px;
  }

  .site-footer {
    display: block;
  }

  .modal-panel {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 30px 24px;
  }

  .contact-list p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-list p.contact-list-wechat {
    grid-template-columns: 1fr auto;
  }

  .contact-list-wechat strong {
    grid-column: 1 / -1;
  }

  .contact-list-copy {
    justify-self: start;
  }

  .qr-panel {
    padding: 18px;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}

/* Unified English kicker + Chinese title composition */
.business-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
}

.business-title-group .section-kicker,
.business-title-group h1,
.business-title-group h2,
.business-title-group h3 {
  margin: 0;
}

.business-title-group .section-kicker {
  order: 0;
}

.business-title-group h1,
.business-title-group h2,
.business-title-group h3 {
  order: 1;
}

.business-section-head {
  grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 1fr);
  align-items: end;
}

.business-section-head > .business-title-group {
  grid-column: 1;
  grid-row: 1;
}

.business-section-head > p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.business-section-head--solo {
  grid-template-columns: 1fr;
}

.business-section-head--solo > .business-title-group {
  max-width: 760px;
}

.business-hero-copy > .business-title-group {
  gap: 12px;
  margin-bottom: 20px;
}

.business-hero-copy > .business-title-group h1 {
  margin: 0;
}

.relocation-intro > .business-title-group {
  gap: 9px;
  margin-bottom: 12px;
}

.relocation-intro > .business-title-group h2 {
  margin: 0;
}

.business-title-group--small {
  gap: 7px;
  margin-bottom: 18px;
}

.business-title-group--small .section-kicker {
  font-size: 10px;
}

.business-title-group--small h3 {
  margin: 0;
}

.business-cta > .business-title-group {
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.business-sources > .business-title-group {
  gap: 8px;
}

@media (max-width: 980px) {
  .business-section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .business-section-head > .business-title-group,
  .business-section-head > p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .business-title-group {
    gap: 7px;
  }

  .business-hero-copy > .business-title-group {
    gap: 9px;
    margin-bottom: 16px;
  }
}

/* Contact page refinement: editorial consultation layout */
.contact-page {
  --contact-radius: 18px;
  --contact-shadow: 0 24px 70px rgba(20, 33, 61, 0.08);
  background: #fffdf8;
}

.contact-page main {
  overflow: hidden;
}

.contact-page .contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.7fr);
  gap: clamp(48px, 6vw, 78px);
  align-items: center;
  width: min(calc(100% - 48px), 1180px);
  min-height: 0;
  margin: 0 auto;
  padding: clamp(110px, 10vw, 150px) 0 clamp(72px, 7vw, 94px);
  border-bottom: 1px solid var(--line);
  background: none;
}

.contact-page .contact-hero-copy {
  max-width: none;
}

.contact-page .contact-hero-copy .section-kicker {
  margin-bottom: 18px;
}

.contact-page .contact-hero-copy h1 {
  max-width: none;
  margin: 0 0 28px;
  font-size: clamp(50px, 3.25vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.contact-page .contact-hero-copy > p:last-child {
  max-width: 720px;
  color: #34405a;
  font-size: 18px;
  line-height: 1.9;
}

.contact-overview {
  padding: 30px 32px 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: var(--contact-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--contact-shadow);
}

.contact-overview-label {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-overview dl {
  margin: 0;
}

.contact-overview dl > div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid rgba(25, 39, 70, 0.1);
}

.contact-overview dt {
  color: var(--muted);
  font-size: 13px;
}

.contact-overview dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}

.contact-overview a {
  transition: color 160ms ease;
}

.contact-overview a:hover {
  color: var(--red);
}

.contact-overview-language {
  margin: 17px 0 0;
  padding-top: 17px;
  border-top: 1px solid rgba(25, 39, 70, 0.1);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.contact-wechat-section {
  padding: clamp(68px, 7vw, 92px) 24px;
  background: #f8f2e8;
}

.contact-wechat-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(64px, 8vw, 112px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-wechat-visual {
  width: min(100%, 430px);
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(25, 39, 70, 0.1);
  border-radius: var(--contact-radius);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--contact-shadow);
}

.contact-wechat-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.contact-wechat-visual figcaption {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.contact-wechat-copy {
  max-width: 560px;
}

.contact-wechat-copy h2,
.contact-brief-intro h2 {
  margin: 12px 0 24px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(42px, 4.1vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.contact-wechat-copy > p:not(.section-kicker),
.contact-brief-intro > p:not(.section-kicker) {
  margin: 0;
  color: #465169;
  font-size: 17px;
  line-height: 1.9;
}

.contact-wechat-account {
  display: flex;
  gap: 24px;
  align-items: baseline;
  margin: 32px 0 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-wechat-account span {
  color: var(--muted);
  font-size: 13px;
}

.contact-wechat-account strong {
  color: var(--ink);
  font-size: 23px;
  letter-spacing: 0.02em;
}

.contact-page .contact-copy-button {
  min-width: 150px;
  padding: 15px 22px;
  border: 1px solid var(--red);
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-size: 14px;
}

.contact-page .contact-copy-button:hover {
  color: var(--white);
  background: #b90b15;
}

.contact-brief-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 520px);
  gap: clamp(64px, 8vw, 112px);
  align-items: start;
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: clamp(72px, 8vw, 104px) 0;
}

.contact-brief-intro {
  padding-top: 22px;
}

.contact-consulting-path {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.contact-consulting-path > div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.contact-consulting-path span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.contact-consulting-path p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.contact-consulting-path strong {
  display: inline-block;
  min-width: 82px;
  color: var(--ink);
  font-size: 17px;
}

.contact-page .contact-form-panel {
  width: 100%;
  max-width: 520px;
  padding: 38px;
  border: 1px solid rgba(25, 39, 70, 0.1);
  border-radius: var(--contact-radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--contact-shadow);
}

.contact-page .contact-form {
  gap: 19px;
}

.contact-page .contact-field-row {
  gap: 14px;
}

.contact-page .contact-form label:not(.contact-consent) {
  gap: 8px;
}

.contact-page .contact-form label > span {
  color: #27344e;
  font-size: 13px;
}

.contact-page .contact-form input,
.contact-page .contact-form select {
  height: 52px;
}

.contact-page .contact-form input,
.contact-page .contact-form select,
.contact-page .contact-form textarea {
  padding: 13px 15px;
  border: 1px solid #dcd5ca;
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.92);
  font-size: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-page .contact-form input:focus,
.contact-page .contact-form select:focus,
.contact-page .contact-form textarea:focus {
  border-color: rgba(216, 13, 24, 0.65);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(216, 13, 24, 0.07);
}

.contact-page .contact-form textarea {
  min-height: 168px;
  line-height: 1.65;
}

.contact-page .contact-consent {
  gap: 10px;
  font-size: 12px;
  line-height: 1.65;
}

.contact-page .contact-consent input {
  height: auto;
}

.contact-page .contact-submit {
  justify-self: stretch;
  min-height: 52px;
  border-radius: 8px;
  font-size: 15px;
}

.contact-page .contact-summary {
  margin-top: 26px;
  padding: 24px;
  border: 0;
  border-radius: 12px;
  background: #fff5e8;
}

.contact-page .contact-summary pre {
  border-radius: 8px;
}

@media (max-width: 980px) {
  .contact-page .contact-hero,
  .contact-wechat-inner,
  .contact-brief-section {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-hero {
    gap: 44px;
  }

  .contact-page .contact-hero-copy h1 {
    white-space: normal;
  }

  .contact-overview {
    max-width: 620px;
  }

  .contact-wechat-inner {
    gap: 48px;
  }

  .contact-wechat-visual {
    justify-self: center;
  }

  .contact-wechat-copy {
    max-width: 680px;
  }

  .contact-brief-section {
    gap: 50px;
  }

  .contact-page .contact-form-panel {
    max-width: 640px;
  }
}

@media (max-width: 680px) {
  .contact-page .contact-hero {
    width: min(calc(100% - 40px), 1180px);
    gap: 34px;
    padding: 78px 0 58px;
  }

  .contact-page .contact-hero-copy .section-kicker {
    margin-bottom: 14px;
  }

  .contact-page .contact-hero-copy h1 {
    margin-bottom: 22px;
    font-size: 42px;
    line-height: 1.12;
  }

  .contact-page .contact-hero-copy > p:last-child {
    font-size: 16px;
    line-height: 1.8;
  }

  .contact-overview {
    padding: 25px 22px 20px;
    border-radius: 14px;
  }

  .contact-overview dl > div {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-overview dd {
    font-size: 14px;
  }

  .contact-wechat-section {
    padding: 58px 20px;
  }

  .contact-wechat-inner {
    gap: 38px;
  }

  .contact-wechat-visual {
    width: min(100%, 360px);
    padding: 22px;
    border-radius: 14px;
  }

  .contact-wechat-copy h2,
  .contact-brief-intro h2 {
    margin: 10px 0 20px;
    font-size: 38px;
  }

  .contact-wechat-copy > p:not(.section-kicker),
  .contact-brief-intro > p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.8;
  }

  .contact-wechat-account {
    margin-top: 26px;
  }

  .contact-brief-section {
    width: min(calc(100% - 40px), 1180px);
    gap: 38px;
    padding: 62px 0 70px;
  }

  .contact-brief-intro {
    padding-top: 0;
  }

  .contact-consulting-path {
    margin-top: 32px;
  }

  .contact-consulting-path strong {
    display: block;
    min-width: 0;
    margin-bottom: 3px;
  }

  .contact-page .contact-form-panel {
    max-width: none;
    padding: 26px 20px;
    border-radius: 14px;
  }

  .contact-page .contact-field-row {
    grid-template-columns: 1fr;
  }
}

/* Whole-site professional refinement */
.button {
  min-height: 50px;
  border-radius: 8px;
  letter-spacing: 0.01em;
}

.section-kicker,
.eyebrow {
  letter-spacing: 0.11em;
}

.home-page .logo-band {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
  background: #fffaf1;
}

.home-page .about-copy {
  max-width: 700px;
}

.home-page .about-copy h2 {
  max-width: 680px;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.home-page .about-copy p {
  max-width: 660px;
}

.about-facts {
  border-top: 2px solid var(--red);
}

.about-facts > div {
  display: grid;
  gap: 6px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts strong {
  color: var(--ink);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

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

.home-page .service-card {
  min-height: 420px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.study-page .study-section {
  padding-top: clamp(64px, 6vw, 82px);
  padding-bottom: clamp(64px, 6vw, 82px);
}

.study-page .major-grid {
  gap: 14px;
}

.study-page .major-card {
  min-height: 0;
  padding: 26px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.major-index {
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 16px;
  font-weight: 700;
}

.study-page .major-card h4 {
  min-height: 0;
  margin-bottom: 22px;
  font-size: 20px;
  line-height: 1.35;
}

.study-page .major-card dl {
  gap: 7px 12px;
}

.institution-monogram,
.school-logo-fallback {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(20, 33, 61, 0.14);
  border-radius: 50%;
  color: var(--red);
  background: #fffaf1;
  font-size: 12px;
  font-weight: 700;
}

.university-cell,
.school-cell {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.university-logo,
.school-logo,
.major-illustration {
  display: none !important;
}

.study-page .support-grid article,
.study-page .apply-logic-grid article,
.study-page .education-path-cards article {
  border-radius: 14px;
  box-shadow: none;
}

.study-page .study-cta .cta-actions {
  justify-content: center;
}

.visa-page .visa-overview,
.visa-page .visa-card-grid,
.visa-page .visa-cta,
.visa-page .visa-sources {
  padding-top: clamp(62px, 6vw, 78px);
  padding-bottom: clamp(62px, 6vw, 78px);
}

.visa-page .visa-card-grid {
  grid-template-columns: 1fr;
  width: min(calc(100% - 48px), 1180px);
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background: transparent;
}

.visa-page .visa-card {
  padding: 30px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(20, 33, 61, 0.045);
}

.visa-page .visa-card-head {
  grid-template-columns: minmax(280px, 0.58fr) minmax(300px, 0.42fr);
  gap: 28px;
}

.visa-page .visa-card-head .section-kicker,
.visa-page .visa-card-head h2 {
  grid-column: 1;
}

.visa-page .visa-head-meta {
  justify-self: end;
  max-width: 420px;
  text-align: right;
}

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

.visa-family-note {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  align-items: start;
  margin-top: 26px;
  padding: 25px 0 2px;
  border-top: 1px solid var(--line);
}

.visa-family-status {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(216, 13, 24, 0.07);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.visa-family-note h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.visa-family-note > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.business-page .expo-landing-layout {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
}

.expo-feature-statement {
  display: grid;
  align-content: end;
  min-height: 470px;
  padding: clamp(34px, 4vw, 52px);
  border-radius: var(--business-radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(216, 13, 24, 0.92), rgba(20, 33, 61, 0.98));
  box-shadow: 0 22px 60px rgba(20, 33, 61, 0.12);
}

.expo-feature-statement .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.expo-feature-statement h3 {
  max-width: 430px;
  margin: 16px 0 18px;
  font-size: clamp(34px, 3.4vw, 46px);
  line-height: 1.15;
}

.expo-feature-statement p:last-child {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.business-page .business-actions .button.secondary {
  display: none;
}

.process-page .process-framework,
.process-page .process-section,
.process-page .process-cta {
  padding-top: clamp(62px, 6vw, 78px);
  padding-bottom: clamp(62px, 6vw, 78px);
}

.process-page .process-step-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-page .process-step-list article {
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.process-page .process-service-grid article,
.process-page .deliverable-grid article {
  border: 0;
  border-top: 2px solid var(--ink);
  background: transparent;
}

.process-page .process-service-grid article:first-child,
.process-page .deliverable-grid article:first-child {
  border-top-color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  min-height: 86px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  display: grid;
  gap: 2px;
}

.site-footer p:first-child strong {
  color: var(--white);
  font-size: 14px;
}

.site-footer p:first-child span,
.site-footer p:nth-child(2),
.site-footer p:nth-child(3) {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.site-footer a {
  transition: color 160ms ease;
}

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

@media (max-width: 980px) {
  .home-page .logo-band,
  .visa-page .visa-card-grid,
  .business-page .expo-landing-layout {
    grid-template-columns: 1fr;
  }

  .expo-feature-statement {
    min-height: 360px;
  }

  .visa-page .visa-card-head,
  .visa-family-note {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .visa-page .visa-head-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .home-page .logo-band {
    gap: 42px;
  }

  .study-page .major-grid {
    grid-template-columns: 1fr;
  }

  .study-page .major-card {
    padding: 24px 22px;
  }

  .visa-page .visa-card-grid {
    width: min(calc(100% - 40px), 1180px);
  }

  .visa-page .visa-card {
    padding: 25px 22px;
  }

  .visa-page .visa-columns {
    grid-template-columns: 1fr;
  }

  .visa-family-note {
    margin-top: 22px;
    padding-top: 22px;
  }

  .expo-feature-statement {
    min-height: 320px;
    padding: 30px 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* Contact page */
.contact-page {
  background: #fffdf8;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.58fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  min-height: 580px;
  padding: clamp(92px, 10vw, 150px) 8vw 88px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 250, 241, 0.93) 60%, rgba(255, 247, 236, 0.86) 100%),
    radial-gradient(circle at 82% 28%, rgba(216, 13, 24, 0.12), transparent 34%);
}

.contact-hero-copy {
  max-width: 1120px;
}

.contact-hero-copy h1 {
  max-width: 1120px;
  margin: 0 0 32px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(54px, 4.2vw, 80px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

@media (min-width: 1200px) {
  .contact-hero-copy h1 {
    white-space: nowrap;
  }
}

.contact-hero-copy > p:last-child {
  max-width: 760px;
  margin: 0;
  color: #34405a;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.85;
}

.contact-hero-note {
  padding: 30px;
  border-top: 4px solid var(--red);
  background: var(--white);
  box-shadow: 0 26px 70px rgba(20, 33, 61, 0.1);
}

.contact-hero-note > span {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 700;
}

.contact-hero-note p {
  margin: 22px 0 26px;
  color: #34405a;
  font-size: 16px;
  line-height: 1.8;
}

.contact-hero-note strong {
  display: block;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 6vw 78px;
}

.contact-title-group {
  display: grid;
  gap: 12px;
}

.contact-title-group .section-kicker,
.contact-title-group h2 {
  margin: 0;
}

.contact-title-group h2,
.contact-form-panel > h2,
.contact-steps h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.13;
}

.contact-method {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-method-primary {
  border-top: 4px solid var(--red);
}

.contact-method span,
.contact-info-grid span {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method h3 {
  margin: 8px 0 4px;
  font-size: 24px;
}

.contact-method p,
.contact-info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-copy-button {
  flex: none;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.contact-copy-button:hover {
  color: var(--white);
  background: var(--ink);
}

.contact-wechat-qr {
  grid-column: 1 / -1;
  width: min(100%, 300px);
  margin: 8px auto 0;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-wechat-qr img {
  width: 100%;
  height: auto;
}

.contact-wechat-qr figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.contact-info-grid article {
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
}

.contact-info-grid strong {
  display: block;
  margin: 16px 0 5px;
  font-size: 17px;
}

.contact-phone-card {
  border-top: 3px solid var(--red) !important;
  background: var(--white) !important;
}

.contact-phone-card strong {
  font-size: 19px;
}

.contact-phone-card a {
  transition: color 160ms ease;
}

.contact-phone-card a:hover {
  color: var(--red);
}

.contact-prepare {
  margin-top: 68px;
}

.contact-prepare h3 {
  margin: 0 0 25px;
  font-size: 28px;
}

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

.contact-prepare li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: #34405a;
}

.contact-prepare li span {
  color: var(--red);
  font-family: Georgia, serif;
  font-weight: 700;
}

.contact-form-panel {
  align-self: start;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(20, 33, 61, 0.09);
}

.contact-form-panel > h2 {
  margin: 0 0 18px;
}

.contact-form-intro {
  max-width: 650px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 16px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

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

.contact-form label:not(.contact-consent) {
  display: grid;
  gap: 9px;
}

.contact-form label > span {
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 17px;
  border: 1px solid #dcd5ca;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(216, 13, 24, 0.08);
}

.contact-form textarea {
  resize: vertical;
}

.contact-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.contact-consent input {
  width: 17px;
  margin-top: 3px;
}

.contact-submit {
  justify-self: start;
  min-width: 190px;
}

.contact-summary {
  margin-top: 34px;
  padding: 26px;
  border-left: 4px solid var(--red);
  background: #fff7ec;
}

.contact-summary[hidden] {
  display: none;
}

.contact-summary h3 {
  margin: 0 0 18px;
  font-size: 25px;
}

.contact-summary pre {
  overflow: auto;
  margin: 0 0 22px;
  padding: 20px;
  white-space: pre-wrap;
  color: #34405a;
  background: var(--white);
  font: inherit;
  line-height: 1.75;
}

.contact-steps {
  padding: 78px 8vw 88px;
  border-top: 1px solid var(--line);
  background: #fff7ec;
}

.contact-steps > .contact-title-group {
  max-width: 1280px;
  margin: 0 auto 32px;
}

.contact-step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(46px, 6vw, 92px);
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 30px;
}

.contact-step-grid::before {
  content: "";
  position: absolute;
  top: 53px;
  right: 16.666%;
  left: 16.666%;
  height: 3px;
  background: linear-gradient(90deg, rgba(216, 13, 24, 0.28), var(--red), rgba(216, 13, 24, 0.28));
}

.contact-step-grid article {
  position: relative;
  min-height: 180px;
  padding: 0;
  border: 0;
  background: transparent;
}

.contact-step-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 28px;
  border: 4px solid #fff7ec;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 0 0 2px rgba(216, 13, 24, 0.22);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.contact-step-grid h3 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.25;
  text-align: center;
}

.contact-step-grid p {
  max-width: 350px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
  margin-inline: auto;
}

@media (max-width: 980px) {
  .contact-hero,
  .contact-main {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: 0;
  }

  .contact-hero-note {
    max-width: 600px;
  }

  .contact-main {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 680px) {
  .contact-hero {
    gap: 44px;
    padding: 72px 22px 58px;
  }

  .contact-hero-copy h1 {
    font-size: 46px;
  }

  .contact-main,
  .contact-steps {
    padding: 70px 22px;
  }

  .contact-method {
    display: grid;
  }

  .contact-info-grid,
  .contact-field-row {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 30px 22px;
  }

  .contact-step-grid article {
    min-height: 0;
  }

  .contact-step-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 0 0 0 64px;
  }

  .contact-step-grid::before {
    top: 24px;
    bottom: 20px;
    left: 23px;
    width: 3px;
    height: auto;
  }

  .contact-step-grid span {
    position: absolute;
    top: 0;
    left: -64px;
    margin: 0;
  }

  .contact-step-grid h3,
  .contact-step-grid p {
    max-width: none;
    text-align: left;
  }

  .contact-step-grid h3 {
    padding-top: 5px;
    font-size: 26px;
  }

  .contact-step-grid p {
    font-size: 16px;
  }
}

/* Unified English + Chinese section titles on the study page */
.study-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.study-title-group > .section-kicker,
.study-title-group > h2 {
  margin: 0;
}

.study-page .study-title-group > .section-kicker {
  color: var(--red);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.study-section-head {
  grid-template-columns: minmax(360px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: end;
  margin-bottom: 38px;
}

.study-section-head > .study-title-group {
  grid-column: 1;
  grid-row: 1;
}

.study-section-head > .study-title-group h2 {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(40px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

#qs-ranking .study-section-head > .study-title-group h2 {
  font-size: clamp(40px, 4.2vw, 55px);
}

.study-section-head > p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  max-width: 580px;
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.75;
}

.education-intro > .study-title-group {
  margin-bottom: 28px;
}

.education-intro > .study-title-group h2 {
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.source-note > .study-title-group {
  gap: 8px;
}

.source-note > .study-title-group h2 {
  margin: 0;
}

@media (min-width: 681px) {
  .source-note p,
  .source-note span,
  .source-note li,
  .source-note a {
    font-size: 12px;
    line-height: 1.5;
  }
}

.study-hero-copy > .section-kicker,
.study-cta > .section-kicker {
  margin-bottom: 10px;
}

.study-hero-copy > h1,
.study-cta > h2 {
  margin-top: 0;
}

@media (max-width: 980px) {
  .study-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .study-section-head > .study-title-group,
  .study-section-head > p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .study-title-group {
    gap: 7px;
  }

  .study-section-head {
    gap: 14px;
    margin-bottom: 30px;
  }

  .study-section-head > .study-title-group h2,
  .education-intro > .study-title-group h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  #qs-ranking .study-section-head > .study-title-group h2 {
    font-size: 36px;
  }

  .study-section-head > p:not(.section-kicker) {
    font-size: 15px;
  }

  .source-note a {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Language school city cards: replaces the illustrative map */
.city-explorer {
  grid-template-columns: minmax(460px, 1.2fr) minmax(300px, 0.8fr);
}

.city-selector-panel {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 8%, rgba(243, 178, 41, 0.13), transparent 25%),
    linear-gradient(145deg, #fffaf1, #fffdf8);
}

.city-selector-heading {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) minmax(240px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.city-selector-heading .section-kicker {
  margin-bottom: 8px;
}

.city-selector-heading h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.city-selector-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.city-card-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.city-choice-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-width: 0;
  min-height: 146px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.84);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.city-choice-card::after {
  content: "→";
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: var(--red);
  font-size: 18px;
  transition: transform 180ms ease;
}

.city-choice-card:hover,
.city-choice-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(216, 13, 24, 0.42);
  outline: none;
  box-shadow: 0 12px 26px rgba(20, 33, 61, 0.08);
}

.city-choice-card:hover::after,
.city-choice-card:focus-visible::after {
  transform: translateX(4px);
}

.city-choice-card.is-active {
  border-color: var(--red);
  background: #fff7ed;
  box-shadow: inset 3px 0 0 var(--red), 0 14px 30px rgba(20, 33, 61, 0.08);
}

.city-choice-region {
  padding-right: 28px;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.city-choice-card strong,
.city-choice-card small,
.city-choice-card em {
  display: block;
}

.city-choice-card strong {
  font-size: 21px;
  line-height: 1.15;
}

.city-choice-card small {
  color: #465169;
  font-size: 12px;
  line-height: 1.45;
}

.city-choice-card em {
  align-self: end;
  padding-right: 26px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.city-selector-panel + .explorer-detail {
  grid-template-rows: 190px 1fr;
}

@media (max-width: 1180px) {
  .city-explorer {
    grid-template-columns: minmax(440px, 1.15fr) minmax(300px, 0.85fr);
  }
}

@media (max-width: 820px) {
  .city-explorer {
    grid-template-columns: 1fr;
  }

  .city-selector-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .city-selector-panel + .explorer-detail {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    grid-template-rows: none;
  }
}

@media (max-width: 680px) {
  .city-selector-panel {
    padding: 20px;
  }

  .city-selector-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .city-selector-heading h3 {
    font-size: 24px;
  }

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

  .city-choice-card {
    min-height: 128px;
  }

  .city-selector-panel + .explorer-detail {
    grid-template-columns: 1fr;
    grid-template-rows: 170px 1fr;
  }
}

/* Process timeline layout refinement */
.process-timeline-section {
  padding-top: 78px;
  padding-bottom: 82px;
}

.process-timeline-section .process-timeline-head {
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(360px, 1fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 54px;
}

.process-timeline-title {
  display: grid;
  gap: 12px;
}

.process-timeline-title .section-kicker,
.process-timeline-title h2 {
  margin: 0;
}

.process-timeline-section .process-timeline-title h2 {
  padding: 0;
  border-top: 0;
  font-size: clamp(40px, 4vw, 50px);
  line-height: 1.12;
}

.process-timeline-section .process-timeline-head > p {
  margin: 0;
  padding: 22px 24px;
  border: 0;
  border-left: 3px solid var(--gold);
  color: #48536b;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
  font-size: 15px;
  line-height: 1.75;
}

.process-timeline-section .rhythm-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 0 0;
}

.process-timeline-section .rhythm-grid::before {
  top: 6px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: rgba(216, 13, 24, 0.28);
}

.process-timeline-section .rhythm-grid article {
  position: relative;
  min-height: 220px;
  padding: 34px 26px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.process-timeline-section .rhythm-grid article + article {
  border-left: 1px solid var(--line);
}

.process-timeline-section .rhythm-grid article::before {
  top: -30px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border: 4px solid #fffaf1;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 1px rgba(216, 13, 24, 0.25);
}

.process-timeline-section .rhythm-grid strong {
  margin-bottom: 14px;
  font-size: 24px;
}

.process-timeline-section .rhythm-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.process-timeline-section .rhythm-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .process-timeline-section .process-timeline-head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 42px;
  }

  .process-timeline-section .rhythm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline-section .rhythm-grid::before,
  .process-timeline-section .rhythm-grid article::before {
    display: none;
  }

  .process-timeline-section .rhythm-grid article {
    min-height: 200px;
    padding: 28px 26px;
  }
}

@media (max-width: 680px) {
  .process-timeline-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .process-timeline-section .process-timeline-title h2 {
    font-size: 36px;
  }

  .process-timeline-section .process-timeline-head > p {
    padding: 18px 20px;
  }

  .process-timeline-section .rhythm-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 0;
  }

  .process-timeline-section .rhythm-grid article {
    min-height: 0;
    padding: 24px;
  }

  .process-timeline-section .rhythm-grid article::after {
    display: none;
  }
}

/* Homepage refinement */
.home-page {
  --home-gutter: max(6vw, calc((100vw - 1320px) / 2));
}

.home-page .site-header,
.home-page .hero,
.home-page .proof-strip,
.home-page .intro,
.home-page .logo-band,
.home-page .services,
.home-page .visa-strip,
.home-page .process,
.home-page .cta,
.home-page .site-footer {
  padding-right: var(--home-gutter);
  padding-left: var(--home-gutter);
}

.home-page .site-header {
  min-height: 78px;
}

.home-page .brand-mark,
.home-page .brand-mark img {
  width: 56px;
  height: 56px;
}

.home-page .hero {
  min-height: min(760px, calc(100vh - 78px));
  padding-top: 104px;
  padding-bottom: 92px;
}

.home-page .hero-media {
  left: 42%;
}

.home-page .hero-media::after {
  background:
    linear-gradient(90deg, #fffdf8 0%, rgba(255, 253, 248, 0.98) 18%, rgba(255, 253, 248, 0.8) 48%, rgba(255, 253, 248, 0.12) 78%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.02), rgba(255, 253, 248, 0.48));
}

.home-page .hero-content {
  max-width: 720px;
}

.home-page .hero h1 {
  margin-bottom: 26px;
  font-size: clamp(56px, 6vw, 82px);
  letter-spacing: -0.045em;
}

.home-page .hero-scope {
  margin-bottom: 16px;
  font-size: clamp(18px, 1.7vw, 23px);
}

.home-page .hero-copy {
  max-width: 680px;
  white-space: normal;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--white);
  background: var(--ink);
}

.proof-strip > div {
  position: relative;
  min-height: 138px;
  padding: 30px 34px 28px 76px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip span {
  position: absolute;
  top: 32px;
  left: 28px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 17px;
}

.proof-strip strong {
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
}

.proof-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.home-page .intro,
.home-page .logo-band,
.home-page .services,
.home-page .visa-strip,
.home-page .process,
.home-page .cta {
  padding-top: clamp(76px, 7vw, 104px);
  padding-bottom: clamp(76px, 7vw, 104px);
}

.home-page .intro h2 {
  max-width: 680px;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 700;
  font-size: clamp(42px, 4.4vw, 64px);
  letter-spacing: -0.035em;
}

.home-page .intro p:last-child {
  max-width: 670px;
  font-size: 19px;
  line-height: 1.9;
}

.home-page .logo-band {
  grid-template-columns: minmax(250px, 360px) minmax(420px, 650px);
  justify-content: space-between;
}

.home-page .logo-band img {
  width: min(100%, 310px);
}

.home-page .about-copy p {
  font-size: 16px;
  line-height: 1.82;
}

.home-page .section-heading h2,
.home-page #process .section-heading h2 {
  font-size: clamp(42px, 4.4vw, 58px);
  letter-spacing: -0.035em;
}

.home-page .service-grid {
  gap: 16px;
  border: 0;
}

.home-page .service-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 34px;
  border: 1px solid var(--line);
}

.home-page .service-card ul {
  margin-bottom: 26px;
}

.home-page .card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--red);
  font-size: 14px;
  font-weight: 700;
}

.home-page .card-link span {
  font-size: 20px;
  transition: transform 180ms ease;
}

.home-page .card-link:hover span {
  transform: translateX(5px);
}

.home-page .visa-list span {
  transition: 180ms ease;
}

.home-page .visa-list span:hover {
  border-color: rgba(243, 178, 41, 0.72);
  background: rgba(243, 178, 41, 0.12);
}

.home-page .timeline div {
  min-height: 240px;
}

@media (max-width: 980px) {
  .home-page {
    --home-gutter: 5vw;
  }

  .home-page .hero-media {
    left: 26%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-strip > div:last-child {
    border-bottom: 0;
  }

  .home-page .logo-band {
    grid-template-columns: minmax(220px, 0.55fr) minmax(360px, 1fr);
  }

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

  .home-page .service-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .home-page {
    --home-gutter: 22px;
  }

  .home-page .hero {
    min-height: 690px;
    padding-top: 108px;
    padding-bottom: 58px;
  }

  .home-page .hero-media {
    inset: 0;
    opacity: 0.38;
  }

  .home-page .hero-media::after {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.76), #fffdf8 88%),
      linear-gradient(90deg, rgba(255, 253, 248, 0.9), rgba(255, 253, 248, 0.4));
  }

  .home-page .hero h1 {
    font-size: clamp(48px, 15vw, 62px);
  }

  .home-page .hero-copy {
    font-size: 16px;
    line-height: 1.8;
  }

  .proof-strip > div {
    padding: 24px 20px 22px 62px;
  }

  .proof-strip span {
    top: 26px;
    left: 20px;
  }

  .home-page .intro,
  .home-page .logo-band,
  .home-page .visa-strip {
    grid-template-columns: 1fr;
  }

  .home-page .intro {
    gap: 26px;
  }

  .home-page .intro h2 {
    font-size: 39px;
  }

  .home-page .intro p:last-child {
    font-size: 17px;
  }

  .home-page .logo-band img {
    width: 190px;
    justify-self: start;
  }

  .home-page .service-card {
    padding: 28px 24px;
  }

  .home-page .visa-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Spain Language City Explorer */
.language-layout--explorer {
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1.58fr);
  gap: 18px;
  align-items: stretch;
}

.language-layout--explorer > .planning-copy {
  height: 100%;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 237, 0.88));
  box-shadow: 0 18px 52px rgba(20, 33, 61, 0.06);
}

.city-explorer {
  display: grid;
  grid-template-columns: minmax(390px, 1.08fr) minmax(300px, 0.92fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(20, 33, 61, 0.09);
}

.explorer-map-panel,
.explorer-detail {
  min-width: 0;
}

.explorer-map-panel {
  padding: 26px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 14%, rgba(243, 178, 41, 0.15), transparent 28%),
    linear-gradient(145deg, #fffaf1, #fffdf8);
}

.explorer-map-title {
  align-items: center;
  margin-bottom: 18px;
}

.explorer-map-title span {
  letter-spacing: 0.14em;
}

.explorer-map-title strong {
  font-size: 14px;
}

.explorer-map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 61, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(20, 33, 61, 0.035) 31px 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(20, 33, 61, 0.035) 31px 32px);
}

.explorer-map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 420 / 260;
  touch-action: manipulation;
}

.explorer-map-outline {
  fill: url(#spainLandGradient);
  stroke: rgba(20, 33, 61, 0.72);
  stroke-width: 2;
  stroke-linejoin: round;
  filter: url(#mapSoftShadow);
}

.map-region {
  cursor: pointer;
  outline: none;
  pointer-events: bounding-box;
}

.andalucia-region {
  fill: rgba(243, 178, 41, 0.24);
  stroke: rgba(209, 132, 15, 0.48);
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
  transition: fill 220ms ease, stroke 220ms ease, opacity 220ms ease;
}

.map-region:hover .andalucia-region,
.map-region:focus-visible .andalucia-region,
.map-region.is-active .andalucia-region {
  fill: rgba(243, 178, 41, 0.42);
  stroke: #c5790d;
}

.region-label {
  fill: #8d5f13;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  pointer-events: none;
}

.city-marker {
  cursor: pointer;
  outline: none;
  pointer-events: bounding-box;
}

.city-marker .marker-core {
  fill: var(--red);
  stroke: var(--white);
  stroke-width: 2.5;
  transition: r 220ms ease, fill 220ms ease, filter 220ms ease;
}

.city-marker .marker-pulse {
  fill: rgba(216, 13, 24, 0.15);
  opacity: 0;
  transform-origin: center;
}

.city-marker text {
  fill: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", "PingFang SC", sans-serif;
  font-size: 9px;
  font-weight: 700;
  paint-order: stroke;
  stroke: rgba(255, 253, 248, 0.94);
  stroke-width: 3px;
  stroke-linejoin: round;
  pointer-events: none;
  transition: fill 220ms ease, font-size 220ms ease;
}

.city-marker:hover .marker-core,
.city-marker:focus-visible .marker-core {
  r: 7px;
  filter: drop-shadow(0 3px 5px rgba(216, 13, 24, 0.25));
}

.city-marker.is-active .marker-core {
  r: 7.5px;
  fill: #b90813;
  filter: drop-shadow(0 4px 7px rgba(216, 13, 24, 0.3));
}

.city-marker.is-active text {
  fill: var(--red);
  font-size: 10px;
}

.city-marker.is-active .marker-pulse {
  opacity: 1;
  animation: city-marker-pulse 1.8s ease-out infinite;
}

.city-marker.is-region-active .marker-core {
  r: 7px;
  fill: #b90813;
}

.city-marker.is-region-active .marker-pulse {
  opacity: 1;
  animation: city-marker-pulse 1.8s ease-out infinite;
}

@keyframes city-marker-pulse {
  0% {
    opacity: 0.5;
    transform: scale(0.75);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(2.15);
  }
}

.explorer-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding-top: 14px;
}

.explorer-map-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.map-reset-button {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(216, 13, 24, 0.24);
  border-radius: 999px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.map-reset-button:hover {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.explorer-detail {
  display: grid;
  grid-template-rows: 190px 1fr;
  background: var(--white);
}

.city-scene {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  background: #f8ead6;
}

.city-scene svg {
  display: block;
  width: 100%;
  height: 100%;
}

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

.city-photo-credit {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 2;
  padding: 4px 7px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(20, 33, 61, 0.62);
  font-size: 9px;
  line-height: 1;
}

.city-scene::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(transparent, rgba(20, 33, 61, 0.08));
  pointer-events: none;
}

.explorer-detail-copy {
  padding: 26px;
}

.explorer-detail-copy .section-kicker {
  margin-bottom: 9px;
}

.explorer-detail-copy h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.2;
}

.detail-lead {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.detail-facts {
  display: grid;
  gap: 12px;
}

.detail-facts > div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.detail-facts span,
.detail-facts strong {
  display: block;
}

.detail-facts span {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.detail-facts strong {
  color: #34405a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.detail-facts small {
  display: block;
  margin-top: 4px;
  color: #8a92a3;
  font-size: 10px;
  line-height: 1.45;
}

.explorer-detail.is-updating .city-scene,
.explorer-detail.is-updating .explorer-detail-copy {
  opacity: 0;
  transform: translateY(7px);
}

.city-scene,
.explorer-detail-copy {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 240ms ease, transform 240ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .city-marker.is-active .marker-pulse,
  .city-marker.is-region-active .marker-pulse {
    animation: none;
  }

  .city-scene,
  .explorer-detail-copy {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .language-layout--explorer {
    grid-template-columns: 1fr;
  }

  .city-explorer {
    grid-template-columns: minmax(380px, 1.1fr) minmax(300px, 0.9fr);
  }
}

@media (max-width: 820px) {
  .city-explorer {
    grid-template-columns: 1fr;
  }

  .explorer-map-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .explorer-detail {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
    grid-template-rows: none;
  }
}

@media (max-width: 680px) {
  .language-layout--explorer {
    gap: 14px;
  }

  .language-layout--explorer > .planning-copy {
    padding: 24px;
  }

  .city-explorer {
    border-radius: 18px;
  }

  .explorer-map-panel {
    padding: 18px;
  }

  .explorer-map-title {
    display: grid;
    gap: 5px;
  }

  .explorer-map-title strong {
    font-size: 13px;
  }

  .explorer-map-footer {
    align-items: flex-start;
  }

  .explorer-map-footer p {
    max-width: 190px;
  }

  .explorer-detail {
    grid-template-columns: 1fr;
    grid-template-rows: 170px 1fr;
  }

  .city-scene {
    min-height: 170px;
  }

  .explorer-detail-copy {
    padding: 22px;
  }

  .explorer-detail-copy h3 {
    font-size: 23px;
  }
}

/* Service card number alignment */
.business-page .support-grid article {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 26px var(--business-card-padding) var(--business-card-padding);
}

.business-page .support-index {
  position: static;
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-family: var(--business-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.business-page .support-grid h3 {
  margin: 0 0 8px;
}

.business-page .support-grid p {
  margin: 0;
}

@media (max-width: 680px) {
  .business-page .support-grid article {
    min-height: 0;
    padding: 22px;
  }

  .business-page .support-index {
    margin-bottom: 18px;
  }
}

/* Final unified section title composition */
.business-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
}

.business-title-group .section-kicker,
.business-title-group h1,
.business-title-group h2,
.business-title-group h3 {
  margin: 0;
}

.business-section-head {
  grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 1fr);
  align-items: end;
}

.business-section-head > .business-title-group {
  grid-column: 1;
  grid-row: 1;
}

.business-section-head > p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.business-section-head--solo {
  grid-template-columns: 1fr;
}

.business-section-head--solo > .business-title-group {
  max-width: 760px;
}

.business-hero-copy > .business-title-group {
  gap: 12px;
  margin-bottom: 20px;
}

.relocation-intro > .business-title-group {
  gap: 9px;
  margin-bottom: 12px;
}

.business-title-group--small {
  gap: 7px;
  margin-bottom: 18px;
}

.business-title-group--small .section-kicker {
  font-size: 10px;
}

.business-cta > .business-title-group {
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.business-sources > .business-title-group {
  gap: 8px;
}

@media (max-width: 980px) {
  .business-section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .business-section-head > .business-title-group,
  .business-section-head > p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .business-title-group {
    gap: 7px;
  }

  .business-hero-copy > .business-title-group {
    gap: 9px;
    margin-bottom: 16px;
  }
}

/* Business typography — unified Chinese / Latin consulting system */
.business-page {
  --business-font: "Avenir Next", "Helvetica Neue", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  --business-section-space: clamp(52px, 5vw, 68px);
  font-family: var(--business-font);
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
}

.business-page h1,
.business-page h2,
.business-page h3,
.business-page p,
.business-page a,
.business-page span,
.business-page dt,
.business-page dd,
.business-page li,
.business-page strong {
  font-family: var(--business-font);
}

.business-page .section-kicker {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.13em;
}

.business-page h1 {
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.business-section-head {
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: 24px;
}

.business-section-head h2,
.relocation-intro h2,
.business-cta h2,
.business-sources h2 {
  font-family: var(--business-font);
  font-size: clamp(34px, 3.45vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.business-section-head p:not(.section-kicker),
.relocation-intro > p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: -0.012em;
}

.business-page h3 {
  font-weight: 700;
  letter-spacing: -0.018em;
}

.snapshot-grid h3,
.expo-landing-cards h3,
.expo-city-card h3,
.setup-timeline h3,
.cost-grid h3,
.relocation-grid h3,
.business-page .support-grid h3 {
  font-size: 20px;
  line-height: 1.3;
}

.snapshot-grid p,
.expo-landing-cards p,
.setup-timeline p,
.cost-grid dd,
.relocation-grid p,
.business-page .support-grid p,
.client-fit-card li {
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: -0.01em;
}

.cost-highlight,
.business-note {
  font-size: 14px;
  line-height: 1.6;
}

.cost-grid article {
  min-height: 330px;
}

.cost-grid h3 {
  margin-bottom: 16px;
}

.cost-grid dl {
  gap: 10px;
}

.cost-grid dt {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.025em;
}

.cost-grid dd {
  margin-top: -6px;
}

.relocation-intro h2 {
  max-width: 680px;
  margin-bottom: 12px;
}

.relocation-conversion {
  align-items: end;
}

.client-fit-card > p {
  margin-bottom: 13px;
  font-size: 18px;
  letter-spacing: -0.018em;
}

.client-fit-card ul {
  gap: 8px;
}

.relocation-grid article {
  min-height: 202px;
}

.business-actions .button,
.business-cta .button {
  font-family: var(--business-font);
  font-size: 13px;
  letter-spacing: 0;
}

@media (max-width: 680px) {
  .business-page {
    --business-section-space: 48px;
  }

  .business-page h1 {
    line-height: 1.08;
  }

  .business-section-head h2,
  .relocation-intro h2,
  .business-cta h2,
  .business-sources h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .business-section-head {
    gap: 10px;
  }
}

/* Business page refinement — compact consulting layout */
.business-page {
  --business-radius: 18px;
  --business-card-padding: 28px;
  --business-section-space: clamp(58px, 6vw, 78px);
}

.business-hero {
  min-height: 570px;
  padding-top: 82px;
  padding-bottom: 74px;
}

.business-hero-copy {
  max-width: 780px;
}

.business-hero h1 {
  max-width: 720px;
  font-size: clamp(44px, 4.8vw, 66px);
}

.business-hero-actions {
  margin-top: 30px;
}

.business-hero-actions .button {
  min-height: 52px;
  border-radius: 999px;
}

.business-hero-panel,
.snapshot-grid article,
.expo-feature-image,
.expo-landing-cards article,
.expo-city-card,
.setup-timeline article,
.cost-grid article,
.client-fit-card,
.relocation-grid article,
.business-page .support-grid article {
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: var(--business-radius);
  box-shadow: 0 16px 46px rgba(20, 33, 61, 0.055);
}

.business-hero-panel {
  padding: var(--business-card-padding);
}

.business-hero-panel span {
  border: 0;
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.92);
}

.business-snapshot,
.business-section,
.business-cta,
.business-sources {
  padding-top: var(--business-section-space);
  padding-bottom: var(--business-section-space);
}

.business-section-head {
  margin-bottom: 26px;
}

.business-section-head h2,
.business-cta h2,
.business-sources h2 {
  font-size: clamp(34px, 3.8vw, 48px);
}

.snapshot-grid,
.cost-grid,
.relocation-grid,
.business-page .support-grid {
  gap: 14px;
}

.snapshot-grid article,
.cost-grid article,
.relocation-grid article,
.business-page .support-grid article {
  height: 100%;
  padding: var(--business-card-padding);
  background: rgba(255, 255, 255, 0.88);
}

.snapshot-grid article {
  min-height: 230px;
}

.business-expo {
  background:
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(255, 253, 248, 0.98));
}

.expo-landing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto 30px;
}

.expo-feature-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  margin: 0;
  background: var(--ink);
}

.expo-feature-image::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(13, 25, 50, 0.9));
}

.expo-feature-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.expo-feature-image figcaption {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 30px;
  left: 32px;
  color: var(--white);
}

.expo-feature-image strong,
.expo-feature-image span {
  display: block;
}

.expo-feature-image strong {
  margin-bottom: 8px;
  font-size: 25px;
}

.expo-feature-image span {
  color: rgba(255, 255, 255, 0.76);
}

.expo-landing-cards {
  display: grid;
  gap: 14px;
}

.expo-landing-cards article {
  display: grid;
  align-content: center;
  min-height: 157px;
  padding: var(--business-card-padding);
  background: rgba(255, 255, 255, 0.9);
}

.expo-landing-cards span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.expo-landing-cards h3 {
  margin: 8px 0 6px;
  font-size: 21px;
}

.expo-landing-cards p {
  margin: 0;
  color: var(--muted);
}

.expo-resource-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 30px;
  max-width: 1180px;
  margin: 0 auto 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.expo-resource-head p {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.expo-resource-head span {
  max-width: 660px;
  color: var(--muted);
}

.expo-city-grid--compact {
  gap: 14px;
}

.expo-city-grid--compact .expo-city-card {
  min-height: 230px;
  padding: var(--business-card-padding);
}

.expo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.expo-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #34405a;
  background: #fff7ec;
  font-size: 13px;
  font-weight: 700;
}

.setup-timeline {
  display: flex;
  gap: 0;
  max-width: 1180px;
  overflow-x: auto;
  padding: 54px 0 14px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(216, 13, 24, 0.35) transparent;
  scrollbar-width: thin;
}

.setup-timeline::before {
  top: 28px;
  right: 125px;
  left: 125px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.setup-timeline article {
  flex: 0 0 260px;
  min-height: 260px;
  margin-right: 14px;
  padding: 40px var(--business-card-padding) var(--business-card-padding);
  scroll-snap-align: start;
  background: var(--white);
}

.setup-timeline article::before {
  top: -36px;
  left: 28px;
  width: 18px;
  height: 18px;
  border-width: 6px;
  box-shadow: 0 0 0 2px rgba(216, 13, 24, 0.18);
}

.setup-timeline span {
  position: static;
  display: block;
  margin-bottom: 22px;
  font-size: 30px;
}

.setup-timeline h3 {
  font-size: 21px;
}

.setup-timeline p {
  font-size: 15px;
  line-height: 1.7;
}

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

.relocation-conversion {
  margin-bottom: 26px;
}

.client-fit-card {
  padding: var(--business-card-padding);
}

.relocation-grid article {
  min-height: 220px;
}

.business-page .support-grid article {
  min-height: 230px;
}

.business-cta {
  position: relative;
  overflow: hidden;
  padding-top: clamp(70px, 8vw, 104px);
  padding-bottom: clamp(70px, 8vw, 104px);
  background: linear-gradient(125deg, #9f0911, var(--red) 62%, #ed8e18 160%);
}

.business-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.35) 0 1px, transparent 1px 140px);
}

.business-cta > * {
  position: relative;
  z-index: 1;
}

.business-cta .button {
  min-height: 52px;
  padding-right: 30px;
  padding-left: 30px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .expo-landing-layout {
    grid-template-columns: 1fr;
  }

  .expo-feature-image,
  .expo-feature-image img {
    min-height: 420px;
  }

  .expo-landing-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .expo-landing-cards article {
    min-height: 230px;
    align-content: start;
  }

  .setup-timeline {
    display: flex;
    grid-template-columns: none;
  }
}

@media (max-width: 680px) {
  .business-page {
    --business-card-padding: 22px;
    --business-section-space: 52px;
  }

  .business-hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 56px;
  }

  .business-hero h1 {
    font-size: 40px;
  }

  .business-hero-panel {
    margin-top: 10px;
  }

  .business-hero-actions {
    display: grid;
  }

  .expo-feature-image,
  .expo-feature-image img {
    min-height: 370px;
  }

  .expo-feature-image figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .expo-landing-cards {
    grid-template-columns: 1fr;
  }

  .expo-landing-cards article {
    min-height: 0;
  }

  .expo-resource-head {
    display: block;
  }

  .expo-resource-head span {
    display: block;
    margin-top: 8px;
  }

  .setup-timeline {
    display: grid;
    gap: 12px;
    overflow: visible;
    padding: 0 0 0 28px;
    scroll-snap-type: none;
  }

  .setup-timeline::before {
    display: block;
    top: 22px;
    right: auto;
    bottom: 22px;
    left: 8px;
    width: 2px;
    height: auto;
  }

  .setup-timeline article {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: var(--business-card-padding);
  }

  .setup-timeline article::before {
    top: 25px;
    left: -29px;
    width: 14px;
    height: 14px;
    border-width: 5px;
  }

  .setup-timeline span {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .cost-grid article,
  .relocation-grid article,
  .business-page .support-grid article,
  .snapshot-grid article {
    min-height: 0;
  }
}

/* Final business typography overrides */
.business-page {
  --business-section-space: clamp(52px, 5vw, 68px);
}

.business-section-head {
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: 24px;
}

.business-section-head h2,
.relocation-intro h2,
.business-cta h2,
.business-sources h2 {
  font-family: var(--business-font);
  font-size: clamp(34px, 3.45vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.business-section-head p:not(.section-kicker),
.relocation-intro > p:not(.section-kicker) {
  max-width: 620px;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: -0.012em;
}

.snapshot-grid h3,
.expo-landing-cards h3,
.expo-city-card h3,
.setup-timeline h3,
.cost-grid h3,
.relocation-grid h3,
.business-page .support-grid h3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.018em;
}

.snapshot-grid p,
.expo-landing-cards p,
.setup-timeline p,
.cost-grid dd,
.relocation-grid p,
.business-page .support-grid p,
.client-fit-card li {
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: -0.01em;
}

.cost-grid article {
  min-height: 330px;
}

.cost-grid h3 {
  margin-bottom: 16px;
}

.cost-grid dl {
  gap: 10px;
}

.cost-grid dt {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.025em;
}

.cost-grid dd {
  margin-top: -6px;
}

.relocation-intro h2 {
  max-width: 680px;
  margin-bottom: 12px;
}

.relocation-conversion {
  align-items: end;
  margin-bottom: 24px;
}

.client-fit-card > p {
  margin-bottom: 13px;
  font-size: 18px;
  letter-spacing: -0.018em;
}

.client-fit-card ul {
  gap: 8px;
}

.relocation-grid article {
  min-height: 202px;
}

@media (max-width: 680px) {
  .business-page {
    --business-section-space: 48px;
  }

  .business-section-head {
    gap: 10px;
  }

  .business-section-head h2,
  .relocation-intro h2,
  .business-cta h2,
  .business-sources h2 {
    font-size: 32px;
    line-height: 1.16;
  }

  .cost-grid article,
  .relocation-grid article {
    min-height: 0;
  }
}

/* Final service card number alignment */
.business-page .support-grid article {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 26px var(--business-card-padding) var(--business-card-padding);
}

.business-page .support-index {
  position: static;
  display: block;
  margin-bottom: 24px;
  color: var(--red);
  font-family: var(--business-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.business-page .support-grid h3 {
  margin: 0 0 8px;
}

.business-page .support-grid p {
  margin: 0;
}

@media (max-width: 680px) {
  .business-page .support-grid article {
    min-height: 0;
    padding: 22px;
  }

  .business-page .support-index {
    margin-bottom: 18px;
  }
}

/* Definitive section title layout */
.business-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
}

.business-page .business-title-group > .section-kicker,
.business-page .business-title-group > h1,
.business-page .business-title-group > h2,
.business-page .business-title-group > h3 {
  margin: 0;
}

.business-section-head {
  grid-template-columns: minmax(360px, 0.88fr) minmax(360px, 1fr);
  align-items: end;
}

.business-section-head > .business-title-group {
  grid-column: 1;
  grid-row: 1;
}

.business-section-head > p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.business-section-head--solo {
  grid-template-columns: 1fr;
}

.business-section-head--solo > .business-title-group {
  max-width: 760px;
}

.business-hero-copy > .business-title-group {
  gap: 12px;
  margin-bottom: 20px;
}

.relocation-intro > .business-title-group {
  gap: 9px;
  margin-bottom: 12px;
}

.business-title-group--small {
  gap: 7px;
  margin-bottom: 18px;
}

.business-title-group--small .section-kicker {
  font-size: 10px;
}

.business-cta > .business-title-group {
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.business-sources > .business-title-group {
  gap: 8px;
}

@media (max-width: 980px) {
  .business-section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .business-section-head > .business-title-group,
  .business-section-head > p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .business-title-group {
    gap: 7px;
  }

  .business-hero-copy > .business-title-group {
    gap: 9px;
    margin-bottom: 16px;
  }
}
