:root {
  --green: #136f39;
  --green-dark: #0f5a2e;
  --green-soft: #e8f3ec;
  --topbar: #323539;
  --ink: #222326;
  --muted: #6b6f76;
  --line: #e4e6ea;
  --bg: #f6f7f8;
  --white: #fff;
  --shadow: 0 12px 40px rgba(18, 22, 28, .12);
  --max: 1416px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

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

button,
input {
  font-family: inherit;
}

form {
  position: relative;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--topbar);
  color: #d7d9dc;
  font-size: 13px;
}

.topbar__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 36px;
}

.topbar a:hover {
  color: #fff;
}

.topbar__contacts a { margin:0 5px;
display:inline-block;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}


.yamap { width: 100%; min-width: 0; }

.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}

.logo img {
  width: 198px;
  height: auto;
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}

.btn:hover {
  background: var(--green-dark);
}

.btn--ghost {
  background: transparent;
  border: 1px solid #fff;
}

.btn--ghost:hover {
  background: #fff;
  color: var(--green);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #1b1d21;
}

.hero__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -48%;
  height: 196%;
  z-index: 0;
  pointer-events: none;
  background: #1b1d21 center / cover no-repeat;
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(20, 24, 28, .82) 0%, rgba(20, 24, 28, .55) 48%, rgba(19, 111, 57, .28) 100%);
}

.hero__in {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px;
  padding: 64px 0 88px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
}

.hero p {
  margin: 0 0 28px;
  max-width: 640px;
  color: #ececec;
  font-size: 16px;
}

.lead-form {
  background: rgba(18, 22, 26, .72);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 18px 16px;
  max-width: 400px;
  justify-self: end;
}

.lead-form h3 {
  margin: 0 0 10px;
  color: #7dce9a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.lead-form .form-icon {
  display: block;

  max-height: 200px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.lead-form ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: #eee;
  font-size: 13px;
}

.lead-form .form-row {
  margin-bottom: 8px;
}

.lead-form .form-row input {
  height: 40px;
  font-size: 13px;
}

.lead-form .form-consent {
  margin: 8px 0 10px;
  font-size: 11px;
}

.lead-form .btn {
  min-height: 42px;
  font-size: 12px;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 115px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  background: rgba(18, 22, 26, .35);
  color: #fff;
  animation: heroScroll 1.8s ease-in-out infinite;
}

.hero-scroll:hover {
  background: rgba(18, 22, 26, .55);
}

.hero-scroll__arrow {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.form-row {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.form-row input {
  width: 100%;
  height: 46px;
  border: 0;
  padding: 0 14px;
  font-size: 14px;
  border-bottom:2px solid #1f2328;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 14px;
  font-size: 12px;
  line-height: 1.4;
  cursor: pointer;
  user-select: none;
}

.form-consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex: 0 0 16px;
  accent-color: var(--green);
}

.lead-form .form-consent,
.contacts__info .form-consent {
  color: #d0d0d0;
}

.lead-form .form-consent a,
.contacts__info .form-consent a {
  color: #7dce9a;
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  opacity: 0;
}

.section {
  padding: 84px 0;
}

.section--gray {
  background: var(--bg);
}

.section--dark {
  background: #1f2328;
  color: #fff;
}

.section__head {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
}

.section__head p {
  margin: 0;
  color: var(--muted);
}

.section--dark .section__head p,
.section--dark .muted {
  color: #c5c8cc;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.stat {
  padding: 16px 10px;
  background: var(--green-soft);
  text-align: center;
}

.stat b {
  display: block;
  color: var(--green);
  font-size: 28px;
}

.stat span {
  font-size: 12px;
  color: var(--muted);
}

.services {
  display: grid;
  gap: 10px;
}

.services li {
  list-style: none;
  padding: 14px 16px;
  background: #fff;
  border-left: 3px solid var(--green);
  box-shadow: 0 1px 0 var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
}

.card.js-gallery:hover {
  transform: translateY(-2px);
}

.card__hint {
  position: absolute;
  text-align:center;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .2s ease;
}

.card:hover .card__hint {
  opacity: 1;
}

.card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card__img img,
.person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e8eaed;
}

.card__img img {
  transition: transform .45s ease;
}

.card:hover .card__img img {
  transform: scale(1.06);
}

.card__body {
  padding: 16px 16px 18px;
}

.card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.included {
  margin-top: 48px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 32px 28px 24px;
}

.included h3 {
  margin: 0 0 18px;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.3;
}

.included__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

.included__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.included__list li b {
  flex: none;
  color: var(--green);
  font-size: 18px;
  font-weight: 700;
}

.included__note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}




.mxw {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-direction: row-reverse;
  font-family: inherit;
  font-weight: 700;
}

.mxw-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mxw-icon,
.mxw-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.mxw-icon {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .28);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .2);
  animation: mxwPulse 2.5s infinite;
  transition: transform .2s ease;
}

.mxw-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.mxw-icon:hover {
  transform: scale(1.08);
}

.mxw-btn {
  width: 48px;
  height: 48px;
  z-index: 1;
  margin-bottom: -48px;
  opacity: 0;
  pointer-events: none;
  transform: scale(.85);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  transition: margin .3s ease, opacity .25s ease, transform .25s ease;
}

.mxw-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.mxw-btn--mail { background: #136f39; }
.mxw-btn--tg { background: #229ed9; }
.mxw-btn--wa { background: #25d366; }

.mxw:hover .mxw-btn,
.mxw.is-open .mxw-btn {
  margin-bottom: 8px;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mxw-bubble {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  max-width: 180px;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
  color: #0A1929;
  transition: opacity .2s ease;
}



@keyframes mxwPulse {
  0% { box-shadow: 0 12px 35px rgba(0, 0, 0, .2), 0 0 0 0 #161F8A55; }
  70% { box-shadow: 0 12px 35px rgba(0, 0, 0, .2), 0 0 0 14px transparent; }
  100% { box-shadow: 0 12px 35px rgba(0, 0, 0, .2), 0 0 0 0 transparent; }
}

.card p,
.muted {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price {
  margin-top: 10px;
  color: var(--green);
  font-weight: 700;
  font-size: 18px;
}

.form-band {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  margin-top: 48px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-band--solo {
  grid-template-columns: 1fr;
}

.form-band--reverse {
  grid-template-columns: .8fr 1.2fr;
}

.form-row--inline {
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(12, 14, 16, .92);
  padding: 56px 72px 28px;
}

.lightbox.is-open {
  display: grid;
}

.lightbox__stage {
  margin: 0;
  width: min(1100px, 100%);
  text-align: center;
}

.lightbox__stage img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  background: #111;
}

.lightbox__stage figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  color: #eee;
  font-size: 14px;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

.lightbox__close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  font-size: 22px;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

body.lightbox-open {
  overflow: hidden;
}

.section--dark .form-band {
  background: #2a2f35;
}

.form-band__gallery {
  min-height: 320px;
}

.form-band__media {
  min-height: 320px;
  height: 100%;
  background: #1c2420 center/cover no-repeat;
}

.form-band__form {
  padding: 32px 28px;
}

.parallax-block {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  place-items: center;
  padding: 110px 0;
  color: #fff;
}
.pdf-list img {    width: 94px;
    display: block;
    margin: 0 auto 20px;}
.parallax-block__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -48%;
  height: 196%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.parallax-block__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 10, .18) 0%, rgba(8, 12, 10, .28) 45%, rgba(8, 12, 10, .4) 100%);
}

.parallax-block .container {
  position: relative;
  z-index: 1;
}

.parallax-block__panel {

  margin: 0 auto;
  padding: 48px 44px;
  text-align: center;
  background: rgba(12, 16, 18, .36);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
}

.parallax-block__panel h2 {
  color: #fff;
}

.parallax-block__panel p {
  color: #f0f2f3;
}

.parallax-block .pdf-list div {border-radius:20px;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .parallax-block__bg {
    top: 0;
    height: 100%;
    transform: none !important;
  }
  .hero-scroll { animation: none; }
  .mxw-icon { animation: none; }
  .mxw-btn { transition: none; }
}

.cctv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cctv-card {
  background: #fff;
  box-shadow: var(--shadow);
  min-width: 0;
}

.cctv-card h3 {
  margin: 0;
  padding: 18px 18px 12px;
  font-size: 18px;
}

.cctv-gallery {
  padding: 0 12px 16px;
}

.cctv-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  background: #e8eaed;
}


.owl-cctv-main .owl-nav span {    font-size: 31px;
    top: -5px;
    position: relative;}

.cctv-thumb {
  cursor: pointer;
}

.cctv-thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  background: #e8eaed;
  opacity: .72;
  outline: 2px solid transparent;
  outline-offset: -2px;
  transition: opacity .15s ease, outline-color .15s ease;
}

.owl-cctv-thumbs {
  margin-top: 10px;
}

.owl-cctv-thumbs .owl-item.is-current .cctv-thumb img {
 opacity: 1;
    outline-color: #494747;
    padding: 4px;
    background: #fff;
}

.owl-cctv-main .owl-nav button,
.owl-cctv-thumbs .owl-nav button {
  background: #fff !important;
  color: #000 !important;
  border-radius: 50% !important;
  margin: 0 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .16);
}

.owl-cctv-main .owl-nav button:hover,
.owl-cctv-thumbs .owl-nav button:hover {
  background: #fff !important;
  color: #000 !important;
}

.owl-cctv-main .owl-nav button span,
.owl-cctv-thumbs .owl-nav button span {
  color: #000 !important;
}

.owl-cctv-main .owl-nav button {
  top: 50%;
  transform: translateY(-50%);
}

.owl-cctv-main .owl-nav .owl-prev { left: 28px; }
.owl-cctv-main .owl-nav .owl-next { right: 28px; }

.owl-cctv-thumbs .owl-nav button {
  top: 50%;
  width: 28px;
  height: 28px;
  font-size: 14px;
  transform: translateY(-50%);
}

.owl-cctv-thumbs .owl-nav .owl-prev { left: 14px; }
.owl-cctv-thumbs .owl-nav .owl-next { right: 14px; }

.pdf-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.pdf-list div {
  padding: 16px 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.pdf-list b {
  display: block;
  margin-bottom: 4px;
}

.pdf-downloads {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.btn--download {
  gap: 10px;
  min-width: 260px;
}

.btn--download svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn--download small {
  margin-left: 2px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.ready-card .card__img {
  height: 240px;
}

.works {
  margin-top: 64px;
}

.works__head {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.works__head h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.25;
}

.works__head p {
  margin: 0;
  color: var(--muted);
}

.works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.works__col {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px 26px 12px;
  border-top: 3px solid var(--green);
}

.works__col header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.works__col header span {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--green);
}

.works__col h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.works__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.works__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.works__item:last-child {
  border-bottom: 0;
}

.works__icon {
	border-radius:50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
}

.works__icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.works__icon--check::after {
  content: "";
  width: 11px;
  height: 6px;
  margin-top: -3px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.works__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ink);
}

.works__item b {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.owl-nav button {
  position: absolute;
  top: 42%;
  width: 42px;
  height: 42px;
  background: var(--green) !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.owl-nav .owl-prev { left: 8px; }
.owl-nav .owl-next { right: 8px; }

.owl-dots {
  margin-top: 16px;
  text-align: center;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--green);
}

.eng-slide img,
.interior-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #e8eaed;
  cursor: pointer;
}

.team {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.person {
  background: #fff;
  box-shadow: var(--shadow);
}

.person img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
}

.person__body {
  padding: 14px 12px 16px;
}

.person h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.person p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

#contacts {
  width: 100%;
  max-width: none;
}

.contacts {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  gap: 0;
  width: 100%;
  min-height: 560px;
}

.contacts__info {
  position: relative;
  isolation: isolate;
  min-width: 0;
  padding: 48px clamp(24px, 4vw, 64px);
  background: #1f2328 url("../images/officebg.jpg") center / cover no-repeat;
  color: #fff;
}

.contacts__info::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(20, 24, 28, .72);
  pointer-events: none;
}

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

.contacts__info h2 {
  margin-top: 0;
}

.contacts__info p {
  color: #c9cdd2;
}

.contacts__info a:hover {
  color: #7dce9a;
}

#map {
  min-width: 0;
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: #d9dde2;
}

#map > ymaps,
#map iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 560px;
}

.footer {
  background: var(--topbar);
  color: #c7c9cc;
  padding: 28px 0;
  font-size: 13px;
}

.footer__in {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, .55);
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal__box {
  width: min(420px, 100%);
  background: #fff;
  padding: 28px 24px;
}

.modal__box--privacy {
  width: min(720px, 100%);
  max-height: min(88vh, 820px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.privacy-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.privacy-head h3 {
  margin: 0;
}

.privacy-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  overflow: auto;
  padding-right: 8px;
}

.privacy-text p {
  margin: 0 0 12px;
}

.privacy-text ol {
  margin: 0;
  padding-left: 20px;
}

.privacy-text li {
  margin-bottom: 10px;
}

.ok {
  color: var(--green);
  font-weight: 700;
}

.err {
  color: #b42318;
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }
  .burger { display: block; }
  .hero__in,
  .about-grid,
  .form-band,
  .cards,
  .works__grid,
  .included__list,
  .cctv-grid,
  .contacts {
    grid-template-columns: 1fr;
  }
  .lead-form { justify-self: stretch; max-width: none; }
  .form-row--inline { grid-template-columns: 1fr; }
  .lightbox { padding: 56px 16px 20px; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pdf-list { grid-template-columns: repeat(2, 1fr); }
  .parallax-block { min-height: 0; padding: 72px 0; }
  .parallax-block__panel { padding: 32px 20px; }
}

@media (max-width: 640px) {
  .header__in { min-height: 64px; }
  .hero { min-height: 0; }
  .hero__in { padding: 48px 0 72px; }
  .lead-form { justify-self: stretch; max-width: none; }
  .cards,
  .team,
  .pdf-list { grid-template-columns: 1fr; }
  .btn--download { width: 100%; min-width: 0; }
  .section { padding: 56px 0; }
  .btn--header { display: none; }
}

/* ——— главная /landing/main ——— */

.hero--video {
  min-height: min(88vh, 820px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1b1d21;
}

.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  opacity: 0;
  transition: opacity .6s ease;
}

.hero--video.is-ready .hero__video {
  opacity: 1;
}

.hero--video .hero__in {
  grid-template-columns: minmax(0, 780px);
  padding: 88px 0 120px;
}

.hero--video .hero__copy {
  max-width: 760px;
}

.hero--video .hero-scroll {
  bottom: 36px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  margin: 28px 0 0;
}

.hero-stats b {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.hero-stats span {
  font-size: 12px;
  color: #d7d9dc;
}

.works {
  margin-top: 0;
}

.works--page {
  margin-top: 0;
}

.works__grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

.works__col-link {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-left: auto;
}

.works__col-link:hover {
  color: var(--green-dark);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.split--reverse {
  grid-template-columns: .95fr 1.05fr;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  min-width: 0;
}

.split__media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
  background: #e8eaed;
}

.split__body h2 {
  margin-top: 0;
}

.split__lead {
  color: var(--muted);
  margin: 0 0 22px;
}

.checklist {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.pdf-examples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 24px;
}

.pdf-examples a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.pdf-examples a:hover {
  border-color: var(--green);
  color: var(--green);
}

.pdf-examples small {
  display: block;
  font-weight: 400;
  color: var(--muted);
}

.card--link {
  cursor: pointer;
  color: inherit;
  display: block;
}

.card--link:hover {
  transform: translateY(-2px);
}

.works__item a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.works__item a:hover {
  color: var(--green);
}

.card--static {
  cursor: default;
}

.card--static:hover {
  transform: none;
}

.download-dirs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.download-dirs article {
  padding: 18px 14px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 20px;
}

.download-dirs img {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  display: block;
}

.download-dirs b {
  display: block;
  margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .split,
  .split--reverse,
  .pdf-examples,
  .download-dirs {
    grid-template-columns: 1fr;
  }
  .works__grid--4 {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse .split__media {
    order: 0;
  }
  .split__media img {
    height: 320px;
  }
  .hero--video {
    min-height: 0;
  }
}

.sro-grid,
.reviews-grid {
  display: grid;
  width: 100%;
  gap: 24px;
}

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

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

.sro-card,
.review-card {
  display: block;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: hidden;
  color: inherit;
}
.review-card__img img, .sro-card img {     border: 1px solid #f0f0f0;
    padding: 5px;
    background: #fff !important;
    border-radius: 20px;}
#sro .sro-card img,
#reviews .review-card__img,
#reviews .review-card__img img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: unset;
  background: transparent;
}

.review-card__name {
  display: block;
  padding: 12px 0 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .sro-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sro-grid,
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .hero--video .hero__in {
    padding: 56px 0 88px;
  }
  .hero-stats {
    gap: 18px 24px;
  }
  .hero-scroll {
    bottom: 28px;
  }
  .works__grid--4 {
    grid-template-columns: 1fr;
  }
}