/* ============================================================
   China Consulting — единая дизайн-система (все страницы/языки)
   Токены: SPEC §3. Правила: SPEC §2, §11
   ============================================================ */

/* ---------- 1. Токены ---------- */
:root {
  --navy: #0A192F;          /* фон Hero, процесс, футер */
  --navy-2: #112240;        /* hover, линии на тёмном */
  --gold: #D4AF37;          /* primary CTA, акценты */
  --gold-dark: #B8960C;     /* hover CTA */
  --white: #FFFFFF;
  --surface: #F8F9FA;       /* фон карточных секций */
  --ink: #1A1A2E;           /* основной текст */
  --gray: #6B7280;          /* вторичный текст */
  --mist: #CCD6F6;          /* текст на тёмном */
  --emerald: #046A38;       /* микро-акценты «легально/проверено» */
  --danger: #C0392B;        /* ошибки формы */

  --font-main: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-cjk: 'Inter', system-ui, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;

  --header-h: 72px;
  --radius-btn: 6px;
  --radius-card: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, .06);
  --shadow-hover: 0 12px 32px rgba(10, 25, 47, .12);
  --tr: .3s ease;
  --container: 1200px;
}

/* ---------- 2. Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html[lang="zh-CN"] body { font-family: var(--font-cjk); }

body.no-scroll { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.15; }
h2 { font-size: clamp(26px, 4vw, 32px); }
h3 { font-size: 20px; }

::selection { background: var(--gold); color: var(--navy); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- 3. Layout utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--sm { padding: 56px 0; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--navy); color: var(--mist); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.section-header {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-title { margin-bottom: 12px; }

.section-subtitle {
  font-size: 18px;
  color: var(--gray);
}

.section--dark .section-subtitle { color: var(--mist); }

.section-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.section--dark .section-label { color: var(--gold); }

.text-lead { font-size: 18px; color: var(--gray); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

/* Сетки: 4 → 2 → 1 колонки (SPEC §2.7) */
.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Skip-link (доступность) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  padding: 10px 18px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: 0 0 var(--radius-btn) 0;
}
.skip-link:focus { left: 0; }

/* ---------- 4. Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  white-space: nowrap;
}

.btn svg { flex: 0 0 auto; }

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212, 175, 55, .35);
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, .45);
  color: var(--white);
  background: transparent;
}
.btn--outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn--outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg { padding: 17px 34px; font-size: 17px; }
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }

/* ---------- 5. Логотип (чистый CSS, SPEC §2.3) ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.logo__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .02em;
}

.logo__text {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}

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

/* ---------- 6. Шапка (fixed, SPEC §5) ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  transition: box-shadow var(--tr);
}

.header--scrolled { box-shadow: 0 4px 24px rgba(0, 0, 0, .35); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Навигация */
.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--mist);
  transition: color var(--tr);
}

.nav__link:hover,
.nav__link--active { color: var(--white); }

.nav__chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--tr);
}

/* Dropdown «Услуги» */
.nav__item--dropdown { position: relative; }

.nav__item--dropdown:hover .nav__chevron,
.nav__item--dropdown.open .nav__chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 300px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(10, 25, 47, .06);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(10, 25, 47, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
  z-index: 60;
}

/* Мостик, чтобы dropdown не закрывался при переводе курсора */
.dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown:focus-within .dropdown,
.nav__item--dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown__link {
  display: block;
  padding: 11px 14px;
  font-size: 15px;
  color: var(--ink);
  border-radius: 8px;
  transition: background var(--tr), color var(--tr);
}

.dropdown__link:hover {
  background: var(--surface);
  color: var(--navy);
}

.dropdown__divider {
  height: 1px;
  margin: 8px 14px;
  background: rgba(10, 25, 47, .08);
}

.dropdown__soon {
  display: block;
  padding: 8px 14px 10px;
  font-size: 13px;
  color: var(--gray);
}

/* Переключатель языков */
.langs {
  display: flex;
  align-items: center;
  gap: 2px;
}

.langs__link {
  padding: 6px 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mist);
  border-radius: 4px;
  transition: color var(--tr);
}

.langs__link:hover { color: var(--gold); }

.langs__link--active {
  color: var(--gold);
  cursor: default;
}

.langs__sep { color: rgba(204, 214, 246, .3); font-size: 13px; }

/* Бургер */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  transition: background var(--tr);
}

.burger:hover { background: var(--navy-2); }

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}

.burger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--active span:nth-child(2) { opacity: 0; }
.burger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Внутри мобильного меню */
.nav__footer { display: none; }

/* ---------- 7. Hero (главная, SPEC §3, §7.1) ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  padding: 96px 0 72px;
  color: var(--white);
  background:
    linear-gradient(rgba(10, 25, 47, .82), rgba(10, 25, 47, .82)),
    url('../img/hero-bg.jpg') center / cover no-repeat var(--navy);
}

.hero__content { max-width: 880px; margin: 0 auto; text-align: center; }

.hero__title { color: var(--white); margin-bottom: 24px; }

.hero__subtitle {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
  color: var(--mist);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 32px;
  margin-bottom: 56px;
}

.hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--mist);
}

.hero__features svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex: 0 0 auto;
}

/* Цифры доверия */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(204, 214, 246, .18);
}

.stat__value {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 6px;
}

.stat__label {
  font-size: 14px;
  color: var(--mist);
}

/* ---------- 8. Social proof (SPEC §7.2) ---------- */
.proof { background: var(--white); }

.proof__label {
  margin-bottom: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray);
}

.proof__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 48px;
}

.proof__logo {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
  filter: grayscale(1);
  opacity: .6;
  transition: opacity var(--tr), filter var(--tr), color var(--tr);
  white-space: nowrap;
}

.proof__logo:hover {
  filter: grayscale(0);
  opacity: 1;
  color: var(--navy);
}

/* ---------- 9. Карточки (универсальные) ---------- */
.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(10, 25, 47, .05);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 32px 28px;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

a.card:hover,
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, .35);
}

.card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

/* Бейджи (в т.ч. «Скоро», SPEC §2.6) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(212, 175, 55, .14);
  color: var(--gold-dark);
}

.badge--emerald {
  background: rgba(4, 106, 56, .1);
  color: var(--emerald);
}

.badge--muted {
  background: rgba(107, 114, 128, .12);
  color: var(--gray);
}

/* Карточка услуги */
.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: rgba(212, 175, 55, .12);
  color: var(--gold-dark);
}

.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title { margin-bottom: 10px; font-size: 19px; }

.service-card__text {
  flex-grow: 1;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--gray);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--tr), color var(--tr);
}

.service-card__link svg {
  width: 18px;
  height: 18px;
  transition: transform var(--tr);
}

.service-card:hover .service-card__link { gap: 12px; color: var(--gold); }

/* Некликабельная карточка-заглушка (блог, будущие юрисдикции) */
.card--static { cursor: default; }
.card--static .service-card__link,
.card--static .blog-card__more { color: var(--gray); }

/* Карточка блога */
.blog-card__category {
  margin-bottom: 14px;
}

.blog-card__title { margin-bottom: 10px; font-size: 19px; }

.blog-card__text {
  flex-grow: 1;
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 18px;
}

/* Контактная карточка (contacts.html) */
.contact-card { align-items: center; text-align: center; }

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
}

.contact-card__icon svg { width: 26px; height: 26px; }

.contact-card__title { margin-bottom: 8px; font-size: 18px; }

.contact-card__link {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-dark);
  word-break: break-word;
  transition: color var(--tr);
}

.contact-card__link:hover { color: var(--gold); }

.contact-card__text { margin-top: 8px; font-size: 14px; color: var(--gray); }

/* ---------- 10. Почему мы (SPEC §7.4) ---------- */
.feature { text-align: left; }

.feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(4, 106, 56, .09);
  color: var(--emerald);
}

.feature__icon svg { width: 26px; height: 26px; }

.feature__title { margin-bottom: 10px; font-size: 18px; }

.feature__text { font-size: 15px; color: var(--gray); }

/* ---------- 11. Процесс (тёмный, SPEC §7.5) ---------- */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

/* Золотая линия-коннектор */
.process::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, rgba(212, 175, 55, .1), rgba(212, 175, 55, .55), rgba(212, 175, 55, .1));
}

.process__step { position: relative; text-align: center; }

.process__number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 22px;
  font-weight: 700;
}

.process__title {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--white);
}

.process__text {
  font-size: 15px;
  color: var(--mist);
}

/* ---------- 12. CTA и форма (SPEC §7.6) ---------- */
.form-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.form__input,
.form__select {
  width: 100%;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(10, 25, 47, .15);
  border-radius: var(--radius-btn);
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
}

.form__select {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form__input::placeholder { color: var(--gray); opacity: .7; }

.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .18);
}

.form__input--error,
.form__input--error:focus {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}

.form__error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: var(--danger);
}

.form__error.is-visible { display: block; }

/* Select мессенджера + поле контакта в одну строку */
.form__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
}

/* Honeypot — невидим для людей (SPEC §9) */
.form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: var(--gray);
}

.form__note a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form__note a:hover { color: var(--gold); }

/* «Или напишите напрямую» */
.form-alt {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 25, 47, .08);
  text-align: center;
}

.form-alt__label {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--gray);
}

.messenger-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.messenger-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid rgba(10, 25, 47, .14);
  border-radius: 999px;
  transition: border-color var(--tr), color var(--tr), transform var(--tr);
}

.messenger-link svg {
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
  transition: color var(--tr);
}

.messenger-link:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

/* ---------- 13. Футер (SPEC §5) ---------- */
.footer {
  background: var(--navy);
  color: var(--mist);
  padding-top: 72px;
}

.footer__top {
  padding-bottom: 40px;
  margin-bottom: 48px;
  border-bottom: 1px solid rgba(204, 214, 246, .1);
}

.footer__tagline {
  margin-top: 14px;
  max-width: 360px;
  font-size: 14px;
  color: rgba(204, 214, 246, .65);
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}

.footer__title {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__link {
  font-size: 15px;
  color: var(--mist);
  transition: color var(--tr);
}

.footer__link:hover { color: var(--gold); }

.footer__link--active {
  color: var(--gold);
  cursor: default;
}

.footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}

.footer__contact svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--gold);
}

.footer__contact a { transition: color var(--tr); }
.footer__contact a:hover { color: var(--gold); }

.footer__contact small {
  display: block;
  font-size: 13px;
  color: rgba(204, 214, 246, .55);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(204, 214, 246, .1);
  font-size: 14px;
  color: rgba(204, 214, 246, .55);
}

.footer__soon { font-size: 13px; }

/* ---------- 14. Внутренние страницы: page-hero, крошки ---------- */
.page-hero {
  position: relative;
  padding: 88px 0 64px;
  color: var(--white);
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}

/* Для страниц без фото — градиент по умолчанию */
.page-hero--plain {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero__subtitle {
  max-width: 680px;
  font-size: 18px;
  color: var(--mist);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.breadcrumbs__link {
  color: var(--mist);
  transition: color var(--tr);
}

.breadcrumbs__link:hover { color: var(--gold); }

.breadcrumbs__sep { color: rgba(204, 214, 246, .4); }

.breadcrumbs__current { color: var(--gold); }

/* ---------- 15. CTA-полоса для внутренних страниц (SPEC §8) ---------- */
.cta-band {
  padding: 72px 0;
  background: var(--navy);
  color: var(--mist);
  text-align: center;
}

.cta-band__title {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band__text {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 17px;
  color: var(--mist);
}

/* ---------- 16. FAQ-аккордеон ---------- */
.faq { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid rgba(10, 25, 47, .07);
  border-radius: var(--radius-card);
  margin-bottom: 14px;
  transition: border-color var(--tr), box-shadow var(--tr);
}

.faq-item--open {
  border-color: rgba(212, 175, 55, .45);
  box-shadow: var(--shadow-card);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
}

.faq-item__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--gold-dark);
  transition: transform var(--tr);
}

.faq-item--open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item__answer-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.faq-item__answer-inner a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer-inner a:hover { color: var(--gold); }

/* ---------- 17. Прочие компоненты внутренних страниц ---------- */
/* Плашка-предупреждение (accounting.html и др.) */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-radius: var(--radius-card);
  border-left: 4px solid var(--gold);
  background: rgba(212, 175, 55, .08);
  font-size: 15px;
  line-height: 1.6;
}

.alert__icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--gold-dark);
}

.alert--emerald {
  border-left-color: var(--emerald);
  background: rgba(4, 106, 56, .07);
}

.alert--emerald .alert__icon { color: var(--emerald); }

/* Таблицы (hong-kong.html: сравнение юрисдикций) */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.table th {
  padding: 15px 20px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.table td {
  padding: 15px 20px;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid rgba(10, 25, 47, .07);
}

.table tr:last-child td { border-bottom: 0; }
.table tbody tr:hover td { background: var(--surface); }

/* Таймлайн по дням (china.html) */
.timeline { max-width: 760px; margin: 0 auto; }

.timeline__item {
  position: relative;
  padding: 0 0 28px 84px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 58px;
  bottom: 0;
  width: 1px;
  background: rgba(212, 175, 55, .35);
}

.timeline__item:last-child { padding-bottom: 0; }
.timeline__item:last-child::before { display: none; }

.timeline__day {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
}

.timeline__content {
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.timeline__title { margin-bottom: 6px; font-size: 17px; }
.timeline__text { font-size: 15px; color: var(--gray); }

/* Цена */
.price-tag {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);
}

.price-tag__note { font-size: 14px; color: var(--gray); }

/* QR WeChat (contacts.html) */
.qr-block { text-align: center; }

.qr-block img {
  width: 200px;
  margin: 0 auto 14px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.qr-block__caption { font-size: 14px; color: var(--gray); }

/* Типографика текстовых страниц (privacy.html и др.) */
.content { max-width: 820px; }
.content h2 { margin: 40px 0 16px; }
.content h2:first-child { margin-top: 0; }
.content h3 { margin: 28px 0 12px; }
.content p { margin-bottom: 16px; line-height: 1.75; }
.content ul,
.content ol { margin: 0 0 16px; padding-left: 22px; list-style: disc; }
.content ol { list-style: decimal; }
.content li { margin-bottom: 8px; line-height: 1.7; }

/* Изображения в контенте */
.img-rounded {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* Списки с галочками (пакеты услуг) */
.check-list { display: grid; gap: 12px; }

.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  line-height: 1.6;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(4, 106, 56, .12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23046A38' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---------- 18. Reveal-анимации (SPEC §3) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

.js .reveal--delay-1 { transition-delay: .1s; }
.js .reveal--delay-2 { transition-delay: .2s; }
.js .reveal--delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---------- 19. Адаптив ---------- */

/* Планшет: 4 → 2 колонки, бургер-меню */
@media (max-width: 1024px) {
  .grid-4,
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .process { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process::before { display: none; }

  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  /* Мобильная навигация */
  .burger { display: flex; }
  .header__langs,
  .header__cta { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    display: flex;
    flex-direction: column;
    padding: 16px 24px 40px;
    background: var(--navy);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .35s ease;
    visibility: hidden;
  }

  .nav--open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__link {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(204, 214, 246, .1);
  }

  /* Dropdown в мобильном меню — раскрывается кликом */
  .dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 8px 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dropdown::before { display: none; }

  .nav__item--dropdown:hover .dropdown,
  .nav__item--dropdown:focus-within .dropdown {
    display: none;
    transform: none;
  }

  .nav__item--dropdown.open .dropdown {
    display: block;
    transform: none;
  }

  .dropdown__link {
    padding: 12px 0;
    color: var(--mist);
    font-size: 16px;
  }

  .dropdown__link:hover { background: none; color: var(--gold); }

  .dropdown__divider { background: rgba(204, 214, 246, .12); margin: 6px 0; }

  .dropdown__soon { padding: 8px 0; color: rgba(204, 214, 246, .5); }

  /* Языки и CTA внутри мобильного меню */
  .nav__footer {
    display: block;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(204, 214, 246, .12);
  }

  .nav__footer .langs { justify-content: center; margin-bottom: 20px; }
  .nav__footer .langs__link { font-size: 16px; padding: 8px 14px; }
}

/* Мобильный: 2 → 1 колонка */
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section--sm { padding: 40px 0; }

  .section-header { margin-bottom: 40px; }

  .grid-4,
  .grid-3,
  .grid-2 { grid-template-columns: 1fr; }

  .hero { padding: 72px 0 56px; }

  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }

  .hero__cta .btn { width: 100%; }

  .proof__logos { gap: 16px 28px; }
  .proof__logo { font-size: 16px; }

  .process { grid-template-columns: 1fr; }

  .form-card { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; }

  .page-hero { padding: 64px 0 48px; }

  .timeline__item { padding-left: 70px; }
  .timeline__day { width: 48px; height: 48px; font-size: 13px; }
  .timeline__item::before { left: 23px; top: 50px; }

  .footer { padding-top: 56px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .logo__text { font-size: 16px; }

  .messenger-links { gap: 8px; }
  .messenger-link { padding: 9px 13px; font-size: 13px; }

  .faq-item__question { padding: 18px; font-size: 16px; }
  .faq-item__answer-inner { padding: 0 18px 18px; }
}

/* ---------- 20. Центрированный ряд кнопок (thank-you, 404) ---------- */
.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
