/*!
Theme Name: fast-vid
Author: школа aroken.ru
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fast-vid

ЭТОТ ФАЙЛ НЕ УДАЛЯТЬ И КОММЕНТАРИИ НЕ СТИРАТЬ
*/
.maplibregl-ctrl-attrib-inner {
    display: none;
}
body {
    background-color: #fafafa !important;
}
:root {
  --blue: #3ea3dc;
  --blue-soft: rgba(62, 163, 220, 0.17);
  --orange: #ef7d17;
  --surface: #fafafa;
  --white-soft: rgba(255, 255, 255, 0.85);
  --ink: #030303;
  --muted: rgba(0, 0, 0, 0.7);
  --line: #c9c9c9;
  --container: 1390px;
  --page-pad: 25px;
  --section-y: 84px;
  --section-gap: 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Roboto Condensed", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.preloading {
  overflow: hidden;
}

main {
  overflow: clip;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-light {
  background: var(--surface);
}

section[id] {
  scroll-margin-top: 88px;
}

main#top {
  scroll-margin-top: 88px;
}

.hero-content,
.section-heading,
.location-media,
.logistics-layout > img,
.infra-copy,
.partners-copy,
.contacts-copy {
  --reveal-order: 0;
}

.hero-media,
.split-content,
.zones-panel,
.masterplan-media,
.contact-form {
  --reveal-order: 1;
}

.benefit-card:nth-child(1),
.infra-card:nth-child(1),
.partner-list article:nth-child(1) {
  --reveal-order: 1;
}

.benefit-card:nth-child(2),
.infra-card:nth-child(2),
.partner-list article:nth-child(2) {
  --reveal-order: 2;
}

.benefit-card:nth-child(3),
.infra-card:nth-child(3),
.partner-list article:nth-child(3) {
  --reveal-order: 3;
}

.benefit-card:nth-child(4),
.infra-card:nth-child(4) {
  --reveal-order: 4;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--surface);
  opacity: 1;
  visibility: visible;
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 620ms;
}

body:not(.preloading) .preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  display: grid;
  justify-items: center;
  gap: 22px;
  transform: translateY(-8px);
}

.preloader-logo {
  width: min(260px, 70vw);
  height: auto;
  animation: preloaderLogo 1400ms ease-in-out infinite;
}

.preloader-track {
  width: min(240px, 60vw);
  height: 2px;
  overflow: hidden;
  background: rgba(62, 163, 220, 0.18);
}

.preloader-track span {
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  animation: preloaderTrack 1200ms cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 75ms);
  will-change: opacity, transform;
}

main > section.reveal-item {
  transform: translateY(38px);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes preloaderLogo {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(0.985);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes preloaderTrack {
  0% {
    transform: translateX(-115%);
  }

  100% {
    transform: translateX(260%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .preloader-logo,
  .preloader-track span {
    animation: none;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(100%, 1440px);
  min-height: 82px;
  margin: 0 auto;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  width: 225px;
  flex: 0 0 225px;
}

.logo-link img {
  width: 225px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  padding: 4px;
  background: var(--white-soft);
}

.main-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  color: #000;
  font-size: 14px;
  line-height: 1.55;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--blue);
  color: #fff;
  outline: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.contact-link,
.button {
  position: relative;
  isolation: isolate;
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 12px 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-link::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.22) 45%, transparent 70%);
  transform: translateX(-110%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.contact-link,
.button-orange {
  background: var(--orange);
}

.button-blue {
  background: var(--blue);
}

.contact-link:hover,
.button:hover,
.contact-link:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.06);
  outline: 1px solid rgba(255, 255, 255, 0.42);
  outline-offset: 2px;
}

.contact-link:hover::before,
.button:hover::before,
.contact-link:focus-visible::before,
.button:focus-visible::before {
  transform: translateX(110%);
}

.contact-link:hover,
.contact-link:focus-visible,
.button-orange:hover,
.button-orange:focus-visible {
  box-shadow: 0 14px 28px rgba(239, 125, 23, 0.24), 0 4px 10px rgba(0, 0, 0, 0.12);
}

.button-blue:hover,
.button-blue:focus-visible {
  box-shadow: 0 14px 28px rgba(62, 163, 220, 0.24), 0 4px 10px rgba(0, 0, 0, 0.12);
}

.contact-link:active,
.button:active {
  transform: translateY(0);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.14);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--blue);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.hero {
  width: min(100%, 1440px);
  min-height: auto;
  margin: 0 auto;
  padding: 57px var(--page-pad) 34px;
  display: grid;
  grid-template-columns: minmax(0, 646px) minmax(420px, 720px);
  align-items: start;
  gap: 49px;
}

.hero-content {
  padding-top: 0;
}

.hero-title {
  margin: 0;
  font-size: 70px;
  line-height: 75px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 648px;
  margin: 22px 0 0;
  font-size: 24px;
  line-height: 1.12;
}

.hero-actions {
  margin-top: 47px;
  display: flex;
  gap: 31px;
  flex-wrap: wrap;
}

.hero-media,
.location-media,
.masterplan-media {
  position: relative;
  overflow: hidden;
}

.hero-media {
  height: 625px;
  margin-top: -57px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-card {
  position: absolute;
  right: 65px;
  bottom: 34px;
  display: flex;
  gap: 15px;
  padding: 4px 15px;
  background: var(--white-soft);
  align-items: center;
}

.stats-card span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  padding: 6px 10px;
  color: #000;
  font-size: 20px;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.stats-card .blue {
  border-color: var(--blue);
}

.stats-card .orange {
  border-color: var(--orange);
}

.benefits {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: var(--section-gap) var(--page-pad) var(--section-y);
  text-align: center;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.benefits h1,
.section-heading h2,
.split-content h2,
.infrastructure h2,
.partners h2,
.contacts h2 {
  margin: 0;
  font-size: 55px;
  line-height: 55px;
  font-weight: 700;
  text-transform: uppercase;
}

.benefits h1 {
  font-size: 45px;
  line-height: 75px;
}

.benefit-grid {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 23px;
}

.benefit-card {
  min-height: 250px;
  border: 1.5px solid var(--blue);
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.benefit-card img {
  width: 165px;
  height: 114px;
  object-fit: cover;
}

.benefit-card h2 {
  min-height: 56px;
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.16;
  font-weight: 400;
}

.split-section {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 684px;
}

.live-map,
.live-map iframe {
  width: 100%;
  height: 684px;
}

.live-map {
  background: #dbe8ef;
}

.live-map iframe {
  display: block;
  border: 0;
}

.image-label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: var(--white-soft);
  font-size: 25px;
  line-height: 35px;
  font-weight: 700;
  text-transform: uppercase;
}

.map-stats {
  left: 66px;
  right: auto;
  bottom: 46px;
}

.split-content {
  padding: var(--section-y) 27px var(--section-y) 47px;
  align-self: center;
}

.split-content p:not(.eyebrow) {
  max-width: 646px;
  margin: 28px 0 18px;
  color: var(--muted);
  font-size: 24px;
  line-height: 1.16;
}

.check-list {
  margin: 0 0 21px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 24px;
  padding-left: 24px;
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.15;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.logistics {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: var(--section-y) var(--page-pad);
}

.section-heading {
  margin-bottom: 24px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 507px;
  align-items: start;
  gap: 40px;
}

.two-column > p {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.logistics-layout {
  display: grid;
  grid-template-columns: minmax(0, 859px) minmax(360px, 507px);
  gap: 24px;
  align-items: stretch;
}

.logistics-layout > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.zones-panel {
  min-height: 430px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  border: 1px solid var(--blue);
  background: var(--blue-soft);
}

.zones-panel > div {
  padding: 19px 16px 16px;
}

.zones-panel > div + div {
  border-top: 1px solid var(--blue);
}

.zones-panel h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}

.blue-title {
  color: var(--blue);
}

.orange-title {
  color: var(--orange);
}

.check-list.compact {
  margin: 0;
}

.check-list.compact li {
  margin: 11px 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.16;
}

.check-list.compact li::before {
  background: var(--orange);
}

.zones-panel > div:first-child .check-list.compact li::before {
  background: var(--blue);
}

.cta-band {
  width: min(100%, 1440px);
  margin: 0 auto;
  min-height: 248px;
  padding: 54px var(--page-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 42px;
  color: #fff;
  font-size: 65px;
  line-height: 75px;
  font-weight: 700;
  text-transform: uppercase;
}

.infrastructure {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: var(--section-y) var(--page-pad) var(--section-gap);
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(420px, 1fr);
  gap: 23px;
  align-items: start;
}

.infra-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 270px));
  gap: 10px;
}

.infra-card {
  min-height: 124px;
  padding: 12px 16px;
  background: var(--orange);
  border: 1.5px solid var(--orange);
  color: #fff;
}

.infra-card img {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  object-fit: cover;
}

.infra-card h3 {
  margin: 10px 0 0;
  max-width: 228px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 400;
}

.masterplan-media {
  align-self: end;
  margin-top: 25px;
}

.masterplan-media img {
  width: 100%;
  height: 376px;
  object-fit: cover;
}

.partners {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: var(--section-gap) var(--page-pad) var(--section-y);
  display: grid;
  grid-template-columns: minmax(360px, 620px) minmax(420px, 716px);
  gap: 54px;
  overflow: hidden;
}

.partners::after {
  content: "";
  position: absolute;
  right: -176px;
  top: 127px;
  width: 597px;
  height: 597px;
  background: url("./assets/partners-decoration.svg") center / contain no-repeat;
  transform: rotate(-178.81deg);
  pointer-events: none;
}

.partners-copy {
  position: relative;
  z-index: 1;
}

.partners-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.33;
}

.partners h2 {
  max-width: 425px;
}

.partner-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.partner-list article {
  min-height: 121px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.partner-list h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 400;
}

.partner-list p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}

.contacts {
  position: relative;
  width: min(100%, 1440px);
  min-height: 594px;
  margin: 0 auto;
  padding: var(--section-y) 61px var(--section-y) 22px;
  display: grid;
  grid-template-columns: minmax(360px, 646px) 506px;
  gap: 205px;
  background: var(--blue);
  color: #fff;
  overflow: hidden;
}

.contacts::before {
  content: "";
  position: absolute;
  left: -176px;
  bottom: -157px;
  width: 751px;
  height: 418px;
  background: url("./assets/contacts-decoration.svg") center / contain no-repeat;
  pointer-events: none;
}

.contacts-copy {
  position: relative;
  z-index: 1;
  padding-top: 18px;
}

.contacts .eyebrow {
  color: var(--orange);
}

.contacts h2 {
  color: #fff;
  font-size: 45px;
  line-height: 75px;
}

.contacts-copy p:not(.eyebrow) {
  max-width: 646px;
  margin: 7px 0 0;
  font-size: 24px;
  line-height: 1.16;
}

.contact-form {
  position: relative;
  z-index: 1;
  min-height: 444px;
  padding: 24px 29px;
  border: 1px solid #fff;
}

.contact-form label {
  display: block;
  margin-bottom: 10px;
}

.contact-form span {
  display: block;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 21px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.55);
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  outline: 0;
}

.contact-form input {
  height: 49px;
  padding: 0 8px;
}

.contact-form textarea {
  min-height: 157px;
  resize: vertical;
  padding: 10px 8px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.87);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.26);
}

.contact-form .button {
  width: 100%;
  min-height: 40px;
  margin-top: 5px;
  padding: 8px 20px;
}

.form-status {
  min-height: 18px;
  margin: 8px 0 0;
  font-size: 14px;
}

@media (min-width: 1181px) and (max-width: 1375px) {
  :root {
    --section-y: 72px;
    --section-gap: 36px;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
    grid-template-columns: minmax(430px, 1fr) minmax(0, clamp(600px, 50vw, 680px));
    gap: clamp(26px, 3vw, 40px);
  }

  .hero-title {
    font-size: clamp(56px, 4.65vw, 62px);
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 480px;
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 38px;
  }

  .hero-media {
    height: clamp(520px, 45vw, 590px);
    margin-top: -42px;
  }

  .hero-media .stats-card {
    right: 28px;
    left: 28px;
    bottom: 28px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-media .stats-card span {
    font-size: 18px;
  }
}

@media (max-width: 1180px) {
  :root {
    --page-pad: 24px;
    --section-y: 72px;
    --section-gap: 36px;
  }

  .header-inner {
    gap: 16px;
  }

  .logo-link,
  .logo-link img {
    width: 190px;
  }

  .logo-link {
    flex-basis: 190px;
  }

  .main-nav a {
    padding: 10px 13px;
  }

  .contact-link {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding-top: 48px;
  }

  .hero-title {
    font-size: 55px;
    line-height: 60px;
  }

  .hero-media {
    height: 560px;
    margin-top: -48px;
  }

  .stats-card {
    right: 20px;
    left: 20px;
    bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .two-column,
  .logistics-layout,
  .infrastructure,
  .partners,
  .contacts {
    grid-template-columns: 1fr;
  }

  .contacts {
    gap: 34px;
    padding-right: 22px;
  }

  .contact-form {
    max-width: 640px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-y: 68px;
    --section-gap: 34px;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 72px;
    padding: 11px 18px;
  }

  .logo-link,
  .logo-link img {
    width: 178px;
  }

  .logo-link {
    flex-basis: 178px;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 31;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    z-index: 30;
    display: none;
    padding: 14px 18px 18px;
    background: rgba(250, 250, 250, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    justify-content: flex-start;
    font-size: 18px;
  }

  .header-actions {
    display: none;
  }

  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 34px var(--page-pad) 0;
  }

  .hero-title {
    font-size: 46px;
    line-height: 50px;
  }

  .hero-copy {
    font-size: 22px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-media {
    height: 500px;
    margin: 12px calc(var(--page-pad) * -1) 0;
  }

  .benefits h1,
  .section-heading h2,
  .split-content h2,
  .infrastructure h2,
  .partners h2,
  .contacts h2 {
    font-size: 42px;
    line-height: 46px;
  }

  .benefits h1 {
    margin-bottom: 20px;
  }

  .live-map,
  .live-map iframe {
    height: 520px;
  }

  .split-content {
    padding: var(--section-y) var(--page-pad);
  }

  .logistics-layout > img,
  .masterplan-media img {
    height: 360px;
  }

  .cta-band h2 {
    font-size: 46px;
    line-height: 54px;
  }

  .partners {
    gap: 28px;
  }

  .contacts h2 {
    line-height: 50px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-pad: 18px;
    --section-y: 56px;
    --section-gap: 28px;
  }

  .header-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .logo-link,
  .logo-link img {
    width: 155px;
  }

  .logo-link {
    flex-basis: 155px;
  }

  .hero {
    padding-top: 26px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 38px;
  }

  .hero-copy,
  .split-content p:not(.eyebrow),
  .two-column > p,
  .contacts-copy p:not(.eyebrow) {
    font-size: 20px;
    line-height: 1.22;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-media {
    height: 360px;
  }

  .stats-card {
    gap: 7px;
    padding: 7px;
  }

  .stats-card span {
    min-height: 32px;
    padding: 4px 7px;
    font-size: 11px;
  }

  .benefits h1,
  .section-heading h2,
  .split-content h2,
  .infrastructure h2,
  .partners h2,
  .contacts h2 {
    font-size: 32px;
    line-height: 36px;
  }

  .benefit-grid,
  .infra-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 220px;
  }

  .live-map,
  .live-map iframe {
    height: 430px;
  }

  .map-stats {
    left: 14px;
    right: 14px;
  }

  .check-list li {
    font-size: 18px;
  }

  .two-column {
    gap: 18px;
  }

  .logistics-layout {
    gap: 18px;
  }

  .logistics-layout > img,
  .masterplan-media img {
    height: 260px;
  }

  .zones-panel {
    min-height: auto;
  }

  .cta-band {
    min-height: 230px;
  }

  .cta-band h2 {
    margin-bottom: 34px;
    font-size: 34px;
    line-height: 40px;
  }

  .infrastructure {
    gap: 12px;
  }

  .infra-grid {
    margin-top: 20px;
  }

  .partners {
    padding-bottom: var(--section-y);
  }

  .partners-copy p:not(.eyebrow),
  .partner-list p {
    font-size: 17px;
    line-height: 1.35;
  }

  .partner-list article {
    padding: 20px;
  }

  .contacts {
    min-height: auto;
    padding: var(--section-y) 18px;
  }

  .contacts::before {
    display: none;
  }

  .contact-form {
    padding: 20px;
  }
}


.form-status {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.4;
}

.form-status--success {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
}

.form-status--error {
  background: rgba(239, 68, 68, 0.12);
  color: #991b1b;
}

.contacts .form-status {
  display: block;
  width: 100%;
  max-width: 560px;
  min-height: auto !important;
  margin: 0 0 20px 0;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  box-sizing: border-box;
}

.contacts .form-status--success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid rgba(22, 101, 52, 0.18);
}

.contacts .form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid rgba(153, 27, 27, 0.18);
}






.contact-form .form-status {
  width: 100%;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  box-sizing: border-box;
}

.contact-form .form-status--success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid rgba(22, 101, 52, 0.2);
}

.contact-form .form-status--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid rgba(153, 27, 27, 0.2);
}