@charset "UTF-8";

:root {
  --ivory: #f7f2ea;
  --ivory-deep: #eee5d9;
  --paper: #fffdf9;
  --mulberry: #6f2944;
  --mulberry-dark: #4a1830;
  --sage: #789a86;
  --sage-light: #dce7df;
  --copper: #c88467;
  --ink: #233331;
  --muted: #66716d;
  --line: #ded4c9;
  --white: #ffffff;
  --header-height: 102px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 3000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--mulberry);
}

.skip-link:focus {
  top: 10px;
}

.section-anchor {
  scroll-margin-top: var(--header-height);
}

.icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--mulberry);
}

.icon::before {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.icon-assessment::before { background-image: url("../icons/assessment.svg"); }
.icon-book::before { background-image: url("../icons/book.svg"); }
.icon-calendar::before { background-image: url("../icons/calendar.svg"); }
.icon-chart::before { background-image: url("../icons/chart.svg"); }
.icon-clinic::before { background-image: url("../icons/clinic.svg"); }
.icon-dna::before { background-image: url("../icons/dna.svg"); }
.icon-embryo::before { background-image: url("../icons/embryo.svg"); }
.icon-file::before { background-image: url("../icons/file.svg"); }
.icon-flask::before { background-image: url("../icons/flask.svg"); }
.icon-heart::before { background-image: url("../icons/heart.svg"); }
.icon-history::before { background-image: url("../icons/history.svg"); }
.icon-lab::before { background-image: url("../icons/lab.svg"); }
.icon-lock::before { background-image: url("../icons/lock.svg"); }
.icon-shield::before { background-image: url("../icons/shield.svg"); }
.icon-team::before { background-image: url("../icons/team.svg"); }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-utility {
  height: 28px;
  color: #74675f;
  background: #f0e8de;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.header-utility .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 42px;
  height: 42px;
}

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

.brand strong {
  color: var(--mulberry-dark);
  font-family: "Songti SC", SimSun, serif;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0.06em;
}

.brand small {
  margin-top: 4px;
  color: var(--sage);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  display: block;
  padding: 24px 12px 22px;
  color: #3d4744;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 12px;
  bottom: 15px;
  left: 12px;
  height: 1px;
  background: var(--mulberry);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

main {
  padding-top: var(--header-height);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  background:
    radial-gradient(circle at 8% 82%, rgba(120, 154, 134, 0.12), transparent 26%),
    linear-gradient(110deg, #f4ecdf 0%, #fffdf8 44%, #eee3d7 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid rgba(111, 41, 68, 0.13);
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: 90px;
  right: -140px;
  width: 360px;
  height: 360px;
}

.hero::after {
  bottom: -210px;
  left: 15%;
  width: 500px;
  height: 500px;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  min-height: 700px;
  padding-top: 48px;
  padding-bottom: 50px;
}

.hero-index {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10px;
  color: #827066;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.hero-index strong {
  margin-bottom: 9px;
  color: var(--mulberry);
  font-size: 16px;
}

.hero-index i {
  position: relative;
  display: block;
  width: 1px;
  height: 290px;
  margin-top: 18px;
  margin-left: 12px;
  background: var(--line);
}

.hero-index i::before {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  background: var(--ivory);
  content: "";
}

.hero-visual {
  position: absolute;
  top: 48px;
  right: 0;
  bottom: 50px;
  left: 270px;
  z-index: 1;
  overflow: hidden;
  background: #dccfc2;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 7% 53%);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 242, 234, 0.46), transparent 30%);
  content: "";
}

.hero-lab {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  width: 180px;
  border: 7px solid rgba(255, 253, 249, 0.94);
  background: var(--paper);
  box-shadow: 0 16px 40px rgba(55, 37, 34, 0.15);
}

.hero-lab img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}

.hero-lab span {
  display: block;
  padding: 8px 10px;
  color: var(--mulberry);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.hero-sheet {
  position: relative;
  z-index: 4;
  align-self: center;
  width: 545px;
  margin-left: 38px;
  padding: 48px 52px 42px;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 24px 70px rgba(73, 42, 43, 0.13);
  clip-path: polygon(0 0, 94% 0, 100% 18%, 96% 100%, 0 100%);
}

.hero-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1,
.section-heading h2,
.boundary-title h2,
.program-heading h2,
.support-heading h2,
.knowledge-heading h2,
.faq-heading h2,
.preparation h2 {
  color: var(--mulberry-dark);
  font-family: "Songti SC", STSong, SimSun, serif;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.hero-sheet > p {
  max-width: 420px;
  margin-top: 22px;
  color: #5f6763;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--mulberry);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

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

.button-outline {
  color: var(--mulberry);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
  background: var(--mulberry);
}

.hero-price {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-top: 28px;
  padding: 13px 16px;
  border: 1px solid #d8b5a7;
}

.hero-price span {
  color: #5d4b45;
  font-size: 13px;
}

.hero-price strong {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1;
}

.hero-price em {
  margin-left: 3px;
  font-family: "Microsoft YaHei", sans-serif;
  font-size: 15px;
  font-style: normal;
}

.hero-price small {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: #8a7b74;
  font-size: 12px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  color: #4e5f59;
  font-size: 12px;
}

.hero-trust li {
  position: relative;
  padding-left: 15px;
}

.hero-trust li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
  transform: translateY(-50%);
}

.boundary {
  position: relative;
  padding: 54px 0 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.boundary-layout {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 44px;
  align-items: center;
}

.boundary-title span,
.section-heading > span,
.program-heading > span,
.support-heading > span,
.knowledge-heading > span,
.faq-heading > span,
.preparation header > span {
  display: block;
  margin-bottom: 10px;
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.boundary-title h2 {
  font-size: 32px;
  line-height: 1.35;
}

.boundary-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.boundary-items article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  min-height: 150px;
  padding: 22px 26px;
  border-left: 1px solid var(--line);
}

.boundary-items .icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  color: var(--mulberry);
  border: 1px solid #d8c9bf;
  border-radius: 50%;
}

.boundary-items .icon::before {
  inset: 11px;
}

.boundary-items h3 {
  margin-bottom: 7px;
  color: var(--mulberry-dark);
  font-size: 17px;
}

.boundary-items p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.boundary-note {
  margin-top: 32px;
  padding: 12px 20px;
  color: #756d67;
  background: #eee7dc;
  font-size: 12px;
  text-align: center;
}

.assessment {
  padding: 96px 0;
  background:
    radial-gradient(circle at 8% 88%, rgba(200, 132, 103, 0.09), transparent 24%),
    var(--ivory);
}

.assessment-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.section-heading h2 {
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.25;
}

.section-heading > p,
.program-heading > p,
.support-heading > p,
.knowledge-heading > p,
.faq-heading > p {
  max-width: 690px;
  margin-top: 16px;
  color: var(--muted);
}

.section-heading-center {
  max-width: 830px;
  margin: 0 auto;
  text-align: center;
}

.section-heading-center > p {
  margin-right: auto;
  margin-left: auto;
}

.assessment-list {
  margin-top: 34px;
  border-top: 1px solid #d8cdc1;
}

.assessment-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 18px 4px;
  border-bottom: 1px solid #d8cdc1;
}

.assessment-list em {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: normal;
}

.assessment-list h3 {
  margin-bottom: 4px;
  color: var(--mulberry-dark);
  font-size: 17px;
}

.assessment-list p {
  color: var(--muted);
  font-size: 13px;
}

.assessment-photo {
  position: relative;
  padding: 18px 0 18px 18px;
}

.assessment-photo::before {
  position: absolute;
  top: 0;
  right: 36px;
  bottom: 0;
  left: 0;
  border: 1px solid #c9b8aa;
  content: "";
}

.assessment-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: 59% center;
}

.assessment-photo figcaption {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: 2;
  min-width: 255px;
  padding: 20px 24px;
  color: var(--white);
  background: var(--mulberry);
}

.assessment-photo strong,
.assessment-photo span {
  display: block;
}

.assessment-photo strong {
  font-size: 16px;
}

.assessment-photo span {
  margin-top: 4px;
  color: #e8d8de;
  font-size: 12px;
}

.technology {
  padding: 92px 0 84px;
  background: var(--paper);
}

.technology-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 56px;
}

.technology-flow::before {
  position: absolute;
  top: 54px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: #cbbfb3;
  content: "";
}

.technology-flow li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.technology-flow em {
  margin-bottom: 8px;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: normal;
}

.technology-flow .icon {
  width: 74px;
  height: 74px;
  color: var(--mulberry);
  border: 1px solid #cfbfb4;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 8px var(--paper);
}

.technology-flow .icon::before {
  inset: 21px;
}

.technology-flow strong {
  margin-top: 17px;
  color: var(--mulberry-dark);
  font-size: 15px;
}

.technology-flow span {
  max-width: 150px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.technology-note {
  width: fit-content;
  margin: 34px auto 0;
  padding: 8px 24px;
  color: #6c625c;
  border: 1px solid #dbcfc3;
  font-size: 12px;
}

.guangzhou {
  padding: 90px 0;
  color: var(--white);
  background: var(--mulberry-dark);
}

.guangzhou-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: stretch;
}

.guangzhou-map {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 38px 38px;
}

.guangzhou-map::before,
.guangzhou-map::after {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  content: "";
}

.guangzhou-map::before {
  top: 60px;
  left: 52px;
  width: 300px;
  height: 300px;
}

.guangzhou-map::after {
  top: 110px;
  left: 102px;
  width: 200px;
  height: 200px;
}

.city-code {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.14);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
}

.tower {
  position: absolute;
  top: 155px;
  left: 190px;
  width: 3px;
  height: 170px;
  background: linear-gradient(var(--copper), rgba(255,255,255,0.4));
  transform: rotate(5deg);
}

.tower::before,
.tower::after {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(255,255,255,0.56);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.tower::before {
  top: 35px;
  width: 54px;
  height: 90px;
}

.tower::after {
  top: 64px;
  width: 76px;
  height: 34px;
}

.map-copy {
  position: absolute;
  right: 36px;
  bottom: 38px;
  left: 36px;
  z-index: 1;
  padding: 25px;
  background: rgba(255, 253, 249, 0.1);
  border-left: 3px solid var(--copper);
}

.map-copy small,
.map-copy strong {
  display: block;
}

.map-copy small {
  color: #d7c0c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.map-copy strong {
  margin-top: 7px;
  font-family: "Songti SC", SimSun, serif;
  font-size: 24px;
}

.map-copy p {
  margin-top: 10px;
  color: #e6dfe1;
  font-size: 13px;
}

.guangzhou .section-heading h2 {
  color: var(--white);
}

.guangzhou .section-heading > p {
  color: #d9cdd1;
}

.guangzhou-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 38px;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-left: 1px solid rgba(255,255,255,0.18);
}

.guangzhou-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 13px;
  min-height: 120px;
  padding: 24px 18px 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.guangzhou-steps em {
  position: absolute;
  top: 8px;
  right: 10px;
  color: rgba(255,255,255,0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: normal;
}

.guangzhou-steps .icon {
  width: 42px;
  height: 42px;
  color: #f0d8c9;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
}

.guangzhou-steps .icon::before {
  inset: 11px;
}

.guangzhou-steps strong,
.guangzhou-steps span {
  display: block;
}

.guangzhou-steps strong {
  margin-top: 1px;
  font-size: 16px;
}

.guangzhou-steps span {
  margin-top: 5px;
  color: #cdbfc3;
  font-size: 12px;
}

.program {
  padding: 96px 0;
  background: var(--ivory);
}

.program-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
}

.program-heading {
  padding-top: 12px;
}

.program-heading h2 {
  font-size: 38px;
  line-height: 1.25;
}

.program-heading h2 strong {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 74px;
  font-weight: 400;
}

.program-ledger {
  border-top: 2px solid var(--mulberry);
  border-bottom: 1px solid #cabdb1;
}

.program-ledger-head,
.program-ledger li {
  display: grid;
  grid-template-columns: 84px 170px 1fr 190px;
  align-items: center;
}

.program-ledger-head {
  grid-template-columns: 84px 170px 1fr 190px;
  min-height: 48px;
  color: var(--mulberry);
  border-bottom: 1px solid #cabdb1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.program-ledger-head span:nth-child(2) {
  grid-column: 2 / 4;
}

.program-ledger-head span:nth-child(3) {
  grid-column: 4;
}

.program-ledger li {
  min-height: 74px;
  border-bottom: 1px solid #ddd2c7;
}

.program-ledger li:last-child {
  border-bottom: 0;
}

.program-ledger em {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: normal;
}

.program-ledger strong {
  color: var(--mulberry-dark);
  font-size: 15px;
}

.program-ledger span,
.program-ledger small {
  color: var(--muted);
  font-size: 12px;
}

.program-ledger > p {
  padding: 13px 0;
  color: #7c716a;
  font-size: 12px;
  text-align: right;
}

.routes {
  padding: 96px 0 84px;
  background: var(--paper);
}

.route-layout {
  display: grid;
  grid-template-columns: 1fr 110px 1fr;
  gap: 22px;
  align-items: center;
  margin-top: 50px;
}

.route-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.route-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.route-card-overseas img {
  object-position: center 35%;
}

.route-card > div {
  padding: 28px 32px 30px;
}

.route-card small {
  color: var(--sage);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.route-card h3 {
  margin-top: 6px;
  color: var(--mulberry-dark);
  font-family: "Songti SC", SimSun, serif;
  font-size: 27px;
}

.route-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.route-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  color: #485a53;
  font-size: 12px;
}

.route-card li::before {
  margin-right: 6px;
  color: var(--copper);
  content: "•";
}

.route-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--mulberry);
  text-align: center;
}

.route-connector span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border: 1px solid #c7b6aa;
  border-radius: 50%;
  background: var(--ivory);
  font-family: "Songti SC", SimSun, serif;
  font-size: 17px;
}

.route-connector i {
  display: block;
  width: 1px;
  height: 45px;
  background: #c7b6aa;
}

.route-connector strong {
  font-size: 12px;
  line-height: 1.5;
}

.route-disclaimer {
  margin-top: 30px;
  color: #7d716a;
  font-size: 12px;
  text-align: center;
}

.support {
  overflow: hidden;
  padding: 92px 0 100px;
  background: #edf0e8;
}

.support-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 54px;
  align-items: center;
}

.support-heading h2 {
  font-size: 42px;
  line-height: 1.25;
}

.support-orbit {
  position: relative;
  min-height: 540px;
}

.support-orbit::before,
.support-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(111, 41, 68, 0.2);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.support-orbit::before {
  width: 500px;
  height: 500px;
}

.support-orbit::after {
  width: 310px;
  height: 310px;
}

.support-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  border: 1px solid #d1bdb2;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(73, 42, 43, 0.1);
  transform: translate(-50%, -50%);
}

.support-core img {
  width: 45px;
  height: 45px;
}

.support-core strong,
.support-core span {
  display: block;
}

.support-core strong {
  margin-top: 8px;
  color: var(--mulberry);
  font-family: "Songti SC", SimSun, serif;
  font-size: 20px;
}

.support-core span {
  color: var(--muted);
  font-size: 12px;
}

.support-item {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  width: 205px;
  padding: 14px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(111, 41, 68, 0.12);
}

.support-item .icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  color: var(--sage);
  border: 1px solid #c9d8cf;
  border-radius: 50%;
}

.support-item .icon::before {
  inset: 10px;
}

.support-item strong {
  color: var(--mulberry-dark);
  font-size: 14px;
}

.support-item span {
  color: var(--muted);
  font-size: 12px;
}

.support-item-1 { top: 18px; left: 50%; transform: translateX(-50%); }
.support-item-2 { top: 118px; right: 0; }
.support-item-3 { right: 34px; bottom: 60px; }
.support-item-4 { bottom: 8px; left: 50%; transform: translateX(-50%); }
.support-item-5 { bottom: 60px; left: 34px; }
.support-item-6 { top: 118px; left: 0; }

.spaces {
  padding: 96px 0;
  background: var(--paper);
}

.spaces-heading {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: end;
  margin-bottom: 38px;
}

.spaces-heading > span {
  grid-column: 1;
}

.spaces-heading h2 {
  grid-column: 1;
}

.spaces-heading p {
  grid-column: 2;
  grid-row: 1 / 3;
  justify-self: end;
  max-width: 520px;
  margin: 0;
  padding-bottom: 6px;
  text-align: right;
}

.spaces-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: repeat(2, 205px);
  gap: 16px;
}

.spaces-grid figure {
  position: relative;
  overflow: hidden;
  background: #ddd;
}

.spaces-grid .space-large {
  grid-row: 1 / 3;
}

.spaces-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.spaces-grid figure:hover img {
  transform: scale(1.035);
}

.spaces-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  min-width: 118px;
  padding: 8px 13px;
  color: var(--mulberry-dark);
  background: rgba(255, 253, 249, 0.92);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.knowledge {
  padding: 90px 0;
  background: var(--ivory);
}

.knowledge-layout {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 64px;
}

.knowledge-heading h2 {
  font-size: 42px;
  line-height: 1.25;
}

.knowledge-list {
  border-top: 2px solid var(--mulberry);
}

.knowledge-list article {
  display: grid;
  grid-template-columns: 46px 54px 1fr;
  gap: 18px;
  padding: 25px 12px;
  border-bottom: 1px solid #d9ccc0;
}

.knowledge-list em {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: normal;
}

.knowledge-list .icon {
  width: 48px;
  height: 48px;
  color: var(--sage);
  border: 1px solid #c5d2ca;
  border-radius: 50%;
}

.knowledge-list .icon::before {
  inset: 12px;
}

.knowledge-list h3 {
  color: var(--mulberry-dark);
  font-family: "Songti SC", SimSun, serif;
  font-size: 20px;
}

.knowledge-list p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.knowledge-list a {
  display: inline-block;
  margin-top: 10px;
  color: var(--mulberry);
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.faq {
  padding: 94px 0;
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 70px;
}

.faq-heading h2 {
  font-size: 44px;
}

.faq-list {
  border-top: 1px solid var(--mulberry);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 67px;
  padding: 16px 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.faq-item button i {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 1px solid #ccbcb0;
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--mulberry);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item button[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  padding: 0 52px 22px 6px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 13px;
}

.preparation {
  padding: 70px 0 76px;
  color: var(--white);
  background: var(--mulberry);
}

.preparation-layout {
  display: grid;
  grid-template-columns: 245px 1fr 195px;
  gap: 42px;
  align-items: center;
}

.preparation header > span {
  color: #d9b9c5;
}

.preparation h2 {
  color: var(--white);
  font-size: 30px;
  line-height: 1.35;
}

.preparation ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.25);
  border-left: 1px solid rgba(255,255,255,0.25);
}

.preparation li {
  position: relative;
  min-height: 155px;
  padding: 25px 18px;
  border-right: 1px solid rgba(255,255,255,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.preparation li em {
  position: absolute;
  top: 8px;
  right: 10px;
  color: rgba(255,255,255,0.34);
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
}

.preparation li .icon {
  width: 36px;
  height: 36px;
  color: #efd7cd;
}

.preparation li strong,
.preparation li span {
  display: block;
}

.preparation li strong {
  margin-top: 12px;
  font-size: 14px;
}

.preparation li span {
  margin-top: 6px;
  color: #decbd2;
  font-size: 12px;
}

.preparation-statement {
  text-align: right;
}

.preparation-statement span,
.preparation-statement strong {
  display: block;
}

.preparation-statement span {
  color: #dfbec9;
  font-family: "Songti SC", SimSun, serif;
  font-size: 23px;
}

.preparation-statement strong {
  margin-top: 6px;
  font-family: "Songti SC", SimSun, serif;
  font-size: 17px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #5c5d58;
  background: #ece3d8;
}

.site-footer::after {
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(111,41,68,0.13);
  border-radius: 50%;
  content: "";
}

.footer-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

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

.footer-brand strong {
  color: var(--mulberry-dark);
  font-family: "Songti SC", SimSun, serif;
  font-size: 24px;
}

.footer-brand small {
  margin-top: 4px;
  color: var(--sage);
  font-size: 12px;
}

.footer-top > p {
  max-width: 510px;
  font-size: 13px;
  text-align: right;
}

.footer-nav {
  position: relative;
  z-index: 1;
  border-top: 1px solid #d1c5b9;
  border-bottom: 1px solid #d1c5b9;
}

.footer-nav ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
}

.footer-nav a {
  color: var(--mulberry-dark);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 22px;
  padding-bottom: 26px;
  font-size: 12px;
  text-align: center;
}

.footer-bottom p {
  max-width: 880px;
}

@media (max-width: 1100px) {
  .desktop-nav a {
    padding-right: 8px;
    padding-left: 8px;
    font-size: 12px;
  }

  .hero-sheet {
    width: 500px;
    margin-left: 20px;
  }

  .hero-visual {
    left: 220px;
  }

  .boundary-layout {
    grid-template-columns: 210px 1fr;
    gap: 24px;
  }

  .boundary-items article {
    grid-template-columns: 1fr;
  }

  .program-layout,
  .support-layout {
    grid-template-columns: 280px 1fr;
    gap: 38px;
  }

  .program-ledger-head,
  .program-ledger li {
    grid-template-columns: 62px 140px 1fr 150px;
  }

  .preparation-layout {
    grid-template-columns: 220px 1fr;
  }

  .preparation-statement {
    grid-column: 1 / -1;
    text-align: center;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 14px;
  }

  .container {
    width: min(100% - 34px, 680px);
  }

  .header-utility,
  .desktop-nav {
    display: none;
  }

  .site-header {
    height: var(--header-height);
    background: var(--paper);
  }

  .header-main {
    height: var(--header-height);
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border: 1px solid #d8cac0;
    background: var(--ivory);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 1px;
    background: var(--mulberry);
    transition: top 0.2s ease, transform 0.2s ease;
  }

  .menu-toggle span:first-child {
    top: 16px;
  }

  .menu-toggle span:last-child {
    top: 26px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: 82px 1fr;
    overflow-y: auto;
    color: var(--ink);
    background: var(--paper);
    overscroll-behavior: contain;
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    color: #e6d5da;
    background: var(--mulberry);
    font-family: Georgia, "Times New Roman", serif;
  }

  .mobile-nav-rail span {
    font-size: 14px;
  }

  .mobile-nav-rail strong {
    margin-top: 22px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.08em;
    writing-mode: vertical-rl;
  }

  .mobile-nav-body {
    padding: 30px 18px 36px;
  }

  .mobile-nav-body > p {
    padding-bottom: 18px;
    color: var(--sage);
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-nav-body ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-nav-body li {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-body li:nth-child(2n) {
    border-right: 0;
  }

  .mobile-nav-body a {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 8px;
    min-height: 100px;
    padding: 18px 10px;
  }

  .mobile-nav-body em {
    color: var(--copper);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 12px;
    font-style: normal;
  }

  .mobile-nav-body span,
  .mobile-nav-body small {
    display: block;
  }

  .mobile-nav-body span {
    color: var(--mulberry-dark);
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-nav-body small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 400;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    display: block;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 42px;
  }

  .hero-index {
    display: none;
  }

  .hero-sheet {
    width: 94%;
    margin: 0;
    padding: 34px 28px 30px;
    clip-path: polygon(0 0, 95% 0, 100% 9%, 97% 100%, 0 100%);
  }

  .hero h1 {
    font-size: clamp(42px, 9vw, 56px);
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 96%;
    height: 440px;
    margin-top: -18px;
    margin-left: auto;
    clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%, 3% 44%);
  }

  .hero-visual > img {
    object-position: 64% center;
  }

  .hero-lab {
    right: 14px;
    bottom: 14px;
    width: 140px;
  }

  .hero-lab img {
    height: 104px;
  }

  .boundary-layout,
  .assessment-layout,
  .guangzhou-layout,
  .program-layout,
  .support-layout,
  .knowledge-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .boundary-layout,
  .assessment-layout,
  .program-layout,
  .knowledge-layout,
  .faq-layout {
    gap: 38px;
  }

  .boundary-items {
    grid-template-columns: 1fr;
  }

  .boundary-items article {
    grid-template-columns: 54px 1fr;
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .assessment-photo {
    max-width: 620px;
    margin: 0 auto;
  }

  .technology-flow {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }

  .technology-flow::before {
    display: none;
  }

  .guangzhou-layout {
    gap: 48px;
  }

  .guangzhou-map {
    min-height: 430px;
  }

  .program-ledger-head,
  .program-ledger li {
    grid-template-columns: 54px 130px 1fr 150px;
  }

  .route-layout {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
  }

  .route-connector {
    flex-direction: row;
    justify-content: center;
  }

  .route-connector i {
    width: 45px;
    height: 1px;
  }

  .support-orbit {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
  }

  .spaces-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 330px 200px 200px;
  }

  .spaces-grid .space-large {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .preparation-layout {
    grid-template-columns: 1fr;
  }

  .preparation header,
  .preparation-statement {
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  body {
    font-size: 14px;
    line-height: 1.7;
  }

  .container {
    width: calc(100% - 30px);
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 16px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .menu-toggle span {
    left: 10px;
    width: 18px;
  }

  .menu-toggle span:first-child {
    top: 14px;
  }

  .menu-toggle span:last-child {
    top: 24px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child,
  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 19px;
  }

  .mobile-nav {
    grid-template-columns: 62px 1fr;
  }

  .mobile-nav-body {
    padding: 24px 12px 30px;
  }

  .mobile-nav-body a {
    grid-template-columns: 22px 1fr;
    min-height: 92px;
    padding: 15px 7px;
  }

  .mobile-nav-body span {
    font-size: 14px;
  }

  .hero-layout {
    width: 100%;
    padding-top: 0;
  }

  .hero-sheet {
    width: calc(100% - 16px);
    padding: 32px 22px 28px;
    box-shadow: none;
  }

  .hero-kicker {
    margin-bottom: 15px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .hero-sheet > p {
    margin-top: 17px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 22px;
  }

  .button {
    min-width: 0;
    flex: 1 1 0;
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-price {
    margin-top: 22px;
  }

  .hero-price strong {
    font-size: 32px;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    font-size: 12px;
  }

  .hero-trust li {
    padding-left: 10px;
  }

  .hero-visual {
    width: 100%;
    height: 390px;
    margin-top: -1px;
    clip-path: none;
  }

  .hero-visual > img {
    object-position: 67% center;
  }

  .hero-lab {
    display: none;
  }

  .boundary {
    padding-top: 55px;
  }

  .boundary-layout {
    gap: 25px;
  }

  .boundary-title h2 {
    font-size: 30px;
  }

  .boundary-items article {
    padding: 20px 6px;
  }

  .boundary-note {
    margin-top: 20px;
    padding-right: 18px;
    padding-left: 18px;
    text-align: left;
  }

  .assessment,
  .technology,
  .guangzhou,
  .program,
  .routes,
  .support,
  .spaces,
  .knowledge,
  .faq {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section-heading h2,
  .support-heading h2,
  .knowledge-heading h2 {
    font-size: 32px;
  }

  .assessment-list li {
    grid-template-columns: 42px 1fr;
    padding: 16px 0;
  }

  .assessment-photo {
    padding: 10px 0 10px 10px;
  }

  .assessment-photo img {
    height: 340px;
  }

  .assessment-photo figcaption {
    right: -4px;
    bottom: -16px;
    min-width: 220px;
    padding: 16px 18px;
  }

  .technology-flow {
    display: block;
    margin-top: 46px;
  }

  .technology-flow::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    background: #cbbfb3;
  }

  .technology-flow li {
    display: grid;
    grid-template-columns: 1fr 82px 1fr;
    align-items: center;
    min-height: 145px;
    text-align: left;
  }

  .technology-flow li:nth-child(odd) em {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    align-self: end;
    margin: 0 18px 25px 0;
  }

  .technology-flow li:nth-child(odd) .icon {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .technology-flow li:nth-child(odd) strong,
  .technology-flow li:nth-child(odd) span {
    grid-column: 3;
    justify-self: start;
    margin-left: 18px;
  }

  .technology-flow li:nth-child(odd) strong {
    grid-row: 1;
    align-self: end;
    margin-bottom: 18px;
  }

  .technology-flow li:nth-child(odd) span {
    grid-row: 2;
    align-self: start;
    margin-top: -12px;
  }

  .technology-flow li:nth-child(even) em {
    grid-column: 3;
    grid-row: 1;
    align-self: end;
    margin: 0 0 25px 18px;
  }

  .technology-flow li:nth-child(even) .icon {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .technology-flow li:nth-child(even) strong,
  .technology-flow li:nth-child(even) span {
    grid-column: 1;
    justify-self: end;
    margin-right: 18px;
    text-align: right;
  }

  .technology-flow li:nth-child(even) strong {
    grid-row: 1;
    align-self: end;
    margin-bottom: 18px;
  }

  .technology-flow li:nth-child(even) span {
    grid-row: 2;
    align-self: start;
    margin-top: -12px;
  }

  .technology-flow .icon {
    width: 64px;
    height: 64px;
    justify-self: center;
    box-shadow: 0 0 0 7px var(--paper);
  }

  .technology-flow .icon::before {
    inset: 18px;
  }

  .technology-flow strong {
    font-size: 14px;
  }

  .technology-flow span {
    max-width: 120px;
    font-size: 12px;
  }

  .technology-note {
    width: 100%;
    margin-top: 24px;
    text-align: center;
  }

  .guangzhou-map {
    min-height: 370px;
    padding: 26px;
  }

  .city-code {
    font-size: 112px;
  }

  .tower {
    top: 115px;
    left: 48%;
  }

  .map-copy {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .guangzhou-steps {
    grid-template-columns: 1fr;
  }

  .guangzhou-steps li {
    min-height: 105px;
  }

  .program-heading h2 {
    font-size: 31px;
  }

  .program-heading h2 strong {
    font-size: 60px;
  }

  .program-ledger-head {
    display: none;
  }

  .program-ledger li {
    grid-template-columns: 42px 1fr;
    gap: 3px 10px;
    padding: 15px 0;
  }

  .program-ledger em {
    grid-row: 1 / 3;
  }

  .program-ledger strong,
  .program-ledger span,
  .program-ledger small {
    grid-column: 2;
  }

  .program-ledger strong {
    font-size: 14px;
  }

  .program-ledger small {
    margin-top: 4px;
    color: #8a776e;
  }

  .program-ledger > p {
    text-align: left;
  }

  .route-card img {
    height: 210px;
  }

  .route-card > div {
    padding: 24px 22px 26px;
  }

  .route-card h3 {
    font-size: 24px;
  }

  .support-layout {
    gap: 35px;
  }

  .support-heading {
    text-align: center;
  }

  .support-heading > p {
    margin-right: auto;
    margin-left: auto;
  }

  .support-orbit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
  }

  .support-orbit::before,
  .support-orbit::after {
    display: none;
  }

  .support-core {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    width: 145px;
    height: 145px;
    margin: 0 auto 20px;
    transform: none;
  }

  .support-item {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    min-height: 108px;
    transform: none;
  }

  .spaces-heading {
    display: block;
  }

  .spaces-heading p {
    margin-top: 12px;
    text-align: left;
  }

  .spaces-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 160px 160px;
    gap: 9px;
  }

  .knowledge-list article {
    grid-template-columns: 36px 42px 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .knowledge-list .icon {
    width: 40px;
    height: 40px;
  }

  .knowledge-list .icon::before {
    inset: 10px;
  }

  .knowledge-list h3 {
    font-size: 18px;
  }

  .faq-heading {
    text-align: center;
  }

  .faq-heading h2 {
    font-size: 36px;
  }

  .faq-item button {
    min-height: 62px;
  }

  .faq-answer {
    padding-right: 38px;
  }

  .preparation {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .preparation li {
    min-height: 145px;
  }

  .footer-top {
    flex-direction: column;
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 36px;
    text-align: center;
  }

  .footer-top > p {
    max-width: 460px;
    text-align: center;
  }

  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 10px 0;
  }

  .footer-nav li {
    text-align: center;
  }

  .footer-nav a {
    display: block;
    padding: 9px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .hero-sheet {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-price {
    grid-template-columns: 1fr;
  }

  .hero-price strong {
    margin-top: 8px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .technology-flow li {
    grid-template-columns: 1fr 72px 1fr;
  }

  .technology-flow .icon {
    width: 58px;
    height: 58px;
  }

  .support-orbit,
  .spaces-grid,
  .preparation ol {
    grid-template-columns: 1fr;
  }

  .spaces-grid {
    grid-template-rows: 280px repeat(4, 170px);
  }

  .spaces-grid .space-large {
    grid-column: 1;
  }
}
