:root {
  --bg: #05090c;
  --bg-2: #071014;
  --text: #ffffff;
  --muted: #a7adb3;
  --lead: #b7bdc4;
  --orange: #FFA726;
  --orange-2: #FF9D1E;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(8, 14, 18, 0.64);
  --font: Inter, Manrope, Arial, sans-serif;
  --fs-small: 12px;
  --fs-body: 16px;
  --fs-h3: clamp(22px, 2.2vw, 30px);
  --fs-h2: clamp(32px, 3.4vw, 40px);
  --fs-h1: clamp(40px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

/* Компенсация фиксированной шапки при якорном скролле */
#finish-node,
#workflow,
#control-section,
#terms-section,
#seo-service-section,
#faq-section,
#request-section {
  scroll-margin-top: 78px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  background: var(--bg);
}

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

@keyframes headerIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoLineIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes paverIn {
  from { opacity: 0; transform: translateY(3px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scanLine {
  0% {
    transform: translateY(-120%);
    opacity: 0;
  }
  14% {
    opacity: 0.22;
  }
  42% {
    opacity: 0.08;
  }
  100% {
    transform: translateY(520%);
    opacity: 0;
  }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  max-height: none;
  padding: 0;
  overflow: hidden;
  background: #03070a;
}

@media (min-width: 1181px) and (min-height: 900px) {
  .hero {
    height: 100vh;
    min-height: 900px;
  }
}

.hero__bg {
  position: absolute;
  inset: -6%;
  background-image: url('./assets/11.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation: heroBgZoom 14s ease-out forwards;
  will-change: transform;
}

@keyframes heroBgZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

/* Основной затемняющий градиент: слева плотный, справа прозрачный */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(3, 7, 10, 0.94) 0%,
      rgba(3, 7, 10, 0.86) 28%,
      rgba(3, 7, 10, 0.55) 48%,
      rgba(3, 7, 10, 0.20) 70%,
      rgba(3, 7, 10, 0.35) 100%
    );
}

/* Затемнение сверху и снизу */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(3, 7, 10, 0.55) 0%,
      transparent 18%,
      transparent 72%,
      rgba(3, 7, 10, 0.72) 100%
    );
}

.hero__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(112deg, rgba(255,255,255,0.022) 0 1px, transparent 1px 13px),
    radial-gradient(circle at 36% 54%, rgba(255, 167, 38, 0.06), transparent 22%);
  opacity: 0.8;
}

.hero__rail {
  display: none;
}

.hero__coord,
.hero__city,
.hero__mark {
  position: absolute;
  left: -32px;
  color: rgba(255,255,255,0.34);
  font-size: var(--fs-small);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero__coord {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero__coord--top {
  top: 78px;
}

.hero__coord--bottom {
  bottom: 74px;
}

.hero__mark {
  top: 176px;
  left: -27px;
  color: rgba(255,255,255,0.58);
  font-size: 24px; /* декоративный символ, оставляем */
}

.hero__city {
  left: -4px;
  bottom: -34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.42);
  font-size: var(--fs-small);
  text-transform: uppercase;
}

.hero__city::before {
  content: "⊕";
  color: rgba(255,255,255,0.5);
  font-size: 22px;
}

.hero__wrap {
  position: static;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.header-container {
  max-width: 1360px !important;
  margin: 0 auto !important;
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: grid;
  grid-template-columns: auto 1px auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  height: 68px;
  padding-left: max(64px, calc((100vw - 1360px) / 2 + 64px));
  padding-right: max(64px, calc((100vw - 1360px) / 2 + 64px));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(3, 7, 10, 0.62);
  backdrop-filter: blur(12px);
  animation: headerIn 0.65s ease-out both;
}

/* убрано — padding управляется через .header */


.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
  transform: scale(0.94);
  transform-origin: left center;
  text-decoration: none;
}

.logo-block {
  transform: scale(0.94);
  transform-origin: left center;
}

/* Текстовый логотип — размер по контенту, линия абсолютная снизу */
.logo__main {
  position: relative;
  display: block;
  font-size: 30px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  padding-bottom: 7px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.logo:hover .logo__main {
  transform: translateY(-1px);
  opacity: 0.94;
}

/* Оранжевый инженерный штрих — точно по ширине слова */
.logo__main::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transform-origin: left center;
  animation: logoLineIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
  transition: box-shadow 0.28s ease;
}

.logo:hover .logo__main::after {
  box-shadow: 0 0 9px rgba(255, 167, 38, 0.52);
}

@media (prefers-reduced-motion: reduce) {
  .logo__main::after {
    animation: none;
    transform: scaleX(1);
  }
  .logo__main,
  .logo:hover .logo__main {
    transition: none;
    transform: none;
  }
}

.header__divider {
  height: 36px;
  background: var(--line);
}

/* ── Декоративная дорожка из плиток ─────────────── */
.header__spacer {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.header-pavers {
  position: relative;
  width: 82px;
  height: 14px;
  flex-shrink: 0;
}

.paver {
  position: absolute;
  left: var(--px);
  top:  var(--py);
  width: 14px;
  height: 5px;
  border-radius: 1.5px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-sizing: border-box;
  opacity: 0;
  animation: paverIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) var(--d) both;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.paver--a {
  background: rgba(255, 167, 38, 0.40);
  border-color: rgba(255, 167, 38, 0.15);
}

.header-pavers:hover .paver--a {
  background: rgba(255, 167, 38, 0.58);
  box-shadow: 0 0 6px rgba(255, 167, 38, 0.36);
}

@media (prefers-reduced-motion: reduce) {
  .paver {
    animation: none;
    opacity: 1;
  }
}

/* На ноутбуке — скрыть последние 2 плитки через уменьшение контейнера */
@media (max-width: 1160px) {
  .header-pavers {
    width: 60px;
  }
  .paver:nth-child(8),
  .paver:nth-child(9) {
    display: none;
  }
}

.header__descriptor {
  margin: 0;
  color: #e6e9eb;
  font-size: 15px;
  line-height: 1.32;
  font-weight: 400;
  white-space: nowrap;
}

.header__phone {
  font-size: var(--fs-body);
  font-weight: 700;
  white-space: nowrap;
}

.messengers {
  display: flex;
  gap: 10px;
}

.messenger {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.messenger svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  transition: transform 0.25s ease;
}

.messenger--max {
  color: #fff;
  font-size: var(--fs-small);
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.messenger:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 167, 38, 0.12);
  box-shadow: 0 0 28px rgba(255, 167, 38, 0.18);
}

.messenger:hover svg,
.messenger--max:hover {
  transform: translateY(-2px);
}

.header__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  min-height: 44px;
  border: 1px solid var(--orange);
  border-radius: 7px;
  color: var(--orange);
  background: rgba(255, 167, 38, 0.03);
  font-size: var(--fs-body);
  font-weight: 700;
  overflow: hidden;
  isolation: isolate;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.header__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,0.28) 48%, transparent 64% 100%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.header__btn span,
.hero-cta span {
  position: relative;
  z-index: 1;
  transition: transform 0.24s ease;
}

.header__btn:hover {
  color: #fff;
  background: var(--orange);
  border-color: #FF9D1E;
  box-shadow: 0 0 30px rgba(255, 167, 38, 0.2);
  transform: translateY(-2px);
}

.header__btn:hover::before {
  transform: translateX(120%);
}

.header__btn:hover span,
.hero-cta:hover span {
  transform: translateX(6px);
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  padding-bottom: 48px;
  position: relative;
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: clamp(46px, 4.15vw, 68px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em !important;
  font-weight: 900 !important;
  max-width: 600px !important;
  margin: 0 0 24px 0 !important;
}

.hero-title .title-line {
  display: block !important;
  white-space: nowrap !important;
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 0.62s ease-out both;
}

.hero-title .title-line:nth-child(1) {
  animation-delay: 0.16s;
}

.hero-title .title-line:nth-child(2) {
  animation-delay: 0.23s;
}

.hero-title .title-line:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-title .title-line:nth-child(4) {
  animation-delay: 0.36s;
}

.hero-title em {
  color: #FFA726 !important;
  font-style: normal !important;
  text-shadow: 0 0 26px rgba(255, 167, 38, 0.14);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-body) !important;
  line-height: 1.45 !important;
  max-width: 500px !important;
  margin: 0 0 20px 0 !important;
  animation: riseIn 0.62s ease-out 0.44s both;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  height: 50px !important;
  padding: 0 22px !important;
  border-radius: 5px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--orange), var(--orange-2)),
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.36), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 22px 46px rgba(255, 167, 38, 0.2);
  font-size: var(--fs-body) !important;
  font-weight: 700;
  margin-bottom: 14px !important;
  overflow: hidden;
  isolation: isolate;
  animation: riseIn 0.62s ease-out 0.52s both;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(110deg, transparent 0 30%, rgba(255,255,255,0.36) 48%, transparent 66% 100%);
  transform: translateX(-120%);
  transition: transform 0.74s ease;
}

.hero-cta > * {
  position: relative;
  z-index: 1;
}

.hero-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 0 36px rgba(255, 167, 38, 0.32),
    0 18px 42px rgba(255, 167, 38, 0.2);
}

.hero-cta:hover::before {
  transform: translateX(120%);
}

.hero-note {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 6px !important;
  max-width: 500px !important;
  animation: riseIn 0.62s ease-out 0.6s both;
}

.hero-note svg {
  width: 28px;
  height: 28px;
  fill: var(--orange);
  opacity: 0.8;
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.hero-features {
  margin-top: 28px !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 12px !important;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 620px;
  animation: riseIn 0.68s ease-out 0.68s both;
}

.feature-card {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  min-height: 68px !important;
  padding: 12px 14px !important;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px !important;
  background: rgba(5, 9, 12, 0.72);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255, 167, 38, 0.18), transparent 44%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 167, 38, 0.72);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 42px rgba(255, 167, 38, 0.12);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  stroke: var(--orange);
  stroke-width: 2;
  fill: none;
  filter: drop-shadow(0 0 8px rgba(255, 167, 38, 0.25));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.feature-card:hover svg {
  transform: scale(1.08);
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 4px !important;
  color: #ffffff;
  font-size: var(--fs-small) !important;
  line-height: 1.2 !important;
  font-weight: 800;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.hero-proof-strip {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  min-height: 94px;
  padding: 8px 12px !important;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015)),
    rgba(10, 17, 16, 0.76);
  backdrop-filter: blur(7px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.36),
    0 18px 45px rgba(0,0,0,0.22);
}

.hero-proof-strip::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 15px;
  background:
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(201,193,178,0.055) 30px 31px),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(201,193,178,0.035) 22px 23px);
  opacity: 0.72;
}

.hero-proof-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(216,162,74,0.18), transparent 18%, transparent 82%, rgba(216,162,74,0.08)),
    linear-gradient(180deg, rgba(255,255,255,0.09), transparent 24%);
  opacity: 0.28;
}

.hero-proof-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px 12px;
  min-width: 0;
  border-radius: 10px;
  transition: background 0.22s ease;
}

.hero-proof-item + .hero-proof-item {
  border-left: 1px solid rgba(255,255,255,0.10);
}

.hero-proof-item::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 1px;
  background: #D8A24A;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.hero-proof-item:hover {
  background: rgba(255,255,255,0.035);
}

.hero-proof-item:hover::before {
  opacity: 0.68;
}

.hero-proof-num {
  display: inline-block;
  padding-top: 3px;
  color: #D8A24A;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: color 0.22s ease;
}

.hero-proof-item:hover .hero-proof-num {
  color: #F0B43A;
}

.hero-proof-content {
  min-width: 0;
}

.hero-proof-content strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15.5px;
  line-height: 1.15;
  font-weight: 900;
}

.hero-proof-content span {
  display: block;
  color: rgba(255,255,255,0.70);
  font-size: 12.2px;
  line-height: 1.34;
}

/* hero-image-wrap удалён — картинка теперь фон .hero */

.quick-calc-section {
  position: relative;
  overflow: hidden;
  padding: 32px 0 76px;
  background: linear-gradient(180deg, #0B1110 0%, #0E1413 54%, #0B1110 100%);
  border-top: 1px solid rgba(255,255,255,0.10);
}

.quick-calc__grid {
  position: absolute;
  inset: 30px;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) top left / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) top left / 1px 24px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) top right / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) top right / 1px 24px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) bottom left / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) bottom left / 1px 24px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) bottom right / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) bottom right / 1px 24px no-repeat;
  opacity: 0.16;
}

.quick-calc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, 0.016) 28px,
    rgba(255, 255, 255, 0.016) 29px
  );
}

.quick-calc__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(440px, 0.78fr);
  gap: 44px;
  align-items: center;
}

.quick-calc__eyebrow {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 167, 38, 0.38);
  border-radius: 999px;
  background: rgba(255, 167, 38, 0.07);
  color: #FFA726;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-calc__title {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(38px, 2.65vw, 49px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.quick-calc__title em {
  font-style: normal;
  color: #FFA726;
}

.quick-calc__lead {
  margin: 12px 0 0;
  max-width: 760px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.55;
}

.quick-calc__results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 13px;
  margin-top: 20px;
}

.quick-calc-result {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  min-height: 126px;
  padding: 17px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.022));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.025);
}

.quick-calc-result__num {
  color: #D8A24A;
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.quick-calc-result h3 {
  margin: 0 0 7px;
  color: #fff;
  font-size: 16.5px;
  line-height: 1.15;
  font-weight: 900;
}

.quick-calc-result p {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  line-height: 1.5;
}

.quick-calc__panel {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.105);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 167, 38, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)),
    rgba(16, 23, 22, 0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}

.quick-calc__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.10;
}

.quick-calc__panel > * {
  position: relative;
  z-index: 1;
}

.quick-calc__panel-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.quick-calc__panel-title {
  color: #fff;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 850;
}

.quick-calc__panel-sub {
  color: rgba(255,255,255,0.64);
  font-size: 14px;
  line-height: 1.35;
}

.quick-calc-form {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.quick-calc-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quick-calc-label {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.quick-calc-input {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 10px;
  outline: none;
  background: rgba(7, 12, 12, 0.62);
  color: #fff;
  font: inherit;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quick-calc-input::placeholder {
  color: rgba(255,255,255,0.38);
}

.quick-calc-input:focus {
  border-color: rgba(255, 167, 38, 0.62);
  background: rgba(8, 14, 14, 0.78);
  box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.08);
}

.quick-calc-textarea {
  min-height: 54px;
  resize: vertical;
}

.quick-calc-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border: 1px solid rgba(201,193,178,0.16);
  border-radius: 10px;
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.35;
}

.quick-calc-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #FFA726;
  background: rgba(255, 167, 38, 0.09);
}

.quick-calc-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,0.64);
  font-size: 13px;
  line-height: 1.4;
}

.quick-calc-consent__check {
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: #FFA726;
}

.quick-calc-consent__link {
  color: rgba(255, 167, 38, 0.92);
  text-decoration: none;
}

.quick-calc-consent__link:hover {
  text-decoration: underline;
}

.quick-calc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 167, 38, 0.74);
  border-radius: 10px;
  background: #FFA726;
  color: #101010;
  font: inherit;
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.quick-calc-btn:hover {
  background: #FFB23A;
  box-shadow: 0 12px 28px rgba(255, 167, 38, 0.18);
  transform: translateY(-2px);
}

.quick-calc-btn:disabled {
  cursor: default;
  transform: none;
}

.quick-calc-disclaimer {
  margin: -2px 0 0;
  color: rgba(255,255,255,0.56);
  font-size: 13px;
  line-height: 1.4;
}

.quick-calc-messengers {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.58);
  font-size: 14px;
  line-height: 1.3;
}

.quick-calc-messengers div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.quick-calc-messengers a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(201,193,178,0.18);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.quick-calc-messengers a:hover {
  border-color: rgba(255, 167, 38, 0.48);
  color: #FFA726;
  background: rgba(255, 167, 38, 0.055);
}

@media (max-width: 1120px) {
  .quick-calc__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .quick-calc__results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-calc__panel {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .quick-calc-section {
    padding: 60px 0 64px;
  }

  .quick-calc__inner {
    padding: 0 20px;
    gap: 28px;
  }

  .quick-calc__title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .quick-calc__lead {
    font-size: 15px;
  }

  .quick-calc__results {
    grid-template-columns: 1fr;
  }

  .quick-calc-result {
    min-height: 0;
  }

  .quick-calc__panel {
    padding: 22px;
    border-radius: 16px;
  }

  .quick-calc-messengers {
    align-items: flex-start;
    flex-direction: column;
  }

  .quick-calc-messengers div {
    justify-content: flex-start;
  }
}

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

  .quick-calc__panel {
    padding: 18px;
  }

  .quick-calc-btn {
    min-height: 48px;
  }
}

.problems-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0 84px;
  background: linear-gradient(180deg, #0B1110 0%, #0E1413 54%, #0B1110 100%);
  border-top: 0;
}

.problems-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, 0.016) 28px,
    rgba(255, 255, 255, 0.016) 29px
  );
}

.problems-section::after {
  content: "55.7558° N / 37.6176° E / МОСКВА";
  position: absolute;
  left: 18px;
  bottom: 36px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255,255,255,0.18);
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  pointer-events: none;
}

.problems-section__number {
  position: absolute;
  left: max(36px, calc((100vw - 1360px) / 2 + 36px));
  top: 48px;
  color: rgba(255,255,255,0.08);
  font-size: clamp(96px, 10vw, 156px);
  line-height: 0.8;
  font-weight: 200;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.problems-section__grid {
  position: absolute;
  inset: 32px;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) top left / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) top left / 1px 24px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) top right / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) top right / 1px 24px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) bottom left / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) bottom left / 1px 24px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) bottom right / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.55), rgba(201,193,178,0.55)) bottom right / 1px 24px no-repeat;
  opacity: 0.16;
}

.problems-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
}

.problems-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 38px;
}

.problems-title {
  margin: 0;
  color: #fff;
  font-size: var(--fs-h2);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.problems-title-line {
  width: 54px;
  height: 3px;
  margin-top: 22px;
  background: #D8A24A;
  box-shadow: 0 0 18px rgba(216, 162, 74, 0.16);
}

.problems-lead {
  margin: 8px 0 0;
  color: var(--lead);
  font-size: var(--fs-body);
  line-height: 1.58;
}

.problems-lead__strong {
  font-size: 18px;
  line-height: 1.42;
  color: #ffffff;
  font-weight: 650;
}

.problems-lead__soft {
  color: rgba(255,255,255,0.68);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.problem-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: #0b1110;
  isolation: isolate;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  /* scroll-reveal initial state */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.52s ease, transform 0.52s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.problem-card__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.98) saturate(0.98) contrast(1.04);
  transition: transform 0.72s ease, filter 0.72s ease;
}

.problem-card--rush .problem-card__bg {
  filter: brightness(1.06) saturate(0.96) contrast(1.02);
}

.problem-card__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,9,12,0.02) 0%, rgba(5,9,12,0.10) 38%, rgba(5,9,12,0.76) 100%),
    radial-gradient(circle at 15% 78%, rgba(201, 193, 178, 0.07), transparent 30%);
}

.problem-card__mark {
  position: absolute;
  top: 32px;
  right: 26px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 200;
  opacity: 0.9;
}

.problem-card__content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 38px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 168px;
  transition: transform 0.28s ease;
}


.problem-card-icon {
  width: 54px;
  height: 54px;
  opacity: 0;
  transform: scale(0.85);
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  align-self: flex-start;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(84%) sepia(10%) saturate(360%) hue-rotate(358deg) brightness(91%) contrast(88%) drop-shadow(0 0 10px rgba(201, 193, 178, 0.26));
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.3s ease;
}

.problem-card__content h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: var(--fs-h3);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.problem-card__content p {
  margin: 0;
  min-height: 4.35em;
  max-width: 320px;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.45;
}

.problem-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 193, 178, 0.34);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.20);
  transition-delay: 0s;
}

.problem-card__bg {
  transition: transform 0.7s ease;
}

.problem-card:hover .problem-card__bg {
  transform: scale(1.03);
  filter: brightness(1.08) saturate(1) contrast(1.06);
}

.problem-card:hover .problem-card-icon {
  filter: brightness(0) saturate(100%) invert(84%) sepia(10%) saturate(360%) hue-rotate(358deg) brightness(96%) contrast(88%) drop-shadow(0 0 10px rgba(201, 193, 178, 0.30));
}

.problem-control {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(15, 21, 20, 0.82);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 38px rgba(0,0,0,0.14);
  /* scroll-reveal */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.52s ease, transform 0.52s ease;
  overflow: hidden;
}

.control-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 20px 30px;
}

.control-item + .control-item {
  border-left: 1px solid rgba(255,255,255,0.09);
}

.problem-check-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(77%) sepia(33%) saturate(631%) hue-rotate(359deg) brightness(92%) contrast(86%);
}

.control-item p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
}

/* hero-title font-size управляется через --fs-h1 с clamp */

@media (max-width: 1180px) {
  .header {
    grid-template-columns: auto 1px auto 1fr auto;
    gap: 20px;
    padding-right: 30px;
  }

  .messengers {
    grid-column: 5;
  }

  .hero-content {
    padding-left: 0 !important;
  }

  .hero-content::before {
    inset: 0 0 0 -36px;
  }

  .hero-features {
    grid-template-columns: repeat(3, 1fr) !important;
    width: min(700px, calc(100vw - 72px));
    margin-right: -64px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 1040px;
    background-position: center center;
  }

  .hero::before {
    background: rgba(3, 7, 10, 0.86);
  }

  .hero::after {
    display: none;
  }

  .hero__rail {
    display: none;
  }

  .header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 0 20px;
    height: auto;
    min-height: 60px;
  }

  .logo {
    min-width: 0;
  }

  .logo__main {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .header__divider,
  .header__spacer {
    display: none;
  }

  .header__descriptor {
    display: none;
  }

  .header__phone {
    grid-column: 2;
    font-size: 15px;
    justify-self: end;
    align-self: center;
  }

  .messengers {
    grid-column: 3;
    align-self: center;
  }

  .messenger {
    width: 40px;
    height: 40px;
  }

  .hero-main {
    padding: 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 40px !important;
    line-height: 1 !important;
    margin-bottom: 20px !important;
  }

  .hero-title .title-line {
    white-space: normal !important;
  }

  .hero-subtitle {
    max-width: 100% !important;
    font-size: 16px !important;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-note {
    max-width: 100% !important;
  }

  .hero-features {
    grid-template-columns: 1fr !important;
    max-width: 100%;
    margin-top: 24px !important;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr !important;
    min-height: 0;
    padding: 10px 12px !important;
  }

  .hero-proof-item {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 10px 8px;
  }

  .hero-proof-item + .hero-proof-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.10);
  }

  .hero-proof-item::before {
    left: 8px;
    right: auto;
    top: 10px;
    bottom: 10px;
    width: 1px;
    height: auto;
  }
}

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

  .hero-main {
    padding: 0 16px;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero-title {
    font-size: 36px !important;
  }

  .hero-note {
    grid-template-columns: 28px 1fr;
  }

  .hero-note svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 1180px) {
  .problems-section {
    padding: 66px 0 76px;
  }
  .problems-section__inner {
    padding-left: 36px;
    padding-right: 36px;
  }

  .problem-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .problem-card {
    min-height: 460px;
  }

  .problem-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 420px;
  }

  .problem-control {
    grid-template-columns: 1fr;
  }

  .control-item + .control-item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
}

@media (max-width: 768px) {
  .problems-section {
    padding: 56px 0 64px;
  }
  .problems-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .problems-section::after,
  .problems-section__number,
  .problems-section__grid {
    display: none;
  }

  .problems-section__head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .problems-title {
    font-size: clamp(34px, 9vw, 46px);
  }

  .problems-lead {
    margin-top: 0;
    font-size: 17px;
  }

  .problem-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .problem-card,
  .problem-card:nth-child(3) {
    grid-column: auto;
    min-height: 430px;
  }

  .problem-card__content {
    left: 24px;
    right: 22px;
    bottom: 26px;
  }

  .problem-card__content h3 {
    font-size: 28px;
  }

  .problem-card__content p {
    font-size: 16px;
  }

  .problem-control {
    margin-top: 22px;
  }

  .control-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    min-height: 106px;
    padding: 22px;
  }

  .problem-check-icon {
    width: 42px;
    height: 42px;
  }

  .control-item p {
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  .problems-section {
    padding: 48px 0 56px;
  }
  .problems-section__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .problem-card,
  .problem-card:nth-child(3) {
    min-height: 390px;
  }

  .problem-card__mark {
    top: 20px;
    right: 18px;
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .problem-card-icon {
    width: 52px;
    height: 52px;
  }
}

/* ─── ТРЕТИЙ БЛОК: object-check ─────────────────────────── */

.object-check-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 18% 60%, rgba(255, 167, 38, 0.06), transparent 28%),
    linear-gradient(180deg, #070b0e 0%, #05090c 100%);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.object-check-section__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.3;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.object-check-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding-left: 64px;
  padding-right: 64px;
}

/* Шапка */
.object-check-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: start;
  margin-bottom: 52px;
}

.object-check-title {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.object-check-title em {
  color: var(--orange);
  font-style: normal;
  text-shadow: 0 0 24px rgba(255, 167, 38, 0.18);
}

.object-check-title-line {
  width: 54px;
  height: 3px;
  margin-top: 20px;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 167, 38, 0.22);
}

.object-check-lead {
  margin: 14px 0 0;
  color: var(--lead);
  font-size: 17px;
  line-height: 1.55;
}

/* Две колонки */
.object-check-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

/* Левая карточка — чек-лист */
.object-checklist-card {
  padding: 36px 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(8, 14, 18, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.object-checklist-card__label {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.object-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.object-checklist__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
}

.object-checklist__num {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.object-checklist__item strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}

.object-checklist__item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

/* Правая карточка — форма */
.object-form-card {
  padding: 36px 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(8, 14, 18, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.object-form-card__label {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.object-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.object-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.object-form__label {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
}

.object-form__input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(3, 7, 10, 0.72);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  appearance: none;
  -webkit-appearance: none;
}

.object-form__input::placeholder {
  color: rgba(255,255,255,0.28);
}

.object-form__input:focus {
  border-color: rgba(255, 167, 38, 0.7);
  box-shadow: 0 0 0 3px rgba(255, 167, 38, 0.1);
}

.object-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.object-form__select option {
  background: #070b0e;
  color: #fff;
}

.object-form__upload {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.22s ease, color 0.22s ease;
}

.object-form__upload:hover {
  border-color: rgba(255, 167, 38, 0.5);
  color: rgba(255,255,255,0.7);
}

.object-form__upload-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: var(--orange);
  flex-shrink: 0;
}

.object-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 52px;
  margin-top: 4px;
  border: none;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 16px 36px rgba(255, 167, 38, 0.22);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: filter 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.object-form__submit span {
  transition: transform 0.22s ease;
}

.object-form__submit:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.28), 0 0 32px rgba(255, 167, 38, 0.28), 0 16px 36px rgba(255, 167, 38, 0.2);
}

.object-form__submit:hover span {
  transform: translateX(5px);
}

.object-form__micro {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.32);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

/* Нижняя плашка */
.object-check-footer {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(5, 9, 12, 0.5);
}

.object-check-footer__icon {
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,0.25);
  flex-shrink: 0;
  margin-top: 1px;
}

.object-check-footer p {
  margin: 0;
  color: rgba(255,255,255,0.38);
  font-size: 14px;
  line-height: 1.5;
}

/* Адаптив */
@media (max-width: 1024px) {
  .object-check-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .object-check-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .object-check-section {
    padding: 60px 0 70px;
  }
  .object-check-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .object-check-cols {
    grid-template-columns: 1fr;
  }
  .object-checklist-card,
  .object-form-card {
    padding: 28px 24px;
  }
  .object-check-footer {
    padding: 20px 20px;
  }
}

@media (max-width: 520px) {
  .object-check-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .object-check-title {
    font-size: 32px;
  }
  .object-form__submit {
    font-size: 14px;
  }
}

/* =============================================
   BLOCK 2 — ANIMATIONS
   ============================================= */

/* ── Шапка блока: начальное состояние ─────────── */
.problems-section__head > div,
.problems-lead {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.52s ease, transform 0.52s ease;
}

/* ── is-visible: появление ───────────────────── */
.problems-section.is-visible .problems-section__head > div {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.problems-section.is-visible .problems-lead {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.problems-section.is-visible .problem-card--base {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.22s;
}

.problems-section.is-visible .problem-card--water {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

.problems-section.is-visible .problem-card--rush {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.46s;
}

.problems-section.is-visible .problem-control {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}

/* ── Hover: сброс задержки ───────────────────── */
.problem-card:hover {
  transition-delay: 0s;
}

/* ── Иконки: появление ───────────────────────── */
.problems-section.is-visible .problem-card-icon {
  opacity: 1;
  transform: scale(1);
}

.problems-section.is-visible .problem-card--base .problem-card-icon {
  transition-delay: 0.40s;
}

.problems-section.is-visible .problem-card--water .problem-card-icon {
  transition-delay: 0.52s;
}

.problems-section.is-visible .problem-card--rush .problem-card-icon {
  transition-delay: 0.64s;
}

/* ── Сканер карточек ──────────────────────────── */
.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 193, 178, 0.00) 20%,
    rgba(201, 193, 178, 0.12) 48%,
    rgba(255, 255, 255, 0.07) 50%,
    rgba(201, 193, 178, 0.12) 52%,
    rgba(201, 193, 178, 0.00) 80%,
    transparent 100%
  );
  transform: skewX(-14deg);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

.problems-section.is-visible .problem-card::before {
  animation: cardScan 1.1s ease forwards;
}

.problems-section.is-visible .problem-card--base::before {
  animation-delay: 0.75s;
}

.problems-section.is-visible .problem-card--water::before {
  animation-delay: 1.05s;
}

.problems-section.is-visible .problem-card--rush::before {
  animation-delay: 1.35s;
}

@keyframes cardScan {
  0%   { left: -120%; opacity: 0; }
  10%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* ── Контроль-строка (hover) ─────────────────── */
.problem-card-control {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
  border-top: 0px solid rgba(255,255,255,0.10);
  opacity: 0;
  transition:
    max-height 0.30s ease,
    opacity 0.28s ease,
    margin-top 0.28s ease,
    padding-top 0.28s ease,
    border-top-width 0.28s ease;
}

.problem-card-control span {
  color: #C9C1B2;
  font-weight: 700;
}

.problem-card:hover .problem-card-control {
  max-height: 60px;
  opacity: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top-width: 1px;
}

/* Подъём основного контента при hover */
.problem-card:hover .problem-card__content {
  transform: translateY(-6px);
}

/* ── Линия на нижней плашке ──────────────────── */
.problem-control::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 193, 178, 0.38), transparent);
  border-radius: 2px;
}

.problems-section.is-visible .problem-control::before {
  animation: checksLine 1.1s ease forwards;
  animation-delay: 1.65s;
}

@keyframes checksLine {
  from { width: 0%; }
  to   { width: 100%; }
}

/* ── prefers-reduced-motion ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .problems-section__head > div,
  .problems-lead,
  .problem-card,
  .problem-card-icon,
  .problem-control {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .problem-card::before,
  .problem-control::before {
    animation: none !important;
  }
  .problem-card-control {
    transition: none !important;
  }
}

/* =============================================
   FINISH NODE SECTION — блок 3
   ============================================= */

.finish-node-section {
  position: relative;
  padding: 54px 0 58px;
  background:
    radial-gradient(circle at 18% 58%, rgba(255, 167, 38, 0.055), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(201, 193, 178, 0.045), transparent 24%),
    linear-gradient(180deg, #0B1110 0%, #0E1413 54%, #0B1110 100%);
  overflow: hidden;
}

.finish-node-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, 0.016) 28px,
    rgba(255, 255, 255, 0.016) 29px
  );
  pointer-events: none;
  z-index: 0;
}

.finish-node-section::after {
  content: '';
  position: absolute;
  inset: 32px;
  border: 1px solid transparent;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(201,193,178,0.62), rgba(201,193,178,0.62)) top left / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.62), rgba(201,193,178,0.62)) top left / 1px 24px no-repeat,
    linear-gradient(rgba(201,193,178,0.62), rgba(201,193,178,0.62)) top right / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.62), rgba(201,193,178,0.62)) top right / 1px 24px no-repeat,
    linear-gradient(rgba(201,193,178,0.62), rgba(201,193,178,0.62)) bottom left / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.62), rgba(201,193,178,0.62)) bottom left / 1px 24px no-repeat,
    linear-gradient(rgba(201,193,178,0.62), rgba(201,193,178,0.62)) bottom right / 24px 1px no-repeat,
    linear-gradient(rgba(201,193,178,0.62), rgba(201,193,178,0.62)) bottom right / 1px 24px no-repeat;
  opacity: 0.17;
}

.finish-node__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.finish-node__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: 48px;
  align-items: start;
}

.finish-node__head-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.finish-node__title {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
}

.finish-node__title em {
  font-style: normal;
  color: #FFA726;
}

.finish-node__title-line {
  width: 54px;
  height: 3px;
  background: #D8A24A;
  border-radius: 3px;
  box-shadow: 0 0 18px rgba(216, 162, 74, 0.16);
}

.finish-node__lead {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 16px;
  line-height: 1.58;
}

.finish-engineering {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.88fr);
  gap: 28px;
  align-items: stretch;
}

.paving-scheme,
.finish-node-list,
.finish-summary {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(16, 23, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.paving-scheme {
  min-height: 430px;
  padding: 20px;
}

.paving-scheme::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
}

.paving-scheme__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,0.52);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paving-scheme__top span:last-child {
  color: rgba(216, 162, 74, 0.86);
}

.paving-scheme__canvas {
  position: relative;
  z-index: 1;
  min-height: 350px;
  margin-top: 18px;
}

.paving-stack {
  position: absolute;
  left: 7%;
  right: 23%;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  transform: rotate(-1.2deg) skewY(-1deg);
  filter: drop-shadow(0 28px 34px rgba(0,0,0,0.28));
}

.paving-stack::before {
  content: "";
  position: absolute;
  inset: -18px -34px -24px 22px;
  border: 1px solid rgba(201,193,178,0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.045), transparent 52%);
  transform: skewX(-16deg);
  pointer-events: none;
}

.paving-layer {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--layer-h);
  margin-left: var(--layer-shift);
  padding: 0 26px;
  border: 1px solid rgba(255,255,255,0.14);
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.07), transparent 44%),
    var(--layer-bg);
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  transform-origin: bottom;
  animation: layerRise 0.58s ease both;
  animation-delay: var(--delay);
  box-shadow:
    14px 10px 0 var(--layer-side),
    0 10px 18px rgba(0,0,0,0.18);
  isolation: isolate;
}

.paving-layer:first-child {
  border-radius: 12px 12px 0 0;
}

.paving-layer:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
  border-radius: 0 0 12px 12px;
}

.paving-layer::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 9px;
  width: 14px;
  height: calc(100% - 1px);
  background: var(--layer-side);
  clip-path: polygon(0 0, 100% 10px, 100% 100%, 0 calc(100% - 10px));
  border-right: 1px solid rgba(201,193,178,0.12);
  opacity: 0.95;
}

.paving-layer--pavers {
  --layer-h: 58px;
  --layer-shift: 0px;
  --layer-bg: #2a302d;
  --layer-side: #171d1c;
  --delay: 0.30s;
}

.paving-layer--pavers::before {
  content: "";
  position: absolute;
  inset: 9px 20px auto 20px;
  height: 24px;
  background-image:
    linear-gradient(90deg, rgba(201,193,178,0.38) 1px, transparent 1px),
    linear-gradient(rgba(201,193,178,0.26) 1px, transparent 1px);
  background-size: 46px 24px;
  opacity: 0.86;
}

.paving-layer--sand {
  --layer-h: 46px;
  --layer-shift: 12px;
  --layer-bg: #37332b;
  --layer-side: #201e1a;
  --delay: 0.22s;
}

.paving-layer--gravel {
  --layer-h: 78px;
  --layer-shift: 24px;
  --layer-bg: #1b2525;
  --layer-side: #101716;
  --delay: 0.14s;
}

.paving-layer--gravel::before {
  content: "";
  position: absolute;
  inset: 12px 18px;
  background-image:
    radial-gradient(circle, rgba(201,193,178,0.24) 1px, transparent 2px),
    radial-gradient(circle, rgba(201,193,178,0.12) 1px, transparent 2px);
  background-size: 18px 14px, 26px 20px;
  opacity: 0.8;
}

.paving-layer--geo {
  --layer-h: 24px;
  --layer-shift: 36px;
  --layer-bg: #2b302c;
  --layer-side: #171b19;
  --delay: 0.06s;
}

.paving-layer--geo::before {
  content: "";
  position: absolute;
  inset: 8px 18px;
  background: repeating-linear-gradient(90deg, rgba(201,193,178,0.35) 0 8px, transparent 8px 16px);
  opacity: 0.7;
}

.paving-layer--soil {
  --layer-h: 64px;
  --layer-shift: 48px;
  --layer-bg: #121817;
  --layer-side: #090d0d;
  --delay: 0s;
}

.paving-layer--soil::before {
  content: "";
  position: absolute;
  inset: 14px 18px;
  background-image: repeating-linear-gradient(-12deg, transparent 0 14px, rgba(201,193,178,0.13) 14px 15px);
}

.paving-layer span {
  position: relative;
  z-index: 3;
  transform: skewY(1deg) rotate(1.2deg);
  text-shadow: 0 1px 10px rgba(0,0,0,0.28);
}

.curb-block {
  position: absolute;
  right: 8%;
  bottom: 30px;
  width: 58px;
  height: 286px;
  border: 1px solid rgba(201,193,178,0.48);
  border-radius: 8px 12px 12px 8px;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.08), transparent 35%),
    linear-gradient(180deg, #33362f 0%, #171d1b 100%);
  box-shadow:
    10px 10px 0 rgba(5,8,8,0.42),
    inset 10px 0 0 rgba(255,255,255,0.035);
}

.curb-block::before {
  content: "";
  position: absolute;
  inset: 16px 12px;
  background: repeating-linear-gradient(180deg, transparent 0 26px, rgba(201,193,178,0.22) 26px 27px);
}

.curb-label,
.slope-label {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,0.76);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}

.curb-label {
  right: 8%;
  bottom: 324px;
}

.slope-label {
  top: 44px;
  left: 14%;
  color: #FFA726;
}

.slope-arrow {
  position: absolute;
  z-index: 3;
  top: 38px;
  left: 10%;
  width: min(320px, 58%);
  height: 64px;
  overflow: visible;
}

.slope-arrow path,
.slope-arrow circle {
  fill: none;
  stroke: #FFA726;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  animation: slopeAppear 0.7s ease 0.48s both;
}

.slope-arrow circle {
  fill: #FFA726;
  stroke: none;
}

.scheme-point {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.scheme-point span {
  width: 10px;
  height: 10px;
  border: 2px solid #FFA726;
  border-radius: 999px;
  background: rgba(255, 167, 38, 0.18);
  box-shadow: 0 0 0 5px rgba(255, 167, 38, 0.08);
}

.scheme-point em {
  font-style: normal;
  padding: 5px 7px;
  border: 1px solid rgba(201,193,178,0.18);
  border-radius: 999px;
  background: rgba(8, 12, 12, 0.46);
  backdrop-filter: blur(6px);
}

.scheme-point--compact {
  left: 12%;
  bottom: 84px;
}

.scheme-point--slope {
  left: 47%;
  top: 96px;
}

.scheme-point--curb {
  right: 8%;
  bottom: 174px;
}

.scheme-point--drain {
  right: 20%;
  top: 78px;
}

.finish-node-list {
  padding: 22px 26px;
}

.finish-node-list h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 850;
}

.finish-node-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.finish-node-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.finish-node-item__num {
  color: #FFA726;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.finish-node-item h4 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.finish-node-item p {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  line-height: 1.38;
}

.finish-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(17, 24, 23, 0.82);
}

.finish-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 162, 74, 0.58), transparent);
}

.finish-summary__copy {
  min-width: 0;
}

.finish-summary__text {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
}

.finish-summary__note {
  margin: 5px 0 0;
  max-width: 740px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.36;
}

.finish-summary__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 12px 22px;
  background: rgba(255, 167, 38, 0.06);
  border: 1px solid rgba(255, 167, 38, 0.68);
  border-radius: 8px;
  color: #FFA726;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.finish-summary__btn span {
  transition: transform 0.25s ease;
}

.finish-summary__btn:hover {
  background: rgba(255, 167, 38, 0.12);
  box-shadow: 0 0 24px rgba(255, 167, 38, 0.12);
  transform: translateY(-2px);
}

.finish-summary__btn:hover span {
  transform: translateX(4px);
}

.finish-stepper {
  display: grid;
  grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
  grid-auto-rows: minmax(68px, auto);
  gap: 12px 28px;
}

.finish-step {
  display: contents;
}

.finish-step__tab {
  position: relative;
  grid-column: 1;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 68px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(16, 23, 22, 0.62);
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.finish-step__tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: transparent;
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.finish-step__tab span {
  color: #FFA726;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.finish-step__tab strong {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.finish-step.is-active .finish-step__tab,
.finish-step__tab:hover {
  border-color: rgba(255, 167, 38, 0.42);
  background:
    linear-gradient(180deg, rgba(255,167,38,0.075), rgba(255,255,255,0.014)),
    rgba(18, 25, 24, 0.9);
}

.finish-step.is-active .finish-step__tab {
  transform: translateX(4px);
}

.finish-step.is-active .finish-step__tab::before {
  background: #FFA726;
  box-shadow: 0 0 18px rgba(255, 167, 38, 0.22);
}

.finish-step__panel {
  grid-column: 2;
  grid-row: 1 / span 5;
  min-width: 0;
}

.finish-stage-card {
  position: relative;
  min-height: 390px;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 30px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 24%, rgba(255, 167, 38, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.044), rgba(255,255,255,0.012)),
    rgba(16, 23, 22, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 22px 44px rgba(0,0,0,0.16);
}

.finish-stage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.16;
}

.finish-stage-card__copy,
.stage-visual {
  position: relative;
  z-index: 1;
}

.finish-stage-card__num {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 167, 38, 0.42);
  border-radius: 999px;
  color: #FFA726;
  background: rgba(255, 167, 38, 0.075);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.finish-stage-card h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1.04;
  font-weight: 900;
}

.finish-stage-card__text {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,0.74);
  font-size: 17px;
  line-height: 1.46;
}

.finish-stage-card__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.finish-stage-card__facts div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  background: rgba(255,255,255,0.028);
}

.finish-stage-card__facts span {
  display: block;
  margin-bottom: 8px;
  color: #D8A24A;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finish-stage-card__facts p {
  margin: 0;
  color: rgba(255,255,255,0.70);
  font-size: 14px;
  line-height: 1.38;
}

.stage-visual {
  min-height: 300px;
  align-self: stretch;
  border: 1px solid rgba(201,193,178,0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 20%, rgba(201,193,178,0.08), transparent 34%),
    rgba(8, 13, 13, 0.35);
  overflow: hidden;
}

.stage-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,193,178,0.13);
  border-radius: 12px;
}

.stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255,255,255,0.028) 18px 19px);
  opacity: 0.55;
}

.finish-node-visual {
  display: block;
  padding: 10px;
  border-color: rgba(255,255,255,0.13);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012)),
    rgba(255,255,255,0.028);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 18px 36px rgba(0,0,0,0.18);
}

.finish-node-visual::before,
.finish-node-visual::after {
  display: none;
}

.finish-node-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) saturate(0.96) contrast(1.03);
}

.mini-layers {
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 62px;
  display: flex;
  flex-direction: column;
  transform: skewY(-4deg);
  filter: drop-shadow(16px 18px 20px rgba(0,0,0,0.24));
  z-index: 2;
}

.mini-layers i {
  display: block;
  height: var(--h);
  margin-left: var(--x);
  border: 1px solid rgba(255,255,255,0.13);
  background: var(--bg);
  box-shadow: 10px 8px 0 rgba(0,0,0,0.20);
}

.mini-layers i:nth-child(1) { --h: 36px; --x: 0; --bg: #303630; border-radius: 10px 10px 0 0; }
.mini-layers i:nth-child(2) { --h: 28px; --x: 10px; --bg: #38332b; }
.mini-layers i:nth-child(3) { --h: 52px; --x: 20px; --bg: #1c2525; }
.mini-layers i:nth-child(4) { --h: 18px; --x: 30px; --bg: #30342e; }
.mini-layers i:nth-child(5) { --h: 42px; --x: 40px; --bg: #111716; border-radius: 0 0 10px 10px; }

.visual-dot {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border: 2px solid #FFA726;
  border-radius: 999px;
  background: rgba(255, 167, 38, 0.18);
  box-shadow: 0 0 0 7px rgba(255, 167, 38, 0.075);
}

.visual-dot--a { left: 28%; top: 38%; }
.visual-dot--b { left: 58%; top: 52%; }
.visual-dot--c { left: 42%; bottom: 22%; }

.mini-site {
  position: absolute;
  inset: 52px 42px;
  z-index: 2;
  border: 2px solid rgba(201,193,178,0.45);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(201,193,178,0.18) 49% 51%, transparent 52%),
    linear-gradient(rgba(201,193,178,0.16) 1px, transparent 1px),
    rgba(18,25,24,0.82);
  background-size: auto, 28px 28px, auto;
  box-shadow: inset 0 0 0 8px rgba(255, 167, 38, 0.12);
}

.mini-site i {
  position: absolute;
  border-radius: 999px;
  background: #FFA726;
  box-shadow: 0 0 0 7px rgba(255, 167, 38, 0.08);
}

.mini-site i:nth-child(1) { width: 10px; height: 10px; left: 16%; top: 22%; }
.mini-site i:nth-child(2) { width: 10px; height: 10px; right: 18%; top: 36%; }
.mini-site i:nth-child(3) { width: 10px; height: 10px; left: 45%; bottom: 18%; }

.water-slope {
  position: absolute;
  z-index: 2;
  left: 12%;
  right: 14%;
  top: 42%;
  height: 88px;
  border: 1px solid rgba(201,193,178,0.28);
  border-radius: 14px;
  background: linear-gradient(168deg, #29302d 0 48%, #141b1a 49% 100%);
  transform: skewY(-7deg);
}

.water-slope::before,
.water-slope::after {
  content: "";
  position: absolute;
  height: 2px;
  background: #FFA726;
  border-radius: 2px;
  transform: rotate(11deg);
}

.water-slope::before { width: 42%; left: 16%; top: -28px; }
.water-slope::after { width: 34%; right: 12%; top: -4px; }

.water-drain {
  position: absolute;
  z-index: 3;
  right: 18%;
  bottom: 56px;
  width: 112px;
  height: 34px;
  border: 1px solid rgba(201,193,178,0.48);
  border-radius: 8px;
  background: repeating-linear-gradient(90deg, rgba(201,193,178,0.38) 0 3px, transparent 3px 12px);
}

.area-grid {
  position: absolute;
  z-index: 2;
  inset: 48px 42px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  transform: perspective(520px) rotateX(18deg) rotateZ(-4deg);
}

.area-grid i {
  border: 1px solid rgba(201,193,178,0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent),
    rgba(18, 25, 24, 0.86);
}

.area-grid i:nth-child(1),
.area-grid i:nth-child(4) {
  box-shadow: inset 0 0 0 2px rgba(255, 167, 38, 0.22);
}

.area-grid i:nth-child(2)::before,
.area-grid i:nth-child(3)::before {
  content: "";
  display: block;
  width: 42%;
  height: 2px;
  margin: 28px auto 0;
  background: #D8A24A;
}

.load-map {
  position: absolute;
  z-index: 2;
  inset: 52px 42px;
  border: 1px solid rgba(201,193,178,0.24);
  border-radius: 16px;
  background:
    linear-gradient(rgba(201,193,178,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,193,178,0.10) 1px, transparent 1px),
    rgba(18,25,24,0.86);
  background-size: 30px 30px;
  transform: perspective(520px) rotateX(16deg) rotateZ(-3deg);
  box-shadow: 18px 18px 0 rgba(0,0,0,0.16);
}

.load-map i {
  position: absolute;
  border: 1px solid rgba(216,162,74,0.34);
  border-radius: 12px;
  background: rgba(216,162,74,0.08);
}

.load-map i:nth-child(1) {
  left: 12%;
  top: 16%;
  width: 28%;
  height: 30%;
}

.load-map i:nth-child(2) {
  right: 12%;
  top: 22%;
  width: 26%;
  height: 24%;
}

.load-map i:nth-child(3) {
  left: 28%;
  bottom: 14%;
  width: 44%;
  height: 24%;
}

.load-map span {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 52%;
  height: 2px;
  background: #D8A24A;
  transform: rotate(-8deg);
  border-radius: 2px;
}

.load-map span::before,
.load-map span::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 10px;
  border-top: 2px solid rgba(201,193,178,0.55);
  border-bottom: 2px solid rgba(201,193,178,0.55);
}

.load-map span::before { left: 16%; top: -18px; }
.load-map span::after { right: 18%; top: 13px; }

.pattern-grid {
  position: absolute;
  z-index: 2;
  inset: 52px 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(201,193,178,0.24);
  border-radius: 16px;
  background: rgba(18,25,24,0.86);
  transform: perspective(520px) rotateX(16deg) rotateZ(-3deg);
  box-shadow: 18px 18px 0 rgba(0,0,0,0.16);
}

.pattern-grid i {
  border: 1px solid rgba(201,193,178,0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.04), transparent),
    rgba(11,17,16,0.86);
}

.pattern-grid i:nth-child(3),
.pattern-grid i:nth-child(6) {
  border-color: rgba(216,162,74,0.36);
  background: rgba(216,162,74,0.08);
}

.pattern-grid span {
  position: absolute;
  right: 21%;
  top: 14%;
  bottom: 14%;
  width: 2px;
  background: #D8A24A;
  border-radius: 2px;
  opacity: 0.88;
}

.check-board {
  position: absolute;
  z-index: 2;
  left: 16%;
  right: 16%;
  top: 56px;
  bottom: 52px;
  border: 1px solid rgba(201,193,178,0.28);
  border-radius: 16px;
  background: rgba(18,25,24,0.86);
  box-shadow: 16px 16px 0 rgba(0,0,0,0.16);
}

.check-board i {
  position: absolute;
  left: 28px;
  right: 28px;
  height: 38px;
  border-bottom: 1px solid rgba(201,193,178,0.18);
}

.check-board i::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: #FFA726;
  font-size: 22px;
  font-weight: 900;
}

.check-board i::after {
  content: "";
  position: absolute;
  left: 42px;
  right: 0;
  top: 17px;
  height: 2px;
  background: rgba(201,193,178,0.42);
}

.check-board i:nth-child(1) { top: 32px; }
.check-board i:nth-child(2) { top: 88px; }
.check-board i:nth-child(3) { top: 144px; }

@keyframes layerRise {
  from {
    opacity: 0;
    transform: translateY(18px) scaleY(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@keyframes slopeAppear {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .paving-layer,
  .slope-arrow path,
  .slope-arrow circle {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .finish-node__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .finish-stepper {
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
    gap: 10px 22px;
  }

  .finish-stage-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 26px;
  }

  .stage-visual {
    min-height: 220px;
  }

  .finish-node-visual__image {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .finish-node-section {
    padding: 54px 0 62px;
  }

  .finish-node__inner {
    padding: 0 20px;
    gap: 28px;
  }

  .finish-stepper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .finish-step {
    display: block;
  }

  .finish-step__tab {
    min-height: 58px;
    padding: 14px 16px;
  }

  .finish-step.is-active .finish-step__tab {
    transform: none;
    border-radius: 14px 14px 0 0;
  }

  .finish-step__panel {
    grid-column: auto;
    grid-row: auto;
  }

  .finish-stage-card {
    border-top: 0;
    border-radius: 0 0 14px 14px;
    padding: 22px;
  }

  .finish-stage-card h3 {
    font-size: 28px;
  }

  .finish-stage-card__text {
    font-size: 15px;
  }

  .finish-stage-card__facts {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .stage-visual {
    min-height: 210px;
  }

  .finish-node-visual {
    padding: 8px;
  }

  .finish-node-visual__image {
    min-height: 210px;
  }

  .finish-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
  }
}

@media (max-width: 520px) {
  .finish-node__inner {
    padding: 0 16px;
    gap: 24px;
  }

  .finish-node__title {
    font-size: 28px;
  }

  .finish-node__lead {
    font-size: 15px;
  }

  .finish-step__tab {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    min-height: 54px;
    padding: 13px 14px;
  }

  .finish-step__tab strong {
    font-size: 15px;
  }

  .finish-stage-card {
    padding: 18px;
  }

  .finish-stage-card h3 {
    margin: 14px 0 10px;
    font-size: 25px;
  }

  .finish-stage-card__facts div {
    padding: 13px;
  }

  .stage-visual {
    min-height: 190px;
  }

  .finish-node-visual__image {
    min-height: 190px;
  }

  .mini-site {
    inset: 38px 30px;
  }

  .area-grid {
    inset: 34px 30px;
  }

  .check-board {
    left: 13%;
    right: 13%;
    top: 34px;
    bottom: 34px;
  }

  .check-board i:nth-child(1) { top: 22px; }
  .check-board i:nth-child(2) { top: 72px; }
  .check-board i:nth-child(3) { top: 122px; }

  .water-drain {
    right: 14%;
    bottom: 42px;
    width: 94px;
  }

  .finish-summary {
    padding: 18px;
  }

  .finish-summary__btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   WORKFLOW SECTION — блок 4
   ============================================= */

.workflow-section {
  position: relative;
  padding: 48px 0 48px;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 193, 178, 0.035), transparent 28%),
    radial-gradient(circle at 14% 76%, rgba(216, 162, 74, 0.032), transparent 24%),
    linear-gradient(180deg, #0B1110 0%, #0E1413 54%, #0B1110 100%);
  border-top: 0;
  overflow: hidden;
}

/* Инженерная штриховка */
.workflow-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, 0.018) 28px,
    rgba(255, 255, 255, 0.018) 29px
  );
  pointer-events: none;
}

/* Угловые маркеры */
.workflow-section::after {
  content: '';
  position: absolute;
  inset: 28px;
  background:
    linear-gradient(#D8A24A, #D8A24A) top left    / 22px 1px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) top left    / 1px 22px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) top right   / 22px 1px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) top right   / 1px 22px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) bottom left / 22px 1px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) bottom left / 1px 22px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) bottom right/ 22px 1px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) bottom right/ 1px 22px no-repeat;
  opacity: 0.16;
  pointer-events: none;
}

.workflow-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Шапка ────────────────────────────────────── */
.workflow-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
  gap: 34px;
  align-items: end;
}

.workflow-head__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.workflow-title {
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.workflow-title em {
  font-style: normal;
  color: var(--orange);
}

.workflow-title-line {
  width: 48px;
  height: 2px;
  background: #D8A24A;
  border-radius: 2px;
}

.workflow-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 15px;
  line-height: 1.4;
  padding-bottom: 4px;
}

/* ── Карта workflow — инженерный маршрут ─────── */
.workflow-map {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 1080px);
  margin: 2px auto 0;
  padding: 0;
  isolation: isolate;
}

/* Точечная сетка */
.workflow-map::before {
  content: "";
  position: absolute;
  inset: -18px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

.zones-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 16 / 7.8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012)),
    rgba(255,255,255,0.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 24px 64px rgba(0,0,0,0.30);
}

.zones-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 -34px 60px rgba(0,0,0,0.14);
}

.zones-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8,13,13,0.16), transparent 18%, transparent 82%, rgba(8,13,13,0.16)),
    linear-gradient(180deg, rgba(8,13,13,0.10), transparent 28%, rgba(8,13,13,0.14));
}

.zones-visual__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.01) saturate(0.98) contrast(1.02);
}

.zones-steps-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014)),
    rgba(16, 23, 22, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 12px 30px rgba(0,0,0,0.14);
}

.zones-step-mini {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-right: 1px solid rgba(255,255,255,0.09);
  transition: background 0.22s ease, border-color 0.22s ease;
}

.zones-step-mini:last-child {
  border-right: 0;
}

.zones-step-mini span {
  color: #D8A24A;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.zones-step-mini strong {
  color: #fff;
  font-size: 13.5px;
  line-height: 1.18;
  font-weight: 800;
}

.zones-step-mini:hover {
  background: rgba(255,255,255,0.035);
}

/* ── SVG путь ────────────────────────────────── */
.workflow-svg {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  height: 84px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.wf-path {
  fill: none;
  stroke: #D8A24A;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.58;
  filter: drop-shadow(0 0 5px rgba(216, 162, 74, 0.12));
  transition: filter 0.26s ease-out;
}

.workflow-section.is-visible .wf-path {
  animation: wfPathDraw 1.4s ease forwards 0.15s;
}

@keyframes wfPathDraw {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

.wf-connector {
  stroke: rgba(216, 162, 74, 0.34);
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.wf-dot {
  fill: #FFA726;
  filter: drop-shadow(0 0 4px rgba(255, 167, 38, 0.34));
  opacity: 0;
  transform: scale(0);
  transform-box: fill-box;
  transform-origin: center center;
  transition: filter 0.26s ease-out;
}

.workflow-section.is-visible .wf-dot--1 { animation: wfDotPop 0.38s ease forwards 0.55s; }
.workflow-section.is-visible .wf-dot--2 { animation: wfDotPop 0.38s ease forwards 0.75s; }
.workflow-section.is-visible .wf-dot--3 { animation: wfDotPop 0.38s ease forwards 0.95s; }
.workflow-section.is-visible .wf-dot--4 { animation: wfDotPop 0.38s ease forwards 1.15s; }
.workflow-section.is-visible .wf-dot--5 { animation: wfDotPop 0.38s ease forwards 1.35s; }

@keyframes wfDotPop {
  from { opacity: 0; transform: scale(0); }
  65%  { opacity: 1; transform: scale(1.35); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Шаги ────────────────────────────────────── */
.workflow-step {
  position: relative;
  z-index: 1;
  background: rgba(16, 23, 22, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 0 -8px;
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: transform 0.26s ease-out, border-color 0.26s ease-out, box-shadow 0.26s ease-out, background 0.26s ease-out;
  opacity: 0;
  transform: translateY(20px);
}

/*
 * Позиционирование карточек относительно маршрутной линии.
 *
 * Верхние (01, 03, 05): align-self end + margin-bottom --card-gap
 *   → нижний край карточки на --card-gap выше SVG row 2
 *   → от нижнего края до точки: --card-gap + 50px SVG = 94px
 *
 * Нижние (02, 04): align-self start + margin-top --card-gap
 *   → верхний край карточки на --card-gap ниже SVG row 2
 *   → от точки до верхнего края: 50px SVG + --card-gap = 94px
 *
 * Итог: одинаковое расстояние для всех пяти карточек.
 */

/* Шаги сверху (ряд 1) */
.workflow-step[data-n="1"] { grid-column: 1; grid-row: 1; align-self: end; margin-bottom: var(--card-gap); }
.workflow-step[data-n="3"] { grid-column: 3; grid-row: 1; align-self: end; margin-bottom: var(--card-gap); }
.workflow-step[data-n="5"] {
  grid-column: 5; grid-row: 1; align-self: end; margin-bottom: var(--card-gap);
  border-color: rgba(216, 162, 74, 0.24);
}

/* Шаги снизу (ряд 3) — симметрично от маршрутной линии */
.workflow-step[data-n="2"] { grid-column: 2; grid-row: 3; align-self: start; margin-top: var(--card-gap); }
.workflow-step[data-n="4"] { grid-column: 4; grid-row: 3; align-self: start; margin-top: var(--card-gap); }

/* ── Единая система соединителей ─────────────── */

/* Верхние карточки → линия вниз (длина = --card-gap) */
.workflow-step[data-n="1"]::after,
.workflow-step[data-n="3"]::after,
.workflow-step[data-n="5"]::after {
  content: "";
  position: absolute;
  bottom: calc(-1 * var(--card-gap));
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: var(--card-gap);
  background: linear-gradient(to bottom, rgba(216, 162, 74, 0.40), rgba(216, 162, 74, 0.08));
  box-shadow: 0 0 6px rgba(216, 162, 74, 0.08);
  pointer-events: none;
  transition: background 0.26s ease-out, box-shadow 0.26s ease-out;
}

/* Нижние карточки → линия вверх (длина = --card-gap) */
.workflow-step[data-n="2"]::before,
.workflow-step[data-n="4"]::before {
  content: "";
  position: absolute;
  top: calc(-1 * var(--card-gap));
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: var(--card-gap);
  background: linear-gradient(to top, rgba(216, 162, 74, 0.40), rgba(216, 162, 74, 0.08));
  box-shadow: 0 0 6px rgba(216, 162, 74, 0.08);
  pointer-events: none;
  transition: background 0.26s ease-out, box-shadow 0.26s ease-out;
}

/* ── Hover карточки ───────────────────────────── */
.workflow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 167, 38, 0.46);
  box-shadow: 0 18px 38px rgba(255, 167, 38, 0.075);
  background: rgba(18, 25, 24, 0.92);
}

.workflow-step:hover .wf-step-icon {
  filter: drop-shadow(0 0 8px rgba(255, 167, 38, 0.38));
  opacity: 1;
}

/* Hover — коннекторы ярче */
.workflow-step[data-n="1"]:hover::after,
.workflow-step[data-n="3"]:hover::after,
.workflow-step[data-n="5"]:hover::after {
  background: linear-gradient(to bottom, rgba(255, 167, 38, 0.72), rgba(255, 167, 38, 0.16));
  box-shadow: 0 0 12px rgba(255, 167, 38, 0.18);
}

.workflow-step[data-n="2"]:hover::before,
.workflow-step[data-n="4"]:hover::before {
  background: linear-gradient(to top, rgba(255, 167, 38, 0.72), rgba(255, 167, 38, 0.16));
  box-shadow: 0 0 12px rgba(255, 167, 38, 0.18);
}

/* Hover — точка маршрута подсвечивается */
.workflow-map:has(.workflow-step[data-n="1"]:hover) .wf-dot--1,
.workflow-map:has(.workflow-step[data-n="2"]:hover) .wf-dot--2,
.workflow-map:has(.workflow-step[data-n="3"]:hover) .wf-dot--3,
.workflow-map:has(.workflow-step[data-n="4"]:hover) .wf-dot--4,
.workflow-map:has(.workflow-step[data-n="5"]:hover) .wf-dot--5 {
  filter: drop-shadow(0 0 10px rgba(255, 167, 38, 0.72));
}

/* Hover — лёгкое свечение маршрутной линии */
.workflow-map:has(.workflow-step:hover) .wf-path {
  filter: drop-shadow(0 0 4px rgba(255, 167, 38, 0.22));
}

/* ── Верхняя строка шага ─────────────────────── */
.wf-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.wf-step-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  stroke: #D8A24A;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: filter 0.28s ease;
  opacity: 0.85;
}

.wf-step-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #D8A24A;
  line-height: 1;
}

.workflow-step h3 {
  color: #ffffff;
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 5px;
}

.workflow-step p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 13.5px;
  line-height: 1.36;
  margin: 0;
  flex: 1;
}

.wf-step-result {
  margin-top: 9px;
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12.5px;
  line-height: 1.3;
}

.wf-step-result span {
  color: #D8A24A;
  font-weight: 800;
}

/* ── Scroll-анимация ─────────────────────────── */
.workflow-head > .workflow-head__left,
.workflow-lead {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.workflow-section.is-visible .workflow-head__left {
  opacity: 1; transform: translateY(0); transition-delay: 0s;
}

.workflow-section.is-visible .workflow-lead {
  opacity: 1; transform: translateY(0); transition-delay: 0.10s;
}

.workflow-section.is-visible .workflow-step[data-n="1"] { opacity: 1; transform: translateY(0); transition: opacity .5s ease .12s, transform .5s ease .12s, border-color .26s ease-out, box-shadow .26s ease-out; }
.workflow-section.is-visible .workflow-step[data-n="2"] { opacity: 1; transform: translateY(0); transition: opacity .5s ease .24s, transform .5s ease .24s, border-color .26s ease-out, box-shadow .26s ease-out; }
.workflow-section.is-visible .workflow-step[data-n="3"] { opacity: 1; transform: translateY(0); transition: opacity .5s ease .36s, transform .5s ease .36s, border-color .26s ease-out, box-shadow .26s ease-out; }
.workflow-section.is-visible .workflow-step[data-n="4"] { opacity: 1; transform: translateY(0); transition: opacity .5s ease .48s, transform .5s ease .48s, border-color .26s ease-out, box-shadow .26s ease-out; }
.workflow-section.is-visible .workflow-step[data-n="5"] { opacity: 1; transform: translateY(0); transition: opacity .5s ease .60s, transform .5s ease .60s, border-color .26s ease-out, box-shadow .26s ease-out; }

/* ── Нижняя плашка ───────────────────────────── */
.workflow-summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  margin-top: 0;
  background: rgba(16, 23, 22, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  overflow: hidden;
}

.workflow-summary::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 162, 74, 0.58), transparent);
}

.workflow-summary__text {
  margin: 0;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  line-height: 1.4;
}

.workflow-summary__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 10px 22px;
  background: rgba(255, 167, 38, 0.04);
  border: 1px solid rgba(255, 167, 38, 0.66);
  border-radius: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.workflow-summary__btn span {
  transition: transform 0.25s ease;
}

.workflow-summary__btn:hover {
  background: rgba(255, 167, 38, 0.12);
  box-shadow: 0 0 24px rgba(255, 167, 38, 0.14);
  transform: translateY(-2px);
}

.workflow-summary__btn:hover span {
  transform: translateX(4px);
}

/* ── Адаптив ──────────────────────────────────── */
@media (max-width: 960px) {
  .workflow-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .workflow-map {
    gap: 12px;
    padding-left: 0;
  }

  .zones-visual {
    aspect-ratio: 16 / 8.5;
  }

  .workflow-map::after {
    display: none;
  }

  .zones-steps-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zones-step-mini {
    min-height: 58px;
    border-right: 1px solid rgba(255,255,255,0.09);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .zones-step-mini:nth-child(2n) {
    border-right: 0;
  }

  .zones-step-mini:nth-last-child(-n + 1) {
    border-bottom: 0;
  }

  .zones-step-mini:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .workflow-step {
    margin: 0 0 12px 0 !important;
    align-self: stretch !important;
    padding: 15px 18px;
  }
  /* Убираем все десктопные коннекторы и сброс margin-top */
  .workflow-step[data-n="1"]::after,
  .workflow-step[data-n="3"]::after,
  .workflow-step[data-n="5"]::after,
  .workflow-step[data-n="2"]::before,
  .workflow-step[data-n="4"]::before {
    display: none;
  }
  /* Точка мобильного таймлайна */
  .workflow-step::after {
    content: "";
    display: block;
    position: absolute;
    left: -22px; top: 20px;
    width: 8px; height: 8px;
    background: #FFA726;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 167, 38, 0.6);
    bottom: auto;
    transform: none;
  }
  .workflow-summary {
    margin-top: 0;
  }
  .workflow-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .workflow-section { padding: 52px 0 58px; }
  .workflow-section__inner { padding: 0 20px; gap: 24px; }
  .workflow-title { font-size: 26px; }
  .workflow-summary { padding: 18px; }
  .workflow-summary__btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-head__left,
  .workflow-lead,
  .workflow-step,
  .wf-path,
  .wf-dot {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .wf-path { stroke-dashoffset: 0 !important; }
  .workflow-step { transition: border-color 0.2s ease, box-shadow 0.2s ease !important; }
}


/* ════════════════════════════════════════════════════════════
   5-й блок: Панель контроля объекта
════════════════════════════════════════════════════════════ */

.control-section {
  position: relative;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 18% 24%, rgba(201, 193, 178, 0.035), transparent 30%),
    radial-gradient(circle at 78% 22%, rgba(216, 162, 74, 0.018), transparent 24%),
    linear-gradient(180deg, #0B1110 0%, #0E1413 54%, #0B1110 100%);
  border-top: 0;
  overflow: hidden;
}

/* Диагональные инженерные линии — общий стиль сайта */
.control-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, 0.018) 28px,
    rgba(255, 255, 255, 0.018) 29px
  );
  pointer-events: none;
}

/* Угловые маркеры — повторяем мотив из 4-го блока */
.control-section::after {
  content: '';
  position: absolute;
  inset: 28px;
  background:
    linear-gradient(var(--orange), var(--orange)) top left    / 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) top left    / 1px 20px no-repeat,
    linear-gradient(var(--orange), var(--orange)) top right   / 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) top right   / 1px 20px no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

.control-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Шапка ──────────────────────────────────────── */
.control-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.control-head__left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.control-title {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}

.control-title em {
  font-style: normal;
  color: var(--orange);
}

.control-title-line {
  width: 44px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.control-subtitle {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 4px;
}

/* ── Двухколоночный layout ──────────────────────── */
.control-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.85fr);
  gap: 32px;
  align-items: stretch;
}

/* ── Dashboard (левая) ──────────────────────────── */
.control-dashboard {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014)),
    rgba(16, 23, 22, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  padding: 34px 38px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

/* Фон панели — без внутренней сетки, чистый */
.control-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 167, 38, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Тонкая оранжевая полоска сверху панели */
.control-dashboard::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 167, 38, 0.60), transparent);
  pointer-events: none;
}

.control-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.control-panel-head__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Бейдж «пример статуса» */
.control-demo-badge {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid rgba(216, 162, 74, 0.28);
  border-radius: 4px;
  color: rgba(216, 162, 74, 0.72);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(216, 162, 74, 0.045);
  white-space: nowrap;
}

/* «пример:» перед значением строки бригады */
.control-row-demo {
  color: rgba(255, 255, 255, 0.32);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-right: 2px;
}

.control-panel-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.control-updated {
  color: rgba(216, 162, 74, 0.84);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  font-weight: 800;
  opacity: 0.78;
}

/* ── Строки статуса ─────────────────────────────── */
.control-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.22s ease, box-shadow 0.22s ease;
  border-radius: 0;
}

.control-row:hover {
  background: rgba(255, 167, 38, 0.025);
  box-shadow: inset 3px 0 0 rgba(255, 167, 38, 0.4);
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 -10px;
  border-radius: 6px;
}

.control-row:hover .control-row-label {
  opacity: 1;
}

.control-row-label {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.78;
  transition: opacity 0.22s ease;
}

.control-row-value {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
}

/* Строка риска — слабый оранжевый акцент */
.control-row.is-risk {
  margin: 0 -14px;
  padding-left: 14px;
  padding-right: 14px;
  border-radius: 10px;
  background: rgba(216, 162, 74, 0.052);
  border-top-color: rgba(216, 162, 74, 0.20);
  box-shadow: inset 3px 0 0 rgba(216, 162, 74, 0.36);
}

.control-row.is-risk:hover {
  background: rgba(216, 162, 74, 0.075);
  margin: 0 -14px;
  padding-left: 14px;
  padding-right: 14px;
}

.control-row.is-risk .control-row-label {
  opacity: 1;
}

/* ── Прогресс ────────────────────────────────────── */
.control-progress {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.control-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.control-progress-pct {
  color: var(--orange);
  font-weight: 800;
  font-size: 14px;
}

.control-progress-bar {
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.control-progress-fill {
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, #D8A24A, #E0A92B);
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(216, 162, 74, 0.22);
}

.control-progress-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.4;
}

/* ── Контрольные точки (правая) ─────────────────── */
.control-list {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.012)),
    rgba(16, 23, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 10px 28px 4px;
  isolation: isolate;
}

.control-point {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.22s ease;
}

.control-point:last-child {
  border-bottom: none;
}

.control-point:hover {
  border-bottom-color: rgba(255, 167, 38, 0.22);
}

.control-point:hover .control-point-icon svg {
  filter: drop-shadow(0 0 7px rgba(255, 167, 38, 0.55));
}

.control-point:hover .control-point-body h3 {
  color: #fff;
}

.control-point-icon {
  padding-top: 2px;
  flex-shrink: 0;
}

.control-point-icon svg {
  stroke: #D8A24A;
  transition: filter 0.22s ease;
  opacity: 0.88;
}

.control-point-body h3 {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 17px;
  line-height: 1.15;
  font-weight: 800;
  transition: color 0.22s ease;
}

.control-point-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

/* ── Нижняя плашка ──────────────────────────────── */
.control-summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 32px;
  padding: 22px 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012)),
    rgba(16, 23, 22, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}

.control-summary::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 167, 38, 0.72), transparent);
  pointer-events: none;
}

.control-summary-text {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 15px;
  line-height: 1.5;
}

.control-summary-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 24px;
  background: rgba(255, 167, 38, 0.04);
  border: 1px solid rgba(255, 167, 38, 0.80);
  border-radius: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.control-summary-button span {
  transition: transform 0.24s ease;
}

.control-summary-button:hover {
  background: rgba(255, 167, 38, 0.11);
  box-shadow: 0 0 22px rgba(255, 167, 38, 0.14);
  transform: translateY(-2px);
}

.control-summary-button:hover span {
  transform: translateX(4px);
}

/* ── Scroll-анимация ────────────────────────────── */
.control-head__left,
.control-subtitle,
.control-dashboard,
.control-list,
.control-summary,
.control-row,
.control-point {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.54s ease, transform 0.54s ease;
}

.control-section.is-visible .control-head__left   { opacity: 1; transform: translateY(0); transition-delay: 0.00s; }
.control-section.is-visible .control-subtitle     { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.control-section.is-visible .control-dashboard    { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.control-section.is-visible .control-list         { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
.control-section.is-visible .control-summary      { opacity: 1; transform: translateY(0); transition-delay: 0.58s; }

/* Строки dashboard — каскад.
 * Дочерний порядок внутри .control-dashboard:
 *   1 — .control-panel-head
 *   2 — .control-row (Бригада)
 *   3 — .control-row (Фронт работ)
 *   4 — .control-row (Статус)
 *   5 — .control-row (Риск)
 *   6 — .control-row (Следующий шаг)
 *   7 — .control-progress
 */
.control-section.is-visible .control-row:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.control-section.is-visible .control-row:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }
.control-section.is-visible .control-row:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }
.control-section.is-visible .control-row:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.48s; }
.control-section.is-visible .control-row:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.56s; }

/* Пункты справа — каскад */
.control-section.is-visible .control-point:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.28s; }
.control-section.is-visible .control-point:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.36s; }
.control-section.is-visible .control-point:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.44s; }
.control-section.is-visible .control-point:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.52s; }
.control-section.is-visible .control-point:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.60s; }

/* ── Адаптив ────────────────────────────────────── */
@media (max-width: 1060px) {
  .control-head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  .control-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 720px) {
  .control-section { padding: 64px 0 72px; }
  .control-inner   { padding: 0 20px; }
  .control-title   { font-size: 28px; line-height: 1.1; }
  .control-subtitle { font-size: 15px; }
  .control-dashboard { padding: 24px 20px; }
  .control-panel-title { font-size: 18px; }

  .control-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .control-row:hover {
    margin: 0 -4px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .control-row.is-risk:hover {
    margin: 0 -14px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .control-list { padding: 8px 18px 4px; }

  .control-summary {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
  }
  .control-summary-button {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .control-head__left,
  .control-subtitle,
  .control-dashboard,
  .control-list,
  .control-summary,
  .control-row,
  .control-point {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ════════════════════════════════════════════════════════════
   6-й блок: Протокол выхода на объект
════════════════════════════════════════════════════════════ */

.terms-section {
  position: relative;
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 167, 38, 0.05), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(255, 167, 38, 0.04), transparent 24%),
    linear-gradient(180deg, #05090c 0%, #070b0e 55%, #05090c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

/* Диагональные инженерные линии — единая система сайта */
.terms-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, 0.018) 28px,
    rgba(255, 255, 255, 0.018) 29px
  );
  pointer-events: none;
}

/* Угловые маркеры */
.terms-section::after {
  content: '';
  position: absolute;
  inset: 28px;
  background:
    linear-gradient(var(--orange), var(--orange)) top left    / 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) top left    / 1px 20px no-repeat,
    linear-gradient(var(--orange), var(--orange)) top right   / 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) top right   / 1px 20px no-repeat,
    linear-gradient(var(--orange), var(--orange)) bottom left / 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) bottom left / 1px 20px no-repeat,
    linear-gradient(var(--orange), var(--orange)) bottom right/ 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) bottom right/ 1px 20px no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.terms-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Шапка блока ────────────────────────────────── */
.terms-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 50px;
}

.terms-head__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.terms-title {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text);
}

.terms-title em {
  font-style: normal;
  color: var(--orange);
}

.terms-title-line {
  width: 44px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.terms-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.5;
  padding-bottom: 4px;
}

/* ── Документ-протокол ──────────────────────────── */
.terms-doc {
  position: relative;
  background: rgba(8, 13, 17, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26);
  isolation: isolate;

  /* Единая колоночная сетка документа */
  --doc-cols: 48px 1fr 1.15fr 1.15fr;
}

/* Оранжевая полоска сверху */
.terms-doc::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 167, 38, 0.62), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ── Шапка документа ────────────────────────────── */
.terms-doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.terms-doc-name {
  color: rgba(255, 255, 255, 0.70);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.terms-doc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.terms-doc-tags span {
  display: inline-block;
  padding: 3px 9px;
  border: 1px solid rgba(255, 167, 38, 0.24);
  border-radius: 4px;
  color: rgba(255, 167, 38, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(255, 167, 38, 0.04);
  white-space: nowrap;
}

/* ── Заголовки колонок ──────────────────────────── */
.terms-doc-cols {
  display: grid;
  grid-template-columns: var(--doc-cols);
  gap: 0;
  padding: 10px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.018);
}

.terms-col-hd {
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 0;
}

.terms-col-hd--num { /* пустая колонка под номер */ }

.terms-col-hd--why {
  color: rgba(255, 167, 38, 0.52);
}

/* ── Строки документа ───────────────────────────── */
.terms-row {
  display: grid;
  grid-template-columns: var(--doc-cols);
  gap: 0;
  padding: 16px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
  transition: background 0.20s ease;
}

.terms-row:hover {
  background: rgba(255, 255, 255, 0.022);
}

.terms-row:hover .terms-row-num {
  opacity: 1;
}

/* Акцентная строка «Ответственность» */
.terms-row.is-accent {
  background: rgba(255, 167, 38, 0.038);
  border-top-color: rgba(255, 167, 38, 0.14);
  border-bottom: 1px solid rgba(255, 167, 38, 0.14);
  box-shadow: inset 4px 0 0 rgba(255, 167, 38, 0.38);
}

.terms-row.is-accent:hover {
  background: rgba(255, 167, 38, 0.055);
}

.terms-row.is-accent .terms-row-num {
  opacity: 1;
  color: var(--orange);
}

.terms-row-num {
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0.55;
  transition: opacity 0.20s ease;
  line-height: 1;
}

.terms-row-fix strong {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  padding-right: 16px;
}

.terms-row-check {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13.5px;
  line-height: 1.4;
  padding-right: 16px;
}

.terms-row-why {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  line-height: 1.4;
  font-style: normal;
}

/* ── Нижняя строка с CTA (внутри документа) ────── */
.terms-doc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.018);
  position: relative;
}

/* Слабая оранжевая полоска снизу документа */
.terms-doc-footer::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 167, 38, 0.30), transparent);
  pointer-events: none;
}

.terms-doc-footer-text {
  margin: 0;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.60);
  font-size: 14px;
  line-height: 1.5;
}

.terms-doc-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  flex-shrink: 0;
}

.terms-doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: rgba(255, 167, 38, 0.06);
  border: 1px solid rgba(255, 167, 38, 0.82);
  border-radius: 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.terms-doc-btn span {
  transition: transform 0.24s ease;
}

.terms-doc-btn:hover {
  background: rgba(255, 167, 38, 0.12);
  box-shadow: 0 0 22px rgba(255, 167, 38, 0.14);
  transform: translateY(-2px);
}

.terms-doc-btn:hover span {
  transform: translateX(4px);
}

.terms-doc-hint {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
  max-width: 240px;
}

/* ── Scroll-анимация ────────────────────────────── */
.terms-head__left,
.terms-subtitle,
.terms-doc,
.terms-row,
.terms-doc-footer {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.50s ease, transform 0.50s ease;
}

.terms-section.is-visible .terms-head__left { opacity: 1; transform: translateY(0); transition-delay: 0.00s; }
.terms-section.is-visible .terms-subtitle   { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.terms-section.is-visible .terms-doc        { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.terms-section.is-visible .terms-doc-footer { opacity: 1; transform: translateY(0); transition-delay: 0.68s; }

/* Строки каскадом.
 * Дочерний порядок внутри .terms-doc:
 *   1 — .terms-doc-header
 *   2 — .terms-doc-cols
 *   3 — .terms-row (01)
 *   4 — .terms-row (02)
 *   5 — .terms-row (03)
 *   6 — .terms-row (04 is-accent)
 *   7 — .terms-row (05)
 *   8 — .terms-row (06)
 *   9 — .terms-doc-footer
 */
.terms-section.is-visible .terms-row:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.22s; }
.terms-section.is-visible .terms-row:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.30s; }
.terms-section.is-visible .terms-row:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.38s; }
.terms-section.is-visible .terms-row:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.46s; }
.terms-section.is-visible .terms-row:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.54s; }
.terms-section.is-visible .terms-row:nth-child(8) { opacity: 1; transform: translateY(0); transition-delay: 0.62s; }

/* ── Адаптив ────────────────────────────────────── */
@media (max-width: 1060px) {
  .terms-head {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 36px;
  }
  .terms-doc {
    --doc-cols: 40px 1fr 1fr;
  }
  .terms-col-hd--why,
  .terms-row-why {
    display: none;
  }
}

@media (max-width: 720px) {
  .terms-section  { padding: 60px 0 68px; }
  .terms-inner    { padding: 0 20px; }
  .terms-title    { font-size: 26px; }
  .terms-subtitle { font-size: 14px; }

  .terms-doc {
    --doc-cols: 36px 1fr;
    border-radius: 14px;
  }
  .terms-doc-header { padding: 14px 18px; flex-wrap: wrap; gap: 10px; }
  .terms-doc-cols   { display: none; }
  .terms-col-hd--why, .terms-row-why  { display: none; }
  .terms-row-check  { display: none; }
  .terms-row        { padding: 13px 18px; }

  .terms-doc-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
  }
  .terms-doc-footer-cta { align-items: stretch; width: 100%; }
  .terms-doc-btn        { justify-content: center; }
  .terms-doc-hint       { text-align: left; max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .terms-head__left,
  .terms-subtitle,
  .terms-doc,
  .terms-row,
  .terms-doc-footer {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════════════════
   SEO-блок — укладка плитки и брусчатки в Москве и МО
════════════════════════════════════════════════════════════ */

.seo-service-section {
  position: relative;
  padding: 62px 0 64px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 167, 38, 0.055), transparent 30%),
    linear-gradient(180deg, #060a0e 0%, #05090d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.seo-service__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 64px;
}

.seo-service__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.seo-service__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.seo-service__title em {
  color: var(--orange);
  font-style: normal;
}

.seo-service__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.62;
}

.seo-service__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.56fr);
  gap: 30px;
  align-items: start;
}

.seo-service__text {
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(8, 14, 18, 0.72);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.20);
}

.seo-service__text p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 15.5px;
  line-height: 1.68;
}

.seo-service__text p + p {
  margin-top: 14px;
}

.seo-service-card {
  padding: 26px;
  border: 1px solid rgba(255, 167, 38, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 167, 38, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(9, 15, 18, 0.90);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 26px 70px rgba(0, 0, 0, 0.26);
}

.seo-service-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 21px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.seo-service-card > p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13.5px;
  line-height: 1.5;
}

.seo-service-factors {
  display: grid;
  gap: 8px;
}

.seo-service-factor {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.seo-service-factor span {
  color: var(--orange);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.seo-service-factor strong {
  min-width: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.22;
  font-weight: 800;
}

.seo-service-cta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(255, 167, 38, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 167, 38, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(8, 13, 17, 0.92);
}

.seo-service-cta strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.seo-service-cta p {
  margin: 6px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.52;
}

.seo-service-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--orange);
  color: #16100a;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 16px 38px rgba(255, 167, 38, 0.20);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.seo-service-cta__btn span {
  transition: transform 0.22s ease;
}

.seo-service-cta__btn:hover {
  transform: translateY(-1px);
  background: #ffb13a;
  box-shadow: 0 20px 48px rgba(255, 167, 38, 0.28);
}

.seo-service-cta__btn:hover span {
  transform: translateX(3px);
}

@media (max-width: 1020px) {
  .seo-service-section {
    padding: 54px 0 58px;
  }

  .seo-service__inner {
    padding: 0 32px;
  }

  .seo-service__head,
  .seo-service__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .seo-service__lead {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .seo-service-section {
    padding: 46px 0 50px;
  }

  .seo-service__inner {
    padding: 0 20px;
  }

  .seo-service__title {
    font-size: 28px;
  }

  .seo-service__text,
  .seo-service-card {
    padding: 18px;
    border-radius: 20px;
  }

  .seo-service__text p {
    font-size: 14.5px;
    line-height: 1.62;
  }

  .seo-service-factors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .seo-service-factor {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 7px;
    min-height: 0;
    padding: 8px;
    align-items: start;
  }

  .seo-service-factor strong {
    font-size: 13px;
  }

  .seo-service-cta {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
    padding: 20px;
  }

  .seo-service-cta__btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-service-cta__btn,
  .seo-service-cta__btn span {
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════════════════
   FAQ — вопросы по укладке плитки и брусчатки
════════════════════════════════════════════════════════════ */

.faq-section {
  position: relative;
  padding: 54px 0 58px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 167, 38, 0.06), transparent 30%),
    radial-gradient(circle at 82% 84%, rgba(255, 167, 38, 0.045), transparent 32%),
    linear-gradient(180deg, #060a0e 0%, #05090d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 76%, transparent 100%);
}

.faq-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 64px;
}

.faq-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 24px;
}

.faq-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.faq-title em {
  color: var(--orange);
  font-style: normal;
}

.faq-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.62;
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.028)),
    rgba(9, 14, 18, 0.88);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.faq-item.is-open {
  border-color: rgba(255, 167, 38, 0.38);
  background:
    linear-gradient(180deg, rgba(255, 167, 38, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(9, 14, 18, 0.92);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  padding: 16px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.28;
  text-align: left;
  cursor: pointer;
}

.faq-question:focus-visible {
  outline: 2px solid rgba(255, 167, 38, 0.72);
  outline-offset: -4px;
}

.faq-toggle {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 167, 38, 0.40);
  border-radius: 50%;
  background: rgba(255, 167, 38, 0.08);
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer__inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 16px;
  max-width: 900px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .faq-section {
    padding: 48px 0 52px;
  }

  .faq-inner {
    padding: 0 32px;
  }

  .faq-head {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .faq-lead {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .faq-section {
    padding: 42px 0 46px;
  }

  .faq-inner {
    padding: 0 20px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    min-height: 56px;
    padding: 15px 16px;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 14px;
    font-size: 15px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
  }

  .faq-answer p {
    padding: 0 16px 15px;
    font-size: 14px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-answer,
  .faq-toggle::before,
  .faq-toggle::after {
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════════════════
   7-й блок: Финальный CTA — заявка
════════════════════════════════════════════════════════════ */

.request-section {
  position: relative;
  padding: 68px 0 88px;
  background:
    radial-gradient(circle at 68% 44%, rgba(255, 167, 38, 0.07), transparent 36%),
    radial-gradient(circle at 16% 82%, rgba(255, 167, 38, 0.04), transparent 28%),
    linear-gradient(180deg, #06090d 0%, #060a0e 55%, #050810 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

/* Диагональные инженерные линии */
.request-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(255, 255, 255, 0.018) 28px,
    rgba(255, 255, 255, 0.018) 29px
  );
  pointer-events: none;
}

/* Угловые маркеры */
.request-section::after {
  content: '';
  position: absolute;
  inset: 28px;
  background:
    linear-gradient(var(--orange), var(--orange)) top left    / 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) top left    / 1px 20px no-repeat,
    linear-gradient(var(--orange), var(--orange)) top right   / 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) top right   / 1px 20px no-repeat,
    linear-gradient(var(--orange), var(--orange)) bottom left / 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) bottom left / 1px 20px no-repeat,
    linear-gradient(var(--orange), var(--orange)) bottom right/ 20px 1px no-repeat,
    linear-gradient(var(--orange), var(--orange)) bottom right/ 1px 20px no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.request-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 80px;
  align-items: start;
}

/* ── Левая колонка: оффер ────────────────────────── */
.request-offer {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 6px;
}

.request-title {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text);
}

.request-title em {
  font-style: normal;
  color: var(--orange);
}

.request-lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
}

.request-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.request-points li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.45;
}

.request-points li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 1px;
  background: var(--orange);
  margin-top: 10px;
}

.request-closing {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.58;
  border-left: 2px solid rgba(255, 167, 38, 0.46);
  padding-left: 14px;
  max-width: 450px;
}

/* ── Правая колонка: форм-панель ─────────────────── */
.request-panel {
  position: relative;
  background: rgba(8, 13, 17, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 90px rgba(255, 167, 38, 0.07),
    0 36px 80px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

/* Оранжевая черта сверху панели */
.request-panel::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 167, 38, 0.70), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Слабый оранжевый glow внутри панели сверху */
.request-panel::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 200px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 167, 38, 0.05), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.request-panel-head {
  position: relative;
  z-index: 1;
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.request-panel-title {
  color: rgba(255, 255, 255, 0.90);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
}

.request-panel-sub {
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
  line-height: 1.4;
}

/* ── Форма ──────────────────────────────────────── */
.request-form {
  position: relative;
  z-index: 1;
  padding: 20px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.request-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.request-label {
  color: rgba(255, 255, 255, 0.38);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.request-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.038);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-family: inherit;
  line-height: 1.4;
  padding: 10px 13px;
  outline: none;
  transition: border-color 0.20s ease, background 0.20s ease;
}

.request-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.request-input:focus {
  border-color: rgba(255, 167, 38, 0.50);
  background: rgba(255, 167, 38, 0.028);
}

.request-textarea {
  resize: none;
  min-height: 76px;
}

/* Зона вложения */
.request-attach {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.022);
  border: 1px dashed rgba(255, 255, 255, 0.10);
  border-radius: 8px;
}

.request-attach-icon {
  color: rgba(255, 255, 255, 0.26);
  flex-shrink: 0;
  line-height: 0;
}

.request-attach-text {
  color: rgba(255, 255, 255, 0.46);
  font-size: 12.5px;
  line-height: 1.35;
}

/* Кнопка */
.request-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 2px;
  padding: 13px 24px;
  background: rgba(255, 167, 38, 0.09);
  border: 1px solid rgba(255, 167, 38, 0.84);
  border-radius: 10px;
  color: var(--orange);
  font-size: 14.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.24s ease, box-shadow 0.24s ease, transform 0.22s ease;
}

.request-btn span {
  transition: transform 0.24s ease;
}

.request-btn:hover {
  background: rgba(255, 167, 38, 0.16);
  box-shadow: 0 0 30px rgba(255, 167, 38, 0.18);
  transform: translateY(-1px);
}

.request-btn:hover span {
  transform: translateX(4px);
}

/* ── Чекбокс согласия ───────────────────────────────────── */
.request-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 2px;
}

.request-consent__check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--orange);
  cursor: pointer;
}

.request-consent__text {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.request-consent__link {
  color: rgba(255, 167, 38, 0.72);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.request-consent__link:hover {
  color: var(--orange);
}

.request-disclaimer {
  margin: 0;
  color: rgba(255, 255, 255, 0.40);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

/* ── Мессенджеры ────────────────────────────────── */
.request-contacts {
  position: relative;
  z-index: 1;
  padding: 14px 28px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.request-contacts-label {
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.request-contacts-list {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.request-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.20s ease, color 0.20s ease, border-color 0.20s ease;
  white-space: nowrap;
}

.request-contact:hover {
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.80);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ── Scroll-анимация ────────────────────────────── */
.request-offer,
.request-panel {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.request-section.is-visible .request-offer { opacity: 1; transform: translateY(0); transition-delay: 0.00s; }
.request-section.is-visible .request-panel { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }

/* ── Адаптив ────────────────────────────────────── */
@media (max-width: 1200px) {
  .request-inner {
    grid-template-columns: 1fr 0.90fr;
    gap: 52px;
  }
}

@media (max-width: 1000px) {
  .request-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 40px;
  }
}

@media (max-width: 860px) {
  .request-section { padding: 60px 0 72px; }
  .request-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 0 32px;
  }
  .request-title   { font-size: clamp(28px, 6vw, 38px); }
  .request-lead    { max-width: none; font-size: 15px; }
  .request-closing { max-width: none; }
}

@media (max-width: 560px) {
  .request-section { padding: 52px 0 64px; }
  .request-inner   { padding: 0 20px; }
  .request-title   { font-size: 26px; }
  .request-panel-head,
  .request-form,
  .request-contacts { padding-left: 18px; padding-right: 18px; }
  .request-contacts-list { flex-direction: column; }
  .request-contact { width: fit-content; }
}

@media (prefers-reduced-motion: reduce) {
  .request-offer,
  .request-panel {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════════════════════════
   Футер
════════════════════════════════════════════════════════════ */

.site-footer {
  background: #040709;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Основная строка ────────────────────────────── */
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.9fr;
  gap: 56px;
  padding: 52px 0 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* ── Левая колонка ──────────────────────────────── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.50);
  font-size: 13px;
  line-height: 1.4;
}

.footer-scope {
  color: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  line-height: 1.55;
  margin-top: 4px;
}

/* ── Средняя колонка ────────────────────────────── */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col-label {
  color: rgba(255, 255, 255, 0.28);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-phone {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.20s ease;
}

.footer-phone:hover {
  color: var(--orange);
}

.footer-messengers {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-messenger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.038);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.20s ease, color 0.20s ease, border-color 0.20s ease;
  white-space: nowrap;
}

.footer-messenger:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-contact-note {
  color: rgba(255, 255, 255, 0.26);
  font-size: 11.5px;
  line-height: 1.4;
  margin-top: 2px;
}

/* ── Правая колонка ─────────────────────────────── */
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.20s ease;
}

.footer-cta-link span {
  transition: transform 0.20s ease;
}

.footer-cta-link:hover {
  opacity: 0.80;
}

.footer-cta-link:hover span {
  transform: translateX(3px);
}

/* ── Нижняя строка ──────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 20px;
  flex-wrap: wrap;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.34);
  font-size: 12px;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.22);
  font-size: 11.5px;
  line-height: 1.4;
}

/* ── Адаптив ────────────────────────────────────── */
@media (max-width: 1000px) {
  .footer-inner { padding: 0 40px; }
  .footer-main  { gap: 36px; }
}

@media (max-width: 760px) {
  .footer-inner { padding: 0 24px; }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 0 28px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0 18px;
  }
}


/* ════════════════════════════════════════════════════════════
   МОБИЛЬНАЯ АДАПТАЦИЯ — финальный блок
   Идёт последним — перекрывает все предыдущие медиа-правила.
════════════════════════════════════════════════════════════ */

/* ── Глобал: нет горизонтального скролла ────────────────── */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* ════════════════════════════════════════
   768px — планшет / широкий телефон
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Hero: убрать большой десктопный отступ контейнера ── */
  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Hero-main: убрать вертикальные отступы десктопа ──── */
  .hero-main {
    padding-top: 0;
    padding-bottom: 48px;
  }

  /* ── Hero-content: оффсет от шапки ──────────────────── */
  .hero-content {
    padding-top: 86px;
    max-width: 100%;
  }

  /* ── Hero-features: сбросить margin-right из 1180px ──── */
  .hero-features {
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* ── Hero-title: крупнее, нормальный перенос ──────────── */
  .hero-title {
    font-size: 44px !important;
    line-height: 0.97 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 18px !important;
  }

  /* ── Hero CTA: адаптивная кнопка ─────────────────────── */
  .hero-cta {
    width: 100%;
    height: auto !important;
    min-height: 50px;
    padding: 14px 20px !important;
    font-size: 15px !important;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
  }

  /* ── Шапка: компактная ────────────────────────────────── */
  .header {
    min-height: 56px;
  }

  /* ── Block 2 (problems): отступы ─────────────────────── */
  .problems-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Block 3 (object-check): отступы ─────────────────── */
  .object-check-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Block 3 (finish-node): отступы ──────────────────── */
  .finish-node__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .finish-node__title {
    font-size: clamp(26px, 7vw, 34px);
  }

  /* ── Block 4 (workflow): отступы ─────────────────────── */
  .workflow-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .workflow-title {
    font-size: clamp(26px, 7vw, 34px);
  }

  /* ── Block 5 (control): отступы ──────────────────────── */
  .control-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .control-title {
    font-size: clamp(24px, 6.5vw, 34px);
  }

  /* ── Block 6 (terms): отступы ────────────────────────── */
  .terms-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .terms-title {
    font-size: clamp(24px, 6.5vw, 32px);
  }

  /* ── Block 7 (request): отступы ──────────────────────── */
  .request-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .request-title {
    font-size: clamp(26px, 7vw, 38px);
  }

  /* ── Footer: отступы ─────────────────────────────────── */
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}


/* ════════════════════════════════════════
   480px — телефон (390–430px)
════════════════════════════════════════ */
@media (max-width: 480px) {

  /* ── Hero-контейнер ──────────────────────────────────── */
  .hero-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ── Hero-main: сброс всех padding ───────────────────── */
  .hero-main {
    padding: 0 0 40px 0;
  }

  /* ── Hero-content: оффсет от шапки ──────────────────── */
  .hero-content {
    padding-top: 80px;
  }

  /* ── Hero-title: меньше ───────────────────────────────── */
  .hero-title {
    font-size: 36px !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 16px !important;
  }

  /* ── Hero-subtitle ────────────────────────────────────── */
  .hero-subtitle {
    font-size: 15px !important;
    margin-bottom: 16px !important;
  }

  /* ── Hero CTA ─────────────────────────────────────────── */
  .hero-cta {
    font-size: 14px !important;
    padding: 13px 16px !important;
  }

  /* ── Hero features: нормальная высота карточек ────────── */
  .feature-card {
    min-height: 62px !important;
    padding: 12px !important;
  }

  .hero-proof-content strong {
    font-size: 15px;
  }

  .hero-proof-content span {
    font-size: 12px;
    line-height: 1.34;
  }

  /* ── Все секции: единый отступ 16px ──────────────────── */
  .problems-section__inner,
  .object-check-inner,
  .finish-node__inner,
  .workflow-section__inner,
  .control-inner,
  .terms-inner,
  .request-inner,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ── Block 2 (problems) ───────────────────────────────── */
  .problems-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .problems-title {
    font-size: clamp(26px, 7.5vw, 34px);
  }

  /* ── Block 3 (object-check) ───────────────────────────── */
  .object-check-section {
    padding: 56px 0 64px;
  }

  .object-check-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .object-checklist-card,
  .object-form-card {
    padding: 22px 18px;
  }

  /* ── Block 3 (finish-node) ────────────────────────────── */
  .finish-node-section {
    padding: 56px 0 64px;
  }

  .finish-node__title {
    font-size: clamp(24px, 7vw, 30px);
  }

  /* Нижняя плашка finish-node: кнопка full width */
  .finish-summary {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }

  .finish-summary__btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* ── Block 4 (workflow) ───────────────────────────────── */
  .workflow-section {
    padding: 56px 0 64px;
  }

  .workflow-title {
    font-size: clamp(24px, 7vw, 30px);
  }

  .workflow-map {
    padding-left: 0;
  }

  .zones-visual {
    border-radius: 18px;
    aspect-ratio: 16 / 9;
  }

  .zones-steps-strip {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .zones-step-mini,
  .zones-step-mini:nth-child(2n),
  .zones-step-mini:last-child {
    grid-column: auto;
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .zones-step-mini:last-child {
    border-bottom: 0;
  }

  /* Нижняя плашка workflow */
  .workflow-summary {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }

  .workflow-summary__btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* ── Block 5 (control) ────────────────────────────────── */
  .control-section {
    padding: 56px 0 64px;
  }

  .control-title {
    font-size: clamp(22px, 6.5vw, 28px);
  }

  .control-dashboard {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .control-panel-title {
    font-size: 17px;
  }

  .control-list {
    padding: 6px 14px 2px;
    border-radius: 16px;
  }

  /* Нижняя плашка control */
  .control-summary {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }

  .control-summary-button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* ── Block 6 (terms): таблица → стек карточек ─────────── */
  .terms-section {
    padding: 56px 0 64px;
  }

  .terms-title {
    font-size: clamp(22px, 6.5vw, 28px);
  }

  /* Документ: убрать сетку колонок */
  .terms-doc {
    --doc-cols: 1fr;
    border-radius: 14px;
  }

  /* Заголовки колонок: скрыть */
  .terms-doc-cols {
    display: none;
  }

  /* Каждая строка → вертикальный блок */
  .terms-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px 18px;
    align-items: flex-start;
  }

  /* Номер строки: всегда виден */
  .terms-row-num {
    opacity: 1;
    font-size: 11px;
    letter-spacing: 0.1em;
    margin-bottom: 3px;
  }

  /* Что фиксируем */
  .terms-row-fix strong {
    font-size: 13.5px;
    padding-right: 0;
    display: block;
  }

  /* Что проверяем: показать обратно */
  .terms-row-check {
    display: block !important;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.58);
    padding-right: 0;
    line-height: 1.4;
  }

  /* Зачем генподрядчику: показать обратно */
  .terms-row-why {
    display: block !important;
    font-size: 12px;
    color: rgba(255, 167, 38, 0.72);
    padding-right: 0;
    line-height: 1.4;
  }

  /* Кнопка в подвале документа */
  .terms-doc-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 18px;
  }

  .terms-doc-footer-cta {
    align-items: stretch;
    width: 100%;
  }

  .terms-doc-btn {
    justify-content: center;
    min-height: 48px;
  }

  .terms-doc-hint {
    text-align: left;
    max-width: none;
  }

  /* ── Block 7 (request): форма ─────────────────────────── */
  .request-section {
    padding: 52px 0 64px;
  }

  .request-title {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .request-panel-head,
  .request-form,
  .request-contacts {
    padding-left: 16px;
    padding-right: 16px;
  }

  .request-btn {
    min-height: 48px;
    font-size: 14px;
  }

  .request-contacts-list {
    flex-direction: column;
    gap: 8px;
  }

  .request-contact {
    width: 100%;
    justify-content: flex-start;
  }

  /* ── Footer ───────────────────────────────────────────── */
  .site-footer {
    padding-bottom: 4px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0 28px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0 20px;
  }

  /* ── Все ключевые кнопки: min 48px ───────────────────── */
  .object-form__submit,
  .finish-summary__btn,
  .workflow-summary__btn,
  .control-summary-button,
  .terms-doc-btn,
  .request-btn {
    min-height: 48px;
  }

  /* ── Декоративные угловые маркеры: скрыть на мобильном ─ */
  .finish-node-section::after,
  .workflow-section::after,
  .control-section::after,
  .terms-section::after,
  .request-section::after {
    display: none;
  }
}


/* ════════════════════════════════════════════════════════════
   ШАПКА — мобильная перестройка в две строки
   Перекрывает все предыдущие правила шапки.
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Двухстрочная сетка: [логотип | мессенджеры] / [телефон] */
  .header {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-rows: auto auto !important;
    grid-template-areas:
      "logo  actions"
      "phone phone" !important;
    gap: 6px 12px !important;
    padding: 10px 20px 12px !important;
    height: auto !important;
    min-height: auto !important;
    align-items: center !important;
  }

  /* ── Логотип: левый верх ─────────────────────────────── */
  .logo.logo-block {
    grid-area: logo !important;
    align-self: center;
  }

  .logo__main {
    font-size: 26px !important;
    letter-spacing: 1.5px !important;
    white-space: nowrap !important;
  }

  /* ── Мессенджеры: правый верх ────────────────────────── */
  .messengers {
    grid-area: actions !important;
    display: flex !important;
    gap: 8px !important;
    justify-self: end;
    align-self: center;
  }

  .messenger {
    width: 44px !important;
    height: 44px !important;
  }

  /* ── Телефон: отдельная строка снизу ─────────────────── */
  .header__phone {
    grid-area: phone !important;
    justify-self: start !important;
    align-self: center !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    white-space: nowrap !important;
  }

  /* ── Скрыть: разделитель, дескриптор, плитки ─────────── */
  .header__divider,
  .header__descriptor,
  .header__spacer {
    display: none !important;
  }

  /* ── Hero-content: оффсет под двухстрочную шапку ─────── */
  /* Высота шапки: 10px top + 26px logo + 6px gap + 20px phone + 12px bottom ≈ 74px */
  .hero-content {
    padding-top: 94px !important;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 16px 12px !important;
  }

  .logo__main {
    font-size: 24px !important;
  }

  .hero-content {
    padding-top: 90px !important;
  }
}

/* ── Мобилка: осветлить фон в герое ───────────────────── */
@media (max-width: 768px) {
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(3, 7, 10, 0.55) 0%,
      rgba(3, 7, 10, 0.30) 40%,
      rgba(3, 7, 10, 0.15) 100%
    ) !important;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(3, 7, 10, 0.40) 0%,
      transparent 25%,
      transparent 65%,
      rgba(3, 7, 10, 0.50) 100%
    ) !important;
  }
}

/* ════════════════════════════════════════════════════════════
   TERMS SECTION — протокол старта без табличной подачи
════════════════════════════════════════════════════════════ */
.terms-section {
  background:
    radial-gradient(circle at 12% 82%, rgba(201, 193, 178, 0.026), transparent 24%),
    radial-gradient(circle at 86% 88%, rgba(216, 162, 74, 0.024), transparent 22%),
    linear-gradient(180deg, #0B1110 0%, #0E1413 54%, #0B1110 100%);
  border-top: 0;
}

.terms-section::after {
  opacity: 0.10;
  background:
    linear-gradient(#D8A24A, #D8A24A) bottom left / 20px 1px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) bottom left / 1px 20px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) bottom right / 20px 1px no-repeat,
    linear-gradient(#D8A24A, #D8A24A) bottom right / 1px 20px no-repeat;
}

.terms-subtitle {
  max-width: 560px;
}

.terms-protocol {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.014)),
    rgba(16, 23, 22, 0.82);
  border-color: rgba(255,255,255,0.12);
}

.terms-protocol__main {
  min-width: 0;
}

.terms-protocol__head {
  margin-bottom: 18px;
}

.terms-protocol__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(216, 162, 74, 0.34);
  border-radius: 999px;
  color: #D8A24A;
  background: rgba(216, 162, 74, 0.055);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terms-protocol__head h3 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.start-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.start-check {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.034), rgba(255,255,255,0.012)),
    rgba(255,255,255,0.028);
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.start-check:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 162, 74, 0.30);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.044), rgba(255,255,255,0.014)),
    rgba(216, 162, 74, 0.022);
}

.start-check__num {
  color: #D8A24A;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.start-check__body strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.94);
  font-size: 16px;
  line-height: 1.16;
  font-weight: 900;
}

.start-check__body p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.42;
}

.start-check__tag {
  position: absolute;
  right: 14px;
  top: 14px;
  padding: 3px 7px;
  border: 1px solid rgba(216, 162, 74, 0.20);
  border-radius: 999px;
  color: rgba(216, 162, 74, 0.72);
  background: rgba(216, 162, 74, 0.045);
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.terms-benefits {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(216, 162, 74, 0.055), rgba(255,255,255,0.014)),
    rgba(255,255,255,0.026);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.terms-benefits h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.terms-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-benefits li {
  position: relative;
  padding-left: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 13.5px;
  line-height: 1.35;
}

.terms-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(216, 162, 74, 0.78);
  border-radius: 50%;
  background: rgba(216, 162, 74, 0.16);
}

.terms-benefits__outcome {
  margin: auto 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.74);
  font-size: 13.5px;
  line-height: 1.45;
}

.terms-benefits__outcome span {
  color: #D8A24A;
  font-weight: 900;
}

.terms-protocol .terms-doc-footer {
  grid-column: 1 / -1;
  margin: 2px -24px -24px;
  padding: 20px 24px;
}

.terms-protocol .terms-doc-footer-text {
  max-width: 720px;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}

@media (max-width: 980px) {
  .terms-protocol {
    grid-template-columns: 1fr;
  }

  .terms-benefits {
    padding: 20px;
  }
}

@media (max-width: 720px) {
  .terms-protocol {
    padding: 18px;
    border-radius: 18px;
  }

  .start-checklist {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .start-check {
    min-height: 0;
    padding: 14px;
  }

  .start-check__tag {
    position: static;
    grid-column: 2;
    justify-self: start;
    margin-top: 2px;
  }

  .terms-protocol .terms-doc-footer {
    margin: 4px -18px -18px;
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .terms-protocol__head h3 {
    font-size: 22px;
  }

  .start-check {
    grid-template-columns: 34px 1fr;
  }

  .terms-benefits h3 {
    font-size: 18px;
  }
}

/* Общий спокойный фон секций без диагональной штриховки */
.quick-calc-section::before,
.problems-section::before,
.finish-node-section::before,
.workflow-section::before,
.control-section::before,
.terms-section::before,
.request-section::before {
  background: none !important;
  background-image: none !important;
}

/* ════════════════════════════════════════════════════════════
   TERRITORIES SECTION — с какими территориями работаем
════════════════════════════════════════════════════════════ */
.territories-section {
  position: relative;
  padding: 92px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 193, 178, 0.032), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(216, 162, 74, 0.026), transparent 24%),
    linear-gradient(180deg, #0B1110 0%, #0E1413 54%, #0B1110 100%);
}

.territories-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 34px,
    rgba(255,255,255,0.010) 34px,
    rgba(255,255,255,0.010) 35px
  );
}

.territories-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.territories-head {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: end;
}

.territories-head__left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.territories-title {
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.territories-title em {
  color: var(--orange);
  font-style: normal;
}

.territories-title-line {
  width: 46px;
  height: 2px;
  background: #D8A24A;
  border-radius: 999px;
}

.territories-lead {
  margin: 0;
  max-width: 580px;
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  line-height: 1.5;
}

.territories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.territory-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(216,162,74,0.045), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.046), rgba(255,255,255,0.014)),
    rgba(16, 23, 22, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 20px 56px rgba(0,0,0,0.18);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.territory-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,162,74,0.40), transparent);
  opacity: 0.72;
}

.territory-card:hover {
  transform: translateY(-3px);
  border-color: rgba(216,162,74,0.30);
  background:
    radial-gradient(circle at 90% 10%, rgba(216,162,74,0.062), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.056), rgba(255,255,255,0.016)),
    rgba(16, 23, 22, 0.88);
}

.territory-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  margin-bottom: 18px;
}

.territory-card__num {
  color: #D8A24A;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.territory-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.018em;
}

.territory-card p {
  margin: 0;
  color: rgba(255,255,255,0.66);
  font-size: 14px;
  line-height: 1.5;
}

.territory-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.territory-card__tags span,
.territories-filter__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  color: rgba(255,255,255,0.62);
  background: rgba(255,255,255,0.028);
  font-size: 11.5px;
  line-height: 1;
  font-weight: 700;
}

.territories-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.012)),
    rgba(16, 23, 22, 0.72);
}

.territories-filter p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 850;
}

.territories-filter__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.territories-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.044), rgba(255,255,255,0.014)),
    rgba(16, 23, 22, 0.80);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.territories-cta__copy {
  max-width: 820px;
}

.territories-cta__title {
  margin: 0;
  color: rgba(255,255,255,0.90);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

.territories-cta__note {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.58);
  font-size: 13.5px;
  line-height: 1.45;
}

.territories-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  color: #101010;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-size: 14px;
  line-height: 1;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(255, 167, 38, 0.16);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  white-space: nowrap;
}

.territories-cta__btn span {
  transition: transform 0.24s ease;
}

.territories-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255, 167, 38, 0.22);
}

.territories-cta__btn:hover span {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .territories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .territories-section {
    padding: 70px 0 78px;
  }

  .territories-section__inner {
    padding: 0 32px;
  }

  .territories-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .territories-filter,
  .territories-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .territories-filter__tags {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .territories-section {
    padding: 56px 0 64px;
  }

  .territories-section__inner {
    padding: 0 16px;
    gap: 24px;
  }

  .territories-title {
    font-size: clamp(25px, 7vw, 32px);
  }

  .territories-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .territory-card {
    min-height: 0;
    padding: 20px;
    border-radius: 18px;
  }

  .territories-cta {
    padding: 20px;
  }

  .territories-cta__btn {
    width: 100%;
  }
}

/* ════════════════════════════════════════════════════════════
   TERRITORIES SECTION — карта территорий
════════════════════════════════════════════════════════════ */
.territories-map-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(216,162,74,0.050), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.048), rgba(255,255,255,0.015)),
    rgba(16, 23, 22, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 26px 72px rgba(0,0,0,0.26);
}

.territories-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(216,162,74,0.22), transparent) top / 100% 1px no-repeat,
    radial-gradient(circle at 22% 72%, rgba(201,193,178,0.045), transparent 26%);
  opacity: 0.86;
}

.territories-map-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.territories-map-card__head span {
  color: #D8A24A;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.territories-map-card__head p {
  max-width: 520px;
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 13.5px;
  line-height: 1.42;
  text-align: right;
}

.territories-map-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(280px, 0.32fr);
  gap: 16px;
  align-items: stretch;
}

.territories-map {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 24%, rgba(216,162,74,0.060), transparent 28%),
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(135deg, #111918 0%, #0D1312 54%, #101716 100%);
  background-size: auto, 34px 34px, 34px 34px, auto;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -44px 70px rgba(0,0,0,0.20);
}

.territories-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,193,178,0.10);
  border-radius: 20px;
  pointer-events: none;
}

.territories-map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 52%, transparent 0 46%, rgba(5,9,9,0.28) 100%),
    repeating-linear-gradient(-28deg, transparent 0 28px, rgba(255,255,255,0.014) 28px 29px);
  opacity: 0.82;
}

.map-zone,
.map-line,
.territory-marker {
  position: absolute;
  z-index: 2;
}

.map-zone {
  border: 1px solid rgba(255,255,255,0.105);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.052), rgba(255,255,255,0.016)),
    rgba(255,255,255,0.035);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 18px 36px rgba(0,0,0,0.18);
}

.map-building {
  left: 34%;
  top: 12%;
  width: 29%;
  height: 24%;
  border-color: rgba(201,193,178,0.18);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, rgba(201,193,178,0.075), rgba(255,255,255,0.018)),
    rgba(20, 27, 26, 0.88);
}

.map-parking {
  left: 7%;
  top: 16%;
  width: 27%;
  height: 31%;
  background:
    repeating-linear-gradient(90deg, transparent 0 21px, rgba(201,193,178,0.18) 21px 22px),
    linear-gradient(180deg, rgba(255,255,255,0.048), rgba(255,255,255,0.014)),
    rgba(18, 26, 25, 0.82);
}

.map-road {
  left: 17%;
  top: 54%;
  width: 59%;
  height: 15%;
  border-radius: 999px;
  transform: rotate(-7deg);
  border-color: rgba(216,162,74,0.16);
  background:
    linear-gradient(90deg, rgba(216,162,74,0.10), rgba(255,255,255,0.032) 38%, rgba(216,162,74,0.075)),
    rgba(12, 18, 17, 0.90);
}

.map-entry {
  left: 5%;
  bottom: 12%;
  width: 22%;
  height: 16%;
  border-color: rgba(216,162,74,0.18);
  background:
    linear-gradient(135deg, rgba(216,162,74,0.10), rgba(255,255,255,0.018)),
    rgba(18, 25, 24, 0.82);
}

.map-logistics {
  right: 7%;
  top: 17%;
  width: 24%;
  height: 29%;
  background:
    repeating-linear-gradient(-45deg, transparent 0 16px, rgba(255,255,255,0.035) 16px 17px),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)),
    rgba(17, 24, 23, 0.84);
}

.map-yard {
  left: 34%;
  top: 42%;
  width: 28%;
  height: 30%;
  background:
    radial-gradient(circle at 30% 35%, rgba(201,193,178,0.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.044), rgba(255,255,255,0.012)),
    rgba(18, 25, 24, 0.80);
}

.map-private {
  right: 8%;
  bottom: 8%;
  width: 27%;
  height: 25%;
  border-color: rgba(201,193,178,0.16);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.032), transparent 48%),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(201,193,178,0.10) 22px 23px),
    rgba(18, 25, 24, 0.82);
}

.map-line {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(216,162,74,0.78), rgba(216,162,74,0.26), transparent);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(216,162,74,0.12);
}

.map-line--main {
  left: 14%;
  top: 57%;
  width: 68%;
  transform: rotate(-7deg);
}

.map-line--inner {
  left: 45%;
  top: 26%;
  width: 34%;
  transform: rotate(54deg);
  opacity: 0.54;
}

.territory-marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 180px;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.070), rgba(255,255,255,0.024)),
    rgba(9, 15, 14, 0.76);
  color: rgba(255,255,255,0.88);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 12px 24px rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
}

.territory-marker span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #101010;
  background: linear-gradient(135deg, #D8A24A, #E0A92B);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}

.territory-marker strong {
  min-width: 0;
  color: #fff;
  font-size: 12.5px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.territory-marker--parking { left: 10%; top: 21%; }
.territory-marker--roads { left: 42%; top: 57%; }
.territory-marker--entry { left: 8%; bottom: 17%; }
.territory-marker--commercial { left: 42%; top: 16%; }
.territory-marker--yard { left: 42%; top: 43%; }
.territory-marker--private { right: 10%; bottom: 18%; }

.territories-legend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  align-content: stretch;
}

.territories-legend div {
  min-height: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.042), rgba(255,255,255,0.012)),
    rgba(10, 17, 16, 0.56);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.territories-legend span {
  display: inline-block;
  margin-right: 8px;
  color: #D8A24A;
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.territories-legend strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 850;
}

.territories-legend p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.57);
  font-size: 12.5px;
  line-height: 1.28;
}

@media (max-width: 1120px) {
  .territories-map-layout {
    grid-template-columns: 1fr;
  }

  .territories-map {
    min-height: 420px;
  }

  .territories-legend {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .territories-map-card {
    padding: 18px;
    border-radius: 24px;
  }

  .territories-map-card__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .territories-map-card__head p {
    max-width: none;
    text-align: left;
  }

  .territories-map {
    min-height: 390px;
  }

  .territories-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .territories-map-card {
    padding: 14px;
    border-radius: 20px;
  }

  .territories-map {
    min-height: 330px;
    border-radius: 18px;
  }

  .map-building { left: 34%; top: 12%; width: 35%; height: 23%; }
  .map-parking { left: 6%; top: 16%; width: 31%; height: 28%; }
  .map-road { left: 12%; top: 54%; width: 68%; height: 14%; }
  .map-entry { left: 6%; bottom: 11%; width: 28%; height: 15%; }
  .map-logistics { right: 6%; top: 19%; width: 25%; height: 25%; }
  .map-yard { left: 32%; top: 42%; width: 32%; height: 27%; }
  .map-private { right: 7%; bottom: 8%; width: 33%; height: 24%; }

  .territory-marker {
    padding: 5px;
    gap: 0;
  }

  .territory-marker span {
    width: 27px;
    height: 27px;
  }

  .territory-marker strong {
    display: none;
  }

  .territory-marker--parking { left: 11%; top: 22%; }
  .territory-marker--roads { left: 45%; top: 56%; }
  .territory-marker--entry { left: 9%; bottom: 17%; }
  .territory-marker--commercial { left: 44%; top: 17%; }
  .territory-marker--yard { left: 43%; top: 43%; }
  .territory-marker--private { right: 12%; bottom: 17%; }

  .territories-legend {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .territories-legend div {
    padding: 12px 13px;
  }
}

/* TERRITORIES SECTION — готовый визуал вместо схемы */
.territories-map-card {
  padding: 18px;
}

.territories-map-layout {
  grid-template-columns: minmax(0, 0.69fr) minmax(276px, 0.31fr);
}

.territories-visual {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 32vw, 446px);
  min-height: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  background: rgba(10, 17, 16, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.07),
    0 22px 58px rgba(0,0,0,0.26);
}

.territories-visual__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.98) contrast(1.03) brightness(0.98);
  will-change: opacity;
}

.territories-visual__image--primary {
  opacity: 1;
  animation: territoriesImageFadePrimary 18s ease-in-out infinite;
}

.territories-visual__image--secondary {
  opacity: 0;
  animation: territoriesImageFadeSecondary 18s ease-in-out infinite;
  object-position: center center;
}

.territories-visual__image--tertiary {
  opacity: 0;
  animation: territoriesImageFadeTertiary 18s ease-in-out infinite;
  object-position: center center;
}

@keyframes territoriesImageFadePrimary {
  0%, 27% {
    opacity: 1;
  }

  36%, 91% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes territoriesImageFadeSecondary {
  0%, 27% {
    opacity: 0;
  }

  36%, 61% {
    opacity: 1;
  }

  70%, 100% {
    opacity: 0;
  }
}

@keyframes territoriesImageFadeTertiary {
  0%, 61% {
    opacity: 0;
  }

  70%, 91% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .territories-visual {
    height: clamp(340px, 46vw, 430px);
  }
}

@media (max-width: 900px) {
  .territories-map-card {
    padding: 16px;
  }

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

  .territories-visual {
    border-radius: 22px;
    height: clamp(300px, 52vw, 390px);
  }
}

@media (max-width: 620px) {
  .territories-map-card {
    padding: 12px;
  }

  .territories-visual {
    height: clamp(220px, 58vw, 320px);
    border-radius: 18px;
  }

  .territories-visual__image {
    object-position: center center;
  }
}

/* Единый фон и чистые стыки секций после первого экрана */
.quick-calc-section,
.problems-section,
.finish-node-section,
.workflow-section,
.control-section,
.terms-section,
.territories-section,
.seo-service-section,
.faq-section,
.request-section {
  background: #0B1110 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.quick-calc-section::before,
.quick-calc-section::after,
.problems-section::before,
.problems-section::after,
.finish-node-section::before,
.finish-node-section::after,
.workflow-section::before,
.workflow-section::after,
.control-section::before,
.control-section::after,
.terms-section::before,
.terms-section::after,
.territories-section::before,
.territories-section::after,
.seo-service-section::before,
.seo-service-section::after,
.faq-section::before,
.faq-section::after,
.request-section::before,
.request-section::after {
  display: none !important;
  background: none !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-footer {
  background: #0B1110;
  border-top: 0;
}

/* Единая типографика всех блоков после первого экрана */
.quick-calc-section,
.problems-section,
.finish-node-section,
.workflow-section,
.control-section,
.terms-section,
.territories-section,
.seo-service-section,
.faq-section,
.request-section,
.site-footer,
.quick-calc-section *,
.problems-section *,
.finish-node-section *,
.workflow-section *,
.control-section *,
.terms-section *,
.territories-section *,
.seo-service-section *,
.faq-section *,
.request-section *,
.site-footer * {
  font-family: var(--font);
}

.quick-calc-section input,
.quick-calc-section textarea,
.quick-calc-section button,
.seo-service-section button,
.faq-section button,
.request-section input,
.request-section textarea,
.request-section button {
  font-family: var(--font);
}

/* Единая шкала размеров по типам элементов после первого экрана */
.quick-calc__title,
.problems-title,
.finish-node__title,
.workflow-title,
.control-title,
.terms-title,
.territories-title,
.seo-service__title,
.faq-title,
.request-title {
  font-size: clamp(28px, 2.85vw, 40px) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
}

.quick-calc__lead,
.problems-lead,
.finish-node__lead,
.workflow-lead,
.control-subtitle,
.terms-subtitle,
.territories-lead,
.seo-service__lead,
.faq-lead,
.request-lead {
  font-size: 15.5px !important;
  line-height: 1.58 !important;
}

.quick-calc__panel-title,
.problem-card__content h3,
.finish-stage-card h3,
.control-panel-title,
.terms-protocol__head h3,
.terms-benefits h3,
.seo-service-card h3,
.request-panel-title {
  font-size: 20px !important;
  line-height: 1.16 !important;
  font-weight: 900 !important;
  letter-spacing: -0.01em !important;
}

.quick-calc-result h3,
.control-row-label,
.start-check__body strong,
.territories-legend strong,
.seo-service-factor strong,
.request-points li {
  font-size: 15px !important;
  line-height: 1.35 !important;
}

.quick-calc__eyebrow,
.quick-calc-result__num,
.quick-calc-label,
.finish-stage-card__num,
.wf-step-label,
.control-row-kicker,
.terms-protocol__eyebrow,
.start-check__num,
.start-check__tag,
.territories-filter__tags span,
.seo-service-factor span,
.request-label,
.request-contacts-label {
  font-size: 11px !important;
  line-height: 1 !important;
}

@media (max-width: 720px) {
  .quick-calc__title,
  .problems-title,
  .finish-node__title,
  .workflow-title,
  .control-title,
  .terms-title,
  .territories-title,
  .seo-service__title,
  .faq-title,
  .request-title {
    font-size: clamp(22px, 6.4vw, 28px) !important;
    line-height: 1.1 !important;
  }

  .quick-calc__lead,
  .problems-lead,
  .finish-node__lead,
  .workflow-lead,
  .control-subtitle,
  .terms-subtitle,
  .territories-lead,
  .seo-service__lead,
  .faq-lead,
  .request-lead {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
  }

  .quick-calc__panel-title,
  .problem-card__content h3,
  .finish-stage-card h3,
  .control-panel-title,
  .terms-protocol__head h3,
  .terms-benefits h3,
  .seo-service-card h3,
  .request-panel-title {
    font-size: 18px !important;
  }
}
