:root {
  --color-bg: #6240c8;
  --color-bg-deep: #342168;
  --color-bg-soft: #7e52ff;
  --color-accent: #bdf522;
  --color-accent-dark: #9ed60d;
  --color-white: #ffffff;
  --color-muted: #cab8ff;
  --color-panel: rgba(255, 255, 255, 0.12);
  --color-panel-strong: rgba(255, 255, 255, 0.2);
  --shadow-soft: 0 28px 80px rgba(32, 14, 90, 0.26);
  --container: 1302px;
  --radius-pill: 999px;
  --radius-card: 18px;
  --font-main: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
}

body.is-modal-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  min-height: 112px;
  background: transparent;
}

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

.topbar,
.header-main {
  width: min(1780px, calc(100% - 96px));
  margin: 0 auto;
}

.topbar {
  height: 40px;
  display: grid;
  grid-template-columns: 132px 455px minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 22px;
  font-size: 12px;
  font-weight: 500;
}

.topbar__nav,
.primary-nav,
.header-contacts {
  display: flex;
  align-items: center;
}

.topbar__nav {
  grid-column: 3;
  gap: 58px;
  justify-content: flex-start;
}

.selection-link {
  grid-column: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.selection-link span {
  display: grid;
  min-width: 32px;
  min-height: 22px;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--color-bg-soft);
  font-size: 13px;
}

.header-main {
  position: relative;
  height: 70px;
  min-height: 70px;
  display: grid;
  grid-template-columns: 132px 455px minmax(400px, 1fr) max-content;
  align-items: center;
  gap: 22px;
  padding: 0 28px 0 0;
}

.header-main::before {
  content: "";
  position: absolute;
  left: 65px;
  right: 0;
  top: 5px;
  bottom: 0;
  z-index: -1;
  border-radius: 0 12px 12px 0;
  background: var(--color-bg-deep);
}

.brand {
  grid-column: 1 / 3;
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  position: relative;
  width: 142px;
  height: 122px;
  align-self: flex-start;
  margin-top: -34px;
  margin-left: -1px;
  flex: 0 0 auto;
  object-fit: contain;
  z-index: 2;
}

.brand span {
  max-width: 455px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-weight: 800;
  white-space: nowrap;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
}

.primary-nav {
  grid-column: 3;
  justify-content: flex-start;
  gap: 40px;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-contacts {
  grid-column: 4;
  justify-content: flex-end;
  gap: 14px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-contacts img {
  width: 63px;
  height: 24px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #000;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  padding-top: 0;
  overflow: hidden;
  background: #6d48e8;
}

.hero__content {
  position: absolute;
  left: 50%;
  top: 330px;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  transform: translateX(-50%);
  height: 210px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.button--dark {
  background: #000;
  color: var(--color-accent);
}

.button--light {
  min-height: 34px;
  padding: 8px 24px;
  background: var(--color-white);
  color: #342168;
  font-size: 12px;
  pointer-events: auto;
}

.hero__cta-hit {
  position: absolute;
  left: 50%;
  top: 126px;
  width: 300px;
  height: 38px;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
}

.button--accent {
  background: var(--color-accent);
  color: #000;
}

.button--outline {
  border: 2px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
}

.button--small {
  min-height: 40px;
  padding: 10px 22px;
  font-size: 12px;
}

.hero__art {
  position: absolute;
  inset: 0 0 42px;
  overflow: hidden;
  pointer-events: none;
}

.hero__art img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: max(100vw, calc((100vh - 42px) * 4096 / 2125));
  height: auto;
  max-width: none;
  transform: translateX(-50%);
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  overflow: hidden;
  height: 42px;
  align-items: center;
  background: var(--color-accent);
  color: #000;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 42s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  flex: 0 0 auto;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 22px;
}

.ticker span::after {
  content: "|";
  font-weight: 800;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  position: relative;
  min-height: 1080px;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 13% 50%, rgba(189, 245, 34, 0.11), transparent 20%),
    linear-gradient(180deg, var(--color-bg) 0%, #5a3bb5 100%);
}

.section + .section {
  border-top: 1px dashed rgba(255, 255, 255, 0.34);
}

.section h2 {
  margin: 0 0 70px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.22;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.coverage {
  min-height: 768px;
  height: 100vh;
  padding: 34px 0 38px;
  background:
    radial-gradient(circle at 34% 38%, rgba(149, 105, 255, 0.42), transparent 28%),
    radial-gradient(circle at 70% 35%, rgba(99, 57, 236, 0.46), transparent 34%),
    linear-gradient(180deg, #5c32d3 0%, #322070 100%);
}

.coverage-map {
  position: relative;
  width: min(1012px, calc(100vw - 260px));
  max-width: 1295px;
  aspect-ratio: 1294.91 / 948.14;
  margin: -16px auto -24px;
}

.coverage-map img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.coverage-regions {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.coverage-regions svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.coverage-region {
  fill: #7248df;
  fill-opacity: 1;
  stroke: rgba(43, 27, 100, 0.42);
  stroke-width: 2.5;
  cursor: pointer;
  pointer-events: all;
  vector-effect: non-scaling-stroke;
  transition: fill 0.18s ease, stroke-color 0.18s ease;
}

.coverage-region:hover,
.coverage-region.is-active {
  fill: var(--color-accent);
  stroke: rgba(43, 27, 100, 0.52);
}

.coverage .button {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.coverage h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 2.15vw, 38px);
  line-height: 1.1;
}


.coverage-label {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #a6ee12;
  color: #120a31;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.coverage-label::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: -8px;
  width: 14px;
  height: 12px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.coverage-label.is-active {
  background: #5d39c8;
  color: var(--color-white);
  transform: translate(-50%, -50%) scale(1.04);
}

.coverage-label--vyborgsky { left: 20%; top: 15%; }
.coverage-label--priozersky { left: 32%; top: 13%; }
.coverage-label--vsevolozhsky { left: 37%; top: 30%; }
.coverage-label--sosnovoborsky { left: 22%; top: 43%; }
.coverage-label--lomonosovsky { left: 29%; top: 48%; }
.coverage-label--kingiseppsky { left: 16%; top: 54%; }
.coverage-label--volosovsky { left: 24%; top: 61%; }
.coverage-label--slantsevsky { left: 13%; top: 69%; }
.coverage-label--gatchinsky { left: 34%; top: 53%; }
.coverage-label--luzhsky { left: 30%; top: 77%; }
.coverage-label--kirovsky { left: 48%; top: 46%; }
.coverage-label--tosnensky { left: 46%; top: 60%; }
.coverage-label--volkhovsky { left: 57%; top: 42%; }
.coverage-label--kirishsky { left: 57%; top: 55%; }
.coverage-label--lodeynopolsky { left: 72%; top: 26%; }
.coverage-label--tikhvinsky { left: 77%; top: 41%; }
.coverage-label--podporozhsky { left: 83%; top: 13%; }
.coverage-label--boksitogorsky { left: 82%; top: 56%; }

.section-nav {
  position: fixed;
  top: 50%;
  right: 62px;
  z-index: 18;
  display: grid;
  gap: 44px;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.section-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.section-nav a {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.section-nav a.is-active {
  background: var(--color-accent);
  box-shadow: 0 0 0 8px rgba(189, 245, 34, 0.26);
  transform: scale(1.05);
}

.tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 28px;
  width: min(966px, 100%);
  margin: 0 auto 79px;
}

.tab {
  min-height: 55px;
  padding: 0 38px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: #5b3bb8;
  color: var(--color-white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.tab:nth-child(1),
.tab:nth-child(3) {
  flex: 0 0 192px;
}

.tab:nth-child(2) {
  flex: 0 0 244px;
}

.tab:nth-child(4) {
  flex: 0 0 263px;
}

.tab.is-active {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: transparent;
}

.format-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 640px);
  gap: 20px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 97px;
}

.format-visual,
.format-copy,
.social-projects,
.news-card,
.lead-form,
.map-card {
  background: var(--color-panel);
  box-shadow: var(--shadow-soft);
  box-shadow: none;
}

.formats {
  min-height: 1080px;
  padding-top: 100px;
  padding-bottom: 70px;
}

.formats h2 {
  margin-bottom: 56px;
}

.format-visual {
  min-height: 503px;
  border-radius: 52px;
  overflow: hidden;
  background: #3c2778;
}

.format-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.format-copy {
  min-height: 503px;
  display: flex;
  align-items: center;
  border-radius: 52px;
  padding: 72px 78px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.format-panel {
  display: grid;
  gap: 24px;
}

.format-panel[hidden] {
  display: none;
}

.format-panel p {
  margin: 0;
}

.lead-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 292px;
  gap: 40px;
}

.lead-row--formats {
  grid-template-columns: minmax(780px, 971px) 291px;
  justify-content: center;
  gap: clamp(24px, 2.1vw, 40px);
}

.lead-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, 218px) minmax(160px, 218px) auto;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 22px 30px;
  border-radius: 16px;
}

.lead-form--formats {
  grid-template-columns: minmax(240px, 264px) minmax(154px, 184px) minmax(154px, 184px) 139px;
  gap: clamp(20px, 1.45vw, 28px);
  min-height: 111px;
  align-items: center;
  padding: 24px clamp(24px, 1.7vw, 32px) 18px 40px;
  border-radius: 33px;
  background: rgba(126, 82, 255, 0.84);
}

.lead-form strong {
  font-size: 20px;
  line-height: 1.2;
}

.lead-form--formats strong {
  font-size: clamp(20px, 1.25vw, 24px);
  line-height: 1.05;
  font-weight: 800;
  white-space: nowrap;
}

.lead-form label {
  position: relative;
}

.lead-form span {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 600;
}

.lead-form input {
  width: 100%;
  min-height: 40px;
  padding: 8px 18px;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
  outline: 1px solid transparent;
}

.lead-form--formats input {
  min-height: 40px;
  padding-left: 20px;
  background: var(--color-white);
  color: #24154d;
}

.lead-form--formats label span {
  display: none;
}

.lead-form--formats input::placeholder {
  color: rgba(36, 21, 77, 0.38);
  opacity: 1;
}

.lead-form input:focus {
  outline-color: var(--color-accent);
}

.lead-form small {
  grid-column: 2 / -1;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.lead-form--formats small {
  grid-column: 2 / -1;
  display: inline-flex;
  justify-self: stretch;
  width: 100%;
  gap: 8px;
  align-items: center;
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.41);
  font-size: clamp(8px, 0.53vw, 10px);
  line-height: 1;
  white-space: nowrap;
}

.lead-form--formats small span {
  position: static;
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.41);
  border-radius: 2px;
  transform: none;
}

.lead-form--formats .button {
  min-height: 50px;
  padding: 0 24px;
  font-size: 13px;
}

.map-card {
  display: flex;
  min-height: 112px;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 18px 20px;
  border-radius: 16px;
  color: #000;
  background:
    radial-gradient(circle at 75% 30%, var(--color-accent), transparent 24%),
    rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.map-card--formats {
  position: relative;
  min-height: 112px;
  align-items: flex-end;
  padding: 0 19px 20px;
  border-radius: 28px;
  background: url("../img/format-map-bg.png") center / cover no-repeat;
  overflow: hidden;
}

.map-card--formats span {
  display: inline-flex;
  width: 259px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: #07051f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brands {
  padding: 90px 0 220px;
}

.brands .section__inner {
  display: grid;
  grid-template-columns: minmax(0, 860px) 417px;
  justify-content: center;
  gap: 25px;
}

.brands h2 {
  grid-column: 1 / -1;
  max-width: 1064px;
  margin-bottom: 110px;
  margin-inline: auto;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 20px;
}

.brand-cloud span {
  width: 200px;
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.brand-cloud .brand-card--active {
  background: #7957da;
}

.brand-cloud img {
  max-width: 84%;
  max-height: 62%;
  object-fit: contain;
}

.social-projects {
  min-height: 579px;
  padding: 23px 25px 22px 27px;
  border-radius: 30px;
  background: #7e52ff;
}

.social-projects p {
  max-width: 346px;
  margin: 0 0 25px 5px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.2;
}

.social-projects strong {
  color: var(--color-accent);
  font-weight: 800;
}

.social-projects__icons {
  display: grid;
  grid-template-columns: repeat(2, 170px);
  gap: 25px;
}

.social-projects__icons span {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
}

.social-projects__icons img {
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
}

.portfolio {
  min-height: 1080px;
  height: 1080px;
  padding: 0;
  background:
    url("../img/portfolio-glow.svg") center 44% / min(1944px, 120vw) auto no-repeat,
    linear-gradient(180deg, var(--color-bg) 0%, #5a3bb5 100%);
}

.portfolio__inner {
  position: relative;
  min-height: 1080px;
}

.portfolio h2 {
  position: absolute;
  top: 383px;
  left: 396px;
  max-width: 510px;
  margin: 0;
  line-height: 1.03;
}

.portfolio-scatter {
  position: absolute;
  inset: 0;
  pointer-events: auto;
}

.campaign {
  position: absolute;
  --move-x: 0px;
  --move-y: 0px;
  object-fit: cover;
  border-radius: 29px;
  box-shadow: 0 22px 54px rgba(22, 8, 65, 0.18);
  transform: translate3d(var(--move-x), var(--move-y), 0);
  transition: transform 180ms ease-out;
  will-change: transform;
  pointer-events: none;
}

.campaign--top-center { left: 283px; top: 66px; width: 269px; height: 185px; }
.campaign--top-right { left: 968px; top: 52px; width: 269px; height: 185px; }
.campaign--middle { left: 649px; top: 137px; width: 269px; height: 185px; }
.campaign--small-left { left: 81px; top: 269px; width: 99px; height: 69px; border-radius: 19px; }
.campaign--right { left: 1033px; top: 304px; width: 269px; height: 185px; }
.campaign--bottom-left { left: 0; top: 573px; width: 265px; height: 182px; z-index: 1; }
.campaign--bottom-mid { left: 180px; top: 532px; width: 269px; height: 185px; z-index: 2; }
.campaign--small-right { left: 918px; top: 573px; width: 99px; height: 69px; border-radius: 19px; }
.campaign--bottom-right { left: 960px; top: 639px; width: 269px; height: 185px; }

.portfolio-more {
  position: absolute;
  left: 515px;
  top: 534px;
  display: inline-flex;
  width: 299px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.portfolio-mobile-controls {
  display: none;
}

.portfolio .lead-form--wide {
  position: absolute;
  left: 0;
  top: 884px;
  width: 100%;
  min-height: 111px;
  grid-template-columns: 423px 243px 244px 201px;
  column-gap: 23px;
  row-gap: 4px;
  align-items: center;
  padding: 31px 51px 16px 40px;
  border-radius: 33px;
  background: rgba(126, 82, 255, 0.84);
}

.portfolio .lead-form--wide strong {
  font-size: 21px;
  line-height: 1;
  white-space: nowrap;
}

.portfolio .lead-form--wide label span {
  display: none;
}

.portfolio .lead-form--wide input {
  min-height: 40px;
  padding-left: 20px;
  background: var(--color-white);
  color: #24154d;
}

.portfolio .lead-form--wide input::placeholder {
  color: rgba(36, 21, 77, 0.38);
  opacity: 1;
}

.portfolio .lead-form--wide .button {
  min-height: 50px;
  padding: 0 28px;
  font-size: 13px;
}

.portfolio .lead-form--wide small {
  grid-column: 2 / 4;
  justify-self: center;
  width: 609px;
  margin-top: -4px;
  transform: translateX(-80px);
  color: rgba(255, 255, 255, 0.41);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}

.news {
  height: 920px;
  min-height: 920px;
  padding: 46px 0 0;
}

.news .section__inner {
  position: relative;
  min-height: 920px;
}

.news h2 {
  margin: 0;
}

.news-slider {
  --slide-width: 640px;
  --side-scale: 0.712;
  --side-shift: clamp(255px, 27vw, 330px);
  --arrow-shift: clamp(520px, 49vw, 650px);
  position: absolute;
  left: 0;
  top: 160px;
  width: 100%;
  height: 560px;
}

.news-side,
.news-card {
  position: absolute;
  border-radius: 52px;
}

.news-side {
  display: none;
}

.news-side--left {
  left: 107px;
}

.news-side--right {
  right: 110px;
}

.slider-arrow {
  position: absolute;
  top: 222px;
  z-index: 5;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--color-white);
  cursor: pointer;
  font-size: 34px;
  line-height: 0;
}

.slider-arrow--prev {
  left: calc(50% - var(--arrow-shift) - 25px);
}

.slider-arrow--next {
  left: calc(50% + var(--arrow-shift) - 25px);
  right: auto;
}

.news-card {
  left: 50%;
  top: 0;
  width: var(--slide-width);
  height: 560px;
  margin-left: calc(var(--slide-width) / -2);
  padding: 53px 41px 40px;
  background: #7e52ff;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(520px, 120px, 0) scale(0.71);
  transform-origin: center;
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease,
    filter 420ms ease;
  filter: saturate(0.8) brightness(0.86);
  will-change: transform, opacity;
}

.news-card.is-active {
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

.news-card.is-prev {
  z-index: 1;
  opacity: 1;
  transform: translate3d(calc(var(--side-shift) * -1), 0, 0) scale(var(--side-scale));
}

.news-card.is-next {
  z-index: 2;
  opacity: 1;
  transform: translate3d(var(--side-shift), 0, 0) scale(var(--side-scale));
}

.news-card.is-off-left {
  z-index: 0;
  opacity: 0;
  transform: translate3d(-620px, 120px, 0) scale(0.68);
}

.news-card.is-off-right {
  z-index: 0;
  opacity: 0;
  transform: translate3d(620px, 120px, 0) scale(0.68);
}

.news-card.is-prev::after,
.news-card.is-next::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  background: #5b3bb8;
}

.news-card.is-prev h3,
.news-card.is-next h3,
.news-card.is-prev time,
.news-card.is-next time,
.news-card.is-prev .news-card__image,
.news-card.is-next .news-card__image,
.news-card.is-prev .news-card__more,
.news-card.is-next .news-card__more {
  opacity: 0;
}

.news-card time {
  display: block;
  margin: 13px 0 16px;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.45;
}

.news-card h3 {
  max-width: 559px;
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
}

.news-card__image {
  width: 559px;
  height: 216px;
  border-radius: 30px;
  object-fit: cover;
}

.news-card__more {
  position: absolute;
  left: 50%;
  bottom: 47px;
  transform: translateX(-50%);
  display: inline-flex;
  width: 149px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: #07051f;
  font-size: 16px;
  font-weight: 800;
}

.archive-link {
  position: absolute;
  left: 50%;
  top: 770px;
  transform: translateX(-50%);
  display: inline-flex;
  width: 217px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-pill);
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  padding: 0 0 17px;
  background: #5a3bb5;
}

.footer__inner {
  display: block;
}

.footer-main {
  position: relative;
  min-height: 250px;
  display: block;
  padding: 0;
  border-radius: 30px;
  background: #4f339f;
}

.footer-brand {
  position: absolute;
  left: 37px;
  top: 38px;
}

.footer-brand img {
  width: 136px;
}

.footer-copy {
  position: absolute;
  left: 198px;
  top: 41px;
  width: 430px;
}

.footer-copy p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.18;
  font-weight: 600;
  color: var(--color-white);
}

.footer-copy address {
  position: relative;
  display: block;
  min-height: 78px;
  font-style: normal;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
}

.footer-copy address > a,
.footer-copy address > span {
  position: absolute;
}

.footer-copy address > a[href^="tel"] {
  color: var(--color-accent);
  font-size: 18px;
  line-height: 1.45;
}

.footer-phone--main {
  left: 0;
  top: 0;
}

.footer-copy address > a[href="tel:+78129474747"] {
  left: 0;
  top: 61px;
}

.footer-email {
  left: 196px;
  top: 66px;
}

.footer-socials {
  left: 196px;
  top: 0;
}

.footer-copy .footer-email,
.footer-copy address span:not(.footer-socials) {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}

.footer-socials {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-start;
  width: 86px;
}

.footer-socials a {
  display: grid;
  place-items: center;
}

.footer-socials img {
  width: 24px;
  height: 24px;
}

.footer-nav {
  position: absolute;
  right: 30px;
  top: 30px;
  display: grid;
  grid-template-columns: 160px 170px 249px;
  grid-template-rows: repeat(3, 30px);
  gap: 22px 0;
  min-height: 150px;
  width: 610px;
  padding: 30px 42px;
  border-radius: 30px;
  background: #382471;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-nav a:nth-child(n + 5) {
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}

.footer-nav a:nth-child(1) { grid-column: 1; grid-row: 1; }
.footer-nav a:nth-child(2) { grid-column: 2; grid-row: 1; }
.footer-nav a:nth-child(3) { grid-column: 1; grid-row: 2; }
.footer-nav a:nth-child(4) { grid-column: 2; grid-row: 2; }
.footer-nav a:nth-child(5) { grid-column: 3; grid-row: 1; }
.footer-nav a:nth-child(6) { grid-column: 3; grid-row: 2; }
.footer-nav a:nth-child(7) { grid-column: 3; grid-row: 3; }

.footer-legal {
  display: grid;
  grid-template-columns: 377px 239px 319px;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.45;
}

.footer-legal > * {
  white-space: nowrap;
}

.footer-legal a:nth-child(2) {
  text-align: center;
}

.footer-legal a:last-child {
  text-align: right;
}

.inner-page {
  background:
    radial-gradient(circle at 20% 20%, rgba(185, 161, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 45%, rgba(126, 82, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #6240c8 0%, #5a3bb5 100%);
}

.tech-page {
  min-height: 1188px;
  padding: 125px 0 60px;
}

.tech-page--detail {
  min-height: 1688px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.breadcrumbs a,
.breadcrumbs span {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.breadcrumbs a::after {
  content: "";
  width: 8px;
  height: 9px;
  border: 0;
  background: url("data:image/svg+xml,%3Csvg width='8' height='9' viewBox='0 0 8 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3L8 0V6L0 9V3Z' fill='%23BDF522'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: none;
}

.tech-page h1 {
  max-width: 920px;
  margin: 0 0 44px;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1;
  font-weight: 800;
  text-transform: none;
}

.tech-intro {
  max-width: 1299px;
  margin: 0 0 56px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.38;
}

.requirements-list {
  display: grid;
  gap: 20px;
  margin-bottom: 100px;
}

.requirement-card {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  border-radius: 20px;
  background: #4f339f;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.requirement-card:hover {
  background: #5d39c8;
  transform: translateY(-2px);
}

.requirement-card em {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 15px;
  color: var(--color-accent);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

.requirement-card em::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.page-lead-form {
  grid-template-columns: minmax(340px, 1fr) 243px 244px 201px;
  column-gap: 23px;
  row-gap: 4px;
  min-height: 111px;
  padding: 31px 51px 16px 40px;
  border-radius: 30px;
  background: rgba(126, 82, 255, 0.84);
}

.page-lead-form strong {
  font-size: 21px;
  line-height: 1.1;
  white-space: nowrap;
}

.page-lead-form label span {
  display: none;
}

.page-lead-form input {
  min-height: 40px;
  padding-left: 20px;
  background: var(--color-white);
  color: #24154d;
}

.page-lead-form input::placeholder {
  color: rgba(36, 21, 77, 0.38);
  opacity: 1;
}

.page-lead-form .button {
  min-height: 50px;
  padding: 0 28px;
  font-size: 13px;
}

.page-lead-form small {
  grid-column: 2 / 4;
  justify-self: center;
  width: 609px;
  margin-top: -4px;
  transform: translateX(-80px);
  color: rgba(255, 255, 255, 0.41);
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
}

.about-page {
  min-height: 914px;
  padding: 125px 0 87px;
}

.about-page h1 {
  margin: 0 0 55px;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
}

.about-intro {
  max-width: 1299px;
  margin: 0 0 56px;
  color: var(--color-white);
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
}

.about-intro p {
  margin: 0;
}

.about-intro strong {
  font-weight: 800;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 310px));
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 102px;
}

.about-stat {
  display: grid;
  min-height: 175px;
  align-content: center;
  justify-items: center;
  padding: 36px 24px 24px;
  border-radius: 52px;
  background: #7e52ff;
  text-align: center;
}

.about-stat strong {
  display: block;
  min-height: 56px;
  color: var(--color-accent);
  font-size: 67px;
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-stat:nth-child(4) strong {
  font-size: 56px;
  letter-spacing: 0;
}

.about-stat span {
  display: block;
  max-width: 214px;
  color: rgba(255, 255, 255, 0.91);
  font-size: 18px;
  line-height: 1.22;
  font-weight: 700;
  text-transform: uppercase;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 989px) 291px;
  gap: 20px;
  align-items: stretch;
}

.about-cta .page-lead-form {
  width: 100%;
  grid-template-columns: 264px 218px 218px 139px;
  column-gap: 20px;
  padding-right: 32px;
}

.about-cta .page-lead-form strong {
  font-size: 20px;
  font-weight: 800;
}

.about-cta .page-lead-form small {
  grid-column: 2 / 5;
  justify-self: center;
  width: 609px;
  transform: none;
}

.about-map-card {
  width: 291px;
  min-height: 112px;
}

.contacts-page {
  min-height: 906px;
  padding: 125px 0 50px;
}

.contacts-page h1 {
  margin: 0 0 32px;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
}

.geography-page {
  min-height: 1231px;
  padding: 125px 0 56px;
}

.geography-page .breadcrumbs,
.geography-detail-page .breadcrumbs {
  margin-bottom: 32px;
}

.geography-page h1,
.geography-detail-page h1 {
  margin: 0 0 46px;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
}

.geography-intro,
.geography-detail-text {
  max-width: 1299px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.geography-intro {
  margin: 0 0 28px;
}

.geography-intro p,
.geography-detail-text p {
  margin: 0;
}

.geo-map-button {
  display: inline-flex;
  width: 259px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 29px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: #111;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.geo-accordions {
  display: grid;
  gap: 30px;
  margin-bottom: 230px;
}

.geo-accordion {
  background: transparent;
}

.geo-accordion summary {
  position: relative;
  display: flex;
  min-height: 80px;
  align-items: center;
  padding: 0 78px 0 30px;
  border-radius: 30px;
  background: #4f339f;
  color: var(--color-white);
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.geo-accordion summary::-webkit-details-marker {
  display: none;
}

.geo-accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 33px;
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--color-white);
  border-bottom: 3px solid var(--color-white);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease;
}

.geo-accordion[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.geo-link-grid {
  display: grid;
  grid-template-columns: repeat(6, 197px);
  gap: 20px 24px;
  padding: 34px 0 0;
}

.geo-accordion:not([open]) .geo-link-grid {
  display: none;
}

.geo-pill {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: #7e52ff;
  color: var(--color-accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.geo-pill:hover,
.geo-pill:focus-visible,
.geo-pill.is-highlighted {
  background: var(--color-accent);
  color: #221353;
  transform: translateY(-1px);
}

.geography-lead-form {
  margin-bottom: 0;
}

.geography-lead-form small {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.geography-lead-form small span {
  position: static;
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.41);
  border-radius: 2px;
  transform: none;
}

.geography-detail-page {
  min-height: 714px;
  padding: 125px 0 74px;
}

.geography-detail-page h1 {
  margin-bottom: 61px;
}

.geography-detail-text {
  max-width: 1299px;
  margin-bottom: 113px;
  line-height: 1.56;
}

.geo-detail-lead {
  grid-template-columns: 291px minmax(780px, 989px);
  gap: 20px;
  justify-content: start;
  margin-bottom: 0;
}

.geo-detail-lead .map-card--formats {
  width: 291px;
}

.geo-detail-lead .lead-form--formats {
  grid-template-columns: minmax(230px, 264px) minmax(170px, 218px) minmax(170px, 218px) 139px;
  width: 100%;
}

.object-map-body {
  min-height: 100vh;
  overflow: hidden;
  background: #6240c8;
}

.object-map-page {
  position: relative;
  min-height: 0;
  height: 100vh;
  overflow: hidden;
  background: #dfe9f3;
}

.object-map-page::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 145px;
  background: #6240c8;
}

.object-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.05);
}

.object-map-bg--city {
  background-image: url("../img/objects-map-bg.png");
}

.object-map-bg--region {
  background-image: url("../img/selection-map-bg.png");
}

.map-panel {
  position: absolute;
  z-index: 5;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 24px 52px rgba(54, 35, 104, 0.24);
}

.object-panel {
  left: 70px;
  top: 145px;
  width: 640px;
  height: min(650px, calc(100vh - 185px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) 76px;
  overflow: hidden;
}

.object-panel__filters {
  padding: 20px 20px 18px;
  background: #6540d2;
}

.object-filter-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 183px;
  gap: 14px;
  margin-bottom: 20px;
}

.object-search-field {
  display: grid;
  grid-template-columns: 1fr 42px;
  height: 40px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-white);
}

.object-search-field input,
.map-address-search input,
.selection-modal input,
.selection-modal textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: var(--color-white);
  color: #2f215d;
}

.object-search-field input {
  padding: 0 20px;
  font-size: 15px;
}

.object-search-field input::placeholder,
.map-address-search input::placeholder,
.selection-modal input::placeholder,
.selection-modal textarea::placeholder {
  color: rgba(54, 35, 104, 0.46);
}

.object-search-field button,
.map-search-submit {
  position: relative;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--color-white);
  cursor: pointer;
}

.object-search-field button::before,
.map-search-submit::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='7.65' cy='7.65' r='5.9' stroke='%237E52FF' stroke-width='2.4'/%3E%3Cpath d='M12.15 12.15L16 16' stroke='%237E52FF' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.object-search-field button::after,
.map-search-submit::after {
  display: none;
}

.object-reset {
  height: 40px;
  border: 0;
  border-radius: 6px;
  background: #7e52ff;
  color: var(--color-accent);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.object-filter-row {
  display: grid;
  grid-template-columns: 213px 117px 95px 117px;
  gap: 18px;
}

.object-filter-select,
.map-radius-select {
  position: relative;
  display: block;
}

.object-filter-select select,
.map-radius-select select {
  width: 100%;
  height: 40px;
  appearance: none;
  padding: 0 36px 0 10px;
  border: 0;
  border-radius: 6px;
  background: #7e52ff;
  color: var(--color-white);
  cursor: pointer;
  font-size: 16px;
  text-align: left;
}

.object-filter-select::after,
.map-radius-select::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  pointer-events: none;
}

.object-filter-select--type select {
  padding-right: 28px;
}

.object-list {
  overflow: auto;
  background: var(--color-white);
  color: #07020f;
}

.object-list__head,
.object-row {
  display: grid;
  grid-template-columns: 36px 92px minmax(0, 1fr) 56px;
  align-items: center;
  column-gap: 6px;
}

.object-list__head {
  min-height: 58px;
  padding: 0 20px;
  color: rgba(43, 36, 69, 0.42);
  font-size: 15px;
}

.object-row {
  min-height: 82px;
  padding: 10px 14px 10px 20px;
  border-top: 1px solid #e4ddee;
  background: #f6f1ff;
  font-size: 14px;
}

.object-row:nth-child(2n + 1) {
  background: #fff;
}

.object-row.is-hidden {
  display: none;
}

.object-row.is-selected {
  background: #f4efff;
}

.object-row strong {
  font-size: 14px;
  font-weight: 800;
}

.object-row p {
  margin: 0;
  line-height: 1.42;
}

.object-row em {
  justify-self: end;
  font-style: normal;
  font-size: 16px;
}

.object-check {
  position: relative;
  display: inline-grid;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.object-check input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.object-check span {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #ded2ff;
  border-radius: 2px;
  background: #fff;
}

.object-check input:checked + span {
  border-color: #7e52ff;
  background: #7e52ff;
}

.object-check input:checked + span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 7px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.object-panel__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  background: #6540d2;
}

.object-panel__bottom p {
  margin: 0;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
}

.object-selection-button,
.selection-actions button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 2px solid var(--color-accent);
  border-radius: 6px;
  background: transparent;
  color: var(--color-accent);
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}

.object-selection-button span {
  display: inline-grid;
  min-width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #7e52ff;
  color: #fff;
  font-size: 13px;
}

.map-address-search {
  position: absolute;
  z-index: 5;
  top: 145px;
  right: 70px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 46px 244px 50px;
  width: min(1035px, calc(100% - 815px));
  min-height: 60px;
  align-items: center;
  gap: 0;
  padding: 10px 8px;
  border-radius: 6px;
  background: #6540d2;
}

.map-address-search label {
  display: block;
}

.map-address-search input {
  height: 40px;
  padding: 0 20px;
  font-size: 15px;
}

.map-search-submit {
  position: relative;
  height: 40px;
  border-radius: 0 4px 4px 0;
}

.map-search-close {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  background: #7e52ff;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
}

.map-radius-select {
  margin-left: 12px;
}

.map-radius-select select {
  padding-left: 18px;
  font-size: 15px;
  font-weight: 700;
}

.map-search-close {
  margin-left: 10px;
  color: var(--color-accent);
  font-size: 34px;
  line-height: 0;
}

.map-tabs {
  position: absolute;
  z-index: 5;
  top: 216px;
  left: min(50vw + 15px, 815px);
  display: grid;
  grid-template-columns: repeat(2, 135px);
  height: 50px;
}

.map-tabs button {
  border: 1px solid #c8b7ff;
  background: rgba(255, 255, 255, 0.7);
  color: #cebfff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.map-tabs button.is-active {
  border-color: #6540d2;
  background: #6540d2;
  color: var(--color-white);
}

.map-marker {
  position: absolute;
  z-index: 4;
  left: var(--x);
  top: var(--y);
  width: 52px;
  height: 52px;
  border: 8px solid #7e52ff;
  border-radius: 50%;
  background: var(--color-white);
  color: #4f339f;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(54, 35, 104, 0.24);
  transform: translate(-50%, -50%);
}

.map-marker--danger {
  border-color: var(--color-white);
  background: #ff4d43;
}

.map-marker--photo {
  width: 58px;
  height: 58px;
  padding: 0;
  overflow: hidden;
  border-width: 0;
}

.map-marker--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.object-map-popup {
  position: absolute;
  z-index: 8;
  left: 50.7%;
  top: 32%;
  width: 588px;
  min-height: 373px;
  padding: 29px 30px 30px;
  border: 8px solid #6540d2;
  background: var(--color-white);
  color: #33215f;
  box-shadow: 0 20px 48px rgba(54, 35, 104, 0.25);
}

.object-map-popup::after {
  content: "";
  position: absolute;
  left: 86px;
  bottom: -35px;
  width: 37px;
  height: 27px;
  background: #6540d2;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.object-map-popup:not(.is-open) {
  display: none;
}

.object-popup-close {
  position: absolute;
  top: 7px;
  right: 12px;
  border: 0;
  background: transparent;
  color: #cbb8ff;
  cursor: pointer;
  font-size: 30px;
}

.object-map-popup h1 {
  max-width: 520px;
  margin: 0 0 19px;
  font-size: 19px;
  line-height: 1.26;
  font-weight: 800;
}

.object-popup-body {
  display: grid;
  grid-template-columns: 291px 1fr;
  gap: 20px;
  margin-bottom: 27px;
}

.object-popup-body img {
  width: 291px;
  height: 162px;
  border-radius: 4px;
  object-fit: cover;
}

.object-popup-body p {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.22;
}

.object-popup-body strong {
  font-weight: 800;
}

.object-side-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 50px);
  height: 50px;
  overflow: hidden;
  border-radius: 8px;
}

.object-side-switch button {
  border: 1px solid #c9b7ff;
  background: #ede5ff;
  color: #c8b7ff;
  cursor: pointer;
  font-size: 23px;
  font-weight: 700;
}

.object-side-switch button.is-active {
  border-color: #6540d2;
  background: #6540d2;
  color: #fff;
}

.object-popup-actions {
  display: grid;
  grid-template-columns: 291px 216px;
  gap: 20px;
}

.object-popup-actions .button {
  min-height: 40px;
  border-radius: 6px;
  font-size: 15px;
}

.object-popup-actions .button--accent {
  background: #3c2778;
  color: var(--color-accent);
}

.object-popup-actions .button--accent.is-added {
  background: #3c2778;
  color: var(--color-accent);
}

.object-popup-actions .button:not(.button--accent) {
  background: #7e52ff;
  color: var(--color-white);
}

.object-popup-actions .button.is-added,
.object-detail-info .button.is-added {
  background: #7e52ff;
  color: var(--color-white);
}

.object-detail-page {
  min-height: 1351px;
  padding: 125px 0 59px;
}

.object-detail-page .breadcrumbs {
  margin-bottom: 32px;
}

.object-detail-page h1 {
  margin: 0 0 31px;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
}

.object-detail-card {
  display: grid;
  grid-template-columns: 618px minmax(0, 610px);
  gap: 25px;
  min-height: 417px;
  padding: 19px 20px 0;
  border-radius: 30px 30px 0 0;
  background: var(--color-white);
  color: #33215f;
}

.object-detail-photo {
  width: 618px;
  height: 367px;
  border-radius: 18px;
  object-fit: cover;
}

.object-detail-info {
  padding-top: 7px;
}

.object-detail-info h2 {
  margin: 0 0 27px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
}

.object-detail-info p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.55;
}

.object-side-switch--detail {
  margin-bottom: 25px;
}

.object-detail-info .button {
  width: 291px;
  min-height: 40px;
  border-radius: 6px;
  font-size: 15px;
}

.object-detail-map {
  position: relative;
  height: 410px;
  margin-bottom: 104px;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  background: #dfe9f3;
}

.object-detail-map__bg {
  position: absolute;
  inset: 0;
  background: url("../img/objects-map-bg.png") center / cover no-repeat;
}

.object-detail-map__marker {
  left: 55%;
  top: 44%;
}

.object-detail-map__marker--second {
  left: 62%;
  top: 43%;
}

.object-panel--selection {
  top: 285px;
  grid-template-rows: 1fr 86px;
}

.object-panel--selection .object-list__head,
.object-panel--selection .object-row {
  grid-template-columns: 92px minmax(0, 1fr) 56px 34px;
}

.object-panel--selection .object-list__head {
  padding-left: 34px;
}

.object-panel--selection .object-row {
  padding-left: 34px;
}

.object-panel--selection .object-row button {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #7e52ff;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

.selection-empty {
  margin: 36px;
  color: #33215f;
  font-weight: 700;
}

.selection-actions {
  justify-content: flex-start;
  gap: 28px;
}

.selection-actions button {
  min-height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--color-accent);
  font-size: 16px;
}

.selection-actions button:not(.object-selection-button)::after {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.selection-actions .object-selection-button {
  width: 231px;
  margin-left: auto;
  border-radius: 6px;
}

.selection-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}

.selection-modal[hidden] {
  display: none;
}

.selection-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(54, 35, 104, 0.55);
  backdrop-filter: blur(4px);
}

.selection-modal__panel {
  position: relative;
  z-index: 1;
  width: 414px;
  min-height: 633px;
  padding: 27px 32px 30px;
  border-radius: 30px;
  background: #382471;
  color: var(--color-white);
  text-align: center;
}

.selection-modal__panel h2 {
  width: 350px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
}

.selection-modal__panel p {
  width: 350px;
  margin: 0 auto 20px;
  font-size: 17px;
  line-height: 1.18;
}

.selection-modal label {
  display: block;
  margin-bottom: 20px;
}

.selection-modal input,
.selection-modal textarea {
  height: 40px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
}

.selection-modal textarea {
  height: 100px;
  padding-top: 14px;
  resize: none;
}

.selection-modal small {
  display: block;
  margin: 2px 0 19px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  line-height: 1.2;
}

.selection-modal .button {
  width: 205px;
  min-height: 40px;
  font-size: 14px;
}

.selection-modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent);
  color: #382471;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.selection-modal--thanks .selection-modal__panel {
  width: 414px;
  min-height: 179px;
  padding-top: 42px;
}

.selection-modal--thanks .selection-modal__panel h2 {
  margin-bottom: 4px;
}

.selection-modal--thanks .selection-modal__panel p {
  margin-bottom: 0;
}

.contacts-panel {
  display: grid;
  grid-template-columns: minmax(0, 42.3077%) minmax(0, 57.6923%);
  height: 500px;
  margin-bottom: 62px;
  overflow: hidden;
  border-radius: 30px;
  background: #7e52ff;
}

.contacts-panel__content {
  padding: 38px 41px 36px;
}

.contacts-tabs {
  display: flex;
  gap: 28px;
  margin-bottom: 38px;
}

.contacts-tab {
  width: 160px;
  min-height: 50px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  background: #6240c8;
  color: #e3dcf8;
  cursor: pointer;
  font-size: 16px;
  line-height: 31px;
  font-weight: 500;
}

.contacts-tab.is-active {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
}

.contacts-info {
  margin: 0;
  color: var(--color-white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

.contacts-info span,
.contacts-info a,
.contacts-info p {
  display: block;
}

.contacts-info a {
  width: max-content;
}

.contacts-info p {
  margin: 0;
}

.contacts-info a + span,
.contacts-info p + span {
  margin-top: 27px;
}

.contacts-info .contacts-route {
  display: inline-flex;
  width: auto;
  min-width: 165px;
  height: 40px;
  margin-top: 28px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: #050318;
  font-size: 13px;
  font-weight: 800;
  line-height: 40px;
  text-transform: uppercase;
}

.contacts-map {
  position: relative;
  overflow: hidden;
  min-height: 0;
  border-radius: 0 30px 30px 0;
  background: #d7eef8;
}

.contacts-map > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacts-map__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 50px;
  height: 49px;
  place-items: center;
  transform: translate(-50%, -50%);
}

.contacts-map__pin img {
  width: 50px;
  max-width: none;
  filter: drop-shadow(0 10px 18px rgba(30, 12, 76, 0.28));
}

.contacts-lead-form {
  margin-bottom: 50px;
}

.constructions-page {
  min-height: 1849px;
  padding: 125px 0 60px;
}

.constructions-page .breadcrumbs {
  margin-bottom: 32px;
}

.constructions-page h1 {
  margin: 0 0 44px;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
}

.construction-tabs {
  display: flex;
  gap: 28px;
  margin-bottom: 50px;
}

.construction-tab {
  width: 192px;
  min-height: 55px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: #5b3bb8;
  color: var(--color-white);
  cursor: pointer;
  font-size: 16px;
  line-height: 31px;
  font-weight: 500;
}

.construction-tab:last-child {
  width: 190px;
}

.construction-tab.is-active {
  background: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
  font-weight: 700;
}

.construction-panel[hidden] {
  display: none;
}

.construction-formats {
  display: grid;
  grid-template-columns: 420px minmax(0, 862px);
  gap: 20px;
  margin-bottom: 121px;
}

.construction-visual,
.construction-copy,
.construction-benefits article {
  border-radius: 30px;
}

.construction-visual {
  display: flex;
  min-height: 330px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #3c2778;
}

.construction-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.construction-copy {
  min-height: 329px;
  padding: 25px 30px;
  background: #7e52ff;
  color: var(--color-white);
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
}

.construction-copy--tall {
  min-height: 435px;
}

.construction-copy p {
  margin: 0;
}

.construction-copy strong {
  font-weight: 700;
}

.construction-formats--screens .construction-copy:nth-child(4) {
  min-height: 435px;
}

.construction-heading {
  margin: 0 0 52px;
  color: var(--color-white);
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.construction-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 641px));
  gap: 20px;
  margin-bottom: 100px;
}

.construction-benefits article {
  position: relative;
  min-height: 186px;
  padding: 30px 30px 28px 81px;
  background: #7e52ff;
  color: var(--color-white);
}

.construction-benefits--screens article:nth-child(n + 3) {
  min-height: 246px;
}

.construction-benefits span {
  position: absolute;
  left: 30px;
  top: 30px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #6240c8;
}

.construction-benefits span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 9px;
  width: 16px;
  height: 10px;
  border-left: 3px solid #8cff00;
  border-bottom: 3px solid #8cff00;
  transform: rotate(-45deg);
}

.construction-benefits p {
  margin: 0;
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
}

.construction-lead {
  margin-bottom: 40px;
}

.services-page {
  min-height: 1715px;
  padding: 125px 0 61px;
}

.services-page h1 {
  margin: 0 0 56px;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
}

.services-intro {
  max-width: 1299px;
  margin: 0 0 51px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 31px;
}

.services-section h2 {
  margin: 0 0 33px;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 700;
}

.services-list {
  display: grid;
  gap: 20px;
  margin-bottom: 79px;
}

.service-row,
.service-benefit {
  position: relative;
  border-radius: 30px;
  color: var(--color-white);
}

.service-row {
  min-height: 103px;
  padding: 21px 30px 21px;
  background: #4f339f;
}

.service-row:nth-child(1) {
  min-height: 134px;
}

.service-row:nth-child(2) {
  min-height: 123px;
  padding-top: 30px;
}

.service-row:nth-child(3) {
  min-height: 154px;
  padding-top: 30px;
}

.service-row:nth-child(n + 4) {
  padding-top: 20px;
}

.service-benefit::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #6240c8;
}

.service-benefit::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 39px;
  width: 13px;
  height: 8px;
  border-left: 4px solid var(--color-accent);
  border-bottom: 4px solid var(--color-accent);
  transform: rotate(-45deg);
}

.service-row h3,
.service-row p {
  margin: 0;
  padding-left: 0;
  font-size: 16px;
  line-height: 31px;
}

.service-row h3 {
  font-weight: 700;
}

.service-row p {
  font-weight: 400;
}

.services-section--benefits h2 {
  margin-bottom: 40px;
}

.services-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 640px));
  gap: 20px;
}

.service-benefit {
  min-height: 277px;
  padding: 30px 30px 30px 81px;
  background: #7e52ff;
}

.service-benefit--wide {
  grid-column: 1 / -1;
  min-height: 246px;
  padding-right: 30px;
}

.service-benefit h3,
.service-benefit p {
  margin: 0;
  font-size: 18px;
  line-height: 31px;
  font-weight: 700;
}

.service-benefit p {
  font-weight: 400;
}

.tech-article {
  max-width: 1246px;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.tech-article p {
  margin: 0 0 7px;
}

.tech-article strong {
  font-weight: 800;
}

.download-button {
  display: inline-flex;
  min-width: 421px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 0 100px;
  padding: 0 32px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: #07051f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.solutions-page {
  min-height: 2064px;
  padding: 125px 0 70px;
}

.solutions-page .breadcrumbs {
  margin-bottom: 32px;
}

.solutions-page h1 {
  margin: 0 0 49px;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
  text-transform: none;
}

.solutions-intro {
  max-width: 1299px;
  margin: 0 0 52px;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 31px;
}

.solutions-intro p {
  margin: 0;
}

.solutions-intro p + p {
  margin-top: 0;
}

.solutions-intro p:last-child {
  margin-top: 31px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 640px);
  gap: 20px 20px;
  margin-bottom: 109px;
}

.solution-card {
  position: relative;
  min-height: 417px;
  overflow: hidden;
  border-radius: 52px;
  background: #7e52ff;
}

.solution-card img {
  position: absolute;
  left: 40px;
  top: 103px;
  width: 559px;
  height: 216px;
  border-radius: 30px;
  object-fit: cover;
}

.solution-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 43px 41px 29px;
}

.solution-card h2 {
  width: 559px;
  min-height: 62px;
  margin: 0;
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
}

.solution-card p {
  display: none;
}

.solution-card__more {
  position: absolute;
  left: 245px;
  bottom: 30px;
  width: 149px;
  min-height: 40px;
  padding: 0;
  border: 2px solid var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.page-lead-form--fixed {
  margin-bottom: 39px;
}

.solution-modal {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  color: var(--color-white);
}

.solution-modal::backdrop {
  background: rgba(56, 36, 113, 0.76);
}

.solution-modal__panel {
  position: relative;
  width: min(1300px, calc(100% - 40px));
  min-height: 599px;
  max-height: calc(100vh - 40px);
  margin: auto;
  padding: 38px 40px 49px;
  border-radius: 52px;
  overflow: auto;
  background: #7e52ff;
}

.solution-modal__close {
  position: absolute;
  top: 34px;
  right: 27px;
  width: 149px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-accent);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.solution-modal h2 {
  width: 559px;
  margin: 0 0 36px 3px;
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
  text-transform: none;
}

.solution-modal__gallery {
  position: relative;
  margin-bottom: 35px;
}

.solution-modal__viewport {
  width: 100%;
  overflow: hidden;
}

.solution-modal__track {
  --solution-slide-step: calc((100% - 60px) / 3 + 30px);
  display: flex;
  gap: 30px;
  transform: translate3d(calc(var(--solution-gallery-index, 0) * var(--solution-slide-step) * -1), 0, 0);
  transition: transform 0.38s ease;
}

.solution-modal__track img {
  flex: 0 0 calc((100% - 60px) / 3);
  width: calc((100% - 60px) / 3);
  height: 276px;
  border-radius: 30px;
  object-fit: cover;
}

.solution-modal__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0 0 4px;
  border: 0;
  border-radius: 50%;
  background: #7e52ff;
  color: var(--color-white);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.solution-modal__arrow--prev {
  left: 20px;
}

.solution-modal__arrow--next {
  right: 20px;
}

.solution-modal p {
  max-width: 1239px;
  margin: 0;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 31px;
}

.news-page,
.news-detail-page {
  padding: 125px 0 87px;
}

.news-page {
  min-height: 2621px;
}

.news-detail-page {
  min-height: auto;
}

.news-detail-page--no-photo {
  min-height: auto;
}

.news-page .breadcrumbs,
.news-detail-page .breadcrumbs {
  margin-bottom: 32px;
}

.news-page h1,
.news-detail-page h1,
.related-news h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.22;
  font-weight: 800;
  text-transform: none;
}

.news-page h1 {
  margin-bottom: 60px;
}

.news-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 640px);
  gap: 20px;
  margin-bottom: 55px;
}

.news-list-card {
  position: relative;
  min-height: 503px;
  overflow: hidden;
  border-radius: 52px;
  background: #7e52ff;
}

.news-list-card h2,
.news-list-card h3 {
  width: 559px;
  min-height: 62px;
  margin: 54px 0 0 41px;
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
}

.news-list-card time {
  display: block;
  width: 559px;
  margin: 17px 0 0 41px;
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
}

.news-list-card img {
  width: 559px;
  height: 216px;
  margin: 16px 0 0 41px;
  border-radius: 30px;
  object-fit: cover;
}

.news-list-card .button {
  position: absolute;
  left: 245px;
  bottom: 29px;
  width: 149px;
  min-height: 40px;
  padding: 0;
  border: 2px solid var(--color-accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
}

.news-load-more {
  display: flex;
  width: 217px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 100px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: #07051f;
  font-size: 14px;
  font-weight: 700;
}

.news-detail-page h1 {
  max-width: 994px;
  margin-bottom: 9px;
}

.news-detail-date {
  display: block;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 31px;
  font-weight: 400;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 639px 640px;
  gap: 20px;
  align-items: start;
  margin-bottom: 39px;
}

.news-detail-text {
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  line-height: 25px;
}

.news-detail-text p {
  margin: 0;
}

.news-detail-text p + p {
  margin-top: 0;
}

.news-detail-text--full {
  max-width: 1299px;
  margin-bottom: 94px;
}

.news-detail-image {
  width: 640px;
  height: 439px;
  border-radius: 30px;
  object-fit: cover;
}

.related-news h2 {
  margin-bottom: 47px;
}

.related-news__wrap {
  position: relative;
  margin-bottom: 57px;
}

.related-news__grid {
  display: grid;
  grid-template-columns: repeat(2, 640px);
  gap: 20px;
}

.related-news__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0 0 4px;
  border: 0;
  border-radius: 50%;
  background: #7e52ff;
  color: var(--color-white);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.related-news__arrow--prev {
  left: -68px;
}

.related-news__arrow--next {
  right: -68px;
}

.related-news__all {
  margin-bottom: 100px;
}

@media (max-width: 1280px) {
  .topbar__nav {
    gap: 28px;
  }

  .header-main {
    grid-template-columns: auto 46px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

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

  .primary-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 18px;
    margin-top: 10px;
    white-space: normal;
  }

  .brands .section__inner,
  .format-grid,
  .solutions-grid,
  .news-list-grid,
  .related-news__grid,
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

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

  .news-list-grid,
  .related-news__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-cta {
    grid-template-columns: 1fr;
  }

  .services-benefits {
    grid-template-columns: 1fr;
  }

  .service-benefit--wide {
    grid-column: auto;
  }

  .contacts-map {
    aspect-ratio: auto;
    min-height: 0;
    border-radius: 0 30px 30px 0;
  }

  .about-map-card {
    width: 100%;
  }

  .brands .section__inner {
    justify-items: center;
  }

  .social-projects {
    width: min(417px, 100%);
  }

  .lead-form,
  .lead-form--wide {
    grid-template-columns: 1fr 1fr;
  }

  .lead-form strong,
  .lead-form .button {
    grid-column: 1 / -1;
  }

  .lead-form small {
    grid-column: 1 / -1;
  }

  .map-card {
    min-height: 84px;
  }

  .footer-main {
    grid-template-columns: 120px 1fr;
  }

  .footer-nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  .header-main {
    width: min(100% - 28px, var(--container));
    min-height: 74px;
    padding: 8px 0;
  }

  .brand img {
    width: 74px;
  }

  .brand span {
    max-width: 210px;
    font-size: 12px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    min-height: 680px;
    padding-top: 74px;
  }

  .hero__content {
    top: 250px;
    height: 160px;
  }

  .section {
    padding: 72px 0;
  }

  .section__inner {
    width: min(100% - 28px, var(--container));
  }

  .section h2 {
    margin-bottom: 42px;
  }

  .about-page {
    min-height: auto;
    padding: 136px 0 48px;
  }

  .about-page h1 {
    margin-bottom: 30px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
  }

  .about-intro {
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 1.45;
  }

  .about-stats {
    gap: 14px;
    margin-bottom: 44px;
  }

  .about-stat {
    min-height: 150px;
    padding: 28px 12px 18px;
    border-radius: 28px;
  }

  .about-stat strong {
    min-height: 44px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .about-stat:nth-child(4) strong {
    font-size: clamp(34px, 10vw, 46px);
  }

  .about-stat span {
    font-size: 13px;
    line-height: 1.2;
  }

  .about-cta {
    grid-template-columns: 1fr;
  }

  .about-cta .page-lead-form {
    grid-template-columns: 1fr;
    padding: 24px 18px 18px;
  }

  .about-cta .page-lead-form strong,
  .about-cta .page-lead-form small {
    grid-column: 1;
    width: auto;
    justify-self: stretch;
    white-space: normal;
  }

  .about-cta .page-lead-form small {
    line-height: 1.3;
  }

  .contacts-page {
    min-height: auto;
    padding: 136px 0 48px;
  }

  .contacts-page h1 {
    margin-bottom: 28px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
  }

  .contacts-panel {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    margin-bottom: 44px;
    border-radius: 28px;
  }

  .contacts-panel__content {
    padding: 24px 18px 28px;
  }

  .contacts-tabs {
    gap: 12px;
    margin-bottom: 28px;
  }

  .contacts-tab {
    width: 128px;
    min-height: 44px;
  }

  .contacts-info {
    font-size: 15px;
    line-height: 1.55;
  }

  .contacts-info a + span,
  .contacts-info p + span {
    margin-top: 18px;
  }

  .contacts-map {
    aspect-ratio: 750 / 500;
    min-height: 0;
    border-radius: 0 0 28px 28px;
  }

  .contacts-lead-form {
    margin-bottom: 44px;
  }

  .constructions-page {
    min-height: auto;
    padding: 136px 0 48px;
  }

  .constructions-page h1 {
    margin-bottom: 30px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
  }

  .construction-tabs {
    gap: 12px;
    margin-bottom: 34px;
  }

  .construction-tab,
  .construction-tab:last-child {
    width: min(50%, 160px);
    min-height: 44px;
    font-size: 14px;
  }

  .construction-formats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 58px;
  }

  .construction-visual {
    min-height: 250px;
    border-radius: 24px;
  }

  .construction-visual img,
  .construction-visual--wide img {
    width: 100%;
    height: 100%;
  }

  .construction-copy,
  .construction-copy--tall,
  .construction-formats--screens .construction-copy:nth-child(4) {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 24px;
    font-size: 15px;
    line-height: 1.45;
  }

  .construction-heading {
    margin-bottom: 30px;
    font-size: clamp(26px, 7vw, 36px);
    line-height: 1.15;
  }

  .construction-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 54px;
  }

  .construction-benefits article,
  .construction-benefits--screens article:nth-child(n + 3) {
    min-height: 0;
    padding: 22px 18px 22px 60px;
    border-radius: 24px;
  }

  .construction-benefits span {
    left: 18px;
    top: 22px;
  }

  .construction-benefits p {
    font-size: 15px;
    line-height: 1.45;
  }

  .construction-lead {
    margin-bottom: 44px;
  }

  .services-page {
    min-height: auto;
    padding: 136px 0 48px;
  }

  .services-page h1 {
    margin-bottom: 30px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
  }

  .services-intro {
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 1.45;
  }

  .services-section h2 {
    margin-bottom: 22px;
    font-size: 22px;
  }

  .services-list {
    gap: 14px;
    margin-bottom: 48px;
  }

  .service-row,
  .service-row:nth-child(n) {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .service-row h3,
  .service-row p {
    font-size: 15px;
    line-height: 1.45;
  }

  .services-section--benefits h2 {
    margin-bottom: 22px;
  }

  .services-benefits {
    gap: 14px;
  }

  .service-benefit,
  .service-benefit--wide {
    min-height: 0;
    padding: 22px 18px 22px 60px;
    border-radius: 24px;
  }

  .service-benefit::before {
    left: 18px;
    top: 22px;
  }

  .service-benefit::after {
    left: 27px;
    top: 31px;
  }

  .service-benefit h3,
  .service-benefit p {
    font-size: 15px;
    line-height: 1.45;
  }

  .section-nav {
    display: none;
  }

  .tabs {
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 40px;
  }

  .tab {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 20px;
    font-size: 14px;
  }

  .format-visual {
    min-height: 360px;
  }

  .format-copy {
    min-height: auto;
    padding: 34px 24px;
  }

  .brands {
    padding: 72px 0 120px;
  }

  .brands h2 {
    margin-bottom: 52px;
  }

  .lead-row--formats {
    grid-template-columns: 1fr;
  }

  .lead-form,
  .lead-form--wide {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .lead-form--formats {
    grid-template-columns: 1fr;
    padding: 26px 20px 18px;
  }

  .lead-form--formats strong,
  .lead-form--formats small {
    white-space: normal;
  }

  .lead-form--formats small {
    grid-column: 1;
    align-items: flex-start;
    font-size: 10px;
    line-height: 1.25;
  }

  .map-card--formats {
    width: min(291px, 100%);
    justify-self: center;
  }

  .brand-cloud {
    grid-template-columns: repeat(2, 200px);
    gap: 14px;
  }

  .brand-cloud span {
    width: 200px;
    height: 130px;
  }

  .social-projects {
    min-height: auto;
  }

  .social-projects__icons {
    justify-content: center;
  }

  .portfolio {
    min-height: auto;
    height: auto;
    padding: 72px 0;
  }

  .portfolio__inner {
    min-height: 0;
  }

  .portfolio h2 {
    position: static;
    max-width: 510px;
    margin: 0 auto 32px;
  }

  .portfolio-scatter {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .campaign {
    position: relative;
    inset: auto;
    width: 100%;
    height: 180px;
    transform: none !important;
  }

  .portfolio-more {
    position: static;
    width: min(299px, 100%);
    margin: 0 auto 34px;
  }

  .portfolio .lead-form--wide {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    padding: 26px 20px 18px;
  }

  .portfolio .lead-form--wide strong,
  .portfolio .lead-form--wide small {
    white-space: normal;
  }

  .portfolio .lead-form--wide small {
    grid-column: 1;
    justify-self: stretch;
    width: auto;
    transform: none;
    line-height: 1.25;
  }

  .news-slider {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .slider-arrow {
    display: none;
  }

  .news-card {
    padding: 34px 22px;
  }

  .news-card h3 {
    font-size: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .footer-copy address,
  .footer-nav,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    gap: 18px;
    padding: 28px 22px;
  }

  .footer-legal,
  .footer-legal a:nth-child(2),
  .footer-legal a:last-child {
    text-align: left;
  }

}

@media (max-width: 520px) {
  .hero__content {
    width: calc(100% - 28px);
    top: 240px;
  }

  .hero__cta-hit {
    top: 92px;
    width: 230px;
  }

  .button {
    width: 100%;
    padding-inline: 18px;
    font-size: 12px;
  }

  .brand span {
    display: none;
  }

  .primary-nav.is-open {
    padding: 18px;
    font-size: 13px;
  }

  .coverage-map {
    width: 720px;
    max-width: none;
    transform: translateX(-24%);
  }

  .brand-cloud {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-cloud span {
    width: min(200px, 100%);
    justify-self: center;
  }

  .social-projects__icons {
    grid-template-columns: minmax(0, 170px);
  }
}

@media (max-width: 1280px) {
  .footer-main {
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 28px;
    min-height: 400px;
  }

  .footer-nav {
    left: 30px;
    right: 30px;
    top: 220px;
    width: auto;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-legal,
  .footer-legal a:nth-child(2),
  .footer-legal a:last-child {
    text-align: left;
  }
}

@media (max-width: 900px) {
  body {
    font-size: 15px;
  }

  .site-header {
    position: absolute;
    min-height: 84px;
  }

  .header-main {
    border-radius: 20px;
    background: rgba(36, 19, 79, 0.9);
  }

  .primary-nav.is-open {
    padding: 18px;
    border-radius: 18px;
    background: rgba(36, 19, 79, 0.96);
  }

  .hero {
    height: auto;
    min-height: 620px;
  }

  .hero__art {
    bottom: 42px;
  }

  .hero__content {
    top: 250px;
  }

  .coverage {
    height: auto;
    min-height: 720px;
    padding: 72px 0;
  }

  .coverage-map {
    width: min(920px, 132vw);
  }

  .coverage-label {
    font-size: 7px;
  }

  .formats {
    min-height: auto;
    padding: 72px 0;
  }

  .format-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .format-visual,
  .format-copy {
    border-radius: 30px;
  }

  .format-visual {
    min-height: 420px;
  }

  .format-visual img {
    max-width: 88%;
  }

  .lead-row--formats {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lead-form,
  .lead-form--formats,
  .lead-form--wide,
  .portfolio .lead-form--wide {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 24px 18px 18px;
    border-radius: 24px;
  }

  .lead-form strong,
  .lead-form--formats strong,
  .portfolio .lead-form--wide strong {
    grid-column: 1;
    white-space: normal;
  }

  .lead-form small,
  .lead-form--formats small,
  .portfolio .lead-form--wide small {
    grid-column: 1;
    width: auto;
    justify-self: stretch;
    white-space: normal;
    transform: none;
    line-height: 1.3;
  }

  .brands {
    min-height: auto;
  }

  .brands .section__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .brand-cloud {
    justify-content: center;
  }

  .portfolio {
    min-height: auto;
    height: auto;
    padding: 72px 0;
  }

  .portfolio__inner {
    min-height: 0;
  }

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

  .campaign {
    height: clamp(150px, 30vw, 220px);
    object-fit: cover;
    border-radius: 24px;
  }

  .news {
    height: auto;
    min-height: auto;
    padding: 72px 0;
  }

  .news .section__inner {
    min-height: 0;
  }

  .news h2 {
    margin-bottom: 36px;
  }

  .news-slider {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    display: block;
  }

  .news-side {
    display: none;
  }

  .news-card {
    position: relative;
    display: none;
    left: auto;
    top: auto;
    width: 100%;
    margin-left: 0;
    height: auto;
    min-height: auto;
    padding: 30px 20px;
    border-radius: 30px;
    opacity: 1;
    transform: none !important;
    filter: none;
  }

  .news-card.is-active {
    display: block;
  }

  .news-card__image {
    width: 100%;
    height: auto;
    aspect-ratio: 559 / 216;
  }

  .news-card__more,
  .archive-link {
    position: static;
    width: min(260px, 100%);
    margin: 22px auto 0;
    transform: none;
  }

  .footer-main {
    position: static;
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
    padding: 28px 22px;
  }

  .footer-brand,
  .footer-copy,
  .footer-nav {
    position: static;
  }

  .footer-copy {
    width: auto;
  }

  .footer-brand img {
    width: 112px;
  }

  .footer-copy address {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .footer-copy address > a,
  .footer-copy address > span,
  .footer-phone--main,
  .footer-callback,
  .footer-copy address > a[href="tel:+78129474747"],
  .footer-email,
  .footer-copy address span:not(.footer-socials),
  .footer-socials {
    position: static;
  }

  .footer-callback {
    width: min(220px, 100%);
  }

  .footer-socials {
    justify-content: flex-start;
    width: auto;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    min-height: auto;
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: 100%;
  }

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

  .hero {
    min-height: 560px;
  }

  .hero__content {
    top: 220px;
    height: 150px;
  }

  .hero__cta-hit {
    width: 230px;
  }

  .ticker {
    font-size: 11px;
  }

  .coverage {
    min-height: 620px;
  }

  .coverage-map {
    width: 760px;
    max-width: none;
    transform: translateX(-23%);
  }

  .tabs {
    width: calc(100vw - 28px);
  }

  .format-visual {
    min-height: 300px;
  }

  .format-copy {
    padding: 28px 20px;
    font-size: 15px;
  }

  .brand-cloud {
    grid-template-columns: 1fr;
  }

  .brand-cloud span {
    width: min(240px, 100%);
    height: 130px;
  }

  .social-projects {
    padding: 24px 18px;
  }

  .social-projects p {
    margin-left: 0;
    font-size: 18px;
  }

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

  .social-projects__icons span {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .portfolio-scatter {
    grid-template-columns: 1fr;
  }

  .campaign {
    height: auto;
    aspect-ratio: 269 / 185;
  }

  .campaign--small-left,
  .campaign--small-right {
    aspect-ratio: 99 / 69;
  }

  .news-card h3 {
    font-size: 22px;
  }

  .news-card time {
    font-size: 18px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 14px;
    min-height: 96px;
  }

  .header-main {
    width: calc(100% - 28px);
    height: 76px;
    min-height: 76px;
    grid-template-columns: minmax(0, 1fr) 56px;
    gap: 0;
    margin-top: 8px;
    padding: 0 12px 0 0;
    background: transparent;
  }

  .header-main::before {
    left: 38px;
    top: 0;
    bottom: 0;
    border-radius: 0 16px 16px 0;
  }

  .brand {
    grid-column: 1;
    gap: 10px;
  }

  .brand img {
    width: 88px;
    height: auto;
    margin-top: -18px;
    margin-left: -2px;
  }

  .menu-toggle {
    display: grid;
    grid-column: 2;
    justify-self: center;
    align-self: center;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--color-accent);
  }

  .menu-toggle span {
    grid-column: 1;
    grid-row: 1;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .hero {
    padding-top: 100px;
  }

  .coverage {
    min-height: auto;
    padding: 70px 0 58px;
  }

  .coverage-map {
    width: min(100%, 560px);
    max-width: 100%;
    margin: 0 auto 22px;
    transform: none;
  }

  .coverage-label {
    min-height: 17px;
    padding: 0 7px;
    font-size: 6px;
  }

  .coverage-label::after {
    left: 8px;
    bottom: -5px;
    width: 9px;
    height: 7px;
  }

  .tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0;
    overflow: visible;
  }

  .tab,
  .tab:nth-child(1),
  .tab:nth-child(2),
  .tab:nth-child(3),
  .tab:nth-child(4) {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    flex: initial;
    padding: 0 8px;
    font-size: 12px;
    line-height: 1.08;
    white-space: normal;
    text-align: center;
  }

  .lead-row--formats {
    width: 100%;
  }

  .map-card--formats {
    width: 100%;
    min-height: 96px;
    justify-self: stretch;
  }

  .map-card--formats span {
    width: min(100%, 268px);
    font-size: 12px;
  }

  .brand-cloud {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-columns: auto;
    justify-content: stretch;
    gap: 12px;
    width: 100%;
    overflow-x: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .brand-cloud span {
    width: 100%;
    height: 104px;
    scroll-snap-align: none;
  }

  .portfolio-scatter {
    position: relative;
    display: block;
    height: 236px;
    margin-bottom: 14px;
    overflow: hidden;
    touch-action: pan-y;
  }

  .campaign,
  .campaign--top-center,
  .campaign--top-right,
  .campaign--middle,
  .campaign--small-left,
  .campaign--right,
  .campaign--bottom-left,
  .campaign--bottom-mid,
  .campaign--small-right,
  .campaign--bottom-right {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 24px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(18px, 0, 0) scale(0.98) !important;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .campaign.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1) !important;
  }

  .portfolio-mobile-controls {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 0 0 22px;
  }

  .portfolio-arrow {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0 0 4px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: var(--color-white);
    font-size: 34px;
    line-height: 1;
  }

  .portfolio-more {
    margin-bottom: 28px;
  }

  .news-slider {
    touch-action: pan-y;
  }

  .news-card {
    padding-inline: 48px;
  }

  .slider-arrow {
    top: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    font-size: 30px;
  }

  .slider-arrow--prev {
    left: 6px;
  }

  .slider-arrow--next {
    left: auto;
    right: 6px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 16px;
    padding: 22px 18px;
    border-radius: 24px;
  }

  .footer-nav a {
    font-size: 12px;
    line-height: 1.15;
  }

  .footer-nav a:nth-child(1) { grid-column: 1; grid-row: 1; }
  .footer-nav a:nth-child(2) { grid-column: 2; grid-row: 1; }
  .footer-nav a:nth-child(3) { grid-column: 1; grid-row: 2; }
  .footer-nav a:nth-child(4) { grid-column: 2; grid-row: 2; }

  .footer-nav a:nth-child(n + 5) {
    grid-column: 1 / -1;
    font-size: 14px;
    line-height: 1.12;
  }

  .footer-nav a:nth-child(5) { grid-row: 3; }
  .footer-nav a:nth-child(6) { grid-row: 4; }
  .footer-nav a:nth-child(7) { grid-row: 5; }

  .tech-page,
  .tech-page--detail {
    min-height: auto;
    padding: 136px 0 48px;
  }

  .tech-page h1 {
    margin-bottom: 28px;
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }

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

  .tech-intro {
    margin-bottom: 36px;
    font-size: 15px;
    line-height: 1.45;
  }

  .requirements-list {
    gap: 14px;
    margin-bottom: 44px;
  }

  .requirement-card {
    min-height: 72px;
    padding: 18px;
    border-radius: 18px;
    font-size: 15px;
  }

  .requirement-card em {
    font-size: 0;
  }

  .requirement-card em::after {
    width: 9px;
    height: 9px;
  }

  .page-lead-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
    padding: 24px 18px 18px;
    border-radius: 24px;
  }

  .page-lead-form strong,
  .page-lead-form small {
    grid-column: 1;
    width: auto;
    justify-self: stretch;
    white-space: normal;
    transform: none;
  }

  .page-lead-form small {
    line-height: 1.3;
  }

  .tech-article {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.45;
  }

  .tech-article p {
    margin-bottom: 10px;
  }

  .download-button {
    width: 100%;
    min-width: 0;
    margin-bottom: 44px;
    padding-inline: 18px;
    font-size: 11px;
    text-align: center;
  }

  .solutions-page {
    min-height: auto;
    padding: 136px 0 48px;
  }

  .solutions-page h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .solutions-intro {
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 1.45;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 44px;
  }

  .solution-card {
    min-height: auto;
    border-radius: 26px;
  }

  .solution-card img {
    height: auto;
    aspect-ratio: 559 / 320;
  }

  .solution-card__content {
    padding: 24px 20px;
  }

  .solution-card h2 {
    font-size: 22px;
  }

  .solution-card p {
    font-size: 15px;
  }

  .solution-card__more {
    width: 100%;
  }

  .solution-modal {
    width: calc(100% - 28px);
    border-radius: 28px;
  }

  .solution-modal__panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 50px 18px 22px;
    border-radius: 28px;
  }

  .solution-modal__media {
    border-radius: 22px;
  }

  .solution-modal__media img {
    min-height: 0;
    aspect-ratio: 559 / 320;
  }

  .solution-modal__content {
    padding-right: 0;
  }

  .solution-modal h2 {
    font-size: 24px;
  }

  .solution-modal p {
    font-size: 15px;
  }

  .solution-modal .button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .coverage-map {
    width: calc(100vw - 28px);
    max-width: 420px;
    transform: none;
  }

  .brand-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-columns: auto;
  }

  .brand-cloud span {
    height: 92px;
  }

  .portfolio-scatter {
    height: 218px;
  }

  .news-card {
    padding-inline: 42px;
  }
}

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

  .solution-card img {
    left: 6.25%;
    width: 87.35%;
  }

  .solution-card h2 {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .solutions-page .breadcrumbs {
    margin-bottom: 24px;
  }

  .solutions-page h1 {
    margin-bottom: 28px;
    font-size: clamp(28px, 8vw, 36px);
  }

  .solutions-intro {
    margin-bottom: 34px;
    line-height: 1.45;
  }

  .solutions-intro p:last-child {
    margin-top: 18px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 44px;
  }

  .solution-card {
    min-height: auto;
    padding: 24px 18px;
  }

  .solution-card img {
    position: static;
    width: 100%;
    height: auto;
    margin: 18px 0 24px;
    aspect-ratio: 559 / 216;
  }

  .solution-card__content {
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  .solution-card h2 {
    min-height: 0;
    font-size: 21px;
    line-height: 1.2;
  }

  .solution-card__more {
    position: static;
    width: min(180px, 100%);
    margin: 0 auto;
  }

  .solution-modal {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    overflow: hidden;
  }

  .solution-modal__panel {
    width: calc(100% - 28px);
    min-height: 0;
    max-height: calc(100vh - 28px);
    margin: auto;
    padding: 54px 18px 24px;
    border-radius: 28px;
    overflow: auto;
  }

  .solution-modal__close {
    top: 16px;
    right: 14px;
  }

  .solution-modal h2 {
    width: auto;
    margin: 0 0 22px;
    font-size: 22px;
    line-height: 1.22;
  }

  .solution-modal__gallery {
    margin-bottom: 22px;
  }

  .solution-modal__track {
    --solution-slide-step: calc(100% + 14px);
    gap: 14px;
  }

  .solution-modal__track img {
    flex-basis: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 559 / 216;
  }

  .solution-modal__arrow {
    top: 50%;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .solution-modal__arrow--prev {
    left: 8px;
  }

  .solution-modal__arrow--next {
    right: 8px;
  }

  .solution-modal p {
    font-size: 15px;
    line-height: 1.45;
  }

  .news-page,
  .news-detail-page,
  .news-detail-page--no-photo {
    min-height: auto;
    padding: 136px 0 48px;
  }

  .news-page h1,
  .news-detail-page h1,
  .related-news h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
  }

  .news-page h1 {
    margin-bottom: 34px;
  }

  .news-list-grid,
  .related-news__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-list-card {
    min-height: auto;
    padding: 24px 18px;
    border-radius: 28px;
  }

  .news-list-card h2,
  .news-list-card h3 {
    width: auto;
    min-height: 0;
    margin: 0 0 14px;
    font-size: 21px;
    line-height: 1.2;
  }

  .news-list-card time {
    width: auto;
    margin: 0 0 16px;
  }

  .news-list-card img {
    width: 100%;
    height: auto;
    margin: 0 0 22px;
    aspect-ratio: 559 / 216;
  }

  .news-list-card .button {
    position: static;
    width: min(180px, 100%);
    margin: 0 auto;
  }

  .news-load-more,
  .related-news__all {
    margin-bottom: 44px;
  }

  .news-detail-date {
    margin-bottom: 28px;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .news-detail-text,
  .news-detail-text--full {
    max-width: none;
    margin-bottom: 48px;
    font-size: 15px;
    line-height: 1.45;
  }

  .news-detail-image {
    width: 100%;
    height: auto;
    aspect-ratio: 640 / 439;
  }

  .related-news h2 {
    margin-bottom: 28px;
  }

  .related-news__wrap {
    margin-bottom: 28px;
  }

  .related-news__arrow {
    display: none;
  }
}

@media (max-width: 1280px) {
  .geo-link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-inline: 30px;
  }

  .geo-detail-lead {
    grid-template-columns: minmax(220px, 291px) minmax(0, 1fr);
  }

  .geo-detail-lead .lead-form--formats {
    grid-template-columns: minmax(190px, 1fr) minmax(150px, 190px) minmax(150px, 190px) 139px;
  }
}

@media (max-width: 900px) {
  .geography-page,
  .geography-detail-page {
    min-height: auto;
    padding: 136px 0 48px;
  }

  .geography-page h1,
  .geography-detail-page h1 {
    margin-bottom: 28px;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.15;
  }

  .geography-intro,
  .geography-detail-text {
    font-size: 15px;
    line-height: 1.45;
  }

  .geo-map-button {
    width: 100%;
    margin-bottom: 22px;
  }

  .geo-accordions {
    gap: 18px;
    margin-bottom: 48px;
  }

  .geo-accordion {
    border-radius: 0;
  }

  .geo-accordion summary {
    min-height: 68px;
    padding: 0 56px 0 20px;
    border-radius: 24px;
    font-size: 17px;
  }

  .geo-accordion summary::after {
    right: 24px;
    width: 11px;
    height: 11px;
  }

  .geo-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 24px 18px 22px;
  }

  .geo-pill {
    min-height: 40px;
    padding: 0 10px;
    font-size: 11px;
  }

  .geography-lead-form {
    margin-bottom: 0;
  }

  .geography-detail-text {
    margin-bottom: 44px;
  }

  .geo-detail-lead {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .geo-detail-lead .map-card--formats {
    order: 2;
    width: 100%;
  }

  .geo-detail-lead .lead-form--formats {
    order: 1;
  }
}

@media (max-width: 520px) {
  .geo-link-grid {
    grid-template-columns: 1fr;
  }

  .geography-intro p + p,
  .geography-detail-text p + p {
    margin-top: 10px;
  }
}
