@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --accent: #7617cf;
  --accent-bright: #951cff;
  --ink: #0a0a0a;
  --muted: #686868;
  --paper: #f2f2f2;
  --white: #fff;
  --shell: min(1340px, calc(100vw - 80px));
  --radius: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--accent) #111;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #050505;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #b968ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 300;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

[hidden] {
  display: none !important;
}

.section {
  position: relative;
}

.section--light {
  background: var(--paper);
}

.section--black {
  background: #050505;
  color: #fff;
}

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

.fade-up {
  opacity: 1;
  transform: none;
}

.js .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.js .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.brand__logo {
  display: block;
  width: 116px;
  height: auto;
}

.hero {
  position: relative;
  min-height: min(916px, 100svh);
  overflow: hidden;
  background: #071820;
  color: #fff;
}

.hero__video,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.06) brightness(0.88);
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 38%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 55%),
    radial-gradient(circle at 70% 25%, transparent, rgba(0, 0, 0, 0.18));
}

.hero__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 42px;
}

.menu-open,
.menu-close {
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    transform 0.3s var(--ease),
    background 0.3s ease;
}

.menu-open {
  position: fixed;
  z-index: 1000;
  top: 42px;
  right: max(54px, calc((100vw - 1628px) / 2));
  min-width: 160px;
  min-height: 56px;
  padding: 14px 28px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.menu-open:hover,
.menu-close:hover {
  transform: translateY(-2px);
  background: #f0ddff;
}

.hero__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 13%;
  left: 0;
}

.hero__eyebrow {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hero__title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  animation: word-in 0.95s var(--ease) forwards;
  animation-delay: calc(0.18s + var(--i) * 0.1s);
}

.hero__title span:nth-of-type(1) { --i: 0; }
.hero__title span:nth-of-type(2) { --i: 1; }
.hero__title span:nth-of-type(3) { --i: 2; }
.hero__title span:nth-of-type(4) { --i: 3; }
.hero__title span:nth-of-type(5) { --i: 4; }
.hero__title span:nth-of-type(6) { --i: 5; }
.hero__title span:nth-of-type(7) { --i: 6; }

@keyframes word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.menu-panel {
  position: fixed;
  z-index: 1100;
  top: 42px;
  right: max(54px, calc((100vw - 1628px) / 2));
  display: grid;
  width: clamp(340px, 26vw, 414px);
  justify-items: stretch;
  gap: 16px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(34px, -12px, 0);
  transition:
    opacity 0.35s ease,
    transform 0.5s var(--ease),
    visibility 0.35s;
}

.menu-panel.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.menu-close {
  justify-self: end;
  width: 200px;
  min-height: 64px;
  padding: 15px 30px;
  background: #fff;
  color: #111;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.menu-panel__side {
  display: grid;
  gap: 16px;
}

.menu-nav {
  display: grid;
  gap: 22px;
  padding: 34px 38px 36px;
  border-radius: 16px;
  background: #fff;
  color: #171717;
}

.menu-nav a {
  width: fit-content;
  font-size: clamp(32px, 2.3vw, 43px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    transform 0.3s var(--ease);
}

.menu-nav a:hover {
  color: var(--accent);
  transform: translateX(8px);
}

.menu-socials {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 30px 31px;
  border-radius: 16px;
  background: #fff;
}

.menu-socials a {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 2px solid #1e1e1e;
  border-radius: 50%;
  transition:
    background 0.25s ease,
    transform 0.3s var(--ease);
}

.menu-socials a:hover {
  background: #ead6ff;
  transform: translateY(-4px);
}

.menu-socials img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  filter: invert(1);
}

.about {
  padding: 76px 0 122px;
  overflow: hidden;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading h2,
.specialists h2,
.contacts h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p {
  margin: 8px 0 0;
  font-size: 22px;
}

.slider-buttons {
  display: flex;
  gap: 12px;
}

.round-button {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease;
}

.round-button:hover {
  transform: scale(1.08);
}

.round-button--accent {
  background: var(--accent);
}

.round-button--dark {
  background: #202020;
}

.about-track {
  display: grid;
  grid-auto-columns: minmax(0, 320px);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.about-track::-webkit-scrollbar,
.cases-track::-webkit-scrollbar,
.reviews-track::-webkit-scrollbar {
  display: none;
}

.about-mobile-progress {
  display: none;
}

.about-card {
  position: relative;
  display: block;
  width: 100%;
  height: 594px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font: inherit;
  isolation: isolate;
  scroll-snap-align: start;
  text-align: left;
}

.about-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.06) 38%, rgba(0, 0, 0, 0.7) 100%);
  content: "";
  pointer-events: none;
}

.about-card__title {
  position: absolute;
  z-index: 3;
  left: 32px;
  top: 42px;
  display: block;
  max-width: calc(100% - 82px);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.18;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.48);
}

.about-card__number {
  position: absolute;
  z-index: 3;
  right: 26px;
  top: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 13px;
}

@media (min-width: 781px) {
  .about-card--two .about-card__title {
    max-width: calc(100% - 48px);
    font-size: 22px;
    letter-spacing: -0.02em;
  }
}

.about-card__cta {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: #050505;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  color: #fff;
  transition:
    width 0.36s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  pointer-events: none;
}

.about-card__cta-label {
  flex-shrink: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(8px);
  transition:
    max-width 0.36s var(--ease),
    margin-right 0.36s var(--ease),
    opacity 0.2s ease,
    transform 0.36s var(--ease);
}

.about-card__cta-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.15;
  transition: transform 0.36s var(--ease);
}

.about-card:focus-visible .about-card__cta {
  width: 160px;
  border-color: #fff;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  color: #050505;
}

.about-card:focus-visible .about-card__cta-label {
  max-width: 100px;
  margin-right: 10px;
  opacity: 1;
  transform: translateX(0);
}

.about-card:focus-visible .about-card__cta-icon {
  transform: translate(2px, -2px);
}

@media (hover: hover) and (pointer: fine) {
  .about-card:hover .about-card__cta {
    width: 160px;
    border-color: #fff;
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    color: #050505;
  }

  .about-card:hover .about-card__cta-label {
    max-width: 100px;
    margin-right: 10px;
    opacity: 1;
    transform: translateX(0);
  }

  .about-card:hover .about-card__cta-icon {
    transform: translate(2px, -2px);
  }
}

@media (hover: none), (pointer: coarse) {
  .about-card__cta {
    width: 136px;
    height: 44px;
    padding: 0 10px 0 13px;
    border-color: #fff;
    border-radius: 10px;
    background: #fff;
    color: #050505;
  }

  .about-card__cta-label {
    max-width: 90px;
    margin-right: 8px;
    opacity: 1;
    font-size: 14px;
    transform: none;
  }

  .about-card__cta-icon {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }
}

.about-card:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -6px;
}

.about-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transition:
    transform 0.9s var(--ease),
    filter 0.5s ease;
}

.about-card:hover .about-card__video {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.about-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.35s,
    opacity 0.35s ease;
}

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

.about-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 18, 18, 0.68);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.about-modal__dialog {
  position: relative;
  width: min(820px, calc(100vw - 48px));
  max-height: calc(100svh - 48px);
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.34);
  transform: translateY(24px) scale(0.985);
  transition: transform 0.45s var(--ease);
}

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

.about-modal__content {
  max-height: calc(100svh - 48px);
  overflow-y: auto;
  padding: 30px 34px 34px;
  overscroll-behavior: contain;
  scrollbar-color: var(--accent) transparent;
  scrollbar-width: thin;
}

.about-modal__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.about-modal__eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-modal__close {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid #dadada;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease);
}

.about-modal__close:hover {
  border-color: #111;
  background: #111;
  color: #fff;
  transform: rotate(90deg);
}

.about-modal__close span {
  margin-top: -2px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.about-modal__content h3 {
  max-width: 680px;
  margin: 0 0 16px;
  color: #111;
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-modal__lead {
  margin: 0;
  color: #56545a;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.012em;
}

.about-modal__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.about-modal__point {
  display: flex;
  min-height: 108px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid #e4e4e4;
  border-radius: 13px;
  background: #f7f7f7;
}

.about-modal__point span {
  color: #929095;
  font-size: 11px;
  font-weight: 700;
}

.about-modal__point strong {
  color: #222;
  font-size: 15px;
  line-height: 1.25;
}

.about-modal__statement {
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #181719;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.about-card--one {
  background:
    linear-gradient(145deg, transparent 38%, rgba(255, 255, 255, 0.12)),
    #101010;
}

.about-card__art--orbit {
  background:
    radial-gradient(circle at 20% 75%, transparent 0 66px, #363636 67px 110px, transparent 111px),
    radial-gradient(circle at 74% 45%, #585858 0 32px, transparent 33px),
    linear-gradient(112deg, transparent 48%, #262626 49% 51%, transparent 52%);
  filter: contrast(1.15);
}

.about-card--two {
  background: #b9000c;
}

.about-card__art--silhouette::before {
  position: absolute;
  left: 92px;
  bottom: -30px;
  width: 210px;
  height: 410px;
  border-radius: 46% 46% 25% 25%;
  background: #050505;
  clip-path: polygon(31% 0, 67% 0, 81% 13%, 73% 24%, 93% 40%, 75% 100%, 21% 100%, 6% 40%, 27% 25%, 18% 14%);
  content: "";
}

.about-card--three {
  background: linear-gradient(135deg, #271055, #02020a 75%);
}

.about-card__art--lines {
  background: repeating-linear-gradient(123deg, transparent 0 24px, rgba(119, 23, 207, 0.55) 25px 28px);
  transform: scale(1.2);
}

.about-card--four {
  background:
    radial-gradient(circle at 70% 22%, rgba(57, 166, 255, 0.5), transparent 32%),
    linear-gradient(145deg, #02040b, #071b2f);
}

.about-card__art--data {
  background-image:
    linear-gradient(rgba(83, 141, 190, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 141, 190, 0.18) 1px, transparent 1px);
  background-size: 36px 36px;
  transform: perspective(500px) rotateX(58deg) scale(1.8) translateY(20%);
}

.services {
  padding: 20px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  width: var(--shell);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-inline: auto;
}

.service-card {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  outline: none;
  transition:
    background 0.82s var(--ease),
    color 0.55s ease,
    transform 0.82s var(--ease);
}

.service-card--light {
  background: var(--paper);
  color: var(--ink);
}

.service-card--dark {
  background: #23133d;
  color: #fff;
}

.service-card__copy {
  position: relative;
  z-index: 4;
  padding: 55px 30px 0;
  text-align: center;
  transition: transform 0.72s var(--ease);
}

.service-card h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.service-card--light:first-child h3 {
  color: #6c20c7;
}

.service-card p {
  margin: 12px 0 34px;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.service-card__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.service-card__actions .button {
  width: 210px;
  min-height: 50px;
  padding: 10px 22px;
  border-width: 2px;
  font-size: 20px;
}

.service-card__actions .button--accent {
  background: #6c20c7;
}

.service-card__actions .button--outline {
  border-color: #6c20c7;
  color: #6c20c7;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 12px 38px;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease,
    background 0.25s ease;
}

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

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

.button--accent:hover {
  box-shadow: 0 14px 32px rgba(118, 23, 207, 0.3);
}

.button--outline {
  border-color: var(--accent);
  color: var(--accent);
}

.button--outline-light {
  border-color: #fff;
  color: #fff;
}

.service-visual {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.service-visual img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  object-fit: contain;
  transition:
    transform 0.88s var(--ease),
    opacity 0.72s ease,
    filter 0.72s ease;
}

.service-card:hover .service-card__copy,
.service-card:focus .service-card__copy,
.service-card.is-revealed .service-card__copy {
  transform: translateY(-4px);
}

.service-visual--phone img {
  top: 250px;
  left: 50%;
  width: 37%;
  transform: translate(-50%, 55%) rotate(2deg);
}

.service-visual--glass img {
  top: 290px;
  left: 50%;
  width: 36%;
  transform: translate(-50%, 65%) rotate(12deg) scale(0.82);
}

.service-visual--laptop .service-visual__primary {
  z-index: 1;
  bottom: 36px;
  left: 50%;
  width: 88%;
  transform: translateX(-50%);
}

.service-visual--laptop .service-visual__secondary {
  z-index: 2;
  bottom: 61px;
  left: 50%;
  width: 73%;
  border-radius: 2px;
  opacity: 0;
  transform: translate(-50%, 12px) scale(0.985);
}

.service-visual--design img {
  top: 285px;
  left: 50%;
  width: 37%;
  transform: translate(-50%, 58%) rotate(3deg) scale(0.94);
}

.service-card--search:hover,
.service-card--search:focus,
.service-card--search.is-revealed,
.service-card--design:hover,
.service-card--design:focus,
.service-card--design.is-revealed {
  background: #23133d;
}

.service-card--social:hover .service-visual__primary,
.service-card--social:focus .service-visual__primary,
.service-card--social.is-revealed .service-visual__primary {
  transform: translate(-50%, 0) rotate(0) scale(1);
}

.service-card--search:hover .service-visual__primary,
.service-card--search:focus .service-visual__primary,
.service-card--search.is-revealed .service-visual__primary {
  transform: translate(-50%, 0) rotate(0) scale(1);
}

.service-card--development:hover .service-visual__primary,
.service-card--development:focus .service-visual__primary,
.service-card--development.is-revealed .service-visual__primary {
  opacity: 1;
  transform: translateX(-50%);
}

.service-card--development:hover .service-visual__secondary,
.service-card--development:focus .service-visual__secondary,
.service-card--development.is-revealed .service-visual__secondary {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.service-card--design:hover .service-visual__primary,
.service-card--design:focus .service-visual__primary,
.service-card--design.is-revealed .service-visual__primary {
  transform: translate(-50%, 0) rotate(0) scale(1);
}

.service-card.is-revealed:hover {
  transform: translateY(-4px);
}

.service-card--social.is-revealed:hover .service-visual__primary {
  transform: translate(-50%, -7px) rotate(-1deg) scale(1.025);
}

.service-card--search.is-revealed:hover .service-visual__primary {
  transform: translate(-50%, -6px) rotate(2deg) scale(1.02);
}

.service-card--development.is-revealed:hover .service-visual__primary {
  transform: translateX(-50%) scale(1.015);
}

.service-card--development.is-revealed:hover .service-visual__secondary {
  transform: translate(-50%, -3px) scale(1.01);
}

.service-card--design.is-revealed:hover .service-visual__primary {
  transform: translate(-50%, -7px) rotate(2deg) scale(1.02);
}

.specialists {
  padding: 40px 0 52px;
  overflow: hidden;
}

.specialists h2 {
  margin-bottom: 34px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.marquee {
  display: grid;
  gap: 18px;
}

.marquee__line {
  display: flex;
  width: max-content;
}

.marquee__content {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-left 28s linear infinite;
}

.marquee__line--right .marquee__content {
  animation-name: marquee-right;
}

.marquee__content span {
  display: flex;
  width: 300px;
  height: 104px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #292929;
  border-radius: 7px;
  background: #151515;
  color: #f2f2f2;
  font-size: 18px;
  overflow: hidden;
  padding: 12px 26px;
  gap: 16px;
  text-align: left;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s var(--ease);
}

.marquee__content span:hover {
  border-color: #5b168f;
  background: #1e1028;
  transform: translateY(-3px);
}

.role-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 10px rgba(163, 44, 255, 0.24));
}

.marquee__content span::first-letter {
  color: var(--accent-bright);
}

@keyframes marquee-left {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(calc(-50% - 9px));
  }
}

.cases {
  padding: 50px 0 110px;
  overflow: hidden;
}

.section-heading--dark {
  color: #fff;
}

.cases-track {
  display: grid;
  grid-auto-columns: min(793px, 76vw);
  grid-auto-flow: column;
  gap: 72px;
  overflow-x: auto;
  padding: 10px 0 22px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-card {
  position: relative;
  scroll-snap-align: start;
}

.case-card__visual {
  position: relative;
  height: 479px;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}

.case-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.case-card:hover .case-card__visual img {
  transform: scale(1.02);
}

.case-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 18px;
  font-weight: 700;
}

.case-card__link {
  position: absolute;
  right: 20px;
  top: 406px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 7px;
  background: #050505;
  color: #fff;
  font-size: 27px;
  transition:
    background 0.25s ease,
    transform 0.25s var(--ease);
}

.case-card__link:hover {
  background: var(--accent);
  transform: rotate(45deg);
}

.clients {
  padding: 58px 0 70px;
  overflow: hidden;
  background: #faf9fd;
}

.clients__heading {
  width: var(--shell);
  margin: 0 auto 28px;
}

.clients__heading span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #f1ecfe;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.clients__heading span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a855f7;
  content: "";
}

.clients__heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.client-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 4px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.client-marquee__track {
  display: flex;
  width: max-content;
  animation: clients-marquee 52s linear infinite;
  will-change: transform;
}

.client-marquee:hover .client-marquee__track {
  animation-play-state: paused;
}

.client-marquee__group {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
}

.client-card {
  display: grid;
  width: 150px;
  height: 76px;
  flex: 0 0 auto;
  place-items: center;
  padding: 12px 14px;
}

.client-card img {
  display: block;
  width: 100%;
  max-width: 122px;
  height: 46px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0) saturate(100%) invert(26%) sepia(78%) saturate(2640%) hue-rotate(251deg)
    brightness(94%) contrast(98%);
  opacity: 0.68;
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease);
}

.client-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.client-card--litenergy {
  padding-right: 9px;
  padding-left: 9px;
}

.client-card--litenergy img {
  width: 132px;
  max-width: 132px;
  height: 52px;
  opacity: 0.78;
  transform: scale(1.06);
}

.client-card--litenergy:hover img {
  transform: scale(1.12);
}

.client-card--jdc {
  padding-right: 8px;
  padding-left: 8px;
}

.client-card--jdc img {
  width: 130px;
  max-width: 130px;
  height: 52px;
  opacity: 0.78;
  transform: scale(1.1);
}

.client-card--jdc:hover img {
  transform: scale(1.16);
}

@keyframes clients-marquee {
  to {
    transform: translateX(-50%);
  }
}

.reviews {
  background: #fff;
  padding: 60px 0 82px;
}

.reviews-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.reviews-heading .section-heading {
  margin: 0;
}

.reviews-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.reviews-controls > span {
  margin-right: 8px;
  color: var(--muted);
  font-size: 16px;
}

.reviews-arrow {
  width: 58px;
  height: 58px;
  border: 0;
  color: #fff;
  font-size: 30px;
}

.reviews-arrow--prev {
  background: #dedede;
}

.reviews-track {
  display: grid;
  grid-auto-columns: calc((100% - 54px) / 4);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-reel {
  position: relative;
  min-width: 0;
  padding: 7px;
  border: 1px solid #e1e1e1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(28, 10, 45, 0.1);
  scroll-snap-align: start;
  will-change: transform, box-shadow;
  transition:
    box-shadow 0.32s ease,
    transform 0.32s var(--ease);
}

.review-reel:hover {
  box-shadow: 0 20px 38px rgba(79, 20, 127, 0.18);
  transform: translateY(-5px);
}

.review-reel__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.review-reel iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  background: #fff;
}

.lead-form {
  min-height: 760px;
  overflow: hidden;
  padding: 58px 0 0;
  background: #fff;
}

.lead-form__inner {
  position: relative;
  width: var(--shell);
  min-height: 702px;
}

.lead-form__content {
  position: relative;
  z-index: 3;
  width: 836px;
  max-width: 70%;
}

.lead-form h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.lead-form__subtitle {
  margin: 6px 0 36px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

#demo-form {
  position: relative;
  max-width: none;
}

.form-stage {
  position: relative;
  display: none;
}

.form-stage.is-active {
  display: block;
  animation: stage-in 0.5s var(--ease);
}

@keyframes stage-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
}

.service-options,
.form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-options button {
  position: relative;
  display: flex;
  min-height: 81px;
  align-items: center;
  justify-content: flex-start;
  padding: 17px 20px;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #f0f0f0;
  color: #111;
  cursor: pointer;
  font-size: 21px;
  line-height: 1.2;
  text-align: left;
  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.25s var(--ease);
}

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

.service-options button.is-selected {
  background: linear-gradient(100deg, #8318db 0%, #9419e5 100%);
  color: #fff;
}

.service-options button > span {
  position: relative;
  z-index: 2;
}

.service-options button img {
  position: absolute;
  z-index: 1;
  right: 31px;
  bottom: -58px;
  width: 98px;
  height: 173px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(36%) rotate(8deg);
  transition:
    opacity 0.45s ease,
    transform 0.7s var(--ease);
}

.service-options button[data-service="Разработка"] img {
  right: 18px;
  bottom: -43px;
  width: 140px;
  height: 151px;
}

.service-options button[data-service="Поисковые системы"] img {
  right: 42px;
  bottom: -40px;
  width: 98px;
  height: 127px;
}

.service-options button[data-service="Продакшн"] img {
  right: 48px;
  bottom: -54px;
  width: 54px;
  height: 164px;
}

.service-options button.is-selected img {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.service-options button[data-service="Социальные сети"].is-selected img {
  transform: translate(2px, 1px) rotate(-30deg);
}

.service-options button[data-service="Продакшн"].is-selected img {
  transform: translate(1px, 2px) rotate(-28deg);
}

.form-progress {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}

.form-progress__label {
  min-width: 42px;
  color: #777;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-align: right;
}

.form-progress__segments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-progress__segments i {
  display: block;
  width: 20px;
  height: 6px;
  border-radius: 999px;
  background: #331b65;
  transition:
    width 0.35s var(--ease),
    background 0.35s ease,
    opacity 0.35s ease;
}

.form-progress__segments i.is-active {
  width: 48px;
  background: var(--accent);
}

.form-progress__segments i.is-complete {
  background: #7c22ca;
  opacity: 0.72;
}

.form-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
}

.form-arrow {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  cursor: pointer;
  font-size: 0;
  font-weight: 200;
  transition:
    transform 0.25s var(--ease),
    background 0.25s ease;
}

.form-arrow > span {
  position: relative;
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  color: inherit;
  font-size: 0;
  line-height: 0;
}

.form-arrow > span::after {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-color: currentColor;
  border-style: solid;
  content: "";
}

.form-arrow--right > span::after {
  right: 0;
  border-width: 3px 3px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

.form-arrow--left > span::after {
  left: 0;
  border-width: 0 0 3px 3px;
  transform: translateY(-50%) rotate(45deg);
}

.form-arrow:not(.is-disabled):hover {
  transform: scale(1.05);
}

.form-arrow--next {
  background: var(--accent);
}

.form-arrow--back {
  background: var(--accent);
}

.form-arrow.is-disabled {
  cursor: default;
  background: #dedede;
  opacity: 1;
}

.form-stage__hint {
  margin: 0 0 18px;
  color: #777;
  font-size: 15px;
  line-height: 1.45;
}

.form-question__context {
  margin: -22px 0 7px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.form-question__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.form-question__option {
  min-height: 76px;
  padding: 16px 18px;
  border: 0;
  border-radius: 10px;
  background: #f0f0f0;
  color: #111;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  line-height: 1.25;
  text-align: left;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.25s var(--ease);
}

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

.form-question__option.is-selected {
  background: linear-gradient(100deg, #8318db 0%, #9419e5 100%);
  color: #fff;
}

.form-error {
  display: none;
  margin: 12px 0 0;
  color: #b40019;
  font-size: 14px;
  line-height: 1.4;
}

.form-error.is-visible {
  display: block;
}

.form-selection-summary {
  margin: -20px 0 18px;
  padding: 13px 15px;
  border-radius: 10px;
  background: #f0f0f0;
  color: #626262;
  font-size: 13px;
  line-height: 1.45;
}

.form-fields label {
  display: block;
}

.form-field__error {
  display: none;
  margin: 7px 4px 0;
  color: #b40019;
  font-size: 13px;
  line-height: 1.35;
}

.form-field.has-error .form-field__error {
  display: block;
}

.form-fields input {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #f0f0f0;
  color: #111;
  padding: 20px;
  font-size: 20px;
  outline: none;
}

.form-fields input {
  height: 80px;
}

.form-fields input:focus {
  border-color: var(--accent);
}

.form-field.has-error input {
  border-color: #b40019;
}

.form-fields input::placeholder {
  color: #bfbfbf;
  opacity: 1;
}

.form-fields {
  align-items: start;
  grid-template-rows: auto auto;
}

.form-field--name {
  grid-column: 1;
  grid-row: 1;
}

.form-field--phone {
  grid-column: 2;
  grid-row: 1;
}

.form-field--links {
  grid-column: 1 / -1;
  grid-row: 2;
}

.form-controls--submit {
  justify-content: space-between;
}

.form-submit-row {
  margin-top: 22px;
}

.form-submit {
  min-width: 260px;
  min-height: 49px;
  padding: 8px 34px;
  border: 0;
  font-size: 25px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-success {
  max-width: 560px;
  padding: 35px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.1);
}

.form-success__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 30px;
}

.form-success h3 {
  margin: 18px 0 0;
  font-size: 36px;
}

.form-success p {
  margin: 8px 0 25px;
  color: #555;
  line-height: 1.5;
}

.astronaut {
  position: absolute;
  z-index: 1;
  right: -320px;
  bottom: -25px;
  width: 720px;
  height: 800px;
  pointer-events: none;
}

.astronaut img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.contacts {
  padding: 58px 0 70px;
}

.contacts h2 {
  margin-top: 72px;
  margin-bottom: 40px;
}

.map {
  position: relative;
  display: block;
  height: min(510px, 38.5vw);
  min-height: 300px;
  overflow: hidden;
  border: 1px solid #242424;
  border-radius: 20px;
  background: #111;
}

.map--2gis {
  isolation: isolate;
}

.map--2gis iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  filter: grayscale(0.8) invert(0.9) hue-rotate(180deg) brightness(0.72) contrast(1.12);
  transform: scale(1.012);
  transition:
    filter 0.45s ease,
    transform 0.8s var(--ease);
}

.map--2gis:hover iframe {
  filter: grayscale(0.65) invert(0.9) hue-rotate(180deg) brightness(0.78) contrast(1.1);
  transform: scale(1.022);
}

.map--2gis::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 48%, transparent 50%, rgba(4, 0, 10, 0.34) 100%),
    linear-gradient(135deg, rgba(118, 23, 207, 0.12), transparent 42%);
  content: "";
  pointer-events: none;
}

.map--2gis .dg-widget-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.map--2gis noscript {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 30px;
  color: #fff;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-top: 42px;
  color: #f2f2f2;
  font-size: 17px;
  line-height: 1.7;
}

.contact-grid p {
  margin: 0 0 18px;
}

.contact-grid > div:last-child {
  display: grid;
  align-content: start;
  gap: 6px;
}

.contact-grid a:hover {
  color: #be78ff;
}

.socials {
  display: flex;
  gap: 15px;
  margin-top: 28px;
}

.socials a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #555;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.socials a:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.socials img {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.footer-seo {
  margin-top: 64px;
  padding-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-seo__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  column-gap: clamp(42px, 6vw, 90px);
  align-items: end;
  margin-bottom: 34px;
}

.footer-seo__heading > span {
  grid-column: 1 / -1;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-seo h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.footer-seo__heading p {
  max-width: 700px;
  margin: 0;
  color: #b9b9b9;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.65;
}

.footer-seo__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-seo__facts article {
  min-height: 176px;
  padding: 22px 23px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.012);
}

.footer-seo__facts article > span {
  display: block;
  margin-bottom: 31px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-seo__facts h3,
.footer-seo__links-title {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.footer-seo__facts p {
  max-width: 430px;
  margin: 0;
  color: #aaa5ae;
  font-size: 14px;
  line-height: 1.55;
}

.footer-seo__links-title {
  margin-bottom: 17px;
}

.footer-seo__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-seo__grid article,
.footer-seo__grid > a {
  display: block;
  min-height: 210px;
  padding: 24px 23px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.015);
  transition: background 0.3s ease;
}

.footer-seo__grid article:hover,
.footer-seo__grid > a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.footer-seo__grid article > span,
.footer-seo__grid > a > span {
  display: block;
  margin-bottom: 47px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-seo__grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.footer-seo__grid p {
  max-width: 280px;
  margin: 0;
  color: #aaa5ae;
  font-size: 14px;
  line-height: 1.55;
}

.footer-seo__faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.footer-seo__faq details {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.018);
}

.footer-seo__faq summary {
  position: relative;
  padding: 18px 50px 18px 20px;
  color: #f3eef7;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.footer-seo__faq summary::-webkit-details-marker {
  display: none;
}

.footer-seo__faq summary::after {
  position: absolute;
  top: 50%;
  right: 19px;
  content: "+";
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  transform: translateY(-50%);
}

.footer-seo__faq details[open] summary::after {
  content: "−";
}

.footer-seo__faq p {
  margin: 0;
  padding: 0 20px 19px;
  color: #aaa5ae;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin-top: 48px;
  padding-top: 27px;
  border-top: 1px solid #222;
  color: #77717f;
  font-size: 14px;
  line-height: 1.55;
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: #f2edf7;
  font-size: 15px;
}

.site-footer p {
  margin: 0;
}

.site-footer > div p {
  max-width: 900px;
}

.site-footer > p {
  white-space: nowrap;
}

.contact-widget {
  position: fixed;
  z-index: 900;
  right: max(32px, calc((100vw - 1628px) / 2));
  bottom: max(24px, env(safe-area-inset-bottom));
  display: grid;
  width: 286px;
  justify-items: end;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 24px, 0) scale(0.97);
  transform-origin: right bottom;
  transition:
    opacity 0.4s ease,
    transform 0.55s var(--ease);
}

.contact-widget.is-ready {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

body.menu-is-open .contact-widget,
body.modal-is-open .contact-widget,
body.lead-form-in-view .contact-widget {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.97);
}

.contact-widget__panel {
  display: grid;
  width: 100%;
  gap: 8px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 18px, 0) scale(0.97);
  transform-origin: right bottom;
  transition:
    opacity 0.28s ease,
    transform 0.45s var(--ease),
    visibility 0.28s;
  backdrop-filter: blur(14px);
}

.contact-widget.is-open .contact-widget__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.contact-widget__panel p {
  margin: 2px 7px 4px;
  color: #5f5f5f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-widget__action {
  display: grid;
  min-height: 58px;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 0.28s var(--ease),
    filter 0.28s ease;
}

.contact-widget__action:hover {
  color: #fff;
  filter: brightness(1.06);
  transform: translateX(-3px);
}

.contact-widget__action--whatsapp {
  background: #20b95b;
}

.contact-widget__action--phone {
  background: linear-gradient(120deg, #171717, #37115a);
}

.contact-widget__action img,
.contact-widget__action svg {
  display: block;
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.contact-widget__action svg {
  padding: 3px;
}

.contact-widget__action > span:last-child {
  font-size: 20px;
  font-weight: 400;
}

.contact-widget__toggle {
  position: relative;
  display: grid;
  min-width: 176px;
  min-height: 58px;
  grid-template-columns: 12px auto 20px;
  align-items: center;
  gap: 11px;
  padding: 12px 20px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(110deg, #7015cd, #9a20f4);
  color: #fff;
  box-shadow: 0 14px 32px rgba(60, 9, 102, 0.34);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s var(--ease);
}

.contact-widget__toggle:hover {
  box-shadow: 0 18px 38px rgba(60, 9, 102, 0.43);
  transform: translateY(-3px);
}

.contact-widget__pulse {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #64ee99;
  box-shadow: 0 0 0 6px rgba(100, 238, 153, 0.17);
}

.contact-widget__pulse::after {
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(100, 238, 153, 0.7);
  border-radius: inherit;
  content: "";
  animation: contact-pulse 2s ease-out infinite;
}

.contact-widget__chevron {
  display: inline-block;
  font-size: 21px;
  font-weight: 400;
  transition: transform 0.4s var(--ease);
}

.contact-widget.is-open .contact-widget__chevron {
  transform: rotate(180deg);
}

@keyframes contact-pulse {
  70%,
  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

@media (max-width: 1050px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 620px;
  }

  .reviews-track {
    grid-auto-columns: minmax(290px, calc((100% - 24px) / 2));
    gap: 24px;
    padding: 4px 14px 28px;
    margin: 0 -14px;
  }

  .lead-form__content {
    width: 82%;
    max-width: none;
  }

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

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

  .astronaut {
    right: -460px;
    opacity: 0.92;
  }
}

@media (max-width: 780px) {
  :root {
    --shell: calc(100vw - 34px);
    --radius: 18px;
  }

  .hero {
    min-height: 740px;
  }

  .hero__header {
    padding-top: 22px;
  }

  .menu-open {
    top: 20px;
    right: 20px;
    min-width: 136px;
    min-height: 50px;
    padding: 11px 20px;
    font-size: 13px;
  }

  .hero__content {
    bottom: 13%;
  }

  .hero__eyebrow {
    font-size: 11px;
  }

  .hero__title {
    font-size: clamp(44px, 12vw, 64px);
  }

  .hero__scroll {
    display: none;
  }

  .menu-panel {
    top: 20px;
    right: 20px;
    width: min(712px, calc(100vw - 40px));
    gap: 14px;
  }

  .menu-close {
    width: clamp(170px, 40vw, 312px);
    min-height: clamp(58px, 10.5vw, 84px);
    padding: 12px 20px;
    font-size: clamp(16px, 3.2vw, 25px);
  }

  .menu-panel__side {
    width: 100%;
  }

  .menu-nav {
    gap: clamp(18px, 3vw, 28px);
    padding: clamp(28px, 6vw, 48px);
  }

  .menu-nav a {
    font-size: clamp(30px, 7.5vw, 48px);
    line-height: 1.08;
  }

  .menu-socials {
    gap: clamp(8px, 2vw, 18px);
    padding: clamp(22px, 5vw, 34px);
  }

  .menu-socials a {
    width: clamp(50px, 11vw, 72px);
    height: clamp(50px, 11vw, 72px);
  }

  .menu-socials img {
    width: clamp(27px, 5.6vw, 36px);
    height: clamp(27px, 5.6vw, 36px);
  }

  .about {
    padding: 54px 0 78px;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 26px;
  }

  .section-heading h2,
  .specialists h2,
  .contacts h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 18px;
  }

  .slider-buttons {
    display: none;
  }

  .about-track {
    grid-auto-columns: min(82vw, 360px);
    gap: 12px;
    padding-right: 45px;
    margin-right: -17px;
    scroll-padding-left: 0;
  }

  .about-card {
    height: 520px;
  }

  .about-card__title {
    left: 26px;
    top: 34px;
    font-size: 26px;
    line-height: 1.1;
  }

  .about-card__number {
    right: 20px;
    top: 22px;
  }

  .about-mobile-progress {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px 14px;
    margin-top: 2px;
    color: #6d6d6d;
    font-size: 13px;
  }

  .about-mobile-progress__segments {
    display: flex;
    justify-content: flex-end;
    gap: 6px;
  }

  .about-mobile-progress__segments i {
    display: block;
    width: 16px;
    height: 6px;
    border-radius: 999px;
    background: #43227b;
    transition:
      width 0.3s var(--ease),
      background 0.3s ease;
  }

  .about-mobile-progress__segments i.is-active {
    width: 42px;
    background: var(--accent);
  }

  .about-mobile-progress__hint {
    grid-column: 1 / -1;
  }

  .about-card__cta {
    right: 16px;
    bottom: 16px;
    width: 136px;
    height: 44px;
    padding: 0 10px 0 13px;
    border-color: #fff;
    border-radius: 10px;
    background: #fff;
    color: #050505;
  }

  .about-card__cta-label {
    max-width: 90px;
    margin-right: 8px;
    opacity: 1;
    font-size: 14px;
    transform: none;
  }

  .about-card__cta-icon {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .about-modal {
    align-items: end;
    padding: 0;
  }

  .about-modal__dialog {
    width: 100%;
    max-height: 91svh;
    border-radius: 22px 22px 0 0;
    transform: translateY(35px);
  }

  .about-modal__content {
    max-height: 91svh;
    padding: 20px 18px max(28px, env(safe-area-inset-bottom));
  }

  .about-modal__topline {
    margin-bottom: 18px;
  }

  .about-modal__close {
    width: 38px;
    height: 38px;
  }

  .about-modal__close span {
    font-size: 26px;
  }

  .about-modal__content h3 {
    margin-bottom: 13px;
    font-size: 30px;
    line-height: 1.04;
  }

  .about-modal__lead {
    font-size: 15px;
    line-height: 1.5;
  }

  .about-modal__points {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .about-modal__point {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    min-height: 48px;
    align-items: center;
    padding: 9px 12px;
  }

  .about-modal__statement {
    margin-top: 14px;
    padding: 14px;
    font-size: 14px;
  }

  .services {
    padding: 10px 0;
  }

  .services-grid {
    gap: 10px;
  }

  .service-card {
    min-height: 520px;
  }

  .service-card__copy {
    padding: 34px 18px;
  }

  .service-card h3 {
    font-size: 29px;
  }

  .service-card p {
    font-size: 20px;
  }

  .button {
    min-height: 48px;
    padding: 10px 25px;
    font-size: 16px;
  }

  .service-visual {
    height: auto;
  }

  .service-visual--phone img {
    top: 205px;
    width: 43%;
  }

  .service-visual--glass img {
    top: 230px;
    width: 42%;
  }

  .service-visual--laptop .service-visual__primary {
    bottom: 22px;
    width: 92%;
  }

  .service-visual--laptop .service-visual__secondary {
    bottom: 43px;
    width: 76%;
  }

  .service-visual--design img {
    top: 230px;
    width: 43%;
  }

  .specialists {
    padding: 44px 0;
  }

  .marquee__content span {
    width: 250px;
    height: 92px;
    font-size: 15px;
  }

  .cases {
    padding: 44px 0 70px;
  }

  .cases-track {
    grid-auto-columns: 88vw;
    gap: 24px;
  }

  .case-card__visual {
    height: 52vw;
    min-height: 290px;
  }

  .case-card__link {
    top: calc(52vw - 63px);
  }

  .case-card__meta {
    display: grid;
    gap: 3px;
    font-size: 14px;
  }

  .clients {
    padding: 48px 0 54px;
  }

  .clients__heading {
    margin-bottom: 22px;
  }

  .client-marquee__group {
    gap: 18px;
    padding-right: 18px;
  }

  .reviews {
    padding: 54px 0 78px;
  }

  .reviews-heading {
    align-items: flex-end;
    margin-bottom: 30px;
  }

  .reviews-track {
    grid-auto-columns: min(78vw, 290px);
    gap: 18px;
    padding: 4px 10px 26px;
    margin: 0 -10px;
  }

  .reviews-controls > span {
    display: none;
  }

  .reviews-arrow {
    width: 48px;
    height: 48px;
    font-size: 25px;
  }

  .review-reel:hover {
    transform: translateY(-3px);
  }

  .lead-form {
    min-height: 0;
    padding-top: 50px;
    overflow-anchor: none;
  }

  .lead-form * {
    overflow-anchor: none;
  }

  .lead-form__inner {
    width: var(--shell);
    min-height: 0;
    padding-bottom: clamp(320px, 92vw, 400px);
  }

  .lead-form__content {
    width: 100%;
    max-width: none;
  }

  .lead-form__subtitle {
    margin-bottom: 32px;
    font-size: 27px;
  }

  .service-options,
  .form-fields {
    grid-template-columns: 1fr;
  }

  .form-fields {
    grid-template-rows: auto;
  }

  .form-field--name,
  .form-field--phone,
  .form-field--links {
    grid-column: auto;
    grid-row: auto;
  }

  .form-field--name {
    order: 1;
  }

  .form-field--phone {
    order: 2;
  }

  .form-field--links {
    order: 3;
  }

  .form-question__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .form-question__context {
    margin-top: -18px;
  }

  .form-question__option {
    min-height: 66px;
    padding: 12px;
    font-size: 15px;
  }

  .service-options button {
    min-height: 82px;
    padding: 18px 20px;
    font-size: 20px;
  }

  .form-controls {
    gap: 20px;
    margin-top: 30px;
  }

  .form-arrow {
    width: 50px;
    height: 50px;
  }

  .form-progress {
    position: static;
    justify-content: flex-end;
    margin-top: 20px;
  }

  .form-progress__segments {
    gap: 6px;
  }

  .form-progress__segments i {
    width: 16px;
  }

  .form-progress__segments i.is-active {
    width: 38px;
  }

  .form-submit-row {
    margin-top: 28px;
  }

  .form-submit {
    width: min(260px, 100%);
    font-size: 21px;
  }

  .form-controls--submit {
    gap: 12px;
  }

  .form-controls--submit .form-submit {
    min-width: 0;
    width: auto;
    flex: 1;
  }

  .astronaut {
    right: -68px;
    bottom: -36px;
    width: min(118vw, 500px);
    height: auto;
    aspect-ratio: 1840 / 1509;
    opacity: 0.94;
  }

  .contacts {
    padding-top: 48px;
  }

  .contacts h2 {
    margin-top: 54px;
  }

  .map {
    height: 364px;
    min-height: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 15px;
  }

  .footer-seo {
    margin-top: 50px;
    padding-top: 38px;
  }

  .footer-seo__heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }

  .footer-seo__heading > span {
    margin-bottom: -4px;
  }

  .footer-seo h2 {
    font-size: 34px;
  }

  .footer-seo__heading p {
    font-size: 15px;
    line-height: 1.6;
  }

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

  .footer-seo__facts {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .footer-seo__facts article {
    min-height: 0;
    padding: 20px;
  }

  .footer-seo__facts article > span {
    margin-bottom: 18px;
  }

  .footer-seo__links-title {
    margin-bottom: 14px;
    font-size: 20px;
  }

  .footer-seo__grid article,
  .footer-seo__grid > a {
    min-height: 0;
    padding: 21px 20px 23px;
  }

  .footer-seo__grid article > span,
  .footer-seo__grid > a > span {
    margin-bottom: 25px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 38px;
    font-size: 13px;
  }

  .site-footer > p {
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 700px;
  }

  .hero__title {
    font-size: 43px;
    line-height: 0.98;
  }

  .about-card {
    height: 500px;
  }

  .about-card__title {
    left: 24px;
    top: 30px;
    font-size: 25px;
    line-height: 1.08;
  }

  .about-card__cta {
    right: 14px;
    bottom: 14px;
    width: 132px;
    height: 42px;
    padding-inline: 12px 9px;
  }

  .about-card__cta-label {
    margin-right: 7px;
    font-size: 13.5px;
  }

  .service-card__actions {
    gap: 7px;
  }

  .service-card__actions .button {
    width: min(42vw, 160px);
    min-height: 46px;
    padding-inline: 14px;
    font-size: 16px;
  }

  .button {
    padding-inline: 21px;
  }

  .case-card__visual {
    min-height: 245px;
  }

  .case-card__link {
    top: calc(max(52vw, 245px) - 60px);
  }

  .astronaut {
    right: -82px;
    bottom: -34px;
  }

  .map {
    height: 300px;
  }

  .map__district {
    font-size: 12px;
  }
}

@media (max-width: 780px) {
  .contact-widget {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    width: min(286px, calc(100vw - 28px));
  }

  .contact-widget__toggle {
    min-width: 158px;
    min-height: 54px;
    padding-inline: 17px;
  }

  .contact-widget__panel {
    margin-bottom: 9px;
    border-radius: 17px;
  }

  .contact-widget__action {
    min-height: 55px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up,
  .hero__title span {
    opacity: 1;
    transform: none;
  }

  .contact-widget__pulse::after {
    display: none;
  }

  .client-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  .client-marquee::-webkit-scrollbar {
    display: none;
  }

  .client-marquee__group[aria-hidden="true"] {
    display: none;
  }
}

/* Service pages v35 */
.service-page {
  background: var(--paper);
}

.service-hero {
  min-height: 720px;
  height: min(916px, 100svh);
  color: #fff;
}

.service-hero__video {
  object-position: center;
}

.service-hero__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.13) 0%, rgba(0, 0, 0, 0.04) 44%, rgba(0, 0, 0, 0.62) 100%);
}

.service-hero__content {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(34px, 5vh, 58px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}

.service-hero__kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(36px, 3.1vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-hero__lead {
  max-width: 880px;
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(20px, 1.75vw, 32px);
  line-height: 1.25;
}

.service-hero__button {
  min-width: clamp(250px, 19vw, 340px);
  min-height: clamp(54px, 4.2vw, 68px);
  justify-content: center;
  margin-top: clamp(40px, 4.5vh, 54px);
  font-size: clamp(18px, 1.4vw, 25px);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 58px;
  color: #777;
  font-size: 14px;
}

.breadcrumbs a {
  color: #292929;
}

.service-overview,
.service-benefits {
  padding: 112px 0 124px;
}

.service-section-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.38fr) minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 58px;
}

.service-section-heading > span,
.service-system__copy > span {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-section-heading h2,
.service-system h2 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-section-heading > p {
  margin: 5px 0 0;
  color: #606060;
  font-size: 17px;
  line-height: 1.65;
}

.service-section-heading--dark > span {
  color: #b968ff;
}

.service-section-heading--dark > p {
  color: rgba(255, 255, 255, 0.64);
}

.service-direction-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.service-direction-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  border-radius: 28px;
  background: #fff;
}

.service-direction-card img {
  display: block;
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.service-direction-card__wordmark {
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.055em;
}

.service-direction-card__number {
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.service-direction-card h3 {
  margin: 0 0 12px;
  font-size: clamp(27px, 2.5vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.service-direction-card p {
  margin: 0;
  color: inherit;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.74;
}

.service-direction-card.is-instagram {
  background: linear-gradient(145deg, #6425e8 0%, #c122c8 48%, #ff8c45 100%);
  color: #fff;
}

.service-direction-card.is-tiktok {
  background: #090909;
  color: #fff;
}

.service-direction-card.is-youtube {
  background: #f31212;
  color: #fff;
}

.service-direction-card.is-google {
  border: 1px solid #dedede;
  background: #fff;
}

.service-direction-card.is-google .service-direction-card__wordmark {
  color: #4285f4;
}

.service-direction-card.is-yandex {
  background: #ff3b27;
  color: #fff;
}

.service-direction-card.is-development {
  background: #151515;
  color: #fff;
}

.service-direction-card.is-development:nth-child(2),
.service-direction-card.is-development:nth-child(4) {
  background: var(--accent);
}

.service-direction-card.is-production {
  background: #111;
  color: #fff;
}

.service-direction-card.is-production:nth-child(2),
.service-direction-card.is-production:nth-child(3) {
  background: var(--accent);
}

.service-offers,
.service-process {
  padding: 112px 0 124px;
}

.service-offer-grid,
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-offer-grid--5 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.service-offer-grid--5 .service-offer-card {
  grid-column: span 2;
}

.service-offer-grid--5 .service-offer-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-offer-card,
.service-process-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: #111;
}

.service-offer-card__number,
.service-process-card > span {
  display: block;
  margin-bottom: 62px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 14px;
  font-weight: 700;
}

.service-offer-card h3,
.service-process-card h3 {
  margin: 0 0 14px;
  font-size: clamp(27px, 2.2vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.service-offer-card p,
.service-process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.6;
}

.service-offer-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-offer-card li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

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

.service-process-card {
  min-height: 300px;
}

.service-process-card:nth-child(2n) {
  background: #171717;
}

.service-system {
  padding: 112px 0 124px;
  background: #050505;
  color: #fff;
}

.service-system__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
  gap: 54px;
  align-items: stretch;
}

.service-system__copy {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: center;
}

.service-system__copy > p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
  line-height: 1.65;
}

.service-system__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.service-system__tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  font-size: 14px;
}

.service-system__visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--accent);
}

.service-system__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

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

.service-benefit-card {
  min-height: 320px;
  padding: 28px;
  border: 1px solid #d7d7d7;
  border-radius: 24px;
  background: #fff;
}

.service-benefit-card > span {
  display: block;
  margin-bottom: 86px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.service-benefit-card h3 {
  margin: 0 0 13px;
  font-size: clamp(23px, 2vw, 31px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-benefit-card p {
  margin: 0;
  color: #626262;
  font-size: 15px;
  line-height: 1.58;
}

.service-page .specialists {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .service-section-heading {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .service-section-heading > p {
    grid-column: 2;
  }

  .service-direction-grid--4,
  .service-process-grid,
  .service-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-offer-grid--5 .service-offer-card,
  .service-offer-grid--5 .service-offer-card:nth-child(4) {
    grid-column: auto;
  }

  .service-offer-grid--5 .service-offer-card:last-child {
    grid-column: 1 / -1;
  }

  .service-system__grid {
    grid-template-columns: 1fr 0.82fr;
  }
}

@media (max-width: 780px) {
  .service-hero {
    min-height: 680px;
    height: 100svh;
    max-height: 820px;
  }

  .service-hero__content {
    bottom: 90px;
  }

  .service-hero h1 {
    max-width: 660px;
    font-size: clamp(31px, 9.5vw, 44px);
    line-height: 1.06;
  }

  .service-hero__lead {
    max-width: 560px;
    margin-top: 10px;
    font-size: clamp(17px, 5.1vw, 22px);
    line-height: 1.3;
  }

  .service-hero__button {
    min-width: min(300px, 88vw);
    min-height: 54px;
    margin-top: 34px;
    padding-inline: 24px;
    font-size: 18px;
  }

  .service-overview,
  .service-benefits,
  .service-offers,
  .service-process,
  .service-system {
    padding: 72px 0 80px;
  }

  .breadcrumbs {
    margin-bottom: 38px;
    font-size: 13px;
  }

  .service-section-heading {
    display: block;
    margin-bottom: 36px;
  }

  .service-section-heading > span,
  .service-system__copy > span {
    display: block;
    margin-bottom: 13px;
  }

  .service-section-heading h2,
  .service-system h2 {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1.04;
  }

  .service-section-heading > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .service-direction-grid,
  .service-offer-grid,
  .service-offer-grid--5,
  .service-process-grid,
  .service-benefit-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 84%);
    grid-template-columns: none;
    gap: 12px;
    margin-right: calc((100vw - var(--shell)) * -0.5);
    padding-right: calc((100vw - var(--shell)) * 0.5);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-direction-grid::-webkit-scrollbar,
  .service-offer-grid::-webkit-scrollbar,
  .service-process-grid::-webkit-scrollbar,
  .service-benefit-grid::-webkit-scrollbar {
    display: none;
  }

  .service-direction-card,
  .service-offer-card,
  .service-process-card,
  .service-benefit-card,
  .service-offer-grid--5 .service-offer-card:last-child {
    grid-column: auto;
    scroll-snap-align: start;
  }

  .service-direction-card {
    min-height: 310px;
    padding: 25px;
  }

  .service-direction-card h3 {
    font-size: 30px;
  }

  .service-offer-card,
  .service-process-card,
  .service-benefit-card {
    min-height: 320px;
    padding: 25px;
  }

  .service-offer-card__number,
  .service-process-card > span {
    margin-bottom: 54px;
  }

  .service-system__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-system__copy {
    min-height: 0;
  }

  .service-system__copy > p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
  }

  .service-system__visual {
    min-height: 420px;
    border-radius: 26px;
  }

  .service-benefit-card > span {
    margin-bottom: 76px;
  }
}

@media (max-width: 480px) {
  .service-hero {
    min-height: 660px;
  }

  .service-hero__content {
    bottom: 84px;
  }

  .service-hero h1 {
    font-size: clamp(29px, 8.7vw, 36px);
  }

  .service-hero__kicker {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .service-direction-grid,
  .service-offer-grid,
  .service-process-grid,
  .service-benefit-grid {
    grid-auto-columns: minmax(0, 88%);
  }

  .service-system__visual {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero__video {
    display: none;
  }
}

/* Service overview v37 */
.service-overview {
  padding: 52px 0 88px;
}

.service-overview--platforms {
  background: #efefef;
  color: #111;
}

.service-overview--catalog {
  background: #050505;
  color: #fff;
}

.service-overview .breadcrumbs {
  margin-bottom: 30px;
}

.service-overview--catalog .breadcrumbs,
.service-overview--catalog .breadcrumbs a {
  color: rgba(255, 255, 255, 0.62);
}

.service-overview__title {
  margin: 0 0 56px;
  font-size: clamp(38px, 3.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-overview__grid {
  display: grid;
  gap: 28px;
}

.service-overview--platforms .service-overview__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-overview--platforms .service-overview__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-platform-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  padding: clamp(28px, 3vw, 48px);
  border-radius: 38px;
  text-align: center;
}

.service-overview__grid--3 .service-platform-card {
  aspect-ratio: 0.65;
}

.service-overview__grid--2 .service-platform-card {
  aspect-ratio: 0.98;
}

.service-platform-card__brand {
  display: block;
  width: clamp(170px, 46%, 230px);
  height: auto;
  max-height: 46%;
  object-fit: contain;
}

.service-overview__grid--2 .service-platform-card__brand {
  width: clamp(180px, 31%, 240px);
  max-height: 36%;
}

.service-platform-card.is-instagram {
  background: linear-gradient(145deg, #397bd9 0%, #c327ca 43%, #ff4b4b 73%, #ffd54c 100%);
  color: #fff;
}

.service-platform-card.is-tiktok {
  background: #050505;
  color: #fff;
}

.service-platform-card.is-youtube {
  background: #f40d12;
  color: #fff;
}

.service-platform-card.is-google {
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #111;
}

.service-platform-card.is-yandex {
  background: #ff3b27;
  color: #fff;
}

.service-overview--catalog .service-overview__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-catalog-card {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  padding: 42px 38px 34px;
  border-radius: 28px;
  background: #191919;
  color: #fff;
}

.service-catalog-card h3 {
  margin: 0 0 42px;
  font-size: clamp(30px, 2.4vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.service-catalog-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.42;
  list-style: none;
}

.service-catalog-card a {
  display: grid;
  width: 58px;
  height: 58px;
  margin-top: auto;
  border-radius: 8px;
  background: #050505;
  color: #fff;
  font-size: 38px;
  place-items: center;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.service-catalog-card a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 1180px) {
  .service-overview--catalog .service-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-catalog-card {
    min-height: 460px;
  }
}

@media (max-width: 780px) {
  .service-overview {
    padding: 38px 0 64px;
  }

  .service-overview .breadcrumbs {
    margin-bottom: 26px;
  }

  .service-overview__title {
    margin-bottom: 34px;
    font-size: 36px;
  }

  .service-overview--platforms .service-overview__grid,
  .service-overview--catalog .service-overview__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 86%);
    grid-template-columns: none;
    gap: 12px;
    margin-right: calc((100vw - var(--shell)) * -0.5);
    padding-right: calc((100vw - var(--shell)) * 0.5);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-overview__grid::-webkit-scrollbar {
    display: none;
  }

  .service-platform-card,
  .service-catalog-card {
    scroll-snap-align: start;
  }

  .service-platform-card {
    min-height: 0;
    padding: 30px;
    border-radius: 28px;
  }

  .service-overview__grid--3 .service-platform-card__brand {
    width: min(52%, 210px);
    max-height: 48%;
  }

  .service-overview__grid--2 .service-platform-card__brand {
    width: min(43%, 205px);
    max-height: 44%;
  }

  .service-catalog-card {
    min-height: 500px;
    padding: 32px 27px 28px;
  }

  .service-catalog-card h3 {
    margin-bottom: 30px;
    font-size: 32px;
  }

  .service-catalog-card ul {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .service-overview--platforms .service-overview__grid,
  .service-overview--catalog .service-overview__grid {
    grid-auto-columns: minmax(0, 89%);
  }

  .service-catalog-card {
    min-height: 470px;
  }
}

/* Service offer sliders and compact process v40 */
.service-offers {
  overflow: hidden;
  padding: 60px 0;
}

.service-scroll-track {
  display: grid;
  grid-auto-flow: column;
  gap: 20px;
  margin-right: calc((100vw - var(--shell)) * -0.5);
  padding-right: max(40px, calc((100vw - var(--shell)) * 0.5));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.service-scroll-track::-webkit-scrollbar {
  display: none;
}

.service-scroll-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.service-scroll-track:focus-visible {
  outline: 2px solid #b968ff;
  outline-offset: 8px;
}

.service-offer-track--chips {
  grid-auto-columns: clamp(830px, calc(76vw - 150px), 1370px);
}

.service-offer-track--search {
  grid-auto-columns: 387px;
}

.service-offer-card {
  position: relative;
  display: flex;
  min-height: 600px;
  flex-direction: column;
  padding: 40px;
  border: 0;
  border-radius: 20px;
  background: #181818;
  color: #f2f2f2;
  scroll-snap-align: start;
}

.service-offer-card h3 {
  margin: 0;
  font-size: clamp(32px, 2.8vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.service-offer-card--chips ul {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0;
  margin: 54px 0 100px;
  padding: 0;
  list-style: none;
}

.service-offer-card--chips li {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: fit-content;
  max-width: 100%;
  margin-right: -8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #303030;
  color: #f2f2f2;
  font-size: clamp(17px, 1.55vw, 26px);
  line-height: 1.2;
  overflow-wrap: anywhere;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-offer-card--chips li:hover {
    z-index: 3;
    border-color: #fff;
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
  }
}

.service-offer-card__copy {
  display: grid;
  gap: 28px;
  margin-top: 48px;
}

.service-offer-card__copy p {
  margin: 0;
  color: #f2f2f2;
  font-size: 20px;
  line-height: 1.36;
}

.service-card-arrow {
  --service-arrow-size: 45px;
  display: inline-flex;
  width: var(--service-arrow-size);
  height: var(--service-arrow-size);
  margin-top: auto;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: 5px;
  background: #050505;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  transition:
    width 0.32s var(--ease),
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.service-card-arrow__icon {
  display: grid;
  width: var(--service-arrow-size);
  height: var(--service-arrow-size);
  flex: 0 0 var(--service-arrow-size);
  font-size: 32px;
  place-items: center;
}

.service-card-arrow__label {
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  color: inherit;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    max-width 0.32s var(--ease),
    margin 0.32s var(--ease),
    opacity 0.18s ease;
}

.service-catalog-card a.service-card-arrow {
  --service-arrow-size: 58px;
  display: inline-flex;
  width: var(--service-arrow-size);
  height: var(--service-arrow-size);
  align-items: center;
  justify-content: flex-start;
  place-items: unset;
}

.case-card__link.service-card-arrow {
  --service-arrow-size: 52px;
  display: inline-flex;
  width: var(--service-arrow-size);
  height: var(--service-arrow-size);
  align-items: center;
  justify-content: flex-start;
  place-items: unset;
}

@media (hover: hover) and (pointer: fine) {
  .service-card-arrow:hover,
  .service-card-arrow:focus-visible,
  .service-catalog-card a.service-card-arrow:hover,
  .service-catalog-card a.service-card-arrow:focus-visible,
  .case-card__link.service-card-arrow:hover,
  .case-card__link.service-card-arrow:focus-visible {
    width: 205px;
    background: #fff;
    color: #050505;
    transform: translateY(-2px);
  }

  .service-card-arrow:hover .service-card-arrow__label,
  .service-card-arrow:focus-visible .service-card-arrow__label {
    max-width: 125px;
    margin-left: 10px;
    margin-right: 18px;
    opacity: 1;
  }
}

.service-process {
  padding: 76px 0 96px;
}

.service-process__title {
  margin: 0 0 52px;
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-process-grid {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-right: 0;
  padding-right: 0;
  overflow: visible;
  scroll-snap-type: none;
}

.service-process-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 18px;
  border: 0;
  border-radius: 12px;
  background: #181818;
  color: #f2f2f2;
  text-align: center;
}

.service-process-card:nth-child(2n) {
  background: #181818;
}

.service-process-card__number,
.service-process-card > span {
  display: grid;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  margin: 0 0 22px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #f2f2f2;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  place-items: center;
}

.service-process-card h3 {
  max-width: 290px;
  margin: 0;
  color: #f2f2f2;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

@media (max-width: 1180px) {
  .service-offer-track--chips {
    grid-auto-columns: clamp(830px, calc(88vw - 150px), 890px);
  }

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

@media (max-width: 780px) {
  .service-offers {
    padding: 46px 0 58px;
  }

  .service-scroll-track {
    gap: 12px;
    margin-right: calc((100vw - var(--shell)) * -0.5);
    padding-right: calc((100vw - var(--shell)) * 0.5);
    scroll-padding-inline: 0 18px;
  }

  .service-offer-track--chips {
    grid-auto-columns: minmax(0, 88vw);
  }

  .service-offer-track--search {
    grid-auto-columns: minmax(0, 84vw);
  }

  .service-offer-card {
    min-height: 540px;
    padding: 28px 24px 24px;
    border-radius: 18px;
  }

  .service-offer-card h3 {
    font-size: 30px;
  }

  .service-offer-card--chips ul {
    gap: 7px;
    margin: 34px 0 72px;
  }

  .service-offer-card--chips li {
    margin-right: 0;
    padding: 8px 12px;
    font-size: 15px;
    line-height: 1.25;
  }

  .service-offer-card__copy {
    gap: 22px;
    margin-top: 34px;
  }

  .service-offer-card__copy p {
    font-size: 16px;
    line-height: 1.45;
  }

  .service-card-arrow {
    --service-arrow-size: 48px;
    width: 48px;
    height: 48px;
  }

  .service-card-arrow__icon {
    font-size: 31px;
  }

  .service-process {
    padding: 62px 0 72px;
  }

  .service-process__title {
    margin-bottom: 38px;
    font-size: clamp(36px, 10vw, 46px);
  }

  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-process-card {
    min-height: 185px;
    padding: 22px 12px;
    border-radius: 10px;
    scroll-snap-align: none;
  }

  .service-process-card__number,
  .service-process-card > span {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    margin-bottom: 23px;
    border-width: 1.5px;
    font-size: 27px;
  }

  .service-process-card h3 {
    font-size: clamp(15px, 4.4vw, 19px);
    line-height: 1.18;
  }
}

@media (max-width: 480px) {
  .service-offer-track--chips,
  .service-offer-track--search {
    grid-auto-columns: minmax(0, 88vw);
  }

  .service-offer-card {
    min-height: 520px;
  }

  .service-process-card {
    min-height: 175px;
  }
}

/* Large two-frame UTP section v41 */
.service-utp {
  overflow: hidden;
  padding: 0 0 116px;
}

.service-utp__hero {
  position: relative;
  min-height: clamp(880px, 76.8vw, 1106px);
  overflow: hidden;
}

.service-utp__hero::before {
  position: absolute;
  inset: 32% 0 0;
  background: linear-gradient(180deg, rgba(207, 23, 179, 0), rgba(118, 23, 207, 0.2));
  content: "";
  pointer-events: none;
}

.service-utp__hero-inner {
  position: relative;
  height: clamp(880px, 76.8vw, 1106px);
}

.service-utp__title {
  margin: 0;
  padding-top: 24px;
  background: linear-gradient(90deg, #7617cf, #cf17b3);
  background-clip: text;
  color: transparent;
  font-size: clamp(56px, 5.15vw, 74px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-utp__promises {
  display: grid;
  width: min(1200px, 100%);
  margin: 62px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-utp__promise h3,
.service-utp-card h3 {
  margin: 0;
  background: linear-gradient(90deg, #7617cf, #cf17b3);
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.025em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-utp__promise p,
.service-utp-card p {
  margin: 8px 0 0;
  color: rgba(10, 10, 10, 0.6);
  font-size: 16px;
  line-height: 1.34;
}

.service-utp__promise p span,
.service-utp-card p span {
  display: block;
}

.service-utp__visual {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  display: grid;
  width: min(820px, 64vw);
  height: 72%;
  pointer-events: none;
  transform: translateX(-50%);
  place-items: end center;
}

.service-utp__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.service-utp--smm .service-utp__visual {
  width: min(730px, 57vw);
  height: 72%;
}

.service-utp--poiskovoe-prodvizhenie .service-utp__visual {
  width: min(1120px, 84vw);
  height: 64%;
  transform: translateX(-50%) rotate(-3deg);
}

.service-utp--razrabotka-saitov .service-utp__visual {
  width: min(1050px, 78vw);
  height: 57%;
}

.service-utp--foto-video-prodakshn .service-utp__visual {
  width: min(930px, 70vw);
  height: 64%;
}

.service-utp__details {
  display: grid;
  width: min(1200px, var(--shell));
  padding-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-utp-card__image {
  position: relative;
  aspect-ratio: 387 / 380;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
}

.service-utp-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-utp-card h3 {
  margin-top: 20px;
}

.service-utp-card p {
  margin-top: 9px;
}

@media (max-width: 1024px) {
  .service-utp {
    padding-bottom: 92px;
  }

  .service-utp__hero,
  .service-utp__hero-inner {
    min-height: 900px;
    height: 900px;
  }

  .service-utp__promises {
    margin-top: 48px;
    gap: 24px;
  }

  .service-utp__promise h3,
  .service-utp-card h3 {
    font-size: 21px;
  }

  .service-utp__promise p,
  .service-utp-card p {
    font-size: 14px;
  }
}

@media (max-width: 780px) {
  .service-utp {
    padding-bottom: 74px;
  }

  .service-utp__hero {
    min-height: 0;
  }

  .service-utp__hero::before {
    inset: 42% 0 0;
  }

  .service-utp__hero-inner {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }

  .service-utp__title {
    max-width: 12ch;
    margin-inline: auto;
    padding-top: 54px;
    font-size: clamp(42px, 12.3vw, 54px);
    line-height: 0.98;
  }

  .service-utp__promises {
    width: 100%;
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-utp__promise {
    max-width: 540px;
  }

  .service-utp__promise h3,
  .service-utp-card h3 {
    font-size: 23px;
  }

  .service-utp__promise p,
  .service-utp-card p {
    font-size: 15px;
    line-height: 1.42;
  }

  .service-utp__visual,
  .service-utp--smm .service-utp__visual,
  .service-utp--poiskovoe-prodvizhenie .service-utp__visual,
  .service-utp--razrabotka-saitov .service-utp__visual,
  .service-utp--foto-video-prodakshn .service-utp__visual {
    position: relative;
    bottom: auto;
    left: auto;
    width: calc(100vw - 16px);
    height: 500px;
    margin-top: 26px;
    margin-left: calc((var(--shell) - 100vw) / 2 + 8px);
    transform: none;
  }

  .service-utp--smm .service-utp__visual {
    height: 560px;
  }

  .service-utp--poiskovoe-prodvizhenie .service-utp__visual {
    width: 112vw;
    height: 430px;
    margin-left: calc((var(--shell) - 112vw) / 2);
    transform: rotate(-3deg);
  }

  .service-utp--razrabotka-saitov .service-utp__visual {
    height: 390px;
  }

  .service-utp--foto-video-prodakshn .service-utp__visual {
    height: 450px;
  }

  .service-utp__details {
    display: grid;
    width: var(--shell);
    padding-top: 18px;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 84vw);
    grid-template-columns: none;
    gap: 14px;
    margin-right: calc((100vw - var(--shell)) * -0.5);
    padding-right: calc((100vw - var(--shell)) * 0.5);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .service-utp__details::-webkit-scrollbar {
    display: none;
  }

  .service-utp-card {
    scroll-snap-align: start;
  }

  .service-utp-card__image {
    border-radius: 18px;
  }

  .service-utp-card h3 {
    margin-top: 18px;
  }
}

@media (max-width: 480px) {
  .service-utp__title {
    max-width: 10ch;
    padding-top: 48px;
    font-size: clamp(39px, 11.7vw, 46px);
  }

  .service-utp__promises {
    margin-top: 38px;
    gap: 24px;
  }

  .service-utp__visual,
  .service-utp--poiskovoe-prodvizhenie .service-utp__visual,
  .service-utp--razrabotka-saitov .service-utp__visual,
  .service-utp--foto-video-prodakshn .service-utp__visual {
    height: 360px;
  }

  .service-utp--smm .service-utp__visual {
    height: 470px;
  }

  .service-utp--poiskovoe-prodvizhenie .service-utp__visual {
    height: 330px;
  }

  .service-utp__details {
    grid-auto-columns: minmax(0, 87vw);
  }
}

/* v43 — compact section hierarchy and animated system map */
:root {
  --section-title-size: clamp(38px, 3.7vw, 52px);
  --system-purple: #7617cf;
  --system-purple-active: #8e20e7;
  --system-purple-glow: #b96cff;
  --system-magenta: #cf17b3;
}

.section-heading h2,
.specialists h2,
.contacts h2,
.clients__heading h2,
.service-section-heading h2,
.service-overview__title,
.service-process__title,
.service-system__title,
.service-utp__title {
  font-size: var(--section-title-size);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.service-system {
  position: relative;
  overflow: hidden;
  padding: 84px 0 96px;
  background: #050505;
  color: #fff;
}

.service-system::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 48%, rgba(118, 23, 207, 0.15), transparent 32%),
    radial-gradient(circle at 86% 70%, rgba(207, 23, 179, 0.08), transparent 25%);
  content: "";
  pointer-events: none;
}

.service-system .shell {
  position: relative;
  z-index: 1;
}

.service-system__title {
  max-width: 12ch;
  margin: 0 0 46px;
  color: #fff;
  font-weight: 700;
}

.service-system__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(410px, 1.06fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
}

.service-system__copy {
  display: block;
  min-height: 0;
}

.service-system__copy h3 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.service-system__copy > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.62;
}

.service-system__tags {
  gap: 8px;
  margin-top: 28px;
}

.service-system__tags span {
  padding: 9px 13px;
  border-color: rgba(185, 108, 255, 0.36);
  background: rgba(118, 23, 207, 0.07);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.service-system__network {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  justify-self: center;
  isolation: isolate;
}

.service-system__network::before,
.service-system__network::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.service-system__network::before {
  inset: 9%;
  z-index: -2;
  border: 1px solid rgba(185, 108, 255, 0.1);
  background:
    linear-gradient(rgba(185, 108, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 108, 255, 0.045) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(circle, #000 34%, transparent 76%);
  mask-image: radial-gradient(circle, #000 34%, transparent 76%);
}

.service-system__network::after {
  inset: 31%;
  z-index: -1;
  background: rgba(118, 23, 207, 0.22);
  filter: blur(48px);
}

.service-system__network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.service-system__orbit,
.service-system__link {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.service-system__orbit {
  stroke: rgba(185, 108, 255, 0.18);
  stroke-width: 0.8;
}

.service-system__link {
  stroke: rgba(185, 108, 255, 0.58);
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-dasharray: 2 7;
  animation: service-system-flow 4.4s linear infinite;
}

.service-system__link--2,
.service-system__link--5 {
  animation-delay: -1.2s;
}

.service-system__link--3,
.service-system__link--6 {
  animation-delay: -2.4s;
}

.service-system__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 25%;
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--system-purple), var(--system-magenta));
  box-shadow:
    0 0 0 10px rgba(118, 23, 207, 0.09),
    0 18px 46px rgba(118, 23, 207, 0.34);
  text-align: center;
  transform: translate(-50%, -50%);
  place-content: center;
  animation: service-system-hub 4.8s ease-in-out infinite;
}

.service-system__hub span {
  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.service-system__hub small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(8px, 0.72vw, 10px);
}

.service-system__node {
  position: absolute;
  display: grid;
  width: 21%;
  min-width: 82px;
  aspect-ratio: 1;
  padding: 9px;
  border: 1px solid rgba(185, 108, 255, 0.32);
  border-radius: 50%;
  background: #121212;
  color: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 500;
  line-height: 1.12;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  place-items: center;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.service-system__node:hover,
.service-system__node:focus-visible,
.service-system__node[aria-pressed="true"] {
  border-color: rgba(255, 255, 255, 0.48);
  background: var(--system-purple-active);
  box-shadow:
    0 0 0 8px rgba(142, 32, 231, 0.1),
    0 10px 30px rgba(118, 23, 207, 0.34);
  color: #fff;
  transform: translate(-50%, -50%) scale(1.04);
}

.service-system__node:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.service-system__node--1 {
  top: 11%;
  left: 50%;
}

.service-system__node--2 {
  top: 33%;
  left: 17%;
}

.service-system__node--3 {
  top: 33%;
  left: 83%;
}

.service-system__node--4 {
  top: 74%;
  left: 84%;
}

.service-system__node--5 {
  top: 91%;
  left: 50%;
}

.service-system__node--6 {
  top: 74%;
  left: 16%;
}

.service-system__status {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@keyframes service-system-flow {
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes service-system-hub {
  0%,
  100% {
    box-shadow:
      0 0 0 10px rgba(118, 23, 207, 0.09),
      0 18px 46px rgba(118, 23, 207, 0.34);
  }
  50% {
    box-shadow:
      0 0 0 15px rgba(118, 23, 207, 0.045),
      0 18px 58px rgba(185, 108, 255, 0.42);
  }
}

@media (max-width: 980px) {
  .service-system__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: 28px;
  }

  .service-system__network {
    width: min(100%, 440px);
  }
}

@media (max-width: 780px) {
  :root {
    --section-title-size: clamp(32px, 9vw, 36px);
  }

  .service-system {
    padding: 64px 0 72px;
  }

  .service-system__title {
    margin-bottom: 30px;
  }

  .service-system__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-system__copy h3 {
    max-width: 20ch;
    font-size: clamp(29px, 8.2vw, 34px);
  }

  .service-system__copy > p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.58;
  }

  .service-system__tags {
    margin-top: 22px;
  }

  .service-system__network {
    width: min(100%, 390px);
    margin-top: 4px;
  }

  .service-system__node {
    min-width: 66px;
    font-size: 10px;
  }

  .service-utp__title {
    max-width: 12ch;
    font-size: var(--section-title-size);
    line-height: 1.02;
  }
}

@media (max-width: 420px) {
  .service-system__network {
    width: min(100%, 340px);
  }

  .service-system__node {
    min-width: 62px;
    padding: 7px;
    font-size: 9px;
  }

  .service-system__hub {
    width: 24%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-system__link,
  .service-system__hub {
    animation: none;
  }

  .service-system__node {
    transition: none;
  }
}

/* v46 — readable mobile rails, exact compact CTA and compact UTP */
.service-card-arrow,
.service-catalog-card a.service-card-arrow,
.case-card__link.service-card-arrow {
  --service-arrow-size: 58px;
  box-sizing: border-box;
  display: inline-flex;
  width: var(--service-arrow-size);
  min-width: var(--service-arrow-size);
  max-width: 205px;
  height: var(--service-arrow-size);
  min-height: var(--service-arrow-size);
  margin-top: auto;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  background: #050505;
  color: #fff;
  box-shadow: none;
  transform: none;
  white-space: nowrap;
  transition:
    width 0.28s var(--ease),
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.service-card-arrow__icon {
  display: grid;
  width: var(--service-arrow-size);
  min-width: var(--service-arrow-size);
  height: var(--service-arrow-size);
  flex: 0 0 var(--service-arrow-size);
  font-size: 37px;
  line-height: 1;
  place-items: center;
}

.service-card-arrow__label {
  display: block;
  max-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    max-width 0.28s var(--ease),
    padding 0.28s var(--ease),
    opacity 0.16s ease 0.04s;
}

@media (hover: hover) and (pointer: fine) {
  .service-card-arrow:hover,
  .service-card-arrow:focus-visible,
  .service-catalog-card a.service-card-arrow:hover,
  .service-catalog-card a.service-card-arrow:focus-visible,
  .case-card__link.service-card-arrow:hover,
  .case-card__link.service-card-arrow:focus-visible {
    width: 205px;
    background: #fff;
    color: #050505;
    transform: translateY(-2px);
  }

  .service-card-arrow:hover .service-card-arrow__label,
  .service-card-arrow:focus-visible .service-card-arrow__label {
    max-width: 126px;
    padding-right: 18px;
    opacity: 1;
  }
}

@media (hover: none), (pointer: coarse) {
  .service-card-arrow,
  .service-card-arrow:hover,
  .service-card-arrow:focus-visible,
  .service-catalog-card a.service-card-arrow,
  .service-catalog-card a.service-card-arrow:hover,
  .service-catalog-card a.service-card-arrow:focus-visible,
  .case-card__link.service-card-arrow,
  .case-card__link.service-card-arrow:hover,
  .case-card__link.service-card-arrow:focus-visible {
    width: var(--service-arrow-size);
    min-width: var(--service-arrow-size);
    max-width: var(--service-arrow-size);
    background: #050505;
    color: #fff;
    transform: none;
  }

  .service-card-arrow__label,
  .service-card-arrow:hover .service-card-arrow__label,
  .service-card-arrow:focus-visible .service-card-arrow__label {
    display: none;
    max-width: 0;
    padding: 0;
    opacity: 0;
  }
}

.service-utp {
  padding-bottom: 88px;
}

.service-utp__hero,
.service-utp__hero-inner {
  height: auto;
  min-height: 0;
}

.service-utp__hero {
  padding: 76px 0 48px;
}

.service-utp__hero::before {
  inset: 0;
}

.service-utp__title {
  padding-top: 0;
}

.service-utp__promises {
  margin-top: 50px;
}

.service-utp__details {
  padding-top: 0;
}

@media (max-width: 900px) {
  .service-overview,
  .service-offers,
  .service-utp {
    overflow: hidden;
  }

  .service-overview--platforms .service-overview__grid,
  .service-overview--catalog .service-overview__grid,
  .service-offer-track--chips,
  .service-offer-track--search,
  .service-utp__details {
    --service-mobile-card: min(520px, calc(100vw - 64px));
    box-sizing: border-box;
    display: flex;
    width: calc(100% + ((100vw - var(--shell)) / 2));
    max-width: none;
    flex-flow: row nowrap;
    gap: 14px;
    margin-right: calc((100vw - var(--shell)) * -0.5);
    padding-right: max(24px, calc((100vw - var(--shell)) * 0.5));
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 0 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .service-overview__grid::-webkit-scrollbar,
  .service-offer-track--chips::-webkit-scrollbar,
  .service-offer-track--search::-webkit-scrollbar,
  .service-utp__details::-webkit-scrollbar {
    display: none;
  }

  .service-overview--platforms .service-platform-card,
  .service-overview--catalog .service-catalog-card,
  .service-offer-track--chips .service-offer-card,
  .service-offer-track--search .service-offer-card,
  .service-utp__details .service-utp-card {
    box-sizing: border-box;
    width: var(--service-mobile-card);
    min-width: var(--service-mobile-card);
    max-width: var(--service-mobile-card);
    flex: 0 0 var(--service-mobile-card);
    scroll-snap-align: start;
    scroll-snap-stop: normal;
  }

  .service-platform-card {
    min-height: 0;
    padding: clamp(28px, 7vw, 44px);
    border-radius: 28px;
  }

  .service-overview__grid--3 .service-platform-card {
    aspect-ratio: 0.65;
  }

  .service-overview__grid--2 .service-platform-card {
    aspect-ratio: 0.98;
  }

  .service-overview__grid--3 .service-platform-card__brand {
    width: min(64%, 230px);
    max-height: 52%;
  }

  .service-overview__grid--2 .service-platform-card__brand {
    width: min(56%, 240px);
    max-height: 46%;
  }

  .service-catalog-card {
    min-height: 520px;
    padding: 34px 28px 28px;
  }

  .service-catalog-card h3 {
    overflow-wrap: normal;
    word-break: normal;
  }

  .service-offer-card {
    min-height: 520px;
    padding: 30px 26px 26px;
  }

  .service-offer-card--chips ul {
    gap: 7px;
    margin: 34px 0 64px;
  }

  .service-offer-card--chips li {
    max-width: 100%;
    margin-right: 0;
    padding: 8px 12px;
    overflow-wrap: anywhere;
    font-size: 15px;
    white-space: normal;
  }

  .service-offer-card__copy {
    gap: 20px;
    margin-top: 32px;
  }

  .service-offer-card__copy p {
    font-size: 16px;
    line-height: 1.46;
  }

  .service-utp {
    padding-bottom: 68px;
  }

  .service-utp__hero {
    padding: 58px 0 42px;
  }

  .service-utp__promises {
    margin-top: 36px;
  }

  .service-utp__details {
    width: calc(var(--shell) + ((100vw - var(--shell)) / 2));
    margin-right: 0;
    margin-left: calc((100vw - var(--shell)) / 2);
    padding-top: 0;
  }

  .service-utp-card__image {
    aspect-ratio: 1 / 0.9;
  }

  .service-card-arrow,
  .service-card-arrow:hover,
  .service-card-arrow:focus-visible,
  .service-catalog-card a.service-card-arrow,
  .service-catalog-card a.service-card-arrow:hover,
  .service-catalog-card a.service-card-arrow:focus-visible,
  .case-card__link.service-card-arrow,
  .case-card__link.service-card-arrow:hover,
  .case-card__link.service-card-arrow:focus-visible {
    --service-arrow-size: 54px;
    width: var(--service-arrow-size);
    min-width: var(--service-arrow-size);
    max-width: var(--service-arrow-size);
    height: var(--service-arrow-size);
    min-height: var(--service-arrow-size);
    background: #050505;
    color: #fff;
    transform: none;
  }

  .service-card-arrow__label,
  .service-card-arrow:hover .service-card-arrow__label,
  .service-card-arrow:focus-visible .service-card-arrow__label {
    display: none;
    max-width: 0;
    padding: 0;
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .service-overview--platforms .service-overview__grid,
  .service-overview--catalog .service-overview__grid,
  .service-offer-track--chips,
  .service-offer-track--search,
  .service-utp__details {
    --service-mobile-card: calc(100vw - 64px);
    gap: 12px;
  }

  .service-overview__title {
    font-size: 34px;
  }

  .service-platform-card {
    border-radius: 24px;
  }

  .service-catalog-card,
  .service-offer-card {
    min-height: 490px;
  }

  .service-catalog-card h3,
  .service-offer-card h3 {
    font-size: 29px;
  }

  .service-catalog-card ul {
    font-size: 15px;
    line-height: 1.48;
  }

  .service-utp__hero {
    padding: 48px 0 36px;
  }

  .service-utp__title {
    max-width: 12ch;
    padding-top: 0;
  }
}

@media (max-width: 380px) {
  .service-overview--platforms .service-overview__grid,
  .service-overview--catalog .service-overview__grid,
  .service-offer-track--chips,
  .service-offer-track--search,
  .service-utp__details {
    --service-mobile-card: calc(100vw - 56px);
  }

  .service-catalog-card,
  .service-offer-card {
    min-height: 470px;
  }
}

/* v47 — plain white background for “Почему выбирают нас?” */
.service-utp.section--light {
  background: #fff;
}

.service-utp__hero::before {
  display: none;
  background: none;
}

/* v50 — privacy, cookie consent and legal pages */
.form-consent {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  max-width: 920px;
  margin-top: 22px;
  color: #666;
  font-size: 14px;
  line-height: 1.45;
  cursor: pointer;
}

.form-consent input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.form-consent a {
  color: #111;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.form-consent.has-error {
  color: #b00020;
}

.form-consent__error {
  display: none;
  margin: 8px 0 0 36px;
  color: #b00020;
  font-size: 13px;
}

.form-consent__error.is-visible {
  display: block;
}

.legal-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 24px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.legal-footer p {
  margin: 0;
}

.legal-footer strong {
  color: #fff;
  font-weight: 600;
}

.legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.legal-footer__links a,
.legal-footer__links button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.legal-footer__links a:hover,
.legal-footer__links button:hover,
.legal-footer__links a:focus-visible,
.legal-footer__links button:focus-visible {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  z-index: 10050;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: #121212;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  color: #fff;
}

.cookie-banner[hidden],
.cookie-dialog[hidden] {
  display: none !important;
}

.cookie-banner__copy {
  min-width: 0;
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.cookie-banner__copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.48;
}

.cookie-banner a,
.cookie-dialog a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions,
.cookie-dialog__actions {
  display: flex;
  gap: 8px;
}

.cookie-button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.cookie-button--primary {
  border-color: var(--accent);
  background: var(--accent);
}

.cookie-button:hover,
.cookie-button:focus-visible {
  border-color: #fff;
}

.cookie-button--primary:hover,
.cookie-button--primary:focus-visible {
  background: #6f0fc9;
}

.cookie-dialog {
  position: fixed;
  z-index: 10060;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.cookie-dialog__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100dvh - 40px));
  padding: 34px;
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  color: #111;
  outline: none;
}

.cookie-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.cookie-dialog__eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-dialog h2 {
  margin: 12px 54px 10px 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
}

.cookie-dialog__intro {
  margin: 0 0 24px;
  color: #656565;
  font-size: 15px;
  line-height: 1.5;
}

.cookie-option {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid #dedede;
}

.cookie-option strong,
.cookie-option span {
  display: block;
}

.cookie-option > div p,
.cookie-option > span > span {
  margin: 4px 0 0;
  color: #747474;
  font-size: 13px;
  line-height: 1.42;
}

.cookie-option__always {
  color: #777;
  font-size: 13px;
  white-space: nowrap;
}

.cookie-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-option i {
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: #d2d2d2;
  transition: background 160ms ease;
}

.cookie-option i::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  transition: transform 160ms ease;
}

.cookie-option input:checked + i {
  background: var(--accent);
}

.cookie-option input:checked + i::after {
  transform: translateX(22px);
}

.cookie-option input:focus-visible + i {
  outline: 3px solid rgba(132, 94, 215, 0.3);
  outline-offset: 3px;
}

.cookie-dialog__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 24px;
  color: #666;
  font-size: 13px;
}

.cookie-dialog .cookie-button--secondary {
  border-color: #ccc;
  color: #111;
}

.cookie-dialog .cookie-button--secondary:hover,
.cookie-dialog .cookie-button--secondary:focus-visible {
  border-color: #111;
}

body.cookie-dialog-open {
  overflow: hidden;
}

.legal-page {
  min-height: 100vh;
  padding: 32px 0 96px;
  background: #f3f3f3;
  color: #111;
}

.legal-page__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 72px;
}

.legal-page__header .brand {
  position: static;
  width: auto;
}

.legal-page__back {
  color: #111;
  font-size: 14px;
  text-decoration: none;
}

.legal-page__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(40px, 8vw, 140px);
  align-items: start;
}

.legal-page__aside {
  position: sticky;
  top: 28px;
}

.legal-page__eyebrow {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 0;
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.legal-page__updated {
  margin: 22px 0 0;
  color: #777;
  font-size: 14px;
}

.legal-page__content {
  max-width: 880px;
}

.legal-page__lead {
  margin: 0 0 44px;
  color: #454545;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.45;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid #d5d5d5;
}

.legal-section h2 {
  margin: 0 0 16px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
}

.legal-section h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

.legal-section p,
.legal-section li {
  color: #555;
  font-size: 16px;
  line-height: 1.65;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section ul,
.legal-section ol {
  margin: 12px 0;
  padding-left: 22px;
}

.legal-section a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section button[data-cookie-settings] {
  padding: 0;
  border: 0;
  background: none;
  color: #111;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.legal-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 15px 14px;
  border: 1px solid #d8d8d8;
  color: #555;
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: #e9e9e9;
  color: #111;
}

.legal-page__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid #d5d5d5;
  color: #666;
  font-size: 13px;
}

.legal-page__footer a,
.legal-page__footer button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

@media (max-width: 780px) {
  .form-consent {
    margin-top: 18px;
    font-size: 13px;
  }

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

  .legal-footer__links {
    justify-content: flex-start;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 17px;
    border-radius: 18px;
  }

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

  .cookie-banner__actions .cookie-button--primary {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .cookie-button {
    width: 100%;
    padding: 0 12px;
  }

  .cookie-dialog {
    align-items: end;
    padding: 10px;
  }

  .cookie-dialog__panel {
    max-height: calc(100dvh - 20px);
    padding: 26px 20px 20px;
    border-radius: 22px;
  }

  .cookie-dialog__close {
    top: 12px;
    right: 12px;
  }

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

  .legal-page {
    padding: 22px 0 64px;
  }

  .legal-page__header {
    margin-bottom: 48px;
  }

  .legal-page__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-page__aside {
    position: static;
  }

  .legal-page h1 {
    font-size: clamp(40px, 13vw, 64px);
  }

  .legal-table {
    display: block;
    overflow-x: auto;
  }
}
