html {
  overflow-x: hidden;
}

.home-v2 {
  --v2-green: #79c971;
  --v2-green-strong: #55b94c;
  --v2-dark: #252736;
  --v2-ink: #171922;
  --v2-muted: #626a70;
  --v2-line: #dfe5df;
  --v2-soft: #f5f8f4;
  --v2-paper: #ffffff;
  --v2-shadow: 0 24px 70px rgba(24, 28, 34, 0.12);
  background: var(--v2-soft);
  color: var(--v2-ink);
  overflow-x: hidden;
}

.home-v2 a {
  color: inherit;
  text-decoration: none;
}

.home-v2 img {
  max-width: 100%;
}

.home-v2 button,
.home-v2 input {
  font: inherit;
}

.home-v2 main {
  background: var(--v2-soft);
  margin-top: 0;
}

.v2-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.v2-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: none;
}

.v2-header__inner {
  min-height: 66px;
  padding: 8px 14px 8px 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  gap: 22px;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 229, 223, 0.9);
  border-radius: 8px;
  box-shadow: 0 14px 45px rgba(23, 25, 34, 0.08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.is-v2-scrolled .v2-header__inner {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 52px rgba(23, 25, 34, 0.13);
}

.v2-logo {
  display: inline-flex;
  align-items: center;
}

.v2-logo img {
  width: auto;
  height: 58px;
  display: block;
}

.v2-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
}

.v2-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: #2d3038;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.v2-nav__item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.v2-nav__caret {
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.v2-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--v2-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.v2-nav a:hover,
.v2-nav a:focus-visible {
  color: var(--v2-green-strong);
}

.v2-nav a:hover::after,
.v2-nav a:focus-visible::after {
  transform: scaleX(1);
}

.v2-nav__item--has-dropdown:hover .v2-nav__caret,
.v2-nav__item--has-dropdown:focus-within .v2-nav__caret {
  transform: rotate(225deg) translate(-1px, -1px);
}

.v2-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 340px;
  padding: 10px;
  border: 1px solid rgba(223, 229, 223, 0.95);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(23, 25, 34, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.v2-nav__item--has-dropdown:hover .v2-nav__dropdown,
.v2-nav__item--has-dropdown:focus-within .v2-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.v2-nav__dropdown a {
  min-height: auto;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--v2-ink);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

.v2-nav__dropdown a::after {
  display: none;
}

.v2-nav__dropdown a:hover,
.v2-nav__dropdown a:focus-visible {
  color: var(--v2-green-strong);
  background: var(--v2-soft);
}

.v2-header__contacts {
  display: grid;
  gap: 2px;
}

.v2-header__contacts a {
  white-space: nowrap;
  color: var(--v2-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.v2-header__contacts a:hover {
  color: var(--v2-green-strong);
}

.v2-icon-button,
.v2-menu-toggle {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.v2-icon-button {
  background: var(--v2-green);
  color: var(--v2-dark);
  box-shadow: 0 12px 26px rgba(121, 201, 113, 0.28);
  transition: transform 0.2s ease, background 0.2s ease;
}

.v2-icon-button:hover {
  background: #8edf86;
  transform: translateY(-2px);
}

.v2-icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.v2-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--v2-dark);
}

.v2-mobile-phone {
  width: 42px;
  height: 42px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--v2-green-strong);
  cursor: pointer;
}

.v2-mobile-phone svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.v2-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.is-v2-menu-open .v2-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.is-v2-menu-open .v2-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.is-v2-menu-open .v2-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.v2-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: var(--v2-dark);
}

.v2-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.9s ease, transform 6s ease;
}

.v2-hero__slide.is-active {
  opacity: 1;
  animation: v2-hero-zoom 12s ease-out forwards;
}

.v2-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(20 22 30 / 59%) 0%, rgb(20 22 30 / 59%) 43%, rgba(20, 22, 30, 0.01) 100%),
    linear-gradient(180deg, rgba(20, 22, 30, 0.03) 0%, rgba(20, 22, 30, 0.18) 100%);
}

.v2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.8) 42%, transparent 88%);
}

.v2-hero__content {
  position: relative;
  z-index: 3;
  min-height: 720px;
  padding: 112px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-items: center;
}

@keyframes v2-hero-zoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.v2-hero__copy {
  color: #fff;
}

.v2-kicker,
.v2-section-head span,
.v2-request__copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--v2-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.v2-kicker::before,
.v2-section-head span::before,
.v2-request__copy > span::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.v2-hero h1 {
  max-width: 760px;
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 0.98;
}

.v2-hero__subtitle {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 600;
  line-height: 1.25;
}

.v2-hero__text {
  max-width: 610px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.5;
}

.v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.v2-button {
  min-height: 52px;
  padding: 15px 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--v2-green);
  color: var(--v2-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.v2-button:hover,
.v2-button:focus-visible {
  transform: translateY(-2px);
  background: #8edf86;
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(121, 201, 113, 0.24);
}

.v2-button--ghost {
  border-color: var(--v2-green);
  background: transparent;
  color: #fff;
}

.v2-button--ghost:hover,
.v2-button--ghost:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--v2-dark);
}

.v2-hero__panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.v2-hero__panel div {
  padding: 25px 26px;
  background: rgba(255, 255, 255, 0.09);
}

.v2-hero__panel strong {
  display: block;
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}

.v2-hero__panel span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.v2-adv {
  position: relative;
  z-index: 4;
  margin-top: -54px;
}

.v2-adv__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.v2-adv-card {
  min-height: 126px;
  padding: 22px 24px;
  border: 1px solid rgba(223, 229, 223, 0.92);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  background: #fff;
  box-shadow: 0 18px 50px rgba(23, 25, 34, 0.08);
}

.v2-adv-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.v2-adv-card__icon img {
  width: 48px;
  height: 48px;
  display: block;
}

.v2-adv-card h2 {
  color: var(--v2-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.v2-adv-card p {
  margin-top: 8px;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.55;
}

.v2-section {
  padding: clamp(78px, 8vw, 126px) 0;
}

.v2-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.v2-section-head--left {
  margin-left: 0;
  text-align: left;
}

.v2-section-head h2,
.v2-request__copy h2 {
  margin-top: 16px;
  color: var(--v2-ink);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
}

.v2-section-head p,
.v2-request__copy p {
  margin-top: 16px;
  color: var(--v2-muted);
  font-size: 17px;
  line-height: 1.6;
}

.v2-services {
  background: var(--v2-soft);
}

.v2-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.v2-service-card {
  position: relative;
  min-height: 310px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  background: var(--v2-dark);
  box-shadow: 0 18px 46px rgba(23, 25, 34, 0.13);
}

.v2-service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.v2-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 25, 34, 0.06) 0%, rgba(23, 25, 34, 0.88) 100%);
}

.v2-service-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 2px;
  background: var(--v2-green);
  transform: scaleX(0.26);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.v2-service-card span {
  min-height: 92px;
  padding: 0 22px 42px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.v2-service-card:hover img {
  transform: scale(1.09);
  filter: saturate(1.12);
}

.v2-service-card:hover::after {
  transform: scaleX(1);
}

.v2-services__note {
  max-width: 850px;
  margin: 34px auto 0;
  color: var(--v2-muted);
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

.v2-conditions {
  background: #fff;
}

.v2-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.v2-condition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  counter-reset: condition;
}

.v2-condition-list article {
  position: relative;
  min-height: 170px;
  padding: 24px 24px 22px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: var(--v2-soft);
  counter-increment: condition;
}

.v2-condition-list article::before {
  content: counter(condition, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--v2-green-strong);
  font-size: 22pt;
  font-weight: 800;
  line-height: 1;
}

.v2-condition-list h3 {
  color: var(--v2-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.v2-condition-list p {
  margin-top: 10px;
  color: var(--v2-muted);
  font-size: 14px;
  line-height: 1.55;
}

.v2-image-frame {
  position: relative;
  min-height: 620px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--v2-dark);
  box-shadow: var(--v2-shadow);
}

.v2-image-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(23, 25, 34, 0.28));
}

.v2-image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.v2-projects {
  background: var(--v2-dark);
  color: #fff;
}

.home-v2 #projects.v2-projects {
  background: var(--v2-dark);
}

.v2-projects .v2-section-head h2,
.v2-projects .v2-section-head p {
  color: #fff;
}

.v2-projects .v2-section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.v2-projects__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.v2-project-card {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background: #101219;
}

.v2-project-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.v2-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(23, 25, 34, 0.05) 0%, rgba(23, 25, 34, 0.9) 72%, rgba(23, 25, 34, 0.98) 100%);
}

.v2-project-card span {
  width: fit-content;
  margin: 0 22px 14px;
  padding: 7px 10px;
  border: 1px solid rgba(121, 201, 113, 0.75);
  border-radius: 6px;
  color: var(--v2-green);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.v2-project-card strong {
  margin: 0 22px;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
}

.v2-project-card em {
  margin: 10px 22px 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.v2-project-card:hover img {
  transform: scale(1.08);
}

.v2-section-more {
  margin-top: 30px;
  text-align: center;
}

.v2-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--v2-green);
  font-size: 15px;
  font-weight: 800;
}

.v2-link-arrow::after {
  content: "";
  width: 50px;
  height: 16px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg width='50' height='16' viewBox='0 0 50 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7.5H40L48 15' stroke='black' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.22s ease;
}

.v2-link-arrow:hover::after {
  transform: translateX(5px);
}

.v2-trust {
  background: #fff;
}

.v2-trust__inner {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.v2-trust__logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.v2-trust__logos img {
  width: 100%;
  height: 160px;
  padding: 22px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  object-fit: contain;
  background: var(--v2-soft);
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.45s ease, opacity 0.45s ease, transform 0.24s ease;
}

.v2-trust__logos img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

.v2-request {
  background: var(--v2-dark);
  color: #fff;
}

.v2-request__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
}

.v2-request__copy h2,
.v2-request__copy p {
  color: #fff;
}

.v2-request__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.v2-request__copy ul {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}

.v2-request__copy li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.5;
}

.v2-request__copy li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--v2-green);
  box-shadow: inset 0 0 0 5px var(--v2-dark);
  border: 2px solid var(--v2-green);
}

.v2-form-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--v2-ink);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.28);
}

.v2-form-card .form-df {
  position: relative;
  margin-top: 0;
}

.v2-form-card .form-df:not(:first-child) {
  margin-top: 18px;
}

.v2-form-card .form--input,
.home-v2 .popup .form--input {
  height: 54px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  background: var(--v2-soft);
  color: var(--v2-ink);
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.v2-form-card .form--input:focus,
.home-v2 .popup .form--input:focus {
  outline: 0;
  border-color: var(--v2-green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(121, 201, 113, 0.14);
}

.v2-form-card .agree-text,
.home-v2 .popup .agree-text {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding-left: 0;
  color: #4c5358;
  font-size: 11px;
  line-height: 1.45;
}

.v2-form-card .agree-check,
.home-v2 .popup .agree-check {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 2px solid var(--v2-green);
  border-radius: 4px;
  background: #fff;
}

.v2-form-card .agree-check svg,
.home-v2 .popup .agree-check svg {
  display: none;
}

.v2-form-card .agree-check::after,
.home-v2 .popup .agree-check::after {
  content: "";
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--v2-green);
  border-bottom: 2px solid var(--v2-green);
  opacity: 0;
  transform: rotate(-45deg) translate(1px, -1px);
  transition: opacity 0.18s ease;
}

.v2-form-card .agree-text input:checked + .agree-check::after,
.home-v2 .popup .agree-text input:checked + .agree-check::after {
  opacity: 1;
}

.v2-form-card .btn--site,
.home-v2 .popup .btn--site {
  width: 100%;
  height: 54px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--v2-green);
  color: var(--v2-dark);
  font-size: 15px;
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.v2-form-card .btn--site:not(:disabled):hover,
.home-v2 .popup .btn--site:not(:disabled):hover {
  background: #8edf86;
  border-color: transparent;
  transform: translateY(-2px);
}

.v2-form-card__phones {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--v2-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.v2-form-card__phones a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--v2-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
}

.v2-form-card__phones a:hover {
  color: var(--v2-green);
  transform: translateY(-1px);
}

.v2-form-card__phones img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 6px;
}

.v2-about {
  background: var(--v2-soft);
}

.v2-about__grid {
  display: grid;
  grid-template-columns: minmax(360px, 520px) 1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.v2-about__image {
  position: relative;
  min-height: 610px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--v2-dark);
  box-shadow: var(--v2-shadow);
}

.v2-about__image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.v2-rich-text {
  margin-top: 28px;
  color: var(--v2-muted);
  font-size: 16px;
  line-height: 1.82;
}

.v2-rich-text p:not(:first-child) {
  margin-top: 18px;
}

.v2-person {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  align-items: center;
}

.v2-person img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 5px #fff;
}

.v2-person strong,
.v2-person span {
  display: block;
}

.v2-person strong {
  color: var(--v2-ink);
  font-size: 18px;
  font-weight: 800;
}

.v2-person span {
  margin-top: 4px;
  color: var(--v2-muted);
  font-size: 14px;
}

.v2-contact {
  padding: 0;
  background: #fff;
}

.v2-contact__grid {
  display: grid;
  grid-template-columns: minmax(320px, 430px) 1fr;
  min-height: 560px;
}

.v2-contact__grid > div:first-child {
  padding: clamp(56px, 7vw, 88px) clamp(24px, 5vw, 58px) clamp(56px, 7vw, 88px) 0;
  align-self: center;
}

.v2-contact address {
  margin-top: 26px;
  color: var(--v2-ink);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}

.v2-contact__links {
  margin-top: 26px;
  display: grid;
  gap: 8px;
}

.v2-contact__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--v2-ink);
  font-size: 18px;
  font-weight: 800;
}

.v2-contact__links a span {
  font-weight: 800;
}

.v2-contact__links img {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 6px;
}

.v2-inner--contacts .v2-contact address {
  margin-top: 0;
}

.v2-contact__links a:hover {
  color: var(--v2-green-strong);
}

.v2-contact p {
  margin: 18px 0 28px;
  color: var(--v2-muted);
  font-size: 15px;
  line-height: 1.5;
}

.v2-map {
  width: auto;
  min-height: 560px;
  background:
    linear-gradient(135deg, rgba(121, 201, 113, 0.18), transparent),
    #e7ece7;
}

.home-v2 .v2-map.contact--map {
  display: block;
  width: auto;
}

.v2-map iframe,
.v2-map script + iframe {
  width: 100% !important;
  height: 560px !important;
  display: block;
}

.v2-footer {
  padding: 34px 0;
  background: var(--v2-ink);
  color: rgba(255, 255, 255, 0.72);
}

.v2-footer__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
}

.v2-footer .v2-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.v2-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}

.v2-footer__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: flex-end;
}

.v2-footer__phones a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
}

.v2-footer__phones a:hover {
  color: #fff;
  transform: translateY(-1px);
}

.v2-footer__phones img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 6px;
}

.v2-footer a:hover {
  color: #fff;
}

.home-v2 .popup {
  border-radius: 8px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.22);
}

.home-v2 .popup__layer {
  background: rgba(18, 20, 27, 0.55);
  backdrop-filter: blur(4px);
}

.home-v2 .popup__close {
  border-radius: 8px;
}

.v2-contacts-popup {
  padding: 34px;
}

.v2-contacts-popup__title {
  color: var(--v2-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.18;
}

.v2-contacts-popup__phones {
  margin: 22px 0 24px;
  display: grid;
  gap: 10px;
}

.v2-contacts-popup__phones a {
  padding: 14px 16px;
  border: 1px solid var(--v2-line);
  border-radius: 8px;
  color: var(--v2-ink);
  font-size: 18px;
  font-weight: 800;
  background: var(--v2-soft);
}

.v2-contacts-popup__phones a:hover {
  color: var(--v2-green-strong);
}

.home-v2 .cookie-banner {
  background: rgba(37, 39, 54, 0.96);
  padding: 12px 16px;
  backdrop-filter: blur(12px);
}

.home-v2 .v2-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.home-v2 .v2-delay-1 {
  transition-delay: 0.08s;
}

.home-v2 .v2-delay-2 {
  transition-delay: 0.16s;
}

.home-v2 .v2-delay-3 {
  transition-delay: 0.24s;
}

.v2-section,
.v2-adv,
.v2-contact,
#about,
#projects,
#contact,
#request,
#services {
  scroll-margin-top: 120px;
}

@media (max-width: 1180px) {
  .v2-header__inner {
    gap: 14px;
  }

  .v2-nav {
    gap: 14px;
  }

  .v2-header__contacts {
    display: none;
  }

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

@media (max-width: 980px) {
  .v2-shell {
    width: min(100% - 32px, 760px);
  }

  .v2-header {
    top: 10px;
  }

  .v2-header__inner {
    grid-template-columns: auto 1fr auto auto;
    min-height: 66px;
  }

  .v2-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 10px;
    border: 1px solid var(--v2-line);
    border-radius: 8px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 48px rgba(23, 25, 34, 0.13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .v2-nav__item {
    display: grid;
    align-items: stretch;
  }

  .is-v2-menu-open .v2-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .v2-nav a {
    min-height: 48px;
    padding: 0 12px;
    border-radius: 8px;
  }

  .v2-nav a:hover {
    background: var(--v2-soft);
  }

  .v2-nav__caret {
    margin-left: auto;
  }

  .v2-nav a::after {
    display: none;
  }

  .v2-nav__dropdown {
    position: static;
    width: auto;
    padding: 0 0 8px 14px;
    border: 0;
    border-radius: 0;
    gap: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: none;
    transition: none;
  }

  .is-v2-menu-open .v2-nav__dropdown {
    pointer-events: auto;
  }

  .v2-nav__item--has-dropdown:hover .v2-nav__dropdown,
  .v2-nav__item--has-dropdown:focus-within .v2-nav__dropdown {
    transform: none;
  }

  .v2-nav__dropdown a {
    min-height: 40px;
    padding: 0 12px;
    color: var(--v2-muted);
    font-size: 13px;
  }

  .v2-menu-toggle {
    display: inline-flex;
  }

  .v2-hero,
  .v2-hero__content {
    min-height: 720px;
  }

  .v2-hero__content {
    grid-template-columns: 1fr;
    padding-top: 136px;
  }

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

  .v2-hero__panel div {
    padding: 20px;
  }

  .v2-hero__panel strong {
    font-size: 30px;
  }

  .v2-adv__grid,
  .v2-condition-list,
  .v2-trust__inner,
  .v2-request__grid,
  .v2-about__grid,
  .v2-contact__grid,
  .v2-split {
    grid-template-columns: 1fr;
  }

  .v2-contact__grid > div:first-child {
    padding-right: 0;
  }
}

@media (max-width: 680px) {
  .v2-shell {
    width: min(100% - 28px, 520px);
  }

  .v2-section {
    padding: 54px 0;
  }

  .v2-section-head {
    margin-bottom: 26px;
  }

  .v2-section-head h2,
  .v2-request__copy h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .v2-header {
    top: 0;
  }

  .v2-header__inner {
    width: 100%;
    min-height: 58px;
    padding: 7px 14px;
    border-width: 0 0 1px;
    border-radius: 0;
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 28px rgba(23, 25, 34, 0.1);
  }

  .is-v2-scrolled .v2-header__inner {
    transform: none;
  }

  .v2-logo img {
    height: 40px;
  }

  .v2-header__call {
    display: none;
  }

  .v2-mobile-phone {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }

  .v2-menu-toggle {
    grid-column: 4;
    width: 42px;
    height: 42px;
    margin-left: 2px;
    border: 1px solid var(--v2-line);
    background: #fff;
  }

  .v2-menu-toggle span {
    width: 20px;
    background: var(--v2-dark);
  }

  .v2-nav {
    top: 100%;
    left: 0;
    right: 0;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: 0 18px 34px rgba(23, 25, 34, 0.12);
  }

  .v2-hero,
  .v2-hero__content {
    min-height: 640px;
  }

  .v2-hero__content {
    padding: 96px 0 46px;
  }

  .v2-hero__overlay {
    background:
      linear-gradient(90deg, rgb(20 22 30 / 63%), rgb(20 22 30 / 44%)),
      linear-gradient(180deg, rgba(20, 22, 30, 0.03), rgba(20, 22, 30, 0.22));
  }

  .v2-hero h1 {
    font-size: clamp(34px, 10.8vw, 42px);
    line-height: 1.04;
  }

  .v2-hero__subtitle {
    font-size: 18px;
  }

  .v2-hero__text {
    display: none;
  }

  .v2-actions {
    display: grid;
  }

  .v2-button {
    width: 100%;
  }

  .v2-hero__panel {
    grid-template-columns: 1fr;
  }

  .v2-adv {
    margin-top: 0;
  }

  .v2-adv__grid,
  .v2-projects__grid {
    grid-template-columns: 1fr;
  }

  .v2-services__grid,
  .v2-condition-list,
  .v2-trust__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .v2-adv-card {
    grid-template-columns: 48px 1fr;
    min-height: auto;
    padding: 18px;
  }

  .v2-service-card {
    min-height: 168px;
    box-shadow: 0 14px 28px rgba(23, 25, 34, 0.12);
  }

  .v2-service-card::after {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .v2-service-card span {
    min-height: 74px;
    padding: 0 12px 28px;
    font-size: 13px;
    line-height: 1.22;
  }

  .v2-services__note {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }

  .v2-condition-list article {
    min-height: auto;
    padding: 15px 13px 14px;
  }

  .v2-condition-list article::before {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .v2-condition-list h3 {
    font-size: 14px;
  }

  .v2-condition-list p {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.42;
  }

  .v2-conditions .v2-image-frame {
    min-height: 240px;
  }

  .v2-project-card {
    min-height: 330px;
  }

  .v2-trust__logos img {
    height: 112px;
    padding: 14px;
  }

  .v2-about__image {
    display: none;
  }

  .v2-form-card {
    padding: 24px;
  }

  .v2-contact__grid {
    min-height: 0;
  }

  .v2-map,
  .v2-map iframe,
  .v2-map script + iframe {
    min-height: 390px;
    height: 390px !important;
  }

  .v2-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .home-v2 .popup {
    padding: 28px 22px;
  }

  .home-v2 .v2-contacts-popup {
    padding: 28px 22px;
  }

  .v2-contacts-popup__title {
    font-size: 22px;
  }

  .home-v2 .popup__close {
    right: 0;
    top: -56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-v2 *,
  .home-v2 *::before,
  .home-v2 *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
