:root {
  --red: #e50914;
  --red-dark: #b80710;
  --ink: #111113;
  --graphite: #252529;
  --muted: #73737b;
  --line: #e7e7ea;
  --soft: #f6f7f8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

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

/* Shared header standard used by every page. */
body .site-header.site-header--standard {
  min-height: 94px;
  grid-template-columns: minmax(300px, 1fr) auto minmax(215px, .72fr);
  gap: clamp(20px, 2.4vw, 36px);
  padding: 9px clamp(24px, 3.8vw, 60px);
  overflow: visible;
}

body .site-header--standard .brand { gap: 14px; }
body .site-header--standard .brand__logo,
body .site-header--standard .brand__logo img { width: 72px; height: 72px; flex-basis: 72px; }
body .site-header--standard .brand__text strong { font-size: clamp(17px, 1.25vw, 22px); }
body .site-header--standard .brand__text span { font-size: 14px; }
body .site-header--standard .main-nav { align-self: stretch; gap: clamp(22px, 2.5vw, 40px); font-size: 14px; }
body .site-header--standard .main-nav > a,
body .site-header--standard .nav-services > a { min-height: 100%; display: flex; align-items: center; padding: 0; position: relative; border: 0; }
body .site-header--standard .main-nav > a::after,
body .site-header--standard .nav-services > a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--red); transform: scaleX(0); transition: transform 180ms ease; }
body .site-header--standard .main-nav > a:hover::after,
body .site-header--standard .main-nav > a:focus-visible::after,
body .site-header--standard .main-nav > a.is-active::after,
body .site-header--standard .nav-services:hover > a::after,
body .site-header--standard .nav-services:focus-within > a::after,
body .site-header--standard .nav-services.is-active > a::after { transform: scaleX(1); }
body .site-header--standard .main-nav > a.is-active,
body .site-header--standard .nav-services.is-active > a { color: var(--red); }
body .site-header--standard .header-contacts { gap: 5px; font-size: 16px; }

.nav-services { min-height: 100%; display: flex; align-items: center; position: relative; }
.nav-services > a { gap: 6px; }
.nav-services > a svg { width: 15px; height: 15px; transition: transform 180ms ease; }
.nav-services__dropdown { position: absolute; top: calc(100% - 1px); left: -22px; width: 310px; padding: 17px 8px 8px; border: 1px solid var(--line); background: #fff; box-shadow: 0 18px 45px rgba(17,17,19,.16); opacity: 0; visibility: hidden; transform: translateY(-8px); pointer-events: none; transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; z-index: 80; }
.nav-services:hover .nav-services__dropdown,
.nav-services:focus-within .nav-services__dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nav-services:hover > a svg,
.nav-services:focus-within > a svg { transform: rotate(180deg); }
body .site-header--standard .nav-services__dropdown a { min-height: 44px; display: flex; align-items: center; padding: 0 14px; border: 0; color: #292d34; font-size: 14px; white-space: normal; transition: color 160ms ease, background 160ms ease; }
body .site-header--standard .nav-services__dropdown a:hover,
body .site-header--standard .nav-services__dropdown a:focus-visible,
body .site-header--standard .nav-services__dropdown a[aria-current="page"] { color: var(--red); background: rgba(229,9,20,.055); outline: 0; }

.mobile-services { display: grid; }
.mobile-services__head { display: grid; grid-template-columns: minmax(0, 1fr) 48px; gap: 4px; }
.mobile-services__toggle { display: flex; align-items: center; justify-content: center; border: 0; border-radius: 6px; color: #252a32; background: transparent; cursor: pointer; }
.mobile-services__toggle svg { width: 20px; height: 20px; transition: transform 180ms ease; }
.mobile-services__submenu { max-height: 0; display: grid; gap: 2px; overflow: hidden; opacity: 0; transition: max-height 240ms ease, opacity 180ms ease, padding 240ms ease; }
.mobile-services.is-open .mobile-services__submenu { max-height: 240px; padding: 5px 0 8px 14px; opacity: 1; }
.mobile-services.is-open .mobile-services__toggle svg { transform: rotate(180deg); }

@media (max-width: 1180px) {
  body .site-header.site-header--standard { min-height: 82px; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; padding: 12px clamp(20px, 4vw, 40px); }
  body .site-header--standard .brand { gap: 14px; }
  body .site-header--standard .brand__logo,
  body .site-header--standard .brand__logo img { width: 68px; height: 68px; flex-basis: 68px; }
  body .site-header--standard .brand__text strong { font-size: clamp(18px, 2.4vw, 23px); }
  body .site-header--standard .brand__text span { font-size: 15px; }
  .mobile-menu { overflow-y: auto; overscroll-behavior: contain; }
  .mobile-menu__nav .mobile-services__head > a { min-width: 0; }
  .mobile-menu__nav .mobile-services__toggle:hover,
  .mobile-menu__nav .mobile-services__toggle:focus-visible { color: var(--red); background: rgba(229,9,20,.06); outline: 0; }
  .mobile-menu__nav .mobile-services__submenu a { min-height: 42px; padding: 0 12px; color: #555b64; font-size: 15px; font-weight: 600; }
  .mobile-menu__nav .mobile-services.is-active .mobile-services__head > a { color: var(--red); background: rgba(229,9,20,.06); }
}

@media (max-width: 820px) {
  body .site-header.site-header--standard { min-height: 76px; gap: 12px; padding: 10px 18px; }
  body .site-header--standard .brand { gap: 12px; }
  body .site-header--standard .brand__logo,
  body .site-header--standard .brand__logo img { width: 56px; height: 56px; flex-basis: 56px; }
  body .site-header--standard .brand__text strong { white-space: normal; font-size: clamp(15px, 3.6vw, 18px); }
  body .site-header--standard .brand__text span { font-size: 13px; }
}

@media (max-width: 520px) {
  body .site-header.site-header--standard { min-height: 70px; padding: 9px 14px; }
  body .site-header--standard .brand__logo,
  body .site-header--standard .brand__logo img { width: 50px; height: 50px; flex-basis: 50px; }
  body .site-header--standard .brand__text strong { font-size: clamp(14px, 4vw, 16px); }
  body .site-header--standard .brand__text span { display: none; }
}

/* Unified footer */
.site-footer--unified .site-footer__inner {
  grid-template-columns: minmax(270px, 1.25fr) minmax(150px, .7fr) minmax(210px, .95fr) minmax(245px, 1fr) minmax(250px, 1fr);
  gap: clamp(26px, 2.6vw, 52px);
  padding-block: clamp(44px, 4vw, 68px);
}

.site-footer--unified .site-footer__brand {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 22px;
}

.site-footer--unified .site-footer__logo {
  width: 96px;
  padding: 0;
  background: transparent;
}

.site-footer--unified .site-footer__logo img {
  object-fit: contain;
}

.site-footer--unified .site-footer__brand strong {
  font-size: clamp(18px, 1.35vw, 24px);
}

.site-footer--unified .site-footer__brand div > p:last-child {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.55;
}

.site-footer--unified .site-footer__column h2 {
  margin-bottom: 20px;
}

.site-footer--unified .site-footer__nav a {
  padding: 8px 0;
  line-height: 1.35;
}

.site-footer--unified .site-footer__contact {
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 11px;
  font-size: 14px;
}

.site-footer--unified .site-footer__contact > span:first-child {
  width: 34px;
  height: 34px;
}

.site-footer--unified .site-footer__contact + .site-footer__contact {
  margin-top: 13px;
}

.site-footer__line {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin: 15px 0 0;
  color: #c9cbd0;
  font-size: 13px;
  line-height: 1.5;
}

.site-footer__line svg {
  width: 18px;
  height: 18px;
  color: #ed111c;
}

.site-footer--unified .site-footer__details p {
  font-size: 13px;
  line-height: 1.48;
}

.site-footer__requisites {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 18px;
}

.site-footer--unified .site-footer__requisites p {
  margin: 0;
}

@media (max-width: 1380px) {
  .site-footer--unified .site-footer__inner {
    grid-template-columns: minmax(300px, 1.2fr) repeat(2, minmax(210px, 1fr));
  }

  .site-footer--unified .site-footer__contacts,
  .site-footer--unified .site-footer__details {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .site-footer--unified .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer--unified .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-footer--unified .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-block: 40px;
  }

  .site-footer--unified .site-footer__brand {
    grid-column: auto;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 16px;
  }

  .site-footer--unified .site-footer__logo {
    width: 78px;
  }

  .site-footer--unified .site-footer__brand strong {
    font-size: 18px;
  }

  .site-footer--unified .site-footer__nav {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .site-footer--unified .site-footer__nav h2 {
    grid-column: auto;
  }
}

.site-header {
  min-height: 108px;
  display: grid;
  grid-template-columns: minmax(330px, 1.05fr) auto minmax(230px, 0.6fr);
  align-items: center;
  gap: 28px;
  padding: 12px clamp(24px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: relative;
  z-index: 5;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.brand__logo {
  width: 88px;
  height: 88px;
  flex: 0 0 88px;
  display: grid;
  place-items: center;
  background: var(--white);
}

.brand__logo img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.brand__text strong {
  font-size: clamp(20px, 1.65vw, 27px);
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__text span {
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.25;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--graphite);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  white-space: nowrap;
}

.main-nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.header-contacts {
  display: grid;
  gap: 8px;
  justify-self: end;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 17px;
}

.header-contacts a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.header-contacts svg,
.hero__meta svg,
.button svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: 0 0 auto;
}

.menu-toggle,
.mobile-menu,
.mobile-menu__backdrop {
  display: none;
}

.menu-toggle,
.mobile-menu__close {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.mobile-menu__close:hover,
.mobile-menu__close:focus-visible {
  border-color: rgba(229, 9, 20, 0.42);
  color: var(--red);
  outline: 0;
}

.hero {
  min-height: calc(100vh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 41%, rgba(255, 255, 255, 0.82) 53%, rgba(255, 255, 255, 0) 72%),
    var(--white);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vh, 54px) 0 28px clamp(24px, 5vw, 72px);
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.hero__eyebrow::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(229, 9, 20, 0.1);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 3.6vw, 50px);
  line-height: 1.12;
  font-weight: 900;
  overflow-wrap: normal;
  hyphens: manual;
}

.hero h1::after {
  content: "";
  display: block;
  width: 104px;
  height: 4px;
  margin: 22px 0 0;
  background: var(--red);
}

.hero__lead {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--graphite);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 5px;
  padding: 0 30px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  min-width: 220px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 38px rgba(229, 9, 20, 0.2);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--red-dark);
  box-shadow: 0 20px 42px rgba(229, 9, 20, 0.26);
}

.button--primary svg {
  color: currentColor;
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--graphite);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: rgba(229, 9, 20, 0.42);
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 26px;
  max-width: 680px;
  margin: 30px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  font-family: "Segoe UI", Arial, sans-serif;
}

.hero__meta div {
  min-width: 0;
}

.hero__meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

.hero__meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
}

.hero__visual {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 1;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 18%, rgba(255, 255, 255, 0.08) 54%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12));
  pointer-events: none;
}

.hero__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__guard {
  display: none;
}

@media (min-width: 1181px) {
  .hero__guard {
    position: absolute;
    right: clamp(20px, 4vw, 76px);
    bottom: clamp(-72px, -4vw, -46px);
    z-index: 2;
    width: clamp(330px, 25.5vw, 435px);
    height: auto;
    max-width: none;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 28px 42px rgba(17, 17, 19, 0.2));
  }
}

.services {
  position: relative;
  border-top: 1px solid var(--line);
  background: #fff;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 21.15%;
  height: 6px;
  background: var(--red);
}

.services__inner {
  width: min(100%, 1760px);
  margin: 0 auto;
  padding: clamp(42px, 3.4vw, 60px) clamp(28px, 4.8vw, 84px) clamp(38px, 3.6vw, 58px);
}

.services__inner,
.services__intro,
.services__grid,
.trust-strip {
  position: relative;
  z-index: 1;
}

.services__inner {
  display: grid;
  grid-template-columns: minmax(430px, 0.98fr) minmax(620px, 1.52fr);
  column-gap: clamp(34px, 3.2vw, 60px);
  row-gap: clamp(24px, 2.4vw, 36px);
  align-items: start;
}

.services__intro {
  padding: 4px 0 0;
  max-width: 520px;
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 18px;
  background: var(--red);
}

.services h2 {
  max-width: 520px;
  margin: 0;
  color: #383b42;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(42px, 3.35vw, 58px);
  line-height: 1.12;
  font-weight: 600;
}

.services__intro > p:not(.section-kicker) {
  max-width: 480px;
  margin: clamp(18px, 1.5vw, 26px) 0 0;
  color: #62656e;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(17px, 1.12vw, 19px);
  line-height: 1.5;
}

.services__copy > span {
  display: block;
  margin-top: clamp(16px, 1.45vw, 24px);
}

.services__contact {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.4vw, 24px);
  margin-top: clamp(26px, 2.5vw, 38px);
  flex-wrap: nowrap;
}

.services__contact .button {
  min-width: 210px;
  min-height: 58px;
  padding: 0 18px;
  font-size: 16px;
  border-radius: 5px;
  font-weight: 600;
}

.services__contact .button svg {
  color: currentColor;
}

.services__contact div {
  display: grid;
  gap: 6px;
  font-family: "Segoe UI", Arial, sans-serif;
  min-width: 0;
  flex: 0 0 auto;
}

.services__contact div a {
  font-size: 18px;
  font-weight: 600;
}

.services__phone-number {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #24272d;
}

.services__phone-number svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: 0 0 auto;
}

.services__contact div span {
  color: var(--muted);
  font-size: 15px;
  white-space: nowrap;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-item {
  min-height: clamp(176px, 12.2vw, 218px);
  display: grid;
  grid-template-columns: clamp(58px, 4.9vw, 92px) minmax(0, 1fr);
  gap: clamp(16px, 1.55vw, 26px);
  align-items: center;
  margin: 0;
  padding: clamp(22px, 1.9vw, 34px) clamp(20px, 1.8vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.service-item__icon {
  width: clamp(58px, 4.8vw, 92px);
  height: clamp(58px, 4.8vw, 92px);
  display: block;
}

.service-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-item > div {
  min-width: 0;
}

.service-item h3 {
  margin: 0;
  color: #14171d;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(17px, 1.08vw, 19px);
  line-height: 1.2;
  font-weight: 600;
}

.service-item p {
  max-width: 390px;
  margin: clamp(12px, 1.1vw, 18px) 0 0;
  color: #60646f;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1.36;
}

.trust-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 0;
  padding-top: clamp(22px, 2.2vw, 34px);
  border-top: 1px solid var(--line);
}

.trust-strip div {
  min-height: clamp(178px, 13vw, 220px);
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 8px;
  padding: 0 clamp(16px, 1.8vw, 28px);
  border-left: 1px solid var(--line);
  font-family: "Segoe UI", Arial, sans-serif;
}

.trust-strip div:first-child {
  border-left: 0;
  padding-left: 0;
}

.trust-strip__icon {
  width: 92px;
  height: 64px;
  display: block;
}

.trust-strip__icon img {
  width: 92px;
  height: 64px;
  object-fit: contain;
}

.trust-strip strong {
  color: #3d4047;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(14px, 0.86vw, 15px);
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
  margin-top: clamp(8px, 0.9vw, 14px);
}

.trust-strip span {
  color: #656872;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(13px, 0.8vw, 14px);
  line-height: 1.32;
  text-align: center;
}

.trust-strip > div > span:last-child {
  max-width: 240px;
  margin-top: 6px;
}

.objects {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #f5f6f7;
  border-top: 1px solid var(--line);
}

.objects::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.46) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
}

.objects__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.objects__inner {
  position: relative;
  z-index: 2;
  width: min(100%, 1760px);
  min-height: 760px;
  margin: 0 auto;
  padding: clamp(68px, 5.4vw, 96px) clamp(28px, 5vw, 92px);
  display: flex;
  align-items: center;
}

.objects__content {
  position: relative;
  width: min(100%, 910px);
}

.objects__kicker {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 42px;
  color: #62656e;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.objects__kicker span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--red);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}

.objects__kicker span::after {
  content: "";
  width: 58px;
  height: 2px;
  background: var(--red);
}

.objects h2 {
  max-width: 760px;
  margin: 0;
  color: #252a32;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(56px, 4.8vw, 82px);
  line-height: 1.08;
  font-weight: 700;
}

.objects h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin-top: 32px;
  background: var(--red);
}

.objects__lead {
  max-width: 600px;
  margin: 24px 0 0;
  color: #4f545d;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.52;
}

.objects__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.objects__guard {
  display: none;
}

.object-card {
  min-height: 148px;
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(214, 216, 220, 0.9);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 36px rgba(17, 17, 19, 0.08);
  backdrop-filter: blur(3px);
}

.object-card > svg {
  width: 38px;
  height: 38px;
  color: #4c515a;
  stroke-width: 1.55;
}

.object-card span {
  color: #252a32;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.object-card b {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--red);
  border-radius: 50%;
  isolation: isolate;
}

.object-card b svg {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 7px rgba(229, 9, 20, 0.42));
  stroke-width: 1.7;
}

.object-card b::before,
.object-card b::after {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: 1;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.12);
  box-shadow: 0 0 18px rgba(229, 9, 20, 0.34);
  animation: shieldPulse 2s ease-in-out infinite;
}

.object-card b::after {
  inset: 9px;
  background: rgba(229, 9, 20, 0.08);
  animation-delay: 0.55s;
}

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

  50% {
    transform: scale(1.22);
    opacity: 0.92;
  }
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 12px clamp(20px, 4vw, 40px);
    position: sticky;
    top: 0;
    z-index: 30;
  }

  .main-nav,
  .header-contacts {
    display: none;
  }

  .brand {
    gap: 14px;
  }

  .brand__logo,
  .brand__logo img {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .brand__text strong {
    font-size: clamp(18px, 2.4vw, 23px);
    line-height: 1.08;
  }

  .brand__text span {
    font-size: 15px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    border-radius: 6px;
  }

  .menu-toggle:active,
  .mobile-menu__close:active {
    transform: scale(0.97);
  }

  .menu-toggle svg,
  .mobile-menu__close svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
  }

  .mobile-menu__backdrop {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(17, 17, 19, 0.44);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 39;
  }

  .mobile-menu {
    position: fixed;
    top: 12px;
    right: 12px;
    bottom: 12px;
    width: min(378px, calc(100vw - 24px));
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
    border: 1px solid rgba(231, 231, 234, 0.96);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 70px rgba(17, 17, 19, 0.26);
    transform: translateX(calc(100% + 24px));
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms ease, opacity 220ms ease;
    z-index: 40;
  }

  body.menu-open .mobile-menu__backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .mobile-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }

  .mobile-menu__brand img {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: contain;
  }

  .mobile-menu__brand span {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .mobile-menu__brand strong {
    color: var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 800;
  }

  .mobile-menu__brand em {
    color: var(--muted);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.25;
    font-style: normal;
  }

  .mobile-menu__close {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
  }

  .mobile-menu__nav {
    display: grid;
    gap: 6px;
    font-family: "Segoe UI", Arial, sans-serif;
  }

  .mobile-menu__nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 6px;
    color: #252a32;
    font-size: 18px;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease;
  }

  .mobile-menu__nav a:hover,
  .mobile-menu__nav a:focus-visible {
    color: var(--red);
    background: rgba(229, 9, 20, 0.06);
    outline: 0;
  }

  .mobile-menu__contacts {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-family: "Segoe UI", Arial, sans-serif;
  }

  .mobile-menu__contacts a {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: #252a32;
    font-size: 16px;
    font-weight: 700;
  }

  .mobile-menu__contacts a:first-child {
    color: var(--white);
    border-color: var(--red);
    background: var(--red);
  }

  .mobile-menu__contacts svg {
    width: 20px;
    height: 20px;
    color: currentColor;
    stroke-width: 1.7;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 82px);
  }

  .hero__visual {
    inset: 0 0 0 36%;
  }

  .services__inner {
    grid-template-columns: 1fr;
    row-gap: 44px;
    padding: 64px 40px 72px;
  }

  .services__intro {
    max-width: none;
  }

  .services h2 {
    max-width: 620px;
    font-size: clamp(44px, 6vw, 58px);
  }

  .services__intro > p:not(.section-kicker) {
    max-width: 560px;
  }

  .services__grid {
    width: 100%;
  }

  .service-item {
    min-height: 220px;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .service-item__icon {
    width: 112px;
    height: 112px;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 34px;
  }

  .trust-strip div:nth-child(3n + 1) {
    border-left: 0;
  }

  .objects {
    min-height: auto;
  }

  .objects::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 48%, rgba(255, 255, 255, 0.48) 76%, rgba(255, 255, 255, 0.08) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
  }

  .objects__inner {
    min-height: 720px;
    padding: 64px 40px;
  }

  .objects__content {
    width: min(100%, 760px);
  }

  .objects__guard {
    position: absolute;
    right: clamp(-230px, -18vw, -130px);
    bottom: -74px;
    z-index: 3;
    width: clamp(280px, 34vw, 390px);
    height: auto;
    max-width: none;
    display: block;
    opacity: 0.9;
    pointer-events: none;
    filter: drop-shadow(0 28px 42px rgba(17, 17, 19, 0.18));
  }

  .objects h2 {
    font-size: clamp(48px, 6vw, 68px);
  }

  .objects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 720px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 10px 18px;
  }

  .brand {
    gap: 12px;
  }

  .brand__logo,
  .brand__logo img {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .brand__text strong {
    white-space: normal;
    font-size: clamp(15px, 3.6vw, 18px);
    line-height: 1.12;
  }

  .brand__text span {
    font-size: 13px;
    line-height: 1.18;
  }

  .header-contacts {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: calc(100svh - 76px);
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    background:
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.97) 40%, rgba(255, 255, 255, 0.84) 66%, rgba(255, 255, 255, 0.5) 100%),
      #fff;
  }

  .hero__content {
    width: 100%;
    min-height: calc(100svh - 76px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(24px, 7vw, 36px) 18px clamp(220px, 34svh, 300px);
  }

  .hero__visual {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    order: initial;
    margin-top: 0;
  }

  .hero__visual::after {
    background:
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 43%, rgba(255, 255, 255, 0.74) 68%, rgba(255, 255, 255, 0.22) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.76) 46%, rgba(255, 255, 255, 0.26) 100%);
  }

  .hero__background {
    object-position: 58% bottom;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.08;
    overflow-wrap: normal;
  }

  .hero h1::after {
    width: 72px;
    height: 3px;
    margin-top: 18px;
  }

  .hero__lead {
    max-width: 560px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.52;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero__actions .button--primary {
    box-shadow: 0 12px 28px rgba(229, 9, 20, 0.14);
  }

  .hero__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
    padding-top: 16px;
  }

  .hero__meta dt {
    font-size: 13px;
  }

  .hero__meta dd {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .services__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 18px 46px;
  }

  .services__inner::after {
    display: none;
  }

  .services h2 {
    max-width: 520px;
    font-size: clamp(32px, 7vw, 42px);
    line-height: 1.12;
  }

  .services__intro > p:not(.section-kicker) {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.52;
  }

  .services__contact {
    align-items: center;
    flex-direction: row;
    gap: 16px;
    flex-wrap: nowrap;
    margin-top: 28px;
  }

  .services__contact .button {
    width: auto;
    min-width: 190px;
    flex: 0 0 auto;
    min-height: 54px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    border-left: 1px solid var(--line);
  }

  .service-item {
    min-height: auto;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 18px;
  }

  .service-item__icon {
    width: 72px;
    height: 72px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .trust-strip div,
  .trust-strip div:first-child {
    min-height: auto;
    padding: 22px 14px;
    border-left: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:nth-child(odd) {
    border-left: 0;
  }

  .objects {
    background: #fff;
  }

  .objects::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, #ffffff 44%, #ffffff 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.25));
  }

  .objects__bg {
    height: clamp(320px, 48svh, 430px);
    object-position: 38% top;
    opacity: 0.28;
  }

  .objects__inner {
    min-height: auto;
    padding: clamp(236px, 40svh, 330px) 18px 48px;
    align-items: start;
  }

  .objects__kicker {
    gap: 14px;
    margin-bottom: 28px;
    font-size: 14px;
  }

  .objects__kicker span {
    font-size: 20px;
    gap: 14px;
  }

  .objects__kicker span::after {
    width: 42px;
  }

  .objects h2 {
    font-size: clamp(32px, 8vw, 44px);
    max-width: 560px;
  }

  .objects h2::after {
    width: 48px;
    height: 3px;
    margin-top: 22px;
  }

  .objects__lead {
    max-width: 540px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.52;
  }

  .objects__guard {
    top: clamp(250px, 36svh, 330px);
    right: clamp(-150px, -18vw, -92px);
    bottom: auto;
    width: clamp(255px, 42vw, 340px);
    opacity: 0.88;
  }

  .objects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
  }

  .object-card {
    min-height: 128px;
    padding: 22px 20px 20px;
  }

  .object-card > svg {
    width: 32px;
    height: 32px;
  }

  .object-card span {
    font-size: 19px;
  }

  .object-card b {
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 70px;
    padding: 9px 14px;
  }

  .brand__logo,
  .brand__logo img {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand__text {
    gap: 2px;
  }

  .brand__text strong {
    font-size: clamp(14px, 4vw, 16px);
  }

  .brand__text span {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: calc(100vw - 16px);
    padding: 14px;
  }

  .mobile-menu__nav a {
    min-height: 52px;
    font-size: 17px;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    padding: 22px 16px clamp(142px, 21svh, 188px);
  }

  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .hero h1 {
    font-size: clamp(29px, 8.6vw, 34px);
  }

  .hero__lead {
    font-size: 15px;
    line-height: 1.48;
  }

  .hero__actions {
    margin-top: 20px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .button {
    min-height: 50px;
    gap: 10px;
    padding: 0 14px;
    font-size: 15px;
  }

  .hero__background {
    object-position: 58% bottom;
  }

  .hero__meta {
    gap: 10px;
  }

  .hero__meta dd {
    font-size: 14px;
  }

  .services::before {
    width: 48%;
  }

  .services__inner {
    padding: 34px 16px 40px;
  }

  .section-kicker {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .section-kicker::after {
    width: 34px;
    margin-top: 20px;
  }

  .services h2 {
    font-size: clamp(29px, 8.6vw, 34px);
  }

  .services__intro > p:not(.section-kicker) {
    font-size: 15px;
    line-height: 1.5;
  }

  .services__contact {
    display: grid;
    grid-template-columns: minmax(138px, 0.92fr) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin-top: 28px;
  }

  .services__contact .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0 12px;
    font-size: 14px;
  }

  .services__contact .button svg {
    width: 20px;
    height: 20px;
  }

  .services__contact div {
    gap: 4px;
    min-width: 0;
  }

  .services__phone-number {
    gap: 8px;
  }

  .services__phone-number svg {
    width: 20px;
    height: 20px;
  }

  .services__contact div a {
    font-size: clamp(15px, 4.2vw, 17px);
    line-height: 1.15;
  }

  .services__contact div span {
    white-space: normal;
    font-size: clamp(12px, 3.35vw, 14px);
    line-height: 1.28;
  }

  .service-item {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 14px;
  }

  .service-item__icon {
    width: 62px;
    height: 62px;
  }

  .service-item h3 {
    font-size: 17px;
  }

  .service-item p {
    font-size: 14px;
    line-height: 1.46;
  }

  .trust-strip div,
  .trust-strip div:first-child,
  .trust-strip div:nth-child(odd) {
    padding: 20px 12px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .trust-strip div:first-child,
  .trust-strip div:nth-child(odd) {
    border-left: 0;
  }

  .objects__bg {
    height: 285px;
    object-position: 34% top;
    opacity: 0.18;
  }

  .objects__inner {
    padding: 228px 16px 40px;
  }

  .objects__guard {
    top: 315px;
    right: -138px;
    width: clamp(330px, 92vw, 360px);
    opacity: 0.94;
    filter: drop-shadow(0 24px 34px rgba(17, 17, 19, 0.24));
  }

  .objects__kicker {
    margin-bottom: 22px;
    font-size: 12px;
  }

  .objects h2 {
    font-size: clamp(29px, 8.6vw, 36px);
  }

  .objects__lead {
    font-size: 15px;
  }

  .objects__grid {
    grid-template-columns: 1fr;
  }

  .object-card {
    min-height: 104px;
    grid-template-columns: 38px minmax(0, 1fr) 24px;
    align-items: center;
    align-content: center;
    gap: 14px;
    padding: 18px 92px 18px 18px;
  }

  .object-card > svg {
    width: 34px;
    height: 34px;
  }

  .object-card span {
    font-size: 18px;
  }

  .object-card b {
    position: relative;
    right: auto;
    bottom: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .object-card b::before,
  .object-card b::after {
    animation: none;
  }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #17181b;
  border-top: 4px solid #ed111c;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  width: 34%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.site-footer__inner,
.site-footer__bottom {
  width: min(100% - 64px, 1720px);
  margin-inline: auto;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(320px, 1.45fr) minmax(220px, 0.82fr) minmax(300px, 1fr) minmax(170px, 0.58fr);
  gap: clamp(36px, 4vw, 76px);
  padding-block: clamp(56px, 5.4vw, 88px);
}

.site-footer__brand {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
}

.site-footer__logo {
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  padding: 9px;
  background: #fff;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__eyebrow {
  margin: 2px 0 14px;
  color: #ed111c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer__brand strong {
  display: block;
  max-width: 430px;
  font-size: clamp(20px, 1.7vw, 29px);
  line-height: 1.15;
}

.site-footer__brand div > p:last-child {
  max-width: 440px;
  margin: 18px 0 0;
  color: #aaadb4;
  font-size: 15px;
  line-height: 1.65;
}

.site-footer__column h2 {
  margin: 0 0 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-footer__contact {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__contact + .site-footer__contact {
  margin-top: 18px;
}

.site-footer__contact > span:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ed111c;
  border: 1px solid #3b3d42;
}

.site-footer__contact svg {
  width: 19px;
  height: 19px;
}

.site-footer small {
  display: block;
  margin-bottom: 5px;
  color: #858992;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-footer__details p {
  max-width: 360px;
  margin: 0;
  color: #d2d4d8;
  font-size: 14px;
  line-height: 1.6;
}

.site-footer__details p + p {
  margin-top: 20px;
}

.site-footer__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  color: #c9cbd0;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #34363b;
  transition: color 180ms ease, border-color 180ms ease;
}

.site-footer__nav a:first-of-type {
  padding-top: 0;
}

.site-footer__nav svg {
  width: 16px;
  height: 16px;
  color: #ed111c;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: #fff;
  border-color: #ed111c;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  color: #777b84;
  font-size: 12px;
  border-top: 1px solid #303238;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a {
  color: #aeb1b7;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-footer__cookie-settings {
  padding: 0;
  color: #aeb1b7;
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-footer__bottom a:hover,
.site-footer__cookie-settings:hover {
  color: #fff;
}

.site-footer__bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.cookie-notice {
  position: fixed;
  z-index: 1200;
  left: 50%;
  bottom: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: min(720px, calc(100% - 40px));
  padding: 14px 14px 14px 18px;
  color: #f7f8fa;
  background: rgba(24, 27, 33, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(8, 11, 17, 0.22);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-notice--visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-notice__copy strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.cookie-notice__copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-notice a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.5);
  text-underline-offset: 3px;
}

.cookie-notice__button {
  min-height: 40px;
  padding: 8px 14px;
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  background: #ed111c;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}

.cookie-notice__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-notice__button--secondary {
  color: #f1f2f4;
  background: #373b43;
}

.cookie-notice__button--secondary:hover {
  background: #454a53;
}

.cookie-notice__button:hover {
  background: #d80d17;
}

.cookie-notice__button:focus-visible,
.cookie-notice a:focus-visible,
.site-footer__cookie-settings:focus-visible {
  outline: 3px solid rgba(237, 17, 28, 0.35);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .cookie-notice {
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 9px;
    width: calc(100% - 20px);
    padding: 12px;
  }

  .cookie-notice__copy p {
    font-size: 12px;
  }

  .cookie-notice__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-notice__button {
    width: 100%;
    min-height: 42px;
    padding-inline: 10px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-notice {
    transition: none;
  }
}

body.lead-modal-lock {
  overflow: hidden;
}

.lead-modal {
  position: fixed;
  z-index: 1400;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.lead-modal--open {
  visibility: visible;
  opacity: 1;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.7);
  backdrop-filter: blur(4px);
}

.lead-modal__dialog {
  position: relative;
  width: min(100%, 470px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 36px;
  color: #20242b;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(14px) scale(0.985);
  transition: transform 180ms ease;
}

.lead-modal--open .lead-modal__dialog {
  transform: translateY(0) scale(1);
}

.lead-modal__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #3e434b;
  font: inherit;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  background: #f2f3f4;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.lead-modal__eyebrow {
  margin: 0 0 8px;
  color: #ed111c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-modal__dialog h2 {
  margin: 0;
  padding-right: 34px;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.08;
}

.lead-modal__intro {
  margin: 12px 0 24px;
  color: #626770;
  font-size: 15px;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  gap: 16px;
}

.lead-form__field label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 750;
}

.lead-form__field input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  color: #20242b;
  font: inherit;
  font-size: 16px;
  background: #f7f7f7;
  border: 1px solid #d9dce0;
  border-radius: 7px;
  outline: none;
}

.lead-form__field input:focus {
  background: #fff;
  border-color: #ed111c;
  box-shadow: 0 0 0 3px rgba(237, 17, 28, 0.1);
}

.lead-form__field input.is-invalid {
  border-color: #c90d17;
}

.lead-form__error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: #c90d17;
  font-size: 12px;
}

.lead-form__error:not(:empty) {
  min-height: 16px;
}

.lead-form__consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #626770;
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.lead-form__consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #ed111c;
}

.lead-form__consent a {
  color: #ed111c;
  font-weight: 700;
  text-underline-offset: 2px;
}

.lead-form__submit,
.lead-modal__success button {
  min-height: 52px;
  padding: 12px 20px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  background: #ed111c;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}

.lead-form__submit span {
  margin-left: 8px;
}

.lead-form__submit:hover,
.lead-modal__success button:hover {
  background: #d80d17;
}

.lead-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.lead-form__status {
  margin: -6px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.lead-form__status.is-error {
  color: #b30c14;
}

.lead-form__honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-modal__success {
  padding: 28px 0 10px;
  text-align: center;
}

.lead-modal__success > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 30px;
  background: #ed111c;
  border-radius: 50%;
}

.lead-modal__success h2 {
  padding: 0;
}

.lead-modal__success p {
  margin: 12px 0 24px;
  color: #626770;
}

.lead-modal__success button {
  width: 100%;
}

.lead-modal__close:focus-visible,
.lead-form input:focus-visible,
.lead-form a:focus-visible,
.lead-form button:focus-visible,
.lead-modal__success button:focus-visible {
  outline: 3px solid rgba(237, 17, 28, 0.3);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .lead-modal {
    align-items: end;
    padding: 10px;
  }

  .lead-modal__dialog {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 28px 20px 22px;
    border-radius: 14px 14px 10px 10px;
  }

  .lead-modal__close {
    top: 10px;
    right: 10px;
  }

  .lead-modal__intro {
    margin-bottom: 18px;
  }

  .lead-form {
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lead-modal,
  .lead-modal__dialog {
    transition: none;
  }
}

@media (max-width: 1180px) {
  .site-footer__inner {
    grid-template-columns: minmax(300px, 1.25fr) repeat(2, minmax(220px, 1fr));
  }

  .site-footer__nav {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 24px;
  }

  .site-footer__nav h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-footer__inner,
  .site-footer__bottom {
    width: min(100% - 36px, 680px);
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 30px;
    padding-block: 52px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .site-footer__inner,
  .site-footer__bottom {
    width: min(100% - 32px, 440px);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-block: 42px;
  }

  .site-footer__brand {
    grid-column: auto;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 17px;
  }

  .site-footer__logo {
    width: 76px;
    padding: 6px;
  }

  .site-footer__eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .site-footer__brand strong {
    font-size: 18px;
  }

  .site-footer__brand div > p:last-child {
    grid-column: 1 / -1;
    margin-top: 13px;
    font-size: 14px;
  }

  .site-footer__column h2 {
    margin-bottom: 20px;
  }

  .site-footer__nav {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .site-footer__nav h2 {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 92px;
    padding-block: 18px;
  }

  .site-footer__bottom-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
