:root {
  --accent-1: #DF2A35;
  --accent-1-hover: #C4242E;
  --accent-2: #FDCA41;
  --accent-2-hover: #E8B83A;
  --dark: #080708;
  --light: #E7E8E6;
  --additional: #3772FF;
  --white: #FFFFFF;
  --success: #2E9E5B;
  --text-secondary: rgba(8, 7, 8, 0.7);
  --border: rgba(8, 7, 8, 0.12);
  --font-heading: "Arial Black", "Helvetica Neue", sans-serif;
  --font-body: "IBM Plex Mono", "Courier New", monospace;
  --container: 1280px;
  --header-h: 88px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(8, 7, 8, 0.08);
  --shadow-md: 0 4px 12px rgba(8, 7, 8, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  padding-bottom: 72px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--additional); text-decoration: none; transition: color 0.15s; }
a:hover { color: #2B5ACC; text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1, h2, h3, h4 { text-align: left; }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 1rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 32px);
}

.section { padding: clamp(48px, 8vw, 96px) 0; }
.section--light { background: var(--light); }
.section--dark { background: var(--dark); color: var(--light); }
.section--dark a:not(.btn) { color: var(--accent-2); }
.section--dark .btn--secondary {
  color: var(--dark) !important;
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.section--dark .btn--secondary:hover {
  color: var(--dark) !important;
  background: var(--accent-2-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary { background: var(--accent-1); color: var(--white); border-color: var(--accent-1); }
.btn--primary:hover { background: var(--accent-1-hover); border-color: var(--accent-1-hover); color: var(--white); text-decoration: none; }
.btn--secondary { background: var(--accent-2); color: var(--dark); border-color: var(--accent-2); }
.btn--secondary:hover { background: var(--accent-2-hover); text-decoration: none; color: var(--dark); }
.btn--outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--outline:hover { background: var(--light); text-decoration: none; }
.btn--outline-light { background: transparent; color: var(--light); border-color: var(--light); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); color: var(--light); text-decoration: none; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn--lg { padding: 16px 32px; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header__top {
  background: var(--dark);
  color: var(--light);
  font-size: 12px;
  padding: 8px 0;
}

.header__top .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
}

.header__contacts { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; }
.header__contacts a { color: var(--light); }
.header__contacts a:hover { color: var(--accent-2); }

.header__main { padding: 12px 0; }

.header__main .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span { color: var(--accent-1); }
.logo:hover { text-decoration: none; color: var(--dark); }

.logo__tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 2px;
  max-width: 280px;
  line-height: 1.3;
}

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

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

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: var(--radius-md);
  text-decoration: none;
}

.nav__link:hover, .nav__link--active { background: var(--light); text-decoration: none; color: var(--dark); }

.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 8px;
  z-index: 50;
}

.nav__dropdown:hover .nav__dropdown-menu { display: block; }

.nav__dropdown-menu a {
  display: block;
  padding: 10px 14px;
  color: var(--dark);
  font-size: 13px;
  border-radius: var(--radius-md);
}

.nav__dropdown-menu a:hover { background: var(--light); text-decoration: none; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; flex-direction: column; }

.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--light);
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 24px;
}

.mobile-nav a {
  color: var(--light);
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(231,232,230,0.15);
  text-decoration: none;
}

.mobile-nav__cta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; }

/* Hero */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--light);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,7,8,0.85) 0%, rgba(8,7,8,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 720px;
  text-align: left;
  margin-right: auto;
}

.hero__content h1 { margin-bottom: 1rem; }
.hero__lead { font-size: 18px; opacity: 0.9; margin-bottom: 2rem; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2rem; }

.hero--service { min-height: 480px; }
.hero--service .hero__content { max-width: 800px; }

/* Breadcrumbs */
.breadcrumbs {
  font-size: 12px;
  padding: 16px 0;
  color: var(--text-secondary);
}

.breadcrumbs a { color: var(--additional); }

/* Cards grid */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.card__img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card__body { padding: 24px; }
.card__body p { font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; }
.card--featured { border-color: var(--accent-1); border-width: 2px; }
.card--featured .card__badge {
  display: inline-block;
  background: var(--accent-1);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Feature block */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-split__img { border-radius: var(--radius-xl); overflow: hidden; }
.feature-split__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Lists */
.check-list { list-style: none; }
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--accent-1);
  border-radius: 2px;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 24px;
}

.step { text-align: center; }
.step__num {
  width: 40px;
  height: 40px;
  background: var(--accent-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 12px;
  font-size: 14px;
}

.step__title { font-size: 13px; font-weight: 600; }

/* Route map */
.route-map {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.route-map__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0;
}

.route-map__city {
  background: rgba(55, 114, 255, 0.2);
  border: 1px solid var(--additional);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
}

.route-map__city--hub {
  background: rgba(253, 202, 65, 0.2);
  border-color: var(--accent-2);
  color: var(--accent-2);
}

.route-map__arrow { color: var(--additional); font-size: 20px; }

.route-map__cities-china {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.route-map__cities-china span {
  font-size: 11px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

/* Pricing examples */
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.price-card__label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-secondary); margin-bottom: 4px; }
.price-card__value { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 16px; }
.price-card__row { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.price-card__row:last-child { border: none; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 32px 20px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--dark);
}

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-1);
  font-size: 24px;
  font-weight: 400;
}

.faq-item.open .faq-item__q::after { content: "−"; }

.faq-item__a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--text-secondary);
}

.faq-item.open .faq-item__a { display: block; }

/* Form */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label { font-size: 14px; font-weight: 500; }
.form__input, .form__textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color 0.15s;
}

.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--additional);
  box-shadow: 0 0 0 3px rgba(55, 114, 255, 0.15);
}

.form__textarea { min-height: 120px; resize: vertical; }

.cta-section {
  background: var(--dark);
  color: var(--light);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 64px);
}

.cta-section .form__input,
.cta-section .form__textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(231,232,230,0.2);
  color: var(--light);
}

.cta-section .form__label { color: var(--light); }

/* Footer */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 64px 0 32px;
  margin-top: 0;
}

.footer a { color: var(--light); }
.footer a:hover { color: var(--accent-2); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand p { font-size: 14px; opacity: 0.8; margin-top: 16px; max-width: 280px; }
.footer__col h4 { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; color: var(--accent-2); }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 8px; }
.footer__col a { font-size: 14px; text-decoration: none; }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(231,232,230,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.7;
}

.footer__legal { display: flex; flex-wrap: wrap; gap: 16px; }

/* Mobile CTA bar */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 12px;
  z-index: 90;
  box-shadow: 0 -4px 12px rgba(8,7,8,0.08);
}

.mobile-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.mobile-cta .btn { padding: 10px 8px; font-size: 11px; width: 100%; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 13px;
  padding: 8px 16px;
  background: var(--light);
  border-radius: var(--radius-md);
  color: var(--dark);
  text-decoration: none;
}

.tag:hover { background: var(--accent-2); text-decoration: none; color: var(--dark); }

.section-header { margin-bottom: 40px; max-width: 720px; text-align: left; }
.section-header p { color: var(--text-secondary); margin-top: 12px; }

.section > .container > h2 { text-align: left; }

/* Placeholder */
.placeholder {
  background: linear-gradient(135deg, var(--light) 0%, #d5d6d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(8, 7, 8, 0.03) 12px,
    rgba(8, 7, 8, 0.03) 24px
  );
}

.placeholder__label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 8px 14px;
  border: 1px dashed rgba(8, 7, 8, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.6);
}

.placeholder--hero { width: 100%; height: 100%; position: absolute; inset: 0; }
.placeholder--card { aspect-ratio: 16/10; width: 100%; }
.placeholder--mini { aspect-ratio: 4/3; width: 100%; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.placeholder--split { aspect-ratio: 4/3; width: 100%; border-radius: var(--radius-xl); }

/* Equal service cards */
.grid--services { grid-template-columns: repeat(4, 1fr); }
.card--service { display: flex; flex-direction: column; height: 100%; }
.card--service .card__body { flex: 1; display: flex; flex-direction: column; }
.card--service .card__body h4 { flex: 1; }
.card--service .card__body p { margin-bottom: 8px; }
.card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--additional);
}

.feature-split--reverse .feature-split__img { order: 2; }
.feature-split--reverse > div:first-child { order: 1; }

.card--service {
  display: flex;
  flex-direction: column;
}
.card--service .card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.mini-card:hover { box-shadow: var(--shadow-md); }
.mini-card__body { padding: 20px; }
.mini-card__body h4 { font-size: 1rem; margin-bottom: 8px; }
.mini-card__body p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

.grid--mini { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

/* Directions scheme */
.directions-scheme {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--border);
}

.directions-scheme__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.directions-scheme__row:last-child { margin-bottom: 0; }

.directions-scheme__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  min-width: 100px;
  flex-shrink: 0;
}

.directions-scheme__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.directions-scheme__city {
  font: inherit;
  font-size: 12px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: default;
}

.directions-scheme__city--hub {
  background: rgba(253, 202, 65, 0.25);
  border-color: var(--accent-2);
  font-weight: 600;
}

.directions-scheme__city--ru {
  background: rgba(55, 114, 255, 0.1);
  border-color: var(--additional);
}

.directions-scheme__arrow {
  color: var(--accent-1);
  font-weight: 600;
  font-size: 18px;
  padding: 0 4px;
  flex-shrink: 0;
}

.directions-scheme__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  color: var(--accent-1);
  font-size: 24px;
  letter-spacing: 4px;
}

/* Nav wide dropdown */
.nav__dropdown-menu--wide { min-width: 320px; max-height: 70vh; overflow-y: auto; }
.nav__dropdown-menu__title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  padding: 8px 14px 4px;
}

.price-card__price {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

/* Carousel */
.carousel { position: relative; }
.carousel__header { display: flex; justify-content: flex-end; gap: 8px; margin-bottom: 16px; }
.carousel__btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.carousel__btn:hover { background: var(--light); }
.carousel__viewport { overflow: hidden; width: 100%; }
.carousel__track {
  display: flex;
  gap: 20px;
  will-change: transform;
}
.carousel[data-visible="4"] .carousel__track > * {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
}
.carousel-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.carousel-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-1);
}
.carousel-card__body { padding: 20px; }
.carousel-card__body h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.carousel-card__body p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.carousel-card__meta {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.carousel-card--direction .card__more { padding-top: 0; }

.carousel__track .mini-card { flex: 0 0 calc((100% - 60px) / 4); min-width: 0; }

.directions-scheme--interactive .directions-scheme__city {
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.directions-scheme--interactive .directions-scheme__city:hover,
.directions-scheme--interactive .directions-scheme__city.is-active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-1);
}
.directions-scheme__panel {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 72px;
}
.directions-scheme__panel-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--accent-1);
}
.directions-scheme__panel p { font-size: 14px; color: var(--text-secondary); }
.directions-scheme__panel-hint { font-size: 14px; color: var(--text-secondary); margin: 0; }

/* Steps flow */
.steps-flow {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  padding: 80px 0 24px;
  margin-top: -40px;
}
.step-flow-item {
  position: relative;
  flex: 0 0 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.step-flow-item__box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 12px;
  cursor: default;
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.step-flow-item:hover .step-flow-item__box {
  border-color: var(--accent-1);
  box-shadow: var(--shadow-md);
}
.step-flow-item__num {
  width: 32px;
  height: 32px;
  background: var(--accent-1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin: 0 auto 10px;
}
.step-flow-item__title {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-flow-item__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  padding: 12px 14px;
  background: var(--dark);
  color: var(--light);
  font-size: 12px;
  line-height: 1.5;
  border-radius: var(--radius-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 10;
  text-align: left;
  box-shadow: var(--shadow-lg);
}
.step-flow-item:hover .step-flow-item__tooltip {
  opacity: 1;
  visibility: visible;
}
.step-flow-arrow {
  flex: 0 0 28px;
  align-self: center;
  text-align: center;
  color: var(--accent-1);
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
}

/* Advantages 2x2 */
.advantages-grid .card__body h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--accent-1);
  margin-bottom: 12px;
}
.advantages-grid .card { height: 100%; }

.price-section__cta { margin-top: 32px; text-align: left; }

.blog-card__type {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.blog-card__type--blog { background: rgba(55, 114, 255, 0.15); color: var(--additional); }
.blog-card__type--news { background: rgba(223, 42, 53, 0.12); color: var(--accent-1); }

.footer__grid--extended {
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
}

.footer__col ul { columns: 1; }
.footer__col--services ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

.step { text-align: left; }
.step__num { margin: 0 0 12px; }

.prose { max-width: 720px; }
.prose p { margin-bottom: 1rem; }

.badge-draft {
  display: inline-block;
  background: var(--accent-2);
  color: var(--dark);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid--4, .grid--services { grid-template-columns: repeat(2, 1fr); }
  .footer__grid, .footer__grid--extended { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .footer__col--services ul { grid-template-columns: 1fr; }
  .carousel[data-visible="4"] .carousel__track > *,
  .carousel__track .mini-card { flex: 0 0 calc((100% - 20px) / 2); }
}

@media (max-width: 768px) {
  body { padding-bottom: 64px; }
  .header__main .container { grid-template-columns: 1fr auto; }
  .nav, .header__actions .btn:not(.burger-btn) { display: none; }
  .burger { display: flex; }
  .header__actions .btn.burger-btn { display: inline-flex; }
  .grid--2, .grid--3, .grid--4, .grid--services { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .mobile-cta { display: block; }
  .hero { min-height: 480px; }
  .header__top .container { justify-content: center; text-align: center; }
  .header__contacts { justify-content: center; }
  .carousel[data-visible="4"] .carousel__track > *,
  .carousel__track .mini-card { flex: 0 0 100%; }
  .step-flow-item { flex: 0 0 120px; }
}

@media (min-width: 769px) {
  .burger-btn { display: none !important; }
}
