:root {
  --ink: #1d232b;
  --muted: #626b76;
  --line: #cfd4da;
  --soft: #f3f4f5;
  --soft-2: #e8eaed;
  --paper: #fff;
  --dark: #252a31;
  --dark-2: #323840;
  --accent: #3f4650;
  --note: #f3eddc;
  --note-line: #c7b98a;
  --conditional: #e7ecea;
  --conditional-line: #99aaa3;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(22, 27, 33, .06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
button, input, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 96px 0; }
.section[id] { scroll-margin-top: 92px; }
.section-muted { background: var(--soft); }
.section-dark { background: var(--dark); color: #f7f8f9; }

.prototype-bar { background: #101317; color: #fff; font-size: 12px; letter-spacing: .04em; }
.prototype-bar__inner { min-height: 36px; display: flex; align-items: center; gap: 18px; }
.prototype-bar__inner span { color: #bdc4cc; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); }
.header-row { min-height: 78px; display: flex; align-items: center; gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 42px; height: 42px; border: 2px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-weight: 800; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 18px; }
.brand small { color: var(--muted); font-size: 11px; }
.main-nav { display: flex; gap: 10px; }
.main-nav a { color: var(--muted); text-decoration: none; font-size: 14px; white-space: nowrap; }
.main-nav a:hover { color: var(--ink); }
.header-contacts { display: flex; align-items: center; gap: 10px; }
.header-phone { white-space: nowrap; font-size: 12px; font-weight: 800; text-decoration: none; }
.header-messengers { display: flex; gap: 5px; }
.header-messengers a { min-width: 28px; height: 28px; display: grid; place-items: center; padding: 0 5px; border: 1px solid var(--line); border-radius: 6px; color: var(--muted); font-size: 9px; font-weight: 850; text-decoration: none; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 8px; padding: 0 22px; border: 1px solid var(--ink); border-radius: 8px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 700; cursor: pointer; }
.button:hover { background: #000; }
.button-small { min-height: 42px; padding-inline: 16px; font-size: 14px; }
.site-header .button-small { padding-inline: 14px; white-space: nowrap; }
.button-secondary { background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: #fff; }
.button-light { width: max-content; margin-top: 24px; border-color: #fff; background: #fff; color: var(--ink); }
.button-light:hover { background: #e7eaed; color: var(--ink); }
.button-full { width: 100%; }
.text-link { font-weight: 750; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }

.hero { padding-top: 86px; padding-bottom: 78px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 64px; align-items: center; }
.eyebrow, .panel-label { margin: 0 0 14px; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; font-size: clamp(44px, 6vw, 78px); line-height: .98; letter-spacing: -.045em; margin-bottom: 28px; }
h2 { font-size: clamp(34px, 4.2vw, 58px); line-height: 1.02; letter-spacing: -.035em; margin-bottom: 20px; }
h3 { font-size: 22px; line-height: 1.2; letter-spacing: -.02em; }
.lead { font-size: 21px; line-height: 1.55; color: #434b55; max-width: 760px; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; }
.microcopy { margin: 18px 0 0; max-width: 700px; color: var(--muted); font-size: 14px; }
.hero-photo { min-height: 650px; border-radius: 20px; box-shadow: var(--shadow); }
.fact-strip { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact-strip div { padding: 18px 16px 18px 0; }
.fact-strip div + div { border-left: 1px solid var(--line); padding-left: 18px; }
.fact-strip strong, .fact-strip span { display: block; }
.fact-strip span { color: var(--muted); font-size: 12px; margin-top: 4px; }

.route-board { background: var(--soft); border: 1px solid var(--line); border-radius: 20px; padding: 30px; box-shadow: var(--shadow); }
.route-step { background: var(--paper); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; }
.route-step--current { border-width: 2px; border-color: var(--ink); }
.route-step span { display: block; color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.route-step strong { display: block; margin-top: 5px; font-size: 18px; }
.route-step p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }
.route-arrow { text-align: center; padding: 8px; color: var(--muted); }
.media-placeholder { display: grid; place-items: center; min-height: 150px; padding: 22px; border: 1px dashed #9da5ae; border-radius: 10px; background: repeating-linear-gradient(-45deg,#edf0f2,#edf0f2 10px,#e7eaed 10px,#e7eaed 20px); color: #66707a; font-size: 12px; line-height: 1.45; text-align: center; }
.media-placeholder.hero-photo { min-height: 650px; border-radius: 20px; box-shadow: var(--shadow); }
.route-photo { min-height: 95px; margin-top: 18px; }

.benefits-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--soft); }
.benefits-strip { display: grid; grid-template-columns: repeat(4, 1fr); }
.benefits-strip div { min-height: 118px; padding: 24px 24px 22px 0; }
.benefits-strip div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.benefits-strip strong, .benefits-strip span { display: block; }
.benefits-strip strong { font-size: 17px; }
.benefits-strip span { margin-top: 7px; color: var(--muted); font-size: 13px; }

.mini-process-section { padding: 52px 0; }
.mini-process-panel { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); }
.mini-process-panel h2 { margin-bottom: 28px; font-size: 34px; }
.mini-process-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 14px; align-items: center; }
.mini-process-flow article { min-height: 150px; padding: 20px; border-radius: 10px; background: var(--soft); }
.mini-process-flow article > span { display: block; margin-bottom: 22px; color: var(--muted); font-size: 12px; font-weight: 850; }
.mini-process-flow strong, .mini-process-flow p { display: block; }
.mini-process-flow p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.mini-process-arrow { color: var(--muted); font-size: 22px; }

.section-heading { margin-bottom: 44px; }
.split-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; align-items: end; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { color: var(--muted); font-size: 17px; margin-bottom: 4px; }
.section-heading--light .eyebrow, .section-dark .panel-label { color: #aeb5bd; }
.section-heading--light > p { color: #c9ced4; }

.route-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.route-card { min-height: 310px; display: flex; flex-direction: column; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.route-card--primary { border: 2px solid var(--ink); }
.card-number { display: inline-block; width: max-content; padding: 5px 9px; border: 1px solid var(--line); border-radius: 99px; color: var(--muted); font-size: 11px; font-weight: 800; }
.route-card h3 { margin-top: 34px; }
.route-card p { color: var(--muted); }
.route-card strong { margin-top: auto; font-size: 13px; }
.review-note { display: flex; gap: 18px; padding: 18px 20px; margin-top: 24px; background: var(--note); border: 1px solid var(--note-line); border-radius: 10px; font-size: 14px; }
.review-note strong { min-width: 130px; }
.review-note--dark { background: #3e3b33; border-color: #776f57; color: #f4f0e2; }
.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.inline-cta strong, .inline-cta span { display: block; }
.inline-cta span { color: var(--muted); font-size: 14px; margin-top: 4px; }

.ege-section { padding-top: 72px; padding-bottom: 72px; }
.ege-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; padding: 48px; border: 2px solid var(--ink); border-radius: 20px; background: var(--paper); box-shadow: var(--shadow); }
.ege-copy h2 { max-width: 650px; }
.ege-copy .lead { max-width: 650px; }
.ege-logic { padding: 32px; border-radius: var(--radius); background: var(--soft); }
.ege-logic h3 { font-size: 30px; }
.ege-logic ul { margin: 26px 0; padding-left: 20px; }
.ege-logic li + li { margin-top: 13px; }
.ege-note { margin-bottom: 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

.language-heading { max-width: 860px; }
.language-heading > p:last-child { max-width: 760px; color: var(--muted); font-size: 19px; }
.language-layout { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: start; }
.language-timeline { border-top: 1px solid var(--line); }
.language-timeline article { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.language-timeline article > span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-weight: 800; }
.language-timeline h3 { margin-bottom: 7px; }
.language-timeline p { margin-bottom: 0; color: var(--muted); }
.language-facts { position: sticky; top: 110px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.language-facts dl { margin: 0 0 24px; }
.language-facts dl div { padding: 16px 0; border-top: 1px solid var(--line); }
.language-facts dt { font-weight: 800; }
.language-facts dd { margin: 5px 0 0; color: var(--muted); }
.wide-media { min-height: 260px; margin-top: 44px; }

.china-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.china-benefits article { min-height: 290px; padding: 30px; background: var(--dark-2); border: 1px solid #4d545e; border-radius: var(--radius); }
.china-benefits article > span { color: #aeb5bd; font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.china-benefits h3 { margin-top: 42px; font-size: 25px; }
.china-benefits p { margin-bottom: 0; color: #d0d5da; }

.workload-strip { margin-bottom: 30px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--soft); }
.workload-strip > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.workload-strip span { display: flex; min-height: 58px; align-items: center; padding: 12px 15px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); font-weight: 700; }

.responsibility-grid { display: grid; grid-template-columns: 1.15fr .925fr .925fr; gap: 16px; }
.responsibility-panel { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.responsibility-panel--brand { background: var(--ink); color: #fff; }
.responsibility-panel--brand .panel-label { color: #b8c0c9; }
.responsibility-panel ul { margin: 26px 0 0; padding-left: 18px; }
.responsibility-panel li + li { margin-top: 10px; }
.check-list { list-style: none; padding-left: 0 !important; }
.check-list li::before { content: "✓"; display: inline-block; margin-right: 10px; }
.artifact-strip { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 30px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.artifact-strip div { min-height: 120px; padding: 24px 18px; display: flex; flex-direction: column; justify-content: space-between; }
.artifact-strip div + div { border-left: 1px solid var(--line); }
.artifact-strip span { color: var(--muted); font-size: 12px; }

.conditional-section { position: relative; }
.conditional-status { display: flex; gap: 18px; align-items: center; margin-bottom: 36px; padding: 14px 18px; background: var(--conditional); border: 1px solid var(--conditional-line); border-radius: 10px; font-size: 13px; }
.conditional-status strong { min-width: 140px; }
.criteria-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.criteria-strip span { padding: 9px 13px; background: var(--paper); border: 1px solid var(--line); border-radius: 99px; font-size: 13px; }
.university-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.university-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.university-card--large { grid-column: span 2; grid-row: span 2; }
.university-card .media-placeholder { border: 0; border-bottom: 1px dashed #9da5ae; border-radius: 0; min-height: 160px; }
.university-card--large .media-placeholder { min-height: 320px; }
.university-card > div:last-child { padding: 20px; }
.university-card h3 { margin-bottom: 6px; }
.university-card p { margin: 0; color: var(--muted); font-size: 12px; }

.process-timeline { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.process-timeline li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.process-timeline li > span { font-weight: 850; color: var(--muted); }
.process-timeline h3 { margin-bottom: 6px; }
.process-timeline p { margin-bottom: 10px; color: var(--muted); }
.process-timeline strong { font-size: 13px; }

.arrival-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.arrival-grid article { padding: 30px; background: var(--dark-2); border: 1px solid #4d545e; border-radius: var(--radius); }
.arrival-grid .card-number { color: #d0d5da; border-color: #69717b; }
.arrival-grid h3 { margin-top: 34px; }
.arrival-grid p { color: #cbd1d7; }
.arrival-details { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }
.arrival-details .media-placeholder { min-height: 250px; background: repeating-linear-gradient(-45deg,#343a42,#343a42 10px,#3a414a 10px,#3a414a 20px); border-color: #69717b; color: #c6cdd4; }
.arrival-details dl { margin: 0; border-top: 1px solid #515861; }
.arrival-details dl div { padding: 20px 0; border-bottom: 1px solid #515861; }
.arrival-details dt { font-weight: 800; }
.arrival-details dd { margin: 7px 0 0; color: #c6cdd4; }

.team-layout { display: grid; grid-template-columns: 1.5fr .5fr; gap: 18px; align-items: start; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.person-card, .center-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.person-photo { min-height: 280px; margin: -18px -18px 22px; border: 0; border-bottom: 1px dashed #9da5ae; border-radius: var(--radius) var(--radius) 0 0; }
.person-card h3 { margin-bottom: 6px; }
.person-card p, .person-card ul { color: var(--muted); font-size: 13px; }
.person-card ul { padding-left: 17px; }
.center-card { background: var(--soft); padding: 26px; }
.center-card h3 { font-size: 28px; }
.center-card > p { color: var(--muted); }
.center-photo { min-height: 180px; margin: 24px 0; }
.center-card dl { margin: 0; }
.center-card dl div { padding: 12px 0; border-top: 1px solid var(--line); }
.center-card dt { font-weight: 800; }
.center-card dd { margin: 4px 0 0; color: var(--muted); }

.language-center-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.language-center-photo { min-height: 480px; background: repeating-linear-gradient(-45deg,#343a42,#343a42 10px,#3a414a 10px,#3a414a 20px); border-color: #69717b; color: #c6cdd4; }
.language-center-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.language-center-facts article { min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; border: 1px solid #4d545e; border-radius: var(--radius); background: var(--dark-2); }
.language-center-facts strong, .language-center-facts span { display: block; }
.language-center-facts strong { font-size: 23px; line-height: 1.2; }
.language-center-facts span { margin-top: 12px; color: #cbd1d7; }

.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.story-card { padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.story-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.story-photo { min-height: 230px; margin-bottom: 18px; }
.story-card--featured .story-photo { margin-bottom: 0; min-height: 480px; }
.story-card p { color: var(--muted); }
.story-card dl div { padding: 12px 0; border-top: 1px solid var(--line); }
.story-card dt { font-weight: 800; }
.story-card dd { margin: 4px 0 0; color: var(--muted); }

.guarantee-section { padding: 54px 0; background: var(--dark); color: #fff; }
.guarantee-panel { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; padding: 42px 48px; border: 1px solid #59616b; border-radius: 20px; background: var(--dark-2); }
.guarantee-panel .eyebrow { color: #aeb5bd; }
.guarantee-panel h2 { margin-bottom: 0; }
.guarantee-promise { padding-left: 42px; border-left: 1px solid #69717b; }
.guarantee-promise strong, .guarantee-promise span { display: block; }
.guarantee-promise strong { font-size: clamp(30px, 4vw, 52px); line-height: 1.05; letter-spacing: -.035em; }
.guarantee-promise span { margin-top: 14px; color: #cbd1d7; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.price-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.price-card--featured { border: 2px solid var(--ink); box-shadow: var(--shadow); }
.price-card h3 { font-size: 30px; margin-bottom: 10px; }
.price { font-size: 44px; line-height: 1; letter-spacing: -.04em; font-weight: 800; margin-bottom: 28px; }
.price-card ul { min-height: 315px; padding-left: 20px; color: #444c55; }
.price-card li + li { margin-top: 10px; }
.budget-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 44px; margin-top: 52px; padding: 34px; background: var(--soft); border-radius: var(--radius); }
.budget-layout h3 { font-size: 32px; }
.budget-layout p { color: var(--muted); }
.budget-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.budget-grid span { display: flex; align-items: center; min-height: 58px; padding: 12px 16px; background: var(--paper); border: 1px solid var(--line); border-radius: 8px; font-weight: 700; }

.faq-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 60px; align-items: start; }
.faq-intro { position: sticky; top: 116px; }
.faq-intro > p { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 23px 0; cursor: pointer; font-size: 18px; font-weight: 800; }
.faq-list details p { padding: 0 34px 22px 0; color: var(--muted); }

.consultation-section { background: #e9ebee; }
.consultation-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 58px; align-items: start; }
.consultation-copy .lead { font-size: 18px; }
.after-submit, .direct-contact { margin-top: 34px; padding: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.after-submit ol { list-style: none; padding: 0; margin: 0; }
.after-submit li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.after-submit li > span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 12px; font-weight: 800; }
.after-submit li p { margin: 1px 0 0; color: var(--muted); }
.direct-contact p { color: var(--muted); }
.direct-contact div { display: flex; gap: 14px; }
.direct-contact a { font-weight: 800; }
.consultation-form { padding: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.consultation-form label { display: grid; gap: 7px; margin-bottom: 17px; font-size: 13px; font-weight: 750; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consultation-form input, .consultation-form select { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid #aeb5bd; border-radius: 7px; background: #fff; }
.consultation-form fieldset { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 18px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; }
.consultation-form legend { padding: 0 6px; font-size: 13px; font-weight: 800; }
.consultation-form .choice { display: flex; align-items: center; gap: 7px; margin: 0; padding: 8px 10px; border: 1px solid var(--line); border-radius: 7px; font-weight: 650; }
.consultation-form .choice input, .consultation-form .consent input { width: auto; min-height: auto; }
.consultation-form .consent { display: flex; grid-template-columns: none; align-items: flex-start; gap: 9px; color: var(--muted); font-weight: 500; }
.form-note { margin: 10px 0 0; text-align: center; color: var(--muted); font-size: 12px; }

.contacts-section { border-top: 1px solid var(--line); }
.contacts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.contacts-grid article { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.contacts-grid span { color: var(--muted); font-size: 13px; }
.contacts-grid strong { font-size: 18px; overflow-wrap: anywhere; }

.site-footer { background: #111419; color: #f7f8f9; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, .8fr); gap: 40px; }
.footer-grid strong, .footer-grid a, .footer-grid span { display: block; }
.footer-grid strong { margin-bottom: 13px; }
.footer-grid a, .footer-grid span { color: #aeb6bf; text-decoration: none; margin-top: 8px; font-size: 13px; }
.footer-brand > strong { font-size: 24px; }
.footer-brand p { color: #c8ced5; max-width: 320px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid #343941; color: #8f98a3; font-size: 12px; }

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .hero-grid, .ege-panel, .language-layout, .team-layout, .language-center-layout, .consultation-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .media-placeholder.hero-photo { min-height: 520px; }
  .language-facts, .faq-intro { position: static; }
  .mini-process-flow { grid-template-columns: 1fr 1fr; }
  .mini-process-arrow { display: none; }
  .route-cards { grid-template-columns: 1fr 1fr; }
  .china-benefits { grid-template-columns: 1fr 1fr; }
  .workload-strip > div { grid-template-columns: 1fr 1fr; }
  .responsibility-grid { grid-template-columns: 1fr; }
  .artifact-strip { grid-template-columns: repeat(2, 1fr); }
  .artifact-strip div { border-bottom: 1px solid var(--line); }
  .university-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card ul { min-height: auto; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .contacts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1180px); }
  .section { padding: 68px 0; }
  .prototype-bar__inner { align-items: flex-start; flex-direction: column; gap: 2px; padding: 9px 0; }
  .site-header .button-small { display: none; }
  .header-phone { display: none; }
  .header-row { min-height: 68px; }
  h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .hero { padding-top: 54px; }
  .media-placeholder.hero-photo { min-height: 420px; }
  .hero-actions, .inline-cta { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .fact-strip { grid-template-columns: 1fr; }
  .fact-strip div + div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .benefits-strip { grid-template-columns: 1fr; }
  .benefits-strip div { min-height: 94px; padding: 20px 0; }
  .benefits-strip div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .mini-process-panel { padding: 24px 20px; }
  .mini-process-panel h2 { font-size: 30px; }
  .mini-process-flow { grid-template-columns: 1fr; }
  .mini-process-arrow { display: block; justify-self: center; transform: rotate(90deg); }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }
  .ege-panel { padding: 28px 22px; gap: 32px; }
  .ege-logic { padding: 24px 20px; }
  .route-cards, .china-benefits, .process-timeline, .arrival-grid, .arrival-details, .team-grid, .university-grid, .pricing-grid, .budget-layout, .consultation-grid, .footer-grid { grid-template-columns: 1fr; }
  .workload-strip > div { grid-template-columns: 1fr; }
  .route-card { min-height: 260px; }
  .responsibility-grid { grid-template-columns: 1fr; }
  .artifact-strip { grid-template-columns: 1fr; }
  .artifact-strip div + div { border-left: 0; }
  .university-card--large { grid-column: span 1; grid-row: span 1; }
  .university-card--large .media-placeholder { min-height: 220px; }
  .process-timeline { gap: 0; }
  .story-card--featured { grid-column: span 1; grid-row: span 1; grid-template-columns: 1fr; }
  .story-card--featured .story-photo { min-height: 300px; }
  .stories-grid { grid-template-columns: 1fr; }
  .language-center-facts { grid-template-columns: 1fr; }
  .language-center-facts article { min-height: 180px; }
  .guarantee-panel { grid-template-columns: 1fr; gap: 28px; padding: 30px 22px; }
  .guarantee-promise { padding: 26px 0 0; border-left: 0; border-top: 1px solid #69717b; }
  .budget-grid, .form-row { grid-template-columns: 1fr; }
  .review-note, .conditional-status { align-items: flex-start; flex-direction: column; gap: 6px; }
  .review-note strong, .conditional-status strong { min-width: 0; }
  .consultation-form { padding: 22px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
