:root {
  --background: #ffffff;
  --accent: #025BDE;
  --primary: #025BDE;
  --white: #ffffff;
  --text: #171717;
  --heading: #042245;
  --muted: #171717;
  --container: 1440px;
  --header: 108px;
  --shadow: 0 24px 60px rgb(2 91 222 / 10%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header); }
html.smooth-scroll-active { scroll-behavior: auto; }
body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font: 400 16px/1.6 "Manrope", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
::selection { background: #7adce8; color: #042245; }
::-moz-selection { background: #7adce8; color: #042245; }
:is(h1, h2, h3) { font-family: "Manrope", Arial, sans-serif; font-weight: 600; line-height: 1.08; text-wrap: balance; }
a { color: inherit; text-decoration: none; }
button { border: 0; color: inherit; font: inherit; cursor: pointer; }
img { display: block; width: 100%; }
:focus-visible { outline: 3px solid rgb(2 91 222 / 60%); outline-offset: 4px; }
.desktop-break { display: inline; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding-block: 80px; background: var(--background); }
.heading { max-width: 900px; margin-bottom: 40px; }
.heading h2 { color: var(--heading); font-size: clamp(2.35rem, 8vw, 4.5rem); }
.heading > p { max-width: 720px; margin-top: 20px; color: var(--muted); font-size: clamp(1rem, 2vw, 1.22rem); }

.inner-hero {
  position: relative;
  display: flex;
  min-height: clamp(320px, 24vw, 350px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #063d91;
  color: var(--white);
}
.inner-hero__media { position: absolute; z-index: -2; inset: 0; }
.inner-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgb(3 18 38 / 28%) 0%, rgb(3 18 38 / 42%) 48%, rgb(3 18 38 / 82%) 100%);
  content: "";
}
.inner-hero.no-image::after { background: rgb(2 91 222 / 20%); }
.inner-hero__container {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 108px 0 0;
  text-align: center;
}
.inner-hero__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
}
.inner-hero__crumbs > * { color: inherit; }
.inner-hero__crumbs > * + * { display: inline-flex; align-items: center; gap: 10px; }
.inner-hero__crumbs > * + *::before { color: #1682ff; content: "/"; font-weight: 500; }
.inner-hero__crumbs a { transition: color .2s ease; }
.inner-hero__crumbs a:hover { color: var(--white); }
.inner-hero h1 {
  max-width: 1120px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 3.6vw, 3.25rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -.025em;
}

.header {
  position: fixed;
  z-index: 10;
  top: 10px;
  right: 10px;
  left: 10px;
  height: 72px;
  background: transparent;
  border-radius: 4px;
  color: var(--white);
  box-shadow: 0 18px 55px rgb(4 34 69 / 16%);
}
.header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: rgb(2 91 222 / 78%);
  backdrop-filter: blur(8px) saturate(115%);
  -webkit-backdrop-filter: blur(8px) saturate(115%);
  content: "";
  pointer-events: none;
}
.header__inner.container { width: 100%; max-width: none; height: 100%; margin-inline: 0; padding-inline: clamp(18px, 3vw, 34px); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(14px, 2vw, 28px); }
.logo { display: inline-flex; flex: 0 0 auto; align-items: center; }
.logo img { width: auto; height: clamp(32px, 2.8vw, 42px); }
.nav { display: none; flex: 1 1 auto; align-items: center; justify-content: center; gap: clamp(14px, 1.45vw, 28px); overflow: visible; }
.header-nav__item { position: relative; display: flex; height: 72px; align-items: center; }
.header-nav__item.has-children::after { position: absolute; top: 100%; right: -8px; left: -8px; height: 14px; content: ""; }
.header-nav__row { display: flex; align-items: center; }
.header-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 90%);
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  font-weight: 750;
  white-space: nowrap;
  transition: color .2s ease;
}
.header-nav__link::after { position: absolute; right: 0; bottom: -4px; left: 0; height: 1px; background: var(--white); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.header-nav__link:hover,
.header-nav__item.is-open .header-nav__link { color: var(--white); }
.header-nav__link:hover::after,
.header-nav__item.is-open .header-nav__link::after { transform: scaleX(1); }
.header-nav__link--group svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .22s ease; }
.header-nav__link--group[aria-expanded="true"] svg { transform: rotate(180deg); }
.header-nav__toggle {
  display: grid;
  width: 28px;
  height: 34px;
  flex: 0 0 28px;
  place-items: center;
  margin-left: 2px;
  background: transparent;
  color: rgb(255 255 255 / 74%);
  transition: color .2s ease;
}
.header-nav__toggle:hover,
.header-nav__toggle[aria-expanded="true"] { background: transparent; color: var(--white); }
.header-nav__toggle svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .22s ease; }
.header-nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.header-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: max-content;
  min-width: 320px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px;
  border: 0;
  border-radius: 0 0 4px 4px;
  background: rgb(2 91 222 / 78%);
  box-shadow: none;
  color: var(--white);
  backdrop-filter: blur(14px) saturate(115%);
  -webkit-backdrop-filter: blur(14px) saturate(115%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 4px);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}
.header-nav__dropdown::before { display: none; }
.header-nav__item.is-open .header-nav__dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.header-nav__dropdown-inner { position: relative; display: grid; gap: 4px; }
.header-nav__dropdown-inner > a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
  text-decoration: none;
  transition: background-color .16s ease;
}
.header-nav__dropdown-inner > a + a { border-top: 0; }
.header-nav__dropdown-inner > a:hover,
.header-nav__dropdown-inner > a:focus-visible { background: var(--primary); color: var(--white); text-decoration: none; }
.header-nav__dropdown-inner > a svg { display: none; }
.header__tools { display: none; flex: 0 0 auto; align-items: center; gap: clamp(14px, 2vw, 26px); }
.header__phone { display: inline-flex; align-items: center; gap: 10px; color: var(--white); font-size: clamp(1.05rem, 1.2vw, 1.2rem); font-weight: 700; letter-spacing: -.025em; white-space: nowrap; }
.header__phone img { width: 38px; height: 38px; }
.header__mobile-actions { display: flex; flex: 0 0 auto; align-items: center; gap: 14px; }
.header__mobile-link { display: grid; width: 38px; height: 46px; place-items: center; background: transparent; -webkit-tap-highlight-color: transparent; }
.header__mobile-link img { width: 31px; height: 31px; }
.header__menu-button {
  display: grid;
  width: 38px;
  height: 46px;
  place-items: center;
  background: transparent;
  color: var(--white);
  -webkit-tap-highlight-color: transparent;
  transition: opacity .2s ease, transform .2s ease;
}
.header__menu-button:hover { opacity: .78; }
.header__menu-button:active { transform: scale(.96); }
.header__menu-icon { display: flex; width: 21px; height: 16px; flex-direction: column; justify-content: space-between; }
.header__menu-icon i { display: block; width: 100%; height: 2px; border-radius: 999px; background: currentColor; transition: transform .22s ease, width .22s ease, opacity .18s ease; }
.header__menu-icon i:nth-child(2) { width: 14px; align-self: flex-end; }
.header__menu-button[aria-expanded="true"] .header__menu-icon i:first-child { transform: translateY(7px) rotate(45deg); }
.header__menu-button[aria-expanded="true"] .header__menu-icon i:nth-child(2) { width: 0; opacity: 0; }
.header__menu-button[aria-expanded="true"] .header__menu-icon i:last-child { transform: translateY(-7px) rotate(-45deg); }

html.mobile-nav-open,
body.mobile-nav-open { overflow: hidden; overscroll-behavior: none; }
.mobile-nav {
  position: fixed;
  z-index: 1000;
  inset: 0;
  overflow: hidden;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s cubic-bezier(.22, 1, .36, 1), visibility .3s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: var(--primary);
}
.mobile-nav__panel {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  padding: max(18px, env(safe-area-inset-top)) clamp(20px, 5vw, 56px) max(24px, env(safe-area-inset-bottom));
  background: var(--primary);
  transform: translateY(-12px) scale(.992);
  transform-origin: 50% 0;
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}
.mobile-nav.is-open .mobile-nav__panel { transform: none; }
.mobile-nav__head,
.mobile-nav__body,
.mobile-nav__foot { position: relative; z-index: 1; width: min(100%, 980px); margin-inline: auto; }
.mobile-nav__head { display: flex; flex: 0 0 auto; align-items: center; justify-content: space-between; gap: 24px; }
.mobile-nav__logo { display: inline-flex; max-width: min(58vw, 245px); align-items: center; }
.mobile-nav__logo img { width: auto; height: clamp(32px, 7vw, 43px); }
.mobile-nav__close {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .2s ease;
}
.mobile-nav__close:hover { opacity: .72; }
.mobile-nav__close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.mobile-nav__body { display: flex; flex: 1 0 auto; align-items: center; padding-block: clamp(42px, 8vh, 88px); }
.mobile-nav__list { width: min(100%, 720px); list-style: none; }
.mobile-nav__item { border-bottom: 1px solid rgb(255 255 255 / 13%); }
.mobile-nav__item:first-child { border-top: 1px solid rgb(255 255 255 / 13%); }
.mobile-nav__row { display: flex; min-width: 0; align-items: stretch; }
.mobile-nav__primary {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  padding-block: clamp(13px, 2.1vh, 20px);
  color: rgb(255 255 255 / 92%);
  font-size: clamp(1.45rem, 5.8vw, 1.9rem);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-align: left;
  transition: color .2s ease, transform .2s ease;
}
.mobile-nav a.mobile-nav__primary:hover { color: var(--white); transform: translateX(7px); }
.mobile-nav__primary--toggle { justify-content: space-between; gap: 20px; background: transparent; }
.mobile-nav__primary--toggle svg,
.mobile-nav__submenu-toggle svg { width: 23px; height: 23px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s ease; }
.mobile-nav__primary--toggle[aria-expanded="true"] svg,
.mobile-nav__submenu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.mobile-nav__submenu-toggle {
  display: grid;
  width: 58px;
  flex: 0 0 58px;
  place-items: center;
  background: transparent;
  color: rgb(255 255 255 / 68%);
  -webkit-tap-highlight-color: transparent;
  transition: color .2s ease;
}
.mobile-nav__submenu-toggle:hover,
.mobile-nav__submenu-toggle:active { background: transparent; color: var(--white); }
.mobile-nav__submenu-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s cubic-bezier(.22, 1, .36, 1); }
.mobile-nav__item.is-open .mobile-nav__submenu-wrap { grid-template-rows: 1fr; }
.mobile-nav__submenu { display: flex; min-height: 0; flex-direction: column; overflow: hidden; }
.mobile-nav__submenu a {
  width: fit-content;
  max-width: 100%;
  margin-left: clamp(12px, 4vw, 34px);
  padding: 7px 0;
  color: rgb(255 255 255 / 66%);
  font-size: clamp(1.08rem, 4.5vw, 1.25rem);
  line-height: 1.35;
  transition: color .2s ease, transform .2s ease;
}
.mobile-nav__submenu a:first-child { padding-top: 2px; }
.mobile-nav__submenu a:last-child { padding-bottom: 18px; }
.mobile-nav__submenu a:hover { color: var(--white); transform: translateX(5px); }
.mobile-nav__foot { display: grid; flex: 0 0 auto; gap: 12px; padding-top: 22px; border-top: 1px solid rgb(255 255 255 / 18%); }
.mobile-nav__contact-label { color: rgb(255 255 255 / 48%); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.mobile-nav__contacts { display: grid; gap: 18px; }
.mobile-nav__phone { display: inline-flex; width: fit-content; align-items: center; gap: 13px; font-size: clamp(1.18rem, 5.2vw, 1.7rem); font-weight: 700; letter-spacing: -.025em; }
.mobile-nav__phone img { width: 32px; height: 32px; flex: 0 0 32px; }
.mobile-nav__contact-meta { display: flex; flex-wrap: wrap; gap: 4px 22px; color: rgb(255 255 255 / 68%); font-size: .82rem; line-height: 1.5; }
.mobile-nav__cta { display: flex; width: 100%; min-height: 58px; align-items: center; justify-content: center; padding: 14px 24px; border: 1px solid var(--white); border-radius: 4px; background: var(--white); color: var(--primary); font-size: 1rem; font-weight: 750; line-height: 1.2; text-align: center; transition: background .2s ease, color .2s ease; }
.mobile-nav__cta:hover { background: transparent; color: var(--white); }

/* Общий компонент модальных форм. Стили живут только здесь: aquaspace-v2.css
   подключён на всех публичных страницах, включая главную. */
body.form-modal-open { overflow: hidden; }
.form-modal {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgb(3 16 29 / 82%);
}
.form-modal.is-open { display: flex; }
.form-modal-box {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100dvh - 48px);
  overscroll-behavior: contain;
  overflow-y: auto;
  padding: 42px 44px 44px;
  border: 0;
  border-radius: 0;
  background: var(--primary);
  box-shadow: none;
  color: var(--white);
  scrollbar-color: rgb(255 255 255 / 42%) transparent;
  scrollbar-width: thin;
}
.form-modal-close {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 8px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--white);
  cursor: pointer;
  transform: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity .2s ease;
}
.form-modal-close:hover { background: transparent; opacity: .72; transform: none; }
.form-modal-close:focus-visible { outline: 1px solid rgb(255 255 255 / 68%); outline-offset: -1px; background: transparent; }
.form-modal-close svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.form-modal .ip-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}
.form-modal .ip-form__title,
.form-modal .ip-form__lead,
.form-modal .ip-form__context,
.form-modal .ip-form__field[data-field="email"],
.form-modal .ip-form__field[data-field="message"],
.form-modal .ip-form__consent,
.form-modal .ip-form__submit,
.form-modal .ip-form__ok,
.form-modal .ip-form__err { grid-column: 1 / -1; }
.form-modal .ip-form__title { margin: 0 0 4px; padding-right: 42px; color: var(--white); font-size: clamp(1.65rem, 2.4vw, 2rem); font-weight: 800; line-height: 1.14; letter-spacing: -.025em; }
.form-modal .ip-form__lead { margin: -2px 0 4px; color: rgb(255 255 255 / 82%); font-size: 1rem; line-height: 1.55; }
.form-modal .ip-form__honeypot { position: fixed !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-modal .ip-form__context { display: grid; gap: 3px; padding: 11px 13px; border: 1px solid rgb(255 255 255 / 22%); border-radius: 0; background: rgb(255 255 255 / 9%); color: var(--white); font-size: .86rem; line-height: 1.4; }
.form-modal .ip-form__context[hidden],
.form-modal .ip-form__ok[hidden] { display: none; }
.form-modal .ip-form__context-label { color: rgb(255 255 255 / 66%); font-size: .75rem; }
.form-modal .ip-form__field { display: grid; min-width: 0; gap: 5px; }
.form-modal .ip-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.form-modal :is(.ip-form__input, .ip-form__textarea) {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 0;
  background: var(--white);
  color: var(--text);
  font: 700 1rem/1.3 "Manrope", Arial, sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.form-modal .ip-form__input { min-height: 50px; padding: 0 16px; }
.form-modal .ip-form__textarea { min-height: 116px; padding: 13px 16px; resize: vertical; }
.form-modal :is(.ip-form__input, .ip-form__textarea)::placeholder { color: rgb(23 23 23 / 62%); }
.form-modal :is(.ip-form__input, .ip-form__textarea):focus { outline: 0; border-color: #25cadd; box-shadow: 0 0 0 3px rgb(37 202 221 / 23%); }
.form-modal :is(.ip-form__input, .ip-form__textarea)[aria-invalid="true"] {
  border: 2px solid #da1e28;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='%23da1e28'/%3E%3Cpath d='M8 4.2v4.9M8 11.6v.2' fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}
.form-modal .ip-form__textarea[aria-invalid="true"] { background-position: right 14px top 14px; }
.form-modal .ip-form__consent { display: grid; grid-template-columns: 22px minmax(0, 1fr); align-items: center; gap: 7px 12px; margin-top: 2px; color: var(--white); font-size: .86rem; line-height: 1.45; }
.form-modal .ip-form__consent input {
  display: grid;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  place-content: center;
  appearance: none;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 0;
  background: var(--white);
  cursor: pointer;
}
.form-modal .ip-form__consent input::before {
  width: 11px;
  height: 6px;
  border-bottom: 2px solid #0e4699;
  border-left: 2px solid #0e4699;
  content: "";
  transform: rotate(-45deg) scale(0);
  transition: transform .16s ease;
}
.form-modal .ip-form__consent input:checked { border-color: #25cadd; background: #25cadd; }
.form-modal .ip-form__consent input:checked::before { transform: rotate(-45deg) scale(1); }
.form-modal .ip-form__consent input:focus-visible { outline: 3px solid rgb(122 220 232 / 46%); outline-offset: 2px; }
.form-modal .ip-form__consent input[aria-invalid="true"] { border: 2px solid #da1e28; background: var(--white); }
.form-modal .ip-form__consent a { color: var(--white); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.form-modal .ip-form__submit { width: 100%; min-height: 52px; margin-top: 2px; padding: 12px 28px; border: 1px solid #25cadd; border-radius: 0; background: #25cadd; color: #0e4699; font-size: 1.08rem; font-weight: 800; letter-spacing: -.015em; transition: transform .2s ease, background-color .2s ease; }
.form-modal .ip-form__submit:hover { background: #4bd8e7; transform: translateY(-2px); }
.form-modal .ip-form__submit:focus-visible { outline: 3px solid rgb(122 220 232 / 46%); outline-offset: 3px; }
.form-modal .ip-form__submit:disabled { cursor: wait; opacity: .65; }
.form-modal .ip-form__field-error,
.form-modal .ip-form__err { display: block; width: 100%; margin: 0; color: #ffd1d3; font-size: 12px; font-weight: 400; line-height: 17px; }
.form-modal .ip-form__consent .ip-form__field-error { grid-column: 2 / -1; padding-left: 0; }
.form-modal .ip-form__ok { display: grid; gap: 8px; }
.form-modal .ip-form__ok-title { margin: 0; color: var(--white); font-size: 1.45rem; font-weight: 800; }
.form-modal .ip-form__ok-text { margin: 0; color: rgb(255 255 255 / 82%); }

.hero {
  position: relative; display: flex; min-height: 100svh; align-items: center; overflow: hidden;
  padding-block: 146px 124px; isolation: isolate; background: #03101d; color: var(--white);
}
.hero::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: none;
  content: "";
  pointer-events: none;
  transform: scale(var(--hero-parallax-scale, 1));
  transform-origin: center;
  will-change: transform;
}
.aq-hero-slider .hero__slides,
.aq-hero-slider .hero__slide {
  position: absolute;
  inset: 0;
  height: 100%;
}
.aq-hero-slider .hero__slides { z-index: 0; overflow: hidden; }
.aq-hero-slider .hero__slide {
  opacity: 0;
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1);
}
.aq-hero-slider .hero__slide.is-active { opacity: 1; }
.aq-hero-slider .hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-parallax-y, 0px), 0) scale(var(--hero-parallax-scale, 1));
  transform-origin: center;
  will-change: transform;
}
.hero__shade { position: absolute; z-index: 0; inset: 0; background: linear-gradient(180deg, rgb(4 18 32 / 50%) 0%, rgb(3 16 29 / 61%) 52%, rgb(2 10 20 / 80%) 100%); pointer-events: none; }
.hero__inner { position: relative; z-index: 1; }
.hero__content { min-width: 0; }
.aq-hero-slider .hero__content { display: none; }
.aq-hero-slider .hero__content.is-active {
  display: block;
}
.aq-hero-slider .hero__details { display: none; }
.aq-hero-slider .hero__details.is-active { display: block; }
.aq-hero-slider .hero__footer:not(.is-active) { display: none; }
.hero__label { display: inline-flex; align-items: center; gap: 11px; color: var(--white); font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero__label img { width: 19px; height: 19px; filter: brightness(0) invert(1); }
.hero h1,
.hero__title { max-width: 900px; margin-top: 18px; font-size: clamp(3.2rem, 6.4vw, 5.8rem); font-weight: 750; letter-spacing: -.05em; line-height: 1.08; }
.hero p { max-width: 720px; margin-top: 27px; color: rgb(255 255 255 / 90%); font-size: clamp(1.05rem, 1.7vw, 1.22rem); line-height: 1.62; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__cta {
  display: inline-flex;
  width: 230px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 4px;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.2;
  transition: background .22s ease, transform .22s ease;
}
.hero__cta:hover { background: #0e67e7; transform: translateY(-2px); }
.hero__cta img { width: 17px; height: 17px; filter: brightness(0) invert(1); }
.hero__cta--outline { border: 1px solid rgb(255 255 255 / 72%); background: rgb(255 255 255 / 3%); }
.hero__cta--outline:hover { border-color: var(--white); background: var(--white); color: var(--heading); }
.hero__cta--outline:hover img { filter: brightness(0); }
.hero__features { display: grid; gap: 14px; margin-top: 34px; }
.hero-feature {
  display: grid;
  width: 100%;
  min-height: 112px;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border: 0;
  background: rgb(3 18 33 / 7%);
  color: var(--white);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-feature img { width: 72px; height: 72px; object-fit: contain; opacity: 1; }
.hero-feature div { min-width: 0; }
.hero-feature strong { display: block; font-size: clamp(1.02rem, 1.3vw, 1.14rem); font-weight: 750; line-height: 1.25; }
.hero-feature span { display: block; margin-top: 5px; color: rgb(255 255 255 / 75%); font-size: .88rem; font-weight: 500; line-height: 1.35; }
.hero__footer { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; display: flex; min-height: 108px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgb(255 255 255 / 16%); color: var(--white); }
.hero__object-types { max-width: 300px; font-size: 1.02rem; font-weight: 400; line-height: 1.35; }
.hero__footer-points { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 26px; }
.hero__footer-points span { display: inline-flex; align-items: center; gap: 9px; font-size: .94rem; }
.hero__footer-points img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.hero__slider-nav {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 3vw, 42px);
  bottom: 122px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__slider-nav > button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 45%);
  background: rgb(3 18 33 / 18%);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.hero__slider-nav > button:hover { border-color: #fff; background: rgb(255 255 255 / 12%); transform: translateY(-2px); }
.hero__slider-nav > button img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.hero__slider-dots { display: flex; gap: 7px; }
.hero__slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgb(255 255 255 / 42%);
  transition: width .2s ease, background .2s ease;
}
.hero__slider-dots button.is-active { width: 28px; background: #fff; }
@media (max-width: 719px) {
  .inner-hero { min-height: 260px; }
  .inner-hero__container { padding: 82px 0 0; }
  .inner-hero__crumbs { margin-top: 11px; font-size: .875rem; }
  .inner-hero h1 { font-size: clamp(1.8rem, 8vw, 2.15rem); line-height: 1.1; }

  .hero { min-height: 100svh; padding-block: 132px 48px; }
  .hero::before,
  .contact-request::before { background-attachment: scroll; }
  .hero__features { gap: 12px; margin-top: 26px; }
  .hero-feature { min-height: 92px; grid-template-columns: 58px minmax(0, 1fr); gap: 15px; padding: 13px 15px; backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
  .hero-feature img { width: 58px; height: 58px; }
  .hero-feature span { margin-top: 3px; font-size: .8rem; }
  .hero__footer { display: none; }
  .aq-hero-slider .hero__media { transform: none; }
  .hero__slider-nav { right: 16px; bottom: 18px; }
}

@media (min-width: 720px) {
  .header { top: 20px; right: 20px; left: 20px; height: 88px; }
  .hero { min-height: 100svh; margin: 0; border-radius: 0; }
}

@media (min-width: 960px) {
  .hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(350px, 420px); align-items: center; gap: clamp(64px, 8vw, 132px); }
  .hero__features { margin-top: 0; }
}

.about { container: about / inline-size; background: var(--primary); }
.about__grid { display: grid; }
.about__collage { position: relative; min-height: 0; aspect-ratio: 16 / 10; background: rgb(2 91 222 / 6%); }
.about__image { position: absolute; inset: 0; overflow: hidden; border-radius: 0; background: rgb(2 91 222 / 6%); }
.about__image img { width: 100%; height: 100%; object-fit: cover; }
.about__image--main img { object-position: center 56%; }
.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 10vw, 128px) max(24px, calc((100vw - var(--container)) / 2)) clamp(72px, 10vw, 128px) 24px;
  background: var(--primary);
}
.about__label { display: flex; align-items: center; gap: 10px; color: var(--heading); font-size: .875rem; font-weight: 700; letter-spacing: .14em; line-height: 1; text-transform: uppercase; }
.about__label img { width: 22px; height: 22px; }
.about .about__label { color: var(--white); }
.about .about__label img { filter: brightness(0) invert(1); }
.about__content > h2 { max-width: 600px; margin-top: 10px; color: var(--white); font-size: clamp(2.1rem, 7.8vw, 2.75rem); font-weight: 700; line-height: 1.14; letter-spacing: -.035em; }
.about__lead { max-width: 600px; margin-top: 32px; color: var(--white); font-size: clamp(1.1rem, 1.35vw, 1.24rem); line-height: 1.62; }
.about__lead strong { font-weight: 800; }
.about__text { max-width: 600px; margin-top: 16px; color: var(--white); font-size: clamp(1.06rem, 1.25vw, 1.18rem); line-height: 1.66; }
.about__points { display: grid; gap: 17px; margin-top: 38px; }
.about__point { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 12px; color: var(--white); font-size: clamp(1.05rem, 1.2vw, 1.14rem); line-height: 1.5; }
.about__point img { width: 28px; height: 28px; filter: brightness(0) invert(1); }

@container about (min-width: 1080px) {
  .about__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .about__collage { aspect-ratio: auto; }
  .about__content { padding-left: clamp(56px, 6vw, 96px); }
  .about__point { font-size: clamp(1.05rem, 1.2vw, 1.14rem); }
}

.section.services { padding-block: 72px; overflow: hidden; }
.services { container: services / inline-size; background: var(--white); }
.services__heading, .projects__heading { max-width: 1000px; margin-inline: auto; text-align: center; }
.services__heading { max-width: none; margin-right: auto; margin-left: 0; text-align: left; }
.projects__heading { width: min(100% - 32px, var(--container)); max-width: var(--container); margin-inline: auto; text-align: left; }
.services__heading h2, .projects__heading h2 { max-width: none; margin: 10px auto 0; color: var(--heading); font-size: clamp(2.25rem, 8.8vw, 3rem); font-weight: 700; line-height: 1.14; letter-spacing: -.035em; }
.services__heading h2, .projects__heading h2 { margin-right: 0; margin-left: 0; font-size: clamp(3rem, 5vw, 4.7rem); font-weight: 800; line-height: 1.02; }
.services__heading > p, .projects__heading > p { max-width: 540px; margin: 22px auto 0; color: var(--text); font-size: 1rem; line-height: 1.65; }
.services__heading > p, .projects__heading > p { max-width: none; margin-right: 0; margin-left: 0; font-size: clamp(1.14rem, 1.35vw, 1.28rem); line-height: 1.62; }
.services__label, .projects__label { justify-content: center; }
.services__label, .projects__label { justify-content: flex-start; }
.services__label img, .projects__label img { width: 22px; height: 22px; }
.services__grid { display: grid; gap: clamp(76px, 9vw, 132px); }
.service-card {
  --services-star-rotate: 0deg;
  position: relative; display: grid; overflow: visible; border-radius: 0; background: transparent; isolation: isolate;
}
.service-card::before { display: none; content: ""; }
.service-card::after {
  display: none;
  content: "";
}
.service-card__media { position: relative; z-index: 2; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 0; background: #dce9fb; }
.service-card__media img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; object-position: center; }
.service-card__media--gallery { position: relative; isolation: isolate; touch-action: pan-y; }
.service-gallery__main { position: absolute; inset: 0; user-select: none; }
.service-gallery__dock { position: absolute; z-index: 2; right: 12px; bottom: 12px; left: 12px; display: grid; min-width: 0; grid-template-columns: 40px minmax(0, 1fr) 40px; align-items: center; gap: 8px; padding: 6px; border-radius: 0; background: rgb(255 255 255 / 22%); backdrop-filter: blur(16px) saturate(110%); }
.service-gallery__arrow { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 0; background: rgb(255 255 255 / 42%); backdrop-filter: blur(12px); transition: background .2s ease; }
.service-gallery__arrow:hover { background: rgb(255 255 255 / 64%); }
.service-gallery__arrow img { width: 17px; height: 17px; min-height: 0; filter: brightness(0) saturate(100%); object-fit: contain; }
.service-gallery__track { display: flex; min-width: 0; align-items: center; gap: 5px; overflow-x: auto; padding: 2px 1px; scroll-behavior: smooth; scroll-snap-type: x proximity; scrollbar-width: none; touch-action: pan-x; }
.service-gallery__track::-webkit-scrollbar { display: none; }
.service-gallery__thumb { position: relative; width: 56px; height: 42px; min-width: 56px; flex: 0 0 56px; overflow: hidden; padding: 0; border: 0; border-radius: 0; background: transparent; opacity: .72; scroll-snap-align: center; transition: flex-basis .38s cubic-bezier(.2, .72, .2, 1), width .38s cubic-bezier(.2, .72, .2, 1), min-width .38s cubic-bezier(.2, .72, .2, 1), opacity .2s ease; }
.service-gallery__thumb img { height: 100%; min-height: 0; }
.service-gallery__thumb.is-active { width: 78px; min-width: 78px; flex-basis: 78px; opacity: 1; }
.service-gallery__thumb:hover { opacity: 1; }
.service-gallery__arrow:focus-visible { outline: 2px solid var(--white); outline-offset: -4px; }
.service-gallery__thumb:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.service-card__body { position: relative; z-index: 1; background: linear-gradient(rgb(255 255 255 / 22%), rgb(255 255 255 / 22%)), #dff3ff url("/assets/img/aquaspace-v2/services-nested-blob-contours-v4--w800.webp") center / cover no-repeat; padding: 38px 26px 34px; }
.service-card__title-row { display: block; }
.service-card h3 { color: var(--heading); font-size: clamp(2.05rem, 5.8vw, 2.75rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.06; }
.service-card__items { display: grid; gap: 24px; margin-top: 56px; }
.service-card__item { display: grid; grid-template-columns: 60px minmax(0, 1fr); align-items: center; gap: 16px; color: #171717; font-size: clamp(1.12rem, 1.45vw, 1.24rem); font-weight: 500; line-height: 1.5; }
.service-card__item-icon { display: grid; width: 60px; height: 60px; place-items: center; border-radius: 0; background: var(--primary); }
.service-card__item-icon img { width: 42px; height: 42px; filter: brightness(0) invert(1); object-fit: contain; }

@container services (min-width: 720px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card {
    width: 100vw;
    min-height: clamp(560px, 51vw, 650px);
    grid-template-columns:
      clamp(28px, 4vw, 76px)
      minmax(0, .95fr)
      clamp(32px, 6vw, 140px)
      minmax(0, 1.05fr)
      clamp(24px, 3vw, 64px);
    align-items: center;
    margin-left: calc(50% - 50vw);
    padding-block: clamp(58px, 6vw, 86px);
  }
  .service-card::before {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 33vw;
    display: block;
    background: linear-gradient(rgb(255 255 255 / 22%), rgb(255 255 255 / 22%)), #dff3ff url("/assets/img/aquaspace-v2/services-nested-blob-contours-v4--w800.webp") center / cover no-repeat;
  }
  .service-card::after {
    position: absolute;
    z-index: 0;
    right: clamp(28px, 4vw, 64px);
    bottom: clamp(28px, 4vw, 64px);
    display: block;
    width: 42px;
    aspect-ratio: 1;
    background: url("/templates/aquaspace/assets/icons/star-four-fill.svg") center / contain no-repeat;
    content: "";
    opacity: 1;
    pointer-events: none;
    transform: rotate(var(--services-star-rotate));
    transform-origin: 50% 50%;
  }
  .service-card__media { grid-column: 2 / 3; grid-row: 1; width: 100%; max-width: 620px; min-height: clamp(340px, 39vw, 560px); align-self: center; justify-self: end; }
  .service-gallery__dock { right: 18px; bottom: 18px; left: 18px; grid-template-columns: 46px minmax(0, 1fr) 46px; gap: 10px; }
  .service-gallery__arrow { width: 46px; height: 46px; }
  .service-gallery__track { gap: 7px; }
  .service-gallery__thumb { width: 64px; height: 48px; min-width: 64px; flex-basis: 64px; }
  .service-gallery__thumb.is-active { width: 104px; min-width: 104px; flex-basis: 104px; }
  .service-card__body { grid-column: 4 / 5; grid-row: 1; display: flex; width: 100%; max-width: 560px; min-width: 0; min-height: auto; flex-direction: column; justify-content: center; align-self: center; background: transparent; padding: 0; }
  .service-card h3 { font-size: clamp(2.15rem, 3vw, 3rem); }
  .service-card__items { gap: clamp(18px, 2.2vw, 24px); margin-top: clamp(38px, 5vw, 56px); }
}
@container services (min-width: 1280px) {
  .service-card::after { width: 82px; }
}

.guarantees {
  overflow: hidden;
  background: var(--white);
}
.guarantees__inner {
  display: grid;
  gap: clamp(34px, 5vw, 70px);
}
.guarantees__heading {
  max-width: none;
  margin-bottom: 0;
}
.guarantees__heading h2 {
  max-width: none;
  margin-top: 14px;
  color: var(--heading);
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.guarantees__heading > p {
  max-width: none;
  margin-top: 22px;
  color: var(--text);
  font-size: clamp(1.14rem, 1.35vw, 1.28rem);
  line-height: 1.62;
}
.guarantees__label {
  justify-content: flex-start;
}
.guarantees__label img {
  width: 22px;
  height: 22px;
}
.guarantees__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.guarantees__card-shell {
  position: relative;
  min-width: 0;
}
.guarantees__card {
  position: relative;
  display: grid;
  height: 100%;
  min-width: 0;
  align-content: start;
  overflow: hidden;
  padding: clamp(78px, 8.5vw, 102px) clamp(26px, 5vw, 46px) clamp(30px, 5vw, 48px);
  background: #25cadd;
  color: #0e4699;
}
.guarantees__card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  background: var(--white);
  content: "";
}
.guarantees__card::after {
  content: none;
}
.guarantees__arrow {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 9px;
  display: block;
  width: 46px;
  height: 46px;
}
.guarantees__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.guarantees__card h3 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  color: #0e4699;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.05em;
}
.guarantees__card p {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin-top: 24px;
  color: #0e4699;
  font-size: clamp(1.05rem, 1.18vw, 1.18rem);
  font-weight: 600;
  line-height: 1.56;
}

.contact-request {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #03101d;
  color: var(--white);
}
.contact-request::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--contact-image, url("/assets/img/aquaspace-v2/contact-pool-russian-house-sunny-v3.webp")) center calc(50% + var(--contact-parallax-y, 0px)) / cover fixed no-repeat;
  content: "";
  pointer-events: none;
  transform: scale(var(--contact-parallax-scale, 1));
  transform-origin: center;
  will-change: transform;
}
.contact-request::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgb(4 18 32 / 50%) 0%, rgb(3 16 29 / 61%) 52%, rgb(2 10 20 / 80%) 100%);
  content: "";
  pointer-events: none;
}
.contact-request__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding-block: 0 36px;
}
.contact-form {
  display: grid;
  gap: 24px;
  padding: clamp(30px, 4.2vw, 48px);
  background: var(--primary);
  color: var(--white);
}
.contact-form > .ip-form {
  display: grid;
  gap: 12px;
}
.contact-form .ip-form__honeypot {
  position: fixed !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.contact-form .ip-form__context[hidden],
.contact-form .ip-form__ok[hidden] { display: none; }
.contact-form .ip-form__context {
  padding: 10px 12px;
  border: 1px solid rgb(255 255 255 / 20%);
  color: #fff;
  font-size: .82rem;
}
.contact-form h2,
.contact-form .ip-form__title {
  max-width: 560px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.1vw, 1.9rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.contact-form__lead,
.contact-form .ip-form__lead {
  max-width: 520px;
  color: #fff;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 400;
  line-height: 1.55;
}
.contact-form__lead { margin-top: -14px; }
.contact-form .ip-form__lead { margin: -1px 0 12px; }
.contact-form__fields,
.contact-form .ip-form__fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
.contact-form__field,
.contact-form .ip-form__field {
  display: grid;
}
.contact-form .ip-form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 4px;
  background: var(--white);
  color: #171717;
  font: 700 1rem/1.3 "Manrope", Arial, sans-serif;
}
.contact-form input {
  min-height: 46px;
  padding: 0 16px;
}
.contact-form textarea {
  min-height: 112px;
  padding: 12px 16px;
  resize: vertical;
}
.contact-form .ip-form__textarea { min-height: 150px; }
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgb(23 23 23 / 62%);
}
.contact-form__agree,
.contact-form .ip-form__consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: #fff;
  font-size: .9rem;
  line-height: 1.45;
}
.contact-form .ip-form__consent { margin-top: 12px; }
.contact-form__agree input,
.contact-form .ip-form__consent input {
  width: 22px;
  height: 22px;
  min-height: 0;
  margin-top: 1px;
  padding: 0;
  accent-color: var(--heading);
}
.contact-form__agree a,
.contact-form .ip-form__consent a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.contact-form__button,
.contact-form .ip-form__submit {
  min-height: 52px;
  padding: 12px 28px;
  border: 1px solid #25cadd;
  border-radius: 4px;
  background: #25cadd;
  color: #0e4699;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.015em;
  text-transform: none;
  transition: transform .2s ease, background .2s ease;
}
.contact-form .ip-form__submit { margin-top: 12px; }
.contact-form__button:hover,
.contact-form .ip-form__submit:hover {
  background: #4bd8e7;
  transform: translateY(-2px);
}
.contact-form .ip-form__field-error,
.contact-form .ip-form__err {
  display: block;
  width: 100%;
  margin: 0;
  color: #ffd1d3;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}
.contact-form .ip-form__consent .ip-form__field-error {
  grid-column: 2 / -1;
  padding-left: 0;
}
.contact-form .ip-form__err { grid-column: 1 / -1; }
.contact-form :is(.ip-form__input, .ip-form__textarea)[aria-invalid="true"] {
  border: 2px solid #da1e28;
  padding-right: 42px;
  box-shadow: none;
}
.contact-request__content {
  display: grid;
  align-content: center;
  gap: 22px;
  min-width: 0;
  padding-block: 14px;
}
.contact-request__content h2 {
  max-width: none;
  color: var(--white);
  font-size: clamp(2.5rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.contact-request__content p {
  max-width: 500px;
  color: #fff;
  font-size: clamp(1.12rem, 1.34vw, 1.24rem);
  font-weight: 400;
  line-height: 1.62;
}
.contact-request__contacts {
  display: grid;
  gap: 14px;
  margin-top: clamp(16px, 3vw, 34px);
}
.contact-request__item {
  display: inline-grid;
  width: fit-content;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
}
.contact-request__item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  color: currentColor;
}
.contact-request__item span {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.contact-request__item span::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--white);
  content: '';
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
}
.contact-request__item:is(:hover, :focus-visible) span::after {
  transform: scaleX(1);
  transform-origin: left center;
}
.contact-request__item:is(:hover, :focus-visible) {
  color: var(--white);
}

.section.projects { padding-block: 82px 94px; }
.projects { overflow: hidden; background: var(--white); }
.projects__heading { margin-bottom: 44px; }
.projects-wall {
  --projects-wall-gap: 14px;
  display: grid;
  width: calc(100% - 32px);
  gap: var(--projects-wall-gap);
  margin-inline: auto;
}
.projects-wall__batch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--projects-wall-gap);
}
.projects-wall__batch[hidden],
.projects__more[hidden] { display: none; }
.projects-wall__batch--partial {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.projects-wall__batch--partial .projects-wall__item {
  flex: 0 0 calc((100% - var(--projects-wall-gap)) / 2);
  aspect-ratio: 1 / 1;
}
.projects-wall__item {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 0;
  appearance: none;
  background: #eef1f4;
  isolation: isolate;
  cursor: zoom-in;
  transition: opacity .42s ease;
  aspect-ratio: 1 / 1;
}
.projects-wall__item--main { grid-column: 1 / -1; aspect-ratio: 16 / 10; }
.projects-wall__item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
}
.projects-wall__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(rgb(4 34 69 / 9%), rgb(4 34 69 / 9%)),
    linear-gradient(rgb(2 91 222 / 3%), rgb(2 91 222 / 3%));
  pointer-events: none;
  transition: opacity .42s cubic-bezier(.22, 1, .36, 1);
}
.projects-wall__item::before,
.projects-wall__item::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 50%;
  background: rgb(4 34 69 / 9%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition:
    opacity .18s ease,
    transform .56s cubic-bezier(.22, 1, .36, 1) .045s;
  will-change: transform;
}
.projects-wall__item::before {
  left: 0;
  transform-origin: left center;
}
.projects-wall__item::after {
  right: 0;
  transform-origin: right center;
}
.projects-wall__item.is-viewer-source { opacity: 0; pointer-events: none; transition: none; }
.projects-wall__item:focus-visible { outline: 3px solid rgb(2 91 222 / 58%); outline-offset: 4px; }
.projects__more {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin: 14px auto 0;
  padding: 20px;
  background: var(--white);
}
.projects__more-button {
  min-height: 52px;
  padding: 12px 48px;
  border: 1px solid #25cadd;
  border-radius: 4px;
  background: #25cadd;
  color: #0e4699;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.015em;
  transition: transform .2s ease, background .2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .projects-wall__item:hover .projects-wall__shade { opacity: 0; }
  .projects-wall__item:hover::before,
  .projects-wall__item:hover::after { opacity: 1; }
  .projects-wall__item:hover::before { transform: translateX(-101%); }
  .projects-wall__item:hover::after { transform: translateX(101%); }
  .projects__more-button:hover { background: #4bd8e7; transform: translateY(-2px); }
}
@media (min-width: 720px) {
  .projects__more { margin-top: -32px; }
}

.process {
  background: var(--primary);
  color: var(--white);
}
.process__sticky {
  display: grid;
  min-height: 100svh;
  background: var(--primary);
}
.process__media {
  position: relative;
  min-height: 56svh;
  overflow: hidden;
  background: var(--heading);
}
.process__media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(180deg, rgb(4 34 69 / 18%), rgb(4 34 69 / 42%));
  content: "";
  pointer-events: none;
}
.process__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity .46s ease;
}
.process__image.is-active { opacity: 1; }
.process__media-title {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 5vw, 64px);
  bottom: clamp(24px, 5vw, 64px);
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  color: var(--white);
  font-size: clamp(1.65rem, 5.2vw, 3.35rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.process__media-title img {
  width: clamp(42px, 5.2vw, 60px);
  height: clamp(42px, 5.2vw, 60px);
  flex: 0 0 auto;
}
.process__mobile-title,
.process__mobile-toggle,
.process__pane-media { display: none; }
.process__collapse { display: contents; }
.process__content {
  min-width: 0;
  overflow: hidden;
  padding: clamp(56px, 12vw, 96px) clamp(18px, 6vw, 64px);
}
.process__track {
  display: grid;
  gap: 74px;
}
.process__pane {
  min-width: 0;
  transition:
    opacity .34s ease,
    transform .34s ease;
}
.process__pane-inner {
  max-width: 690px;
}
.process h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.05em;
}
.process__steps {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 4.2vw, 52px);
}
.process__steps::before {
  position: absolute;
  z-index: 0;
  top: 28px;
  bottom: 28px;
  left: 28px;
  width: 2px;
  background: #25cadd;
  content: "";
}
.process__step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 58px;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.1rem, 4.2vw, 1.34rem);
  font-weight: 600;
  line-height: 1.38;
}
.process__number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: #25cadd;
  color: #0e4699;
  font-size: 1.15rem;
  font-weight: 850;
  line-height: 1;
}
.process__button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 46px);
  padding: 16px 26px;
  border: 1px solid rgb(255 255 255 / 82%);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}
.process__button:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 8%);
  transform: translateY(-2px);
}

body.is-project-viewer-open { overflow: hidden; }
.project-viewer {
  position: fixed;
  z-index: 100;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100dvh;
  max-height: none;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}
.project-viewer:not([open]) { display: none; }
.project-viewer::backdrop { background: transparent; }
.project-viewer__backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgb(4 34 69 / 97%);
  opacity: 0;
  transition: opacity .54s cubic-bezier(.22, 1, .36, 1);
}
.project-viewer.is-visible .project-viewer__backdrop { opacity: 1; }
.project-viewer__stage { position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.project-viewer__image {
  position: fixed;
  z-index: 1;
  max-width: none;
  object-fit: cover;
  box-shadow: 0 36px 100px rgb(0 8 22 / 38%);
  will-change: top, left, width, height, border-radius, opacity, filter, transform;
}
.project-viewer__control {
  position: fixed;
  z-index: 3;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 88%);
  box-shadow: 0 12px 34px rgb(0 8 22 / 22%);
  opacity: 0;
  pointer-events: none;
  transform: scale(.86);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  transition: background .24s ease, opacity .34s ease, transform .42s cubic-bezier(.22, 1, .36, 1);
}
.project-viewer.is-ready .project-viewer__control { opacity: 1; pointer-events: auto; transform: scale(1); }
.project-viewer__control:hover { background: var(--white); transform: scale(1.06); }
.project-viewer__control:focus-visible { outline: 2px solid rgb(255 255 255 / 72%); outline-offset: 4px; }
.project-viewer__control img { width: 21px; height: 21px; filter: brightness(0) saturate(100%); }
.project-viewer__close { top: 24px; right: 24px; }
.project-viewer__close img { transform: rotate(45deg); }
.project-viewer__previous, .project-viewer__next { top: 50%; margin-top: -26px; }
.project-viewer__previous { left: 24px; }
.project-viewer__next { right: 24px; }

@media (max-width: 619px) {
  .project-viewer__control { width: 46px; height: 46px; }
  .project-viewer__close { top: 14px; right: 14px; }
  .project-viewer__previous, .project-viewer__next { margin-top: -23px; }
  .project-viewer__previous { left: 10px; }
  .project-viewer__next { right: 10px; }
}

.footer {
  container: footer / inline-size;
  background: var(--primary);
  color: var(--white);
}
.footer__main {
  display: grid;
  gap: 52px;
  padding-block: 72px 58px;
}
.footer__identity {
  max-width: 560px;
}
.footer__brand {
  display: inline-block;
  width: min(100%, 440px);
}
.footer__brand img { width: 100%; height: auto; }
.footer__identity p {
  max-width: 540px;
  margin-top: 28px;
  color: rgb(255 255 255 / 76%);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
}
.footer__navigation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.footer__group,
.footer__contacts {
  min-width: 0;
}
.footer h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 750;
  line-height: 1.3;
}
.footer__links,
.footer__contact-list {
  display: grid;
  align-content: start;
  gap: 13px;
}
.footer__links a {
  width: fit-content;
  color: rgb(255 255 255 / 72%);
  font-size: 1rem;
  line-height: 1.45;
  transition: color .2s ease, transform .2s ease;
}
.footer__links a:hover {
  color: var(--white);
  transform: translateX(3px);
}
.footer__contact {
  display: grid;
  width: fit-content;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  color: rgb(255 255 255 / 82%);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color .2s ease;
}
.footer__contact--phone {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 750;
}
.footer__contact img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.footer__contact:hover {
  color: var(--white);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px 32px;
  padding-block: 24px 28px;
  border-top: 1px solid rgb(255 255 255 / 18%);
  color: rgb(255 255 255 / 62%);
  font-size: .84rem;
  line-height: 1.5;
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.footer__legal-links a {
  color: rgb(255 255 255 / 68%);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease;
}
.footer__legal-links a:hover {
  color: var(--white);
}
@container footer (min-width: 760px) {
  .footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(48px, 6vw, 72px);
    row-gap: 48px;
  }
  .footer__identity {
    grid-column: 1;
    grid-row: 1;
  }
  .footer__navigation {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
  .footer__contacts {
    grid-column: 1;
    grid-row: 2;
  }
}
@container footer (min-width: 1280px) {
  .footer__main {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, .72fr);
    gap: clamp(48px, 4vw, 72px);
    padding-block: 88px 72px;
  }
  .footer__identity,
  .footer__navigation,
  .footer__contacts {
    grid-row: 1;
  }
  .footer__identity { grid-column: 1; }
  .footer__navigation { grid-column: 2; }
  .footer__contacts { grid-column: 3; }
}

@media (max-width: 719px) {
  .footer__brand { width: 80%; }
  .guarantees__card::before {
    width: 52px;
    height: 52px;
  }
  .guarantees__arrow {
    top: 8px;
    left: 8px;
    width: 36px;
    height: 36px;
  }
}
@media (min-width: 620px) {
  .container { width: min(100% - 48px, var(--container)); }
  .section { padding-block: 110px; }
  .section.services { padding-block: 96px; }
  .section.projects { padding-block: 106px 118px; }
  .projects__heading { margin-bottom: 52px; }
  .projects-wall { --projects-wall-gap: 18px; width: calc(100% - 48px); }
  .hero__actions { flex-direction: row; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 720px) {
  .services { margin: 0; border-radius: 0; }
  .projects-wall { width: calc(100% - 36px); }
  .guarantees__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
}
@media (min-width: 1120px) {
  .nav { display: flex; }
  .header__tools { display: flex; }
  .header__mobile-actions { display: none; }
}
@media (max-width: 899px) {
  .contact-request__content { display: contents; }
  .contact-request__content h2 {
    order: 1;
    margin-top: 36px;
  }
  .contact-request__content > p { order: 2; }
  .contact-request__inner > .contact-form { order: 3; }
  .contact-request__contacts {
    order: 4;
    margin-top: 0;
    padding-block: 14px;
  }
  .process__sticky { min-height: auto; }
  .process__media { display: none; }
  .process__content {
    width: min(100%, 680px);
    overflow: visible;
    margin-inline: auto;
    padding: 62px 18px 72px;
  }
  .process__mobile-title {
    display: block;
    margin-bottom: 26px;
    color: var(--white);
    font-size: clamp(2.15rem, 10vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: .98;
  }
  .process__track {
    gap: 0;
    border-top: 1px solid rgb(255 255 255 / 24%);
  }
  .process__pane {
    border-bottom: 1px solid rgb(255 255 255 / 24%);
  }
  .process__mobile-toggle {
    display: grid;
    width: 100%;
    min-height: 88px;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border: 0;
    background: transparent;
    color: var(--white);
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }
  .process__mobile-toggle-copy {
    display: block;
  }
  .process__mobile-toggle-copy strong {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.08;
  }
  .process__mobile-toggle > img {
    width: 42px;
    height: 42px;
    transition: transform .38s cubic-bezier(.22, 1, .36, 1);
  }
  .process__mobile-toggle[aria-expanded="true"] > img { transform: rotate(90deg); }
  .process__mobile-toggle:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 4px;
  }
  .process__collapse {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      grid-template-rows .5s cubic-bezier(.22, 1, .36, 1),
      opacity .28s ease,
      transform .42s cubic-bezier(.22, 1, .36, 1),
      visibility 0s linear .5s;
  }
  .process__mobile-toggle[aria-expanded="true"] + .process__collapse {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
  .process__pane-inner {
    max-width: none;
    min-height: 0;
    overflow: hidden;
    padding-bottom: 0;
  }
  .process__pane-body { padding-bottom: 34px; }
  .process__pane-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin: 2px 0 30px;
    background: var(--heading);
  }
  .process__pane-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    transform: scale(1.035);
    transition:
      opacity .34s ease .06s,
      transform .58s cubic-bezier(.22, 1, .36, 1);
  }
  .process__mobile-toggle[aria-expanded="true"] + .process__collapse .process__pane-media img {
    opacity: 1;
    transform: scale(1);
  }
  .process h2 { display: none; }
  .process__steps {
    gap: 14px;
    margin-top: 0;
  }
  .process__steps::before {
    top: 21px;
    bottom: 21px;
    left: 20px;
  }
  .process__step {
    min-height: 42px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    font-size: clamp(1rem, 4.45vw, 1.12rem);
    line-height: 1.36;
  }
  .process__number {
    width: 42px;
    height: 42px;
    font-size: .92rem;
  }
  .process__button {
    width: 100%;
    min-height: 54px;
    margin-top: 30px;
    padding: 14px 20px;
  }
}
@media (min-width: 900px) {
  .desktop-break { display: block; }
  .contact-request {
    min-height: auto;
  }
  .contact-request__inner {
    width: 100%;
    grid-template-columns:
      minmax(20px, 1fr)
      minmax(0, 760px)
      minmax(400px, 500px)
      minmax(20px, 1fr);
    align-items: center;
    gap: clamp(20px, 1.7vw, 28px);
    margin-inline: 0;
    padding-block: 0 clamp(28px, 3vw, 44px);
  }
  .contact-form {
    grid-column: 3;
    grid-row: 1;
    width: 100%;
    align-self: start;
    align-content: center;
  }
  .contact-request .contact-form { padding-inline: clamp(30px, 4.2vw, 45px); }
  .contact-request .ip-form__consent { align-items: center; }
  .contact-request .ip-form__consent input { margin-top: 0; }
  .contact-request__content {
    grid-column: 2;
    grid-row: 1;
    width: min(100%, 660px);
    justify-self: end;
    padding: 0;
  }
  .process {
    height: 300svh;
  }
  .process__sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    overflow: hidden;
  }
  .process__media {
    min-height: 0;
    height: 100svh;
  }
  .process__content {
    height: 100svh;
    padding: 0;
  }
  .process__track {
    position: relative;
    display: grid;
    height: 100%;
    align-items: center;
    will-change: transform;
  }
  .process__pane {
    display: grid;
    grid-area: 1 / 1;
    width: 100%;
    min-height: auto;
    align-items: center;
    padding:
      clamp(46px, 6vh, 74px)
      max(clamp(48px, 6vw, 104px), calc((100vw - var(--container)) / 2))
      clamp(46px, 6vh, 74px)
      clamp(54px, 6vw, 110px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(22px);
  }
  .process__pane.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .process__pane-inner {
    max-width: 720px;
  }
  .process h2 {
    font-size: clamp(2.95rem, 4vw, 4.2rem);
  }
  .process__steps {
    gap: clamp(13px, 1.45vh, 19px);
    margin-top: clamp(30px, 4vh, 48px);
  }
  .process__step {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 18px;
    min-height: 54px;
    font-size: clamp(1.12rem, 1.2vw, 1.32rem);
  }
  .process__number {
    width: 54px;
    height: 54px;
    font-size: 1.08rem;
  }
  .process__steps::before {
    top: 27px;
    bottom: 27px;
    left: 26px;
  }
}

@media (min-width: 768px) and (max-width: 1119px) {
  .mobile-nav__panel { padding-inline: 48px; }
  .mobile-nav__body { padding-block: clamp(56px, 10vh, 104px); }
}

@media (max-width: 600px) {
  .form-modal { align-items: flex-end; padding: 0; }
  .form-modal-box { width: 100%; max-height: calc(100dvh - 12px); padding: 32px 16px 24px; border-radius: 0; }
  .form-modal-close { top: 8px; right: 8px; }
  .form-modal .ip-form { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .form-modal .ip-form > * { grid-column: 1; }
  .form-modal .ip-form__title { font-size: 1.5rem; }
  .form-modal .ip-form__textarea { min-height: 96px; }
  .form-modal .ip-form__consent { align-items: start; column-gap: 10px; font-size: .8rem; }
}

@media (max-width: 420px) {
  .header { top: 8px; right: 8px; left: 8px; }
  .header__inner.container { padding-inline: 12px; }
  .logo img { height: 29px; }
  .header__mobile-actions { gap: 12px; }
  .header__mobile-link,
  .header__menu-button { width: 36px; height: 42px; }
  .header__mobile-link img { width: 29px; height: 29px; }
  .mobile-nav__panel { padding-inline: 18px; }
  .mobile-nav__close { width: 44px; height: 44px; flex-basis: 44px; }
  .mobile-nav__body { padding-block: 36px; }
  .mobile-nav__primary { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-nav,
  .mobile-nav__panel,
  .mobile-nav__submenu-wrap,
  .header__menu-icon i { transition-duration: .01ms !important; }
}
@media (min-width: 1200px) {
  .section { padding-block: 132px; }
  .section.projects { padding-block: 132px 144px; }
  .projects-wall {
    --projects-wall-gap: clamp(26px, 2.08vw, 40px);
    width: calc(100% - clamp(40px, 4.2vw, 80px));
  }
  .projects-wall__batch {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    aspect-ratio: 2.37 / 1;
  }
  .projects-wall__item { aspect-ratio: auto; }
  .projects-wall__item--a { grid-column: 1; grid-row: 1; }
  .projects-wall__item--b { grid-column: 2; grid-row: 1; }
  .projects-wall__item--c { grid-column: 1; grid-row: 2; }
  .projects-wall__item--d { grid-column: 2; grid-row: 2; }
  .projects-wall__item--main { grid-column: 3; grid-row: 1 / span 2; }
  .projects-wall__batch:not(.projects-wall__batch--partial) .projects-wall__item--main > img { object-position: var(--projects-parallax-position, 50%) center; will-change: object-position; }
  .projects-wall__item--e { grid-column: 4; grid-row: 1; }
  .projects-wall__item--f { grid-column: 4; grid-row: 2; }
  .projects-wall__batch--mirrored .projects-wall__item--a { grid-column: 4; }
  .projects-wall__batch--mirrored .projects-wall__item--b { grid-column: 3; }
  .projects-wall__batch--mirrored .projects-wall__item--c { grid-column: 4; }
  .projects-wall__batch--mirrored .projects-wall__item--d { grid-column: 3; }
  .projects-wall__batch--mirrored .projects-wall__item--main { grid-column: 2; }
  .projects-wall__batch--mirrored .projects-wall__item--e { grid-column: 1; }
  .projects-wall__batch--mirrored .projects-wall__item--f { grid-column: 1; }
  .projects-wall__batch--partial {
    display: flex;
    aspect-ratio: auto;
  }
  .projects-wall__batch--partial .projects-wall__item {
    flex-basis: calc((100% - var(--projects-wall-gap) - var(--projects-wall-gap) - var(--projects-wall-gap)) / 4);
    aspect-ratio: 1 / 1;
  }
  .guarantees__grid { gap: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

/* v2 base: straight architecture, rounding remains only on controls/buttons. */
:where(
  .hero,
  .about__image,
  .service-card,
  .service-card__media,
  .service-gallery__dock,
  .service-gallery__thumb,
  .service-card__item-icon,
  .guarantees__card,
  .projects-wall__item,
  .project-viewer__image
) {
  border-radius: 0;
}
