/* ============ RESET & BASE ============ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:root {
  /* Палитра kshf58.ru: фирменный красный, чёрный, светло-серый, коралл */
  --navy: #1a1a1a;          /* тёмная база — был navy, теперь чёрный (под "dark" секции) */
  --navy-2: #2a2a2a;
  --gold: #b1101e;          /* фирменный красно-бордовый — был gold */
  --gold-2: #d9192c;        /* ярче для hover */
  --bordo-deep: #4a0d14;    /* тёмно-бордовый (как ткань) — для hero/градиентов */
  --bordo-darker: #2d0a10;
  --coral: #ff8562;         /* коралловый акцент */
  --cream: #f5f5f5;         /* светлый фон */
  --gray-50: #fafafa;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #686868;
  --gray-800: #1f1f1f;
  --text: #1a1a1a;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.08);
  --shadow-md: 0 8px 30px rgba(26, 26, 26, 0.10);
  --shadow-lg: 0 20px 50px rgba(74, 13, 20, 0.18);
  --container: 1200px;
  --transition: 0.25s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { border: 0; cursor: pointer; font: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary { background: var(--gold); color: #fff; }
.btn--primary:hover { background: var(--gold-2); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn--block { width: 100%; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.header__inner {
  display: flex; align-items: center; gap: 32px;
  height: 76px;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo__svg {
  height: 66px;
  width: auto;
  max-width: none;          /* перебиваем глобальное img { max-width: 100% } */
  object-fit: contain;
  /* Оригинал — светлый PNG на прозрачном фоне, перекрашиваем в чёрный
     (CSS-фильтр сохраняет альфа-канал, текст и линии остаются чёткими) */
  filter: brightness(0);
  transition: var(--transition);
}
.logo:hover .logo__svg { opacity: 0.7; }

/* Бэйдж и подпись справа от логотипа в шапке */
.header__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  margin-left: 18px;
  border-left: 1px solid var(--gray-200);
  line-height: 1.2;
  white-space: nowrap;
}
.header__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: fit-content;
  line-height: 1.3;
  white-space: nowrap;
}
.header__place {
  font-size: 11.5px;
  color: var(--gray-600);
  letter-spacing: 0.01em;
  line-height: 1.3;
  white-space: nowrap;
}

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav__link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-600);
  position: relative;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav__link:hover { color: var(--navy); background: rgba(10,37,64,0.05); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--navy); }
.nav__link.is-active::after { transform: scaleX(1); }

.header__phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--navy);
  padding: 10px 18px; border: 1px solid var(--gray-200);
  border-radius: 999px; transition: var(--transition);
  font-size: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.header__phone span { white-space: nowrap; }
.header__phone:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.burger { display: none; flex-direction: column; gap: 5px; width: 28px; height: 28px; justify-content: center; background: none; }
.burger span { width: 100%; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(177,16,30,0.22) 0%, transparent 55%),
    linear-gradient(135deg, var(--navy) 0%, var(--bordo-darker) 55%, var(--bordo-deep) 100%);
  color: #fff;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero__bg { position: absolute; inset: 0; opacity: 1; z-index: 0; }
.hero__pattern { width: 100%; height: 100%; }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.hero__brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}
.hero__brand-mark {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(201,166,107,0.3));
  flex-shrink: 0;
  animation: heroLogoIn 0.9s ease both;
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: scale(0.7) rotate(-8deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}
.hero__brand-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__brand-place {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}
.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(201,166,107,0.15);
  border: 1px solid rgba(201,166,107,0.3);
  color: var(--gold-2);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  width: fit-content;
}
.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.accent { color: var(--gold); }
.hero__lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__cta { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero__meta { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.hero__meta-item strong {
  font-size: 32px; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.hero__meta-item span { font-size: 13px; color: rgba(255,255,255,0.7); }
.hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* Красная эмблема КШФ — большой логотип-плашка справа в hero */
.hero__emblem {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18) 0%, transparent 55%),
    linear-gradient(135deg, #d9192c 0%, #b1101e 55%, #7a0a14 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 30px 60px rgba(177,16,30,0.45),
    0 12px 24px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);
  isolation: isolate;
  overflow: hidden;
  animation: emblemIn 0.9s ease both;
}
@keyframes emblemIn {
  from { opacity: 0; transform: scale(0.85) rotate(-3deg); }
  to   { opacity: 1; transform: scale(1) rotate(0); }
}

/* Тонкий внутренний кант */
.hero__emblem::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  pointer-events: none;
}
/* Уголок-блик */
.hero__emblem::after {
  content: '';
  position: absolute; top: -40%; right: -40%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Пульсирующее красное свечение под эмблемой */
.hero__emblem-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle, rgba(217,25,44,0.5) 0%, transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: emblemGlow 4s ease-in-out infinite;
}
@keyframes emblemGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.05); }
}

/* Сам логотип (оригинал — белый на прозрачном фоне) */
.hero__emblem-logo {
  width: 68%;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.30));
  position: relative; z-index: 1;
}

/* Маленький бейдж "с 1941" в углу */
.hero__emblem-badge {
  position: absolute;
  bottom: 22px; right: 22px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.95);
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  z-index: 2;
}

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section--light { background: var(--cream); }
.section--dark { background: var(--navy); color: #fff; }
.section--accent {
  background: linear-gradient(135deg, var(--bordo-deep) 0%, var(--gold) 100%);
  color: #fff;
}

.section__head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section__eyebrow {
  display: inline-block; padding: 6px 14px;
  background: rgba(201,166,107,0.12);
  color: var(--gold);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section__eyebrow--light {
  background: rgba(255,133,98,0.14);
  border: 1px solid rgba(255,133,98,0.35);
  color: var(--coral);
}
.section__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 16px;
}
.section__title--light { color: #fff; }
.section__sub {
  font-size: 17px; color: var(--gray-600);
  max-width: 600px; margin: 0 auto;
}
.section--dark .section__sub, .section--accent .section__sub { color: rgba(255,255,255,0.75); }

/* ============ ABOUT ============ */
.about__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start;
}
.about__text p { margin-bottom: 18px; font-size: 17px; color: var(--gray-800); }
.about__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.about-card {
  background: #fff; padding: 28px 24px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.about-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(177,16,30,0.10);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.about-card__icon svg { width: 26px; height: 26px; }
.about-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.about-card p { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* ============ STATS ============ */
.stats { background: var(--navy); padding: 70px 0; color: #fff; }
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.stat { text-align: center; }
.stat__num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat__label { font-size: 14px; color: rgba(255,255,255,0.75); }

/* ============ SERVICES ============ */
.services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service {
  position: relative;
  background: #fff; padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service__num {
  position: absolute; top: 24px; right: 28px;
  font-size: 14px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em;
}
.service__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(177,16,30,0.25);
}
.service__icon svg { width: 28px; height: 28px; }
.service h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.service > p { color: var(--gray-600); margin-bottom: 20px; }
.service__list { list-style: none; }
.service__list li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-top: 1px solid var(--gray-100);
  font-size: 14px; color: var(--gray-800);
}
.service__list li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--gold); font-weight: 700;
}
.service--featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; border-color: transparent;
}
.service--featured h3 { color: #fff; }
.service--featured > p { color: rgba(255,255,255,0.8); }
.service--featured .service__list li { border-top-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); }
.service--featured .service__num { color: var(--gold-2); }
.service--featured .service__icon {
  background: #fff;
  color: var(--gold);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ============ PROCESS ============ */
.process {
  list-style: none;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  counter-reset: step;
}
.process__step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.process__step:hover {
  background: rgba(201,166,107,0.06);
  border-color: rgba(201,166,107,0.3);
  transform: translateY(-4px);
}
.process__num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  margin-bottom: 20px;
}
.process__step h4 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.process__step p { color: rgba(255,255,255,0.75); font-size: 15px; }

/* ============ EQUIPMENT ============ */
.equipment {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.equipment__card {
  background: #fff; padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.equipment__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.equipment__logo {
  font-weight: 800; font-size: 22px;
  color: var(--navy);
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center; line-height: 1.1;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  height: 92px;            /* фиксированная высота — все плашки одинаковые */
  display: flex; align-items: center; justify-content: center;
}
.equipment__card h4 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.equipment__card p { font-size: 14px; color: var(--gray-600); line-height: 1.55; }

/* ============ MARKETPLACES ============ */
.mp {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
.mp__text p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.mp__features { list-style: none; }
.mp__features li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}
.mp__features li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mp__features li::after {
  content: '✓'; position: absolute; left: 4px; top: 11px;
  color: var(--gold); font-weight: 800; font-size: 11px;
}
.mp__logos {
  display: grid; gap: 14px;
}
.mp__logo {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 24px;
  border-radius: var(--radius);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.mp__brand-ico {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.mp__brand-ico svg { width: 100%; height: 100%; }
.mp__brand-text {
  display: flex; flex-direction: column; gap: 2px;
  line-height: 1.2;
}
.mp__brand-name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.mp__brand-sub {
  font-size: 12px;
  opacity: 0.75;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Фирменные цвета маркетплейсов */
.mp__logo--wb {
  background: linear-gradient(135deg, #c40092 0%, #481173 100%);
  border: 1px solid rgba(255,255,255,0.18);
}
.mp__logo--ozon {
  background: linear-gradient(135deg, #1a5cff 0%, #003fb8 100%);
  border: 1px solid rgba(255,255,255,0.18);
}
.mp__logo--ym {
  background: linear-gradient(135deg, #fc3f1d 0%, #b32812 100%);
  border: 1px solid rgba(255,255,255,0.18);
}

/* ============ ADVANTAGES ============ */
.adv {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.adv__item {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.adv__item:hover { border-color: var(--gold); transform: translateY(-2px); }
.adv__num {
  font-size: 28px; font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.adv__item h4 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.adv__item p { font-size: 14.5px; color: var(--gray-600); line-height: 1.55; }

/* ============ FAQ ============ */
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}
.faq__item[open] { border-color: var(--gold); background: #fff; box-shadow: var(--shadow-sm); }
.faq__item summary {
  padding: 22px 28px;
  font-weight: 600; font-size: 16.5px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 22px; font-weight: 400; color: var(--gold);
  transition: var(--transition);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 28px 22px;
  color: var(--gray-600);
  font-size: 15.5px;
}

/* ============ CTA STRIP ============ */
.cta-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 56px 56px;
  background: linear-gradient(135deg, rgba(177,16,30,0.10) 0%, rgba(177,16,30,0.02) 100%);
  border: 1px solid rgba(177,16,30,0.22);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 360px;
  background: radial-gradient(circle at top right, rgba(177,16,30,0.20), transparent 70%);
  pointer-events: none;
}
.cta-strip__text {
  position: relative; z-index: 1;
  text-align: left;
}
.cta-strip__text .section__eyebrow {
  margin-bottom: 18px;
}
.cta-strip__text .section__title {
  margin-bottom: 14px;
  text-align: left;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
}
.cta-strip__lead {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.55;
  max-width: 460px;
  margin: 0;
}

/* Подсказка под заголовком CTA */
.cta-strip__note {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.88);
  font-size: 15.5px;
  line-height: 1.4;
  padding: 10px 18px 10px 10px;
  background: rgba(255,133,98,0.08);
  border: 1px solid rgba(255,133,98,0.25);
  border-radius: 999px;
  width: fit-content;
}
.cta-strip__ico {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,133,98,0.18);
  border: 1px solid rgba(255,133,98,0.35);
  color: var(--coral);
  display: inline-flex;
  align-items: center; justify-content: center;
}
.cta-strip__ico svg { width: 17px; height: 17px; }

@media (max-width: 768px) {
  .cta-strip__note { margin-left: auto; margin-right: auto; }
}
.cta-strip__actions {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  max-width: 360px;
  margin-left: auto;
  width: 100%;
}
.cta-strip__actions .btn {
  justify-content: center;
  padding: 18px 28px;
  font-size: 16px;
  width: 100%;
}
.cta-strip__actions .btn svg { flex-shrink: 0; }

@media (max-width: 1024px) {
  .cta-strip { padding: 44px 36px; gap: 36px; }
}
@media (max-width: 768px) {
  .cta-strip {
    grid-template-columns: 1fr;
    padding: 36px 24px; gap: 28px;
    text-align: center;
  }
  .cta-strip__text .section__title { text-align: center; }
  .cta-strip__lead { margin: 0 auto; }
  .cta-strip__actions { margin: 0 auto; max-width: 100%; }
}

/* ============ ORDER (legacy — kept for back-compat) ============ */
.order {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start;
}
.order__head { text-align: left; max-width: none; }
.order__lead { color: rgba(255,255,255,0.75); font-size: 16px; margin: 16px 0 28px; }
.order__bullets { list-style: none; }
.order__bullets li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}
.order__bullets li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px;
  background: var(--gold); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
}

.form {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: var(--shadow-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form__field > span {
  font-size: 13px; font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--text);
  transition: var(--transition);
  outline: none;
  font-size: 15px;
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201,166,107,0.12);
}
.form__field input.is-invalid {
  border-color: #dc2626; background: #fff5f5;
}
.form__check { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; font-size: 13.5px; color: var(--gray-600); }
.form__check input { margin-top: 2px; accent-color: var(--gold); width: 16px; height: 16px; }
.form__status { margin-top: 18px; font-size: 14px; text-align: center; min-height: 22px; }
.form__status.is-success { color: #15803d; font-weight: 600; }
.form__status.is-error { color: #dc2626; font-weight: 600; }

/* ============ CONTACTS ============ */
.contacts {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px;
  align-items: stretch;
}
.contacts__info {
  display: grid; gap: 20px;
  align-content: start;
}
.contact {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact:hover { border-color: var(--gold); }
.contact__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400); margin-bottom: 4px; font-weight: 600; }
.contact__value { font-size: 16px; font-weight: 600; color: var(--navy); }
a.contact__value:hover { color: var(--gold); }

.contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--gray-200);
}
.contacts__map iframe { border: 0; width: 100%; height: 100%; min-height: 420px; display: block; }

/* ============ FOOTER ============ */
.footer {
  position: relative;
  background: linear-gradient(180deg, #141414 0%, #0a0a0a 100%);
  color: rgba(255,255,255,0.7);
  padding: 0 0 28px;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 240px;
  background: radial-gradient(ellipse at 80% 0%, rgba(177,16,30,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.footer__accent {
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold) 20%,
    var(--gold-2) 50%,
    var(--gold) 80%,
    transparent 100%);
}
.footer__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: 56px;
  padding: 64px 24px 48px;
}
.footer__col {
  display: flex; flex-direction: column;
}
.footer__col--brand {
  gap: 20px;
}
.footer__logo {
  height: 62px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  /* Перекрашиваем оригинальный светлый логотип чуть тёплый-белый для тёмного футера */
  filter: brightness(0) invert(1) opacity(0.95);
}
.footer__about {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  max-width: 380px;
}
.footer__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.footer__tag {
  font-size: 11.5px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

.footer__heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer__heading::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 140px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer__nav {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
}
.footer__nav a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__nav a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.footer__nav a:hover { color: #fff; }
.footer__nav a:hover::before { width: 14px; }

.footer__contacts {
  list-style: none;
  display: flex; flex-direction: column; gap: 16px;
}
.footer__contacts li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}
.footer__contacts a {
  color: #fff;
  font-weight: 600;
  transition: var(--transition);
}
.footer__contacts a:hover { color: var(--gold-2); }
.footer__ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(177,16,30,0.15);
  color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(177,16,30,0.25);
}
.footer__ico svg { width: 17px; height: 17px; }

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.08) 20%,
    rgba(255,255,255,0.08) 80%,
    transparent 100%);
  margin: 0 24px;
}

.footer__bottom {
  position: relative; z-index: 1;
  padding: 24px 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { letter-spacing: 0.01em; }
.footer__totop {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
}
.footer__totop:hover {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

/* ============ FLOATING CTA ============ */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--gold); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(177,16,30,0.45);
  z-index: 50;
  transition: var(--transition);
}
.floating-cta:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 14px 30px rgba(177,16,30,0.55); }
.floating-cta svg { width: 24px; height: 24px; }

/* ============ ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
/* Промежуточный брейк: метаблок в шапке скрываем, чтобы не сжималось меню */
@media (max-width: 1280px) {
  .header__meta { display: none; }
}

@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 360px; margin: 0 auto; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .services { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .equipment { grid-template-columns: 1fr 1fr; }
  .adv { grid-template-columns: 1fr 1fr; }
  .mp { grid-template-columns: 1fr; }
  .order { grid-template-columns: 1fr; gap: 40px; }
  .contacts { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  /* Burger-меню включается раньше — иначе nav и логотип конкурируют */
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    background: #fff;
    flex-direction: column; gap: 0;
    padding: 20px 24px 30px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%); opacity: 0; pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin-left: 0;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--gray-100); font-size: 16px; }
  .burger { display: flex; margin-left: auto; }
  .header__phone { margin-left: 0; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 70px 0 60px; }
  .hero__meta { gap: 24px; }
  .hero__meta-item strong { font-size: 26px; }

  .header__phone span { display: none; }
  .header__phone { padding: 10px 12px; }

  .about__cards { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .equipment { grid-template-columns: 1fr; }
  .adv { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .floating-cta { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .form { padding: 24px 20px; }
}
