html {
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-shadow-hover: 0 18px 42px rgba(76, 109, 166, 0.18);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--color-text-deep-blue);
  background: var(--color-background-white);
  font-family: var(--font-family-base);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  transform: translateY(calc(-100% - 32px));
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--color-text-white);
  background: var(--color-background-blue);
  box-shadow: 0 18px 42px rgba(76, 109, 166, 0.18);
  text-decoration: none;
  transition: transform 180ms var(--motion-ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid rgba(76, 109, 166, 0.22);
  outline-offset: 3px;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: min(1280px, calc(100% - 160px));
  margin: 0 auto;
}

.section-space {
  margin-top: 96px;
}

.section-fill {
  background: var(--color-background-light-grey);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 800px;
  color: var(--color-text-white);
  font-size: var(--typography-h1-font-size);
  font-weight: var(--typography-h1-font-weight);
  line-height: var(--typography-h1-line-height);
  letter-spacing: 0;
}

h2 {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h2-font-size);
  font-weight: var(--typography-h2-font-weight);
  line-height: var(--typography-h2-line-height);
  letter-spacing: 0;
}

h3 {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h4-font-size);
  font-weight: var(--typography-h4-font-weight);
  line-height: var(--typography-h4-line-height);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 32px;
  padding: 8px 12px;
  color: var(--color-text-grey);
  background: var(--color-background-white);
  border: 1px solid var(--color-stroke-light-blue);
  border-radius: 999px;
  font-size: var(--typography-h6-font-size);
  font-weight: var(--typography-h6-font-weight);
  line-height: var(--typography-h6-line-height);
  white-space: nowrap;
}

.tag--small {
  min-height: 26px;
  padding: 5px 10px;
  font-size: var(--typography-text-s-font-size);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 4px 20px;
  overflow: hidden;
  border-radius: 999px;
  font-size: var(--typography-button-m-font-size);
  line-height: var(--typography-button-m-line-height);
  text-align: center;
  transition: transform 220ms var(--motion-ease), background-color 220ms ease, box-shadow 220ms ease;
  transform: translateZ(0);
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -35%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-140%) skewX(-18deg);
  transition: opacity 220ms ease, transform 620ms var(--motion-ease);
}

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

.button:hover::after {
  opacity: 1;
  transform: translateX(450%) skewX(-18deg);
}

.button--primary {
  color: var(--color-text-white);
  background: var(--color-background-deep-blue);
  box-shadow: var(--effect-drop-shadow);
}

.button--light {
  color: var(--color-text-deep-blue);
  background: var(--color-background-white);
}

.button--outline-light {
  color: var(--color-text-white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
  transition: transform 220ms var(--motion-ease), background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.icon-button img {
  width: 24px;
  height: 24px;
}

.icon-button--active {
  background: var(--color-background-blue-sky);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-heading--center {
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-heading > .tag {
  min-height: 21px;
  padding: 4px 6px;
}

.section-heading p {
  color: var(--color-text-grey-2);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-m-line-height);
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

html.motion-ready .reveal-on-scroll {
  opacity: 0;
  translate: 0 24px;
  scale: 0.985;
  transition:
    opacity 620ms var(--motion-ease-soft),
    translate 760ms var(--motion-ease),
    scale 760ms var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate, scale;
}

html.motion-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

@keyframes headerDropIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroBreath {
  0%,
  100% {
    background-position: 50% 50%, 50% 50%, 50% 50%;
  }

  50% {
    background-position: 56% 46%, 44% 54%, 50% 50%;
  }
}

@keyframes softFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes ctaRaysDrift {
  from {
    transform: scale(1) rotate(0deg);
  }

  to {
    transform: scale(1.035) rotate(1.4deg);
  }
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    translate: 0 -6px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes panelSheen {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }

  to {
    transform: translateX(340%) skewX(-18deg);
  }
}

@keyframes pricePanelGlow {
  from {
    box-shadow: 0 0 0 rgba(76, 109, 166, 0);
  }

  55% {
    box-shadow: 0 24px 58px rgba(76, 109, 166, 0.14);
  }

  to {
    box-shadow: 0 0 0 rgba(76, 109, 166, 0);
  }
}

@keyframes iconPop {
  0% {
    opacity: 0;
    transform: scale(0.74) rotate(-8deg);
  }

  70% {
    opacity: 1;
    transform: scale(1.08) rotate(2deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes teamCardIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 20px;
  left: 0;
  width: 100%;
  pointer-events: none;
  transform: translateY(0);
  transition: transform 320ms var(--motion-ease), top 240ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 32px));
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(190, 201, 227, 0.82);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 38px rgba(76, 109, 166, 0.14);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 240px));
  height: 60px;
  margin: 0 auto;
  padding: 4px 12px 4px 24px;
  border: 1px solid var(--color-background-blue);
  border-radius: 999px;
  background: var(--color-opacity-white-70);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: auto;
}

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

.brand__mark {
  width: 78px;
  height: 52px;
  object-fit: contain;
}

.brand__name {
  flex: 1 0 0;
  min-width: 0;
  color: transparent;
  background: linear-gradient(90deg, #0074eb 0%, #00288e 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.site-nav {
  display: flex;
  flex: 0 0 auto;
  gap: 32px;
  align-items: center;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.site-nav a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 4px 0;
}

.header-actions {
  display: flex;
  flex: 1 0 0;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.header-call {
  flex: 0 0 auto;
  width: auto;
  min-width: 152px;
  white-space: nowrap;
  box-shadow: none;
}

.header-actions .icon-button {
  border: 1px solid var(--color-stroke-light-blue);
  box-shadow: none;
}

.header-actions .icon-button + .icon-button {
  margin-left: -2px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border-radius: 50%;
  background: var(--color-background-deep-blue);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-background-white);
}

.hero {
  min-height: 982px;
  padding: 134px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 84%, rgba(255, 234, 224, 0.92) 0, rgba(255, 234, 224, 0) 31%),
    radial-gradient(circle at 20% 17%, rgba(190, 210, 245, 0.85) 0, rgba(190, 210, 245, 0) 36%),
    linear-gradient(180deg, #86a4e5 0%, #86a4e5 48%, #f7eee9 100%);
}

.hero__inner {
  display: flex;
  min-height: 800px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  text-align: center;
}

.hero__copy p {
  max-width: 640px;
  color: var(--color-text-light-grey);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.phone-pill {
  display: inline-flex;
  min-height: 44px;
  flex-direction: column;
  justify-content: center;
  padding: 5px 22px;
  border-radius: 999px;
  color: var(--color-text-white);
  background: var(--color-background-red);
  box-shadow: var(--effect-drop-shadow);
  text-align: center;
}

.phone-pill span {
  font-size: var(--typography-button-m-font-size);
  line-height: 1.1;
}

.phone-pill small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  line-height: 1.1;
}

.hero__photo {
  width: 100%;
  max-width: 1280px;
  margin-top: 74px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--effect-drop-shadow-2);
}

.hero__photo img {
  width: 100%;
  height: 512px;
  object-fit: cover;
}

.photo-band {
  position: relative;
  min-height: 2460px;
  overflow-x: clip;
}

.photo-band__inner {
  position: sticky;
  top: 112px;
  min-height: min(720px, calc(100vh - 136px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.photo-band h2 {
  position: relative;
  z-index: 1;
  max-width: 840px;
  font-size: var(--typography-accent-font-size);
  line-height: var(--typography-accent-line-height);
  font-weight: var(--typography-accent-font-weight);
  letter-spacing: 0;
  text-align: center;
}

.photo-band__image {
  position: absolute;
  z-index: 2;
  width: 536px;
  height: 312px;
  overflow: hidden;
  border: 8px solid var(--color-background-white);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--effect-drop-shadow);
  will-change: transform, opacity;
}

.photo-band__image--scroll-driven {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  animation: none;
  transition: none;
  transform-origin: center;
}

.photo-band__image--one {
  left: 0;
  top: 58px;
  transform: rotate(-8deg);
}

.photo-band__image--two {
  right: 0;
  top: 82px;
  transform: rotate(8deg);
}

.photo-band__image--three {
  bottom: 56px;
  left: 15%;
  transform: rotate(-7deg);
}

.photo-band__image--four {
  right: 17%;
  bottom: 38px;
  transform: rotate(9deg);
}

.numbers__grid {
  display: grid;
  min-height: 103px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 64px;
  align-items: center;
}

.number-card {
  min-width: 0;
}

.number-card strong {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--color-text-grey-2);
  font-size: var(--typography-accent-font-size);
  font-weight: var(--typography-accent-font-weight);
  line-height: var(--typography-accent-line-height);
  letter-spacing: 0;
}

.number-card strong span {
  font-size: var(--typography-h1-font-size);
  line-height: var(--typography-h1-line-height);
}

.number-card p {
  margin-top: 8px;
  color: var(--color-text-grey-2);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
}

.services {
  min-height: 688px;
  padding: 72px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.service-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.service-card__image {
  position: relative;
  height: 148px;
  margin: 8px 8px 0;
  overflow: hidden;
  border-radius: 6px;
}

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

.service-card__image .tag {
  position: absolute;
  top: 12px;
  left: 12px;
}

.service-card__body {
  display: flex;
  min-height: 124px;
  flex-direction: column;
  padding: 14px 20px 18px;
}

.service-card h3 {
  display: -webkit-box;
  min-height: 2.2em;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.1;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.service-card p {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.service-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.service-card__bottom span {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-s-font-size);
  font-weight: 500;
}

.service-card__bottom a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  border-radius: 999px;
  color: var(--color-text-deep-blue);
  background: var(--color-background-light-blue);
  font-size: var(--typography-button-m-font-size);
  line-height: var(--typography-button-m-line-height);
}

.site-nav a[aria-current="page"] {
  color: var(--color-text-deep-blue);
}

.services-catalog {
  padding: 132px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 234, 224, 0.96) 0, rgba(255, 234, 224, 0) 28%),
    radial-gradient(circle at 86% 15%, rgba(255, 234, 224, 0.72) 0, rgba(255, 234, 224, 0) 26%),
    linear-gradient(0deg, #ffffff 0%, #e7f0ff 20%, #6a85d3 50%, #3d55bc 100%);
}

.services-catalog__head {
  display: flex;
  min-height: 144px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 17px;
  margin-bottom: 48px;
  text-align: center;
}

.breadcrumbs {
  max-width: 100%;
}

.breadcrumbs ol {
  display: inline-flex;
  max-width: 100%;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 6px 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 16px rgba(190, 201, 227, 0.22);
  list-style: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.breadcrumbs li {
  position: relative;
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
  white-space: nowrap;
}

.breadcrumbs li:first-child::before {
  content: "";
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  background: currentColor;
  opacity: 0.92;
  mask: url("../icons/home-7-line.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/home-7-line.svg") center / contain no-repeat;
}

.breadcrumbs li + li::before {
  content: "";
  position: static;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  border-radius: 0;
  background: currentColor;
  opacity: 0.75;
  transform: none;
  mask: url("../icons/arrow-right-s-line.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/arrow-right-s-line.svg") center / contain no-repeat;
}

.breadcrumbs a {
  color: var(--color-text-white);
}

.breadcrumbs li[aria-current="page"] {
  color: rgba(255, 255, 255, 0.66);
}

.services-catalog h1 {
  color: var(--color-text-white);
  text-align: center;
}

.service-grid--catalog {
  gap: 12px;
  margin-top: 0;
}

.service-card--catalog {
  display: flex;
  min-height: 344px;
  flex-direction: column;
  border-radius: 20px;
}

.service-card--catalog .service-card__image {
  flex: 0 0 158px;
  height: 158px;
  border-radius: 12px;
  transition: flex-basis 300ms var(--motion-ease), height 300ms var(--motion-ease);
}

.service-card--catalog:hover .service-card__image,
.service-card--catalog:focus-within .service-card__image,
.service-card--catalog .service-card__image--short {
  flex-basis: 128px;
  height: 128px;
}

.service-card--catalog .service-card__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 12px 16px 14px;
}

.service-card--catalog h3 {
  min-height: 2.2em;
  font-size: var(--typography-h4-font-size);
  line-height: var(--typography-h4-line-height);
}

.service-card--catalog p {
  margin-top: 8px;
}

.service-card--long p {
  display: none;
}

.service-card__price {
  display: block;
  margin-top: auto;
  padding-top: 10px;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-l-font-size);
  font-weight: 500;
  line-height: var(--typography-text-l-line-height);
}

.service-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.service-card--catalog .service-card__actions {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 220ms ease, transform 260ms var(--motion-ease), visibility 0s linear 260ms;
}

.service-card--catalog:hover .service-card__actions,
.service-card--catalog:focus-within .service-card__actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.service-card__actions a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  border-radius: 999px;
  color: var(--color-text-deep-blue);
  background: var(--color-background-light-blue);
  font-size: var(--typography-button-m-font-size);
  line-height: var(--typography-button-m-line-height);
  text-align: center;
  transition: background-color 220ms ease, transform 220ms var(--motion-ease);
}

.service-card__actions a:last-child {
  background: var(--color-background-blue-sky);
}

.service-card__actions a:hover {
  transform: translateY(-1px);
}

.services .service-grid--catalog {
  margin-top: 40px;
}

.services .service-card--catalog .service-card__actions {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
  transition: none;
}

@media (hover: hover) {
  .services .service-card--catalog:hover .service-card__image,
  .services .service-card--catalog:focus-within .service-card__image {
    flex-basis: 158px;
    height: 158px;
  }
}

@media (hover: none) {
  .service-card--catalog .service-card__actions {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: none;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
}

.pagination ol {
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 999px;
  color: var(--color-text-grey);
  background: var(--color-background-white);
  font-size: var(--typography-h4-font-size);
  line-height: var(--typography-h4-line-height);
}

.pagination a.is-current {
  color: var(--color-text-deep-blue);
  background: var(--color-background-blue-sky);
}

.pagination .is-disabled {
  cursor: default;
  opacity: 0.45;
}

.pagination__arrow img {
  width: 24px;
  height: 24px;
}

.blog-index {
  min-height: 1802px;
  padding: 132px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 234, 224, 0.92) 0, rgba(255, 234, 224, 0) 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 234, 224, 0.64) 0, rgba(255, 234, 224, 0) 24%),
    linear-gradient(0deg, #ffffff 0%, #e7f0ff 20%, #6a85d3 51%, #3d55bc 100%);
}

.blog-index__head,
.article-hero__head {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 17px;
  margin-bottom: 48px;
  text-align: center;
}

.blog-index h1,
.article-hero h1 {
  color: var(--color-text-white);
  text-align: center;
}

.blog-index__status {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
  text-align: center;
}

.blog-index__status:empty {
  display: none;
}

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

.blog-card {
  position: relative;
  height: 344px;
  min-width: 0;
  overflow: hidden;
  padding: 8px;
  border-radius: 20px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
  transition: transform 280ms var(--motion-ease), box-shadow 280ms ease;
}

.blog-card:hover,
.blog-card:focus-within {
  box-shadow: var(--motion-shadow-hover);
  transform: translateY(-3px);
}

.blog-card__media {
  position: absolute;
  top: 8px;
  right: 8px;
  left: 8px;
  display: block;
  height: 202px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--color-background-light-blue);
  transition: height 300ms var(--motion-ease);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 480ms var(--motion-ease);
}

.blog-card:hover .blog-card__media,
.blog-card:focus-within .blog-card__media {
  height: 85px;
}

.blog-card:hover .blog-card__media img,
.blog-card:focus-within .blog-card__media img {
  scale: 1.04;
}

.blog-card__tag {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  max-width: calc(100% - 32px);
}

.blog-card__body {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  display: flex;
  height: 165px;
  flex-direction: column;
  overflow: hidden;
  padding: 16px;
  border-radius: 12px;
  background: var(--color-background-white);
  transition: height 300ms var(--motion-ease);
}

.blog-card:hover .blog-card__body,
.blog-card:focus-within .blog-card__body {
  height: 263px;
}

.blog-card__read-time {
  display: inline-flex;
  min-height: 17px;
  align-items: center;
  gap: 4px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.blog-card__read-time img {
  width: 16px;
  height: 16px;
  opacity: 0.72;
}

.blog-card h2,
.blog-card h3 {
  display: -webkit-box;
  flex: 0 0 auto;
  margin-top: 12px;
  overflow: hidden;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h4-font-size);
  font-weight: var(--typography-h4-font-weight);
  line-height: var(--typography-h4-line-height);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card h2 a,
.blog-card h3 a {
  transition: color 220ms ease;
}

.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: var(--color-text-blue);
}

.blog-card__excerpt {
  display: -webkit-box;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
  opacity: 0;
  transition: max-height 260ms var(--motion-ease), margin-top 260ms var(--motion-ease), opacity 220ms ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.blog-card:hover .blog-card__excerpt,
.blog-card:focus-within .blog-card__excerpt {
  max-height: 40px;
  margin-top: 8px;
  opacity: 1;
}

.blog-card__author {
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
}

.blog-card__author img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card__author div {
  min-width: 0;
}

.blog-card__author strong,
.blog-card__author time {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog-card__author strong {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h6-font-size);
  font-weight: 500;
  line-height: var(--typography-h6-line-height);
}

.blog-card__author time {
  margin-top: 2px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.blog-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 128px);
  gap: 8px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  visibility: hidden;
  transition: opacity 220ms ease, transform 260ms var(--motion-ease), visibility 0s linear 260ms;
}

.blog-card:hover .blog-card__actions,
.blog-card:focus-within .blog-card__actions {
  max-height: 44px;
  margin-top: 14px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.blog-card__actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 999px;
  color: var(--color-text-deep-blue);
  background: var(--color-background-light-blue);
  font-size: var(--typography-button-m-font-size);
  line-height: var(--typography-button-m-line-height);
  text-align: center;
}

.blog-card__actions a:first-child {
  background: var(--color-background-white);
  border: 1px solid var(--color-stroke-blue);
}

.blog-card__actions a:last-child {
  background: var(--color-background-blue-sky);
}

.blog-pagination {
  margin-top: 24px;
}

.article-hero {
  min-height: 1062px;
  padding: 132px 0 48px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(61, 85, 188, 0) 0%, rgba(255, 255, 255, 0.86) 92%, #ffffff 100%),
    radial-gradient(circle at 12% 18%, rgba(255, 234, 224, 0.72) 0, rgba(255, 234, 224, 0) 27%),
    linear-gradient(180deg, #6a85d3 0%, #9db1e2 43%, #eff6ff 100%);
}

.article-hero__head {
  gap: 16px;
  margin-bottom: 48px;
}

.article-hero__head .breadcrumbs {
  max-width: 871px;
}

.article-hero__head p {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
  text-align: center;
}

.article-hero__media img {
  width: 100%;
  height: 512px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(54, 76, 142, 0.16);
}

.article-layout {
  margin-top: 32px;
}

.article-layout__grid {
  display: grid;
  grid-template-columns: 311px minmax(0, 634px) 311px;
  gap: 12px;
  align-items: start;
}

.article-layout__grid--no-toc {
  grid-template-columns: minmax(0, 634px) 311px;
  justify-content: center;
}

.article-toc,
.article-info-card,
.article-author-card {
  border-radius: 20px;
  background: var(--color-background-light-grey);
}

.article-toc {
  position: sticky;
  top: 120px;
  min-height: 199px;
  padding: 20px;
}

.article-toc h2,
.article-info-card h2,
.article-author-card h2 {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h6-font-size);
  font-weight: var(--typography-h6-font-weight);
  line-height: var(--typography-h6-line-height);
}

.article-toc ol {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.article-toc li {
  border-top: 1px solid var(--color-stroke-light-blue);
}

.article-toc li:first-child {
  border-top: 0;
}

.article-toc a {
  display: flex;
  min-height: 44px;
  align-items: center;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
  transition: color 220ms ease;
}

.article-toc a:hover {
  color: var(--color-text-deep-blue);
}

.article-content {
  min-width: 0;
  padding: 0 48px;
}

.article-content__section + .article-content__section {
  margin-top: 40px;
}

.article-content__section > * + * {
  margin-top: 12px;
}

.article-content h2 {
  margin-bottom: 20px;
}

.article-content h3 {
  margin-bottom: 16px;
  font-size: var(--typography-h3-font-size);
  line-height: var(--typography-h3-line-height);
}

.article-content h2 + *,
.article-content h3 + * {
  margin-top: 0;
}

.article-content p,
.article-content li {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.article-content__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.article-content__list li {
  position: relative;
  padding-left: 24px;
}

.article-content__list:not(.article-content__list--ordered) li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-text-deep-blue);
}

.article-content__list--ordered {
  counter-reset: article-list;
}

.article-content__list--ordered li {
  counter-increment: article-list;
}

.article-content__list--ordered li::before {
  content: counter(article-list) ".";
  position: absolute;
  left: 0;
  color: var(--color-text-deep-blue);
}

.article-content__quote {
  min-height: 109px;
  margin: 40px 0 0;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-background-light-grey);
  box-shadow: inset 0 0 0 1px rgba(188, 201, 227, 0.24);
}

.article-content__quote p {
  color: var(--color-text-deep-blue);
}

.article-content__quote cite {
  display: block;
  margin-top: 12px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  font-style: normal;
  line-height: var(--typography-text-m-line-height);
  text-align: right;
}

.article-content__figure {
  margin: 40px 0 0;
}

.article-content__figure img {
  width: 100%;
  height: 324px;
  border-radius: 20px;
  object-fit: cover;
}

.article-content__figure figcaption {
  margin-top: 10px;
  color: var(--color-text-grey);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
}

.article-content__table-wrap {
  max-width: 100%;
  margin-top: 24px;
  overflow-x: auto;
}

.article-content table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-background-light-grey);
}

.article-content th,
.article-content td {
  padding: 12px 16px;
  border-top: 1px solid var(--color-stroke-blue);
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
  text-align: left;
}

.article-content tr:first-child th,
.article-content tr:first-child td {
  border-top: 0;
}

.article-content__cta {
  margin-top: 32px;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-background-light-blue);
}

.article-content__cta h3 {
  margin-bottom: 10px;
}

.article-content__cta .button {
  margin-top: 18px;
}

.article-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 20px;
}

.article-info-card {
  min-height: 249px;
  padding: 20px;
}

.article-info-card dl {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 20px 0 0;
}

.article-info-card dl div {
  display: grid;
  min-height: 44px;
  grid-template-columns: 91px minmax(0, 1fr);
  align-items: center;
  border-top: 1px solid var(--color-stroke-light-blue);
}

.article-info-card dl div:first-child {
  border-top: 0;
}

.article-info-card dt,
.article-info-card dd {
  margin: 0;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.article-info-card dd {
  color: var(--color-text-deep-blue);
  text-align: right;
}

.article-info-card__copy {
  width: 100%;
  margin-top: 16px;
  gap: 6px;
  color: var(--color-text-deep-blue);
  background: var(--color-background-blue-sky);
  box-shadow: none;
}

.article-info-card__copy img {
  width: 16px;
  height: 16px;
}

.article-info-card__status {
  min-height: 15px;
  margin-top: 8px;
  color: var(--color-text-grey);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
  text-align: center;
}

.article-info-card__status:empty {
  display: none;
}

.article-author-card {
  min-height: 171px;
  padding: 20px;
}

.article-author-card__person {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.article-author-card__person img {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  object-fit: cover;
}

.article-author-card__person div {
  min-width: 0;
}

.article-author-card__person strong,
.article-author-card__person span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-author-card__person strong {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h6-font-size);
  font-weight: var(--typography-h6-font-weight);
  line-height: var(--typography-h6-line-height);
}

.article-author-card__person span {
  margin-top: 4px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.article-author-card > p {
  margin-top: 14px;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
}

.related-news {
  min-height: 634px;
  padding: 72px 0 48px;
  overflow: hidden;
  border-radius: 20px;
}

.related-news__head .tag {
  display: none;
}

.related-news__grid {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.related-news__grid::-webkit-scrollbar {
  display: none;
}

.related-news__grid .blog-card {
  flex: 0 0 calc((100% - 36px) / 4);
  scroll-snap-align: start;
}

.related-news__controls {
  margin-top: 24px;
}

.related-news__controls button {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
  transition: transform 220ms var(--motion-ease), background-color 220ms ease;
}

.related-news__controls button:hover {
  transform: translateY(-2px);
  background: var(--color-background-blue-sky);
}

.related-news__controls button:disabled {
  cursor: default;
  opacity: 0.45;
  transform: none;
}

.related-news__controls img {
  width: 24px;
  height: 24px;
}

@media (hover: none) and (max-width: 1024px) {
  .blog-card__media {
    height: 85px;
  }

  .blog-card__body {
    height: 263px;
  }

  .blog-card__excerpt {
    max-height: 40px;
    margin-top: 8px;
    opacity: 1;
  }

  .blog-card__actions {
    max-height: none;
    margin-top: 14px;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: none;
  }
}

.mini-cta__panel {
  position: relative;
  display: flex;
  min-height: 101px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-background-blue);
}

.mini-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -34%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  pointer-events: none;
}

.mini-cta__panel > * {
  position: relative;
  z-index: 1;
}

.mini-cta h2 {
  font-size: var(--typography-h4-font-size);
  line-height: var(--typography-h4-line-height);
}

.mini-cta p {
  margin-top: 4px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.price-panel {
  min-height: 1348px;
  padding: 64px 48px 48px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0) 38%),
    var(--color-background-light-blue);
}

.price-panel__head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 386px);
  gap: 48px;
  align-items: end;
}

.price-panel__head h2 {
  margin-top: 20px;
}

.price-panel__head p {
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.price-table-wrap {
  margin-top: 40px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--color-text-deep-blue);
}

.price-table th,
.price-table td {
  height: 64px;
  padding: 12px 24px;
  text-align: left;
  vertical-align: middle;
}

.price-table th {
  font-size: var(--typography-h4-font-size);
  font-weight: var(--typography-h4-font-weight);
  line-height: var(--typography-h4-line-height);
}

.price-table th:last-child,
.price-table td:last-child {
  width: 168px;
  text-align: left;
  white-space: nowrap;
}

.price-table td {
  border-top: 1px solid var(--color-stroke-blue);
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.price-table tbody tr:nth-child(even) {
  background: var(--color-background-light-grey);
}

.price-table tbody tr {
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.price-table tbody tr:hover {
  background: rgba(188, 214, 255, 0.34);
  box-shadow: inset 3px 0 0 var(--color-background-blue-sky);
}

.service-includes {
  min-height: 465px;
}

.include-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
  padding: 32px;
  border-radius: 24px;
  background: var(--color-background-light-grey);
}

.include-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon text"
    "tag tag";
  gap: 8px 16px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: var(--color-background-white);
  transition: box-shadow 260ms ease, transform 260ms var(--motion-ease);
}

.include-card img {
  grid-area: icon;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50%;
  background: var(--color-background-light-blue);
  transform-origin: center;
  transition: background-color 220ms ease, transform 260ms var(--motion-ease);
}

.include-card h3 {
  grid-area: title;
}

.include-card p {
  grid-area: text;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.include-card .tag {
  grid-area: tag;
  margin-top: 6px;
}

.service-relink__panel {
  min-height: 186px;
  padding: 40px 48px;
  border-radius: 24px;
  background: var(--color-background-light-blue);
}

.service-relink__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-relink__links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 4px 20px;
  border-radius: 999px;
  color: var(--color-text-grey);
  background: var(--color-background-white);
  box-shadow: inset 0 0 16px rgba(190, 201, 227, 0.78);
  font-size: var(--typography-button-m-font-size);
  line-height: var(--typography-button-m-line-height);
  transition: color 220ms ease, background-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--motion-ease);
}

.service-hero {
  min-height: 1030px;
  padding: 132px 0 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 88%, rgba(255, 234, 224, 0.92) 0, rgba(255, 234, 224, 0) 27%),
    radial-gradient(circle at 85% 26%, rgba(255, 234, 224, 0.56) 0, rgba(255, 234, 224, 0) 28%),
    linear-gradient(0deg, #ffffff 0%, #e7f0ff 24%, #6a85d3 62%, #3d55bc 100%);
}

.service-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-hero h1 {
  max-width: 920px;
  margin-top: 17px;
  text-align: center;
}

.service-hero__lead {
  max-width: 800px;
  margin-top: 16px;
  color: var(--color-text-white);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.service-hero__actions {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 8px;
  border-radius: 999px;
  background: var(--color-background-white);
}

.service-hero__actions strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 4px 18px;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h3-font-size);
  font-weight: 500;
  line-height: var(--typography-h3-line-height);
  white-space: nowrap;
}

.service-hero__actions .button {
  min-width: 208px;
  box-shadow: none;
  white-space: nowrap;
}

.service-hero__actions .button--light {
  border: 1px solid var(--color-stroke-blue);
  background: var(--color-background-white);
}

.service-hero__actions .button--primary {
  color: var(--color-text-deep-blue);
  background: var(--color-background-blue-sky);
}

.service-hero__image {
  width: 100%;
  height: 512px;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 20px;
}

.service-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-description {
  margin-top: 32px;
}

.service-description__panel {
  min-height: 398px;
  padding: 48px;
  border-radius: 24px;
  background: var(--color-background-light-blue);
}

.service-description__panel h2 {
  max-width: 100%;
}

.service-description__panel p,
.service-description__panel li {
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.service-description__panel p {
  margin-top: 24px;
}

.service-description__panel p + p {
  margin-top: 12px;
}

.service-description__content {
  margin-top: 24px;
}

.service-description__content p {
  margin-top: 0;
}

.service-description__note {
  margin-top: 24px;
}

.service-description__panel ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 0;
  padding: 0 0 0 28px;
}

.service-description__panel strong {
  font-weight: 500;
}

.service-price__panel {
  display: grid;
  min-height: 495px;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 80px;
  padding: 56px 48px 48px;
  border-radius: 24px;
  background: var(--gradient-linear-2);
}

.service-price__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-price__copy .tag {
  box-shadow: inset 0 0 16px var(--color-stroke-blue);
}

.service-price__copy h2 {
  max-width: 360px;
  margin-top: 24px;
}

.service-price__copy p {
  max-width: 380px;
  margin-top: 16px;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.service-price__copy .button {
  margin-top: auto;
  border: 1px solid var(--color-stroke-blue);
  box-shadow: none;
}

.service-price__list {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding-top: 0;
}

.service-price-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 118px;
  padding: 0 0 34px;
  border-bottom: 1px solid var(--color-stroke-blue);
}

.service-price-item + .service-price-item {
  padding-top: 34px;
}

.service-price-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.service-price-item__icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-background-white);
  box-shadow: var(--effect-inner-shadow);
}

.service-price-item__icon img {
  width: 24px;
  height: 24px;
}

.service-price-item h3 {
  min-height: 0;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h4-font-size);
  line-height: var(--typography-h4-line-height);
}

.service-price-item h3 span {
  color: var(--color-text-grey);
  font-weight: 400;
}

.service-price-item p {
  margin-top: 24px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.equipment {
  min-height: 307px;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.equipment-card,
.symptom-card {
  min-width: 0;
  border-radius: 20px;
}

.equipment-card {
  min-height: 179px;
  padding: 20px;
  border: 1px solid var(--color-stroke-light-blue);
  background: var(--color-background-white);
}

.equipment-card__icon,
.symptom-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--color-background-light-blue);
  box-shadow: inset 0 0 16px var(--color-stroke-blue);
}

.equipment-card__icon {
  background: var(--color-background-white);
  box-shadow: 0 8px 18px rgba(76, 109, 166, 0.18);
}

.equipment-card__icon img,
.symptom-card__icon img {
  width: 20px;
  height: 20px;
}

.equipment-card__icon img {
  width: 18px;
  height: 18px;
}

.equipment-card h3,
.symptom-card h3 {
  margin-top: 18px;
  min-height: 0;
}

.equipment-card p,
.symptom-card p {
  margin-top: 8px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.symptoms {
  min-height: 591px;
}

.symptoms .section-heading {
  gap: 16px;
}

.symptoms .section-heading h2 {
  max-width: 760px;
}

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.symptom-card {
  display: grid;
  min-height: 146px;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "text text";
  gap: 8px 16px;
  align-items: start;
  padding: 20px;
  background: var(--color-background-light-blue);
}

.symptom-card__icon {
  grid-area: icon;
}

.symptom-card h3 {
  grid-area: title;
  align-self: center;
  margin-top: 0;
}

.symptom-card p {
  grid-area: text;
}

.symptoms-cta {
  display: flex;
  min-height: 101px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 32px;
  border-radius: 24px;
  background: var(--color-background-blue);
}

.symptoms-cta h3 {
  min-height: 0;
}

.symptoms-cta p {
  margin-top: 4px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.symptoms-cta .button {
  gap: 8px;
  min-width: 220px;
  box-shadow: none;
  white-space: nowrap;
}

.symptoms-cta .button img {
  width: 16px;
  height: 16px;
}

.related-services {
  min-height: 688px;
  padding: 72px 0;
  border-radius: 24px;
}

.related-services .section-heading {
  gap: 16px;
}

.related-services .section-heading p {
  max-width: 720px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.related-services__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
}

html.motion-ready .price-table tbody tr.reveal-on-scroll {
  scale: 1;
  translate: 18px 0;
}

html.motion-ready .price-table tbody tr.reveal-on-scroll.is-visible {
  translate: 0 0;
}

html.motion-ready .include-card.reveal-on-scroll {
  transition:
    opacity 620ms var(--motion-ease-soft),
    translate 760ms var(--motion-ease),
    scale 760ms var(--motion-ease),
    transform 260ms var(--motion-ease),
    box-shadow 260ms ease;
}

html.motion-ready .service-relink__links a.reveal-on-scroll {
  transition:
    opacity 620ms var(--motion-ease-soft),
    translate 760ms var(--motion-ease),
    scale 760ms var(--motion-ease),
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--motion-ease);
}

html.motion-ready .mini-cta__panel.is-visible::before {
  opacity: 1;
  animation: panelSheen 1100ms 180ms var(--motion-ease) both;
}

html.motion-ready .price-panel.is-visible {
  animation: pricePanelGlow 1200ms 120ms var(--motion-ease) both;
}

html.motion-ready .include-card.reveal-on-scroll {
  transform-origin: 50% 100%;
}

html.motion-ready .include-card.is-visible img {
  animation: iconPop 520ms var(--motion-ease) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 130ms);
}

@media (hover: hover) and (pointer: fine) {
  .include-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--motion-shadow-hover);
  }

  .include-card:hover img {
    background: var(--color-background-blue-sky);
    transform: scale(1.08);
  }

  .service-relink__links a:hover {
    color: var(--color-text-deep-blue);
    background: var(--color-background-blue-sky);
    box-shadow: 0 12px 28px rgba(76, 109, 166, 0.16);
    transform: translateY(-3px);
  }
}

.license-panel {
  position: relative;
  display: flex;
  height: 420px;
  min-height: 420px;
  align-items: center;
  gap: 12px;
}

.license-panel__copy {
  display: flex;
  width: 526px;
  height: 420px;
  min-height: 420px;
  flex: 0 0 526px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
  padding: 48px;
  overflow: hidden;
  border: 1px solid var(--color-stroke-light-blue);
  border-radius: 24px;
  background: var(--color-background-light-blue);
}

.license-panel__copy h2 {
  max-width: 100%;
  letter-spacing: 0;
}

.license-panel__copy p {
  max-width: 100%;
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.license-panel__copy .button {
  margin-top: auto;
  box-shadow: none;
}

.license-panel__documents {
  position: relative;
  min-width: 0;
  height: 420px;
  flex: 1 1 auto;
  overflow: hidden;
  border: 1px solid var(--color-stroke-light-blue);
  border-radius: 24px;
  background: var(--gradient-linear-2);
}

.license-panel__document {
  position: absolute;
  display: flex;
  width: 294px;
  height: 420px;
  padding: 8px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-background-white);
  box-shadow: 0 12.268px 31.896px rgba(76, 109, 166, 0.14);
  cursor: zoom-in;
}

.license-panel__document img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.license-panel__document--appendix {
  z-index: 2;
  top: 47.83px;
  left: 127px;
}

.license-panel__document--main {
  top: 58.83px;
  left: 305.17px;
  transform: rotate(5deg);
  transform-origin: center;
}

.partners {
  min-height: 209px;
}

.partners__strip {
  width: 100%;
  height: 96px;
  margin-top: 17px;
  object-fit: cover;
}

.partners-marquee {
  position: relative;
  width: 100%;
  height: 96px;
  margin-top: 17px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

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

.partners-marquee:focus-visible {
  outline: 2px solid rgba(227, 28, 35, 0.32);
  outline-offset: 8px;
  border-radius: 18px;
}

.partners-marquee.is-dragging {
  cursor: grabbing;
}

.partners-marquee__track {
  display: flex;
  width: max-content;
  height: 100%;
}

.partners-marquee__track img {
  display: block;
  flex: 0 0 auto;
  width: 1280px;
  height: 96px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.brigade {
  height: 628px;
}

.brigade .section-heading {
  gap: 16px;
}

.brigade .section-heading > .tag {
  height: 32px;
  min-height: 32px;
  padding: 0 12px;
}

.section-heading__text {
  display: flex;
  width: 100%;
  max-width: 800px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.brigade .section-heading p {
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.brigade-grid {
  display: flex;
  height: 448px;
  gap: 12px;
  margin-top: 40px;
  padding: 12px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-background-light-grey);
}

.brigade-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-stroke-light-blue);
  border-radius: 20px;
  background: var(--color-background-white);
}

.brigade-card--featured {
  display: flex;
  width: 397px;
  height: 424px;
  flex: 0 0 397px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  background:
    radial-gradient(circle at 0 50%, rgba(255, 234, 224, 0.8) 0, rgba(255, 234, 224, 0) 210px),
    radial-gradient(circle at 100% 50%, rgba(255, 234, 224, 0.8) 0, rgba(255, 234, 224, 0) 190px),
    linear-gradient(0deg, #ffffff 0%, #e7f0ff 34.459%, #6a85d3 86.148%, #3d55bc 172.3%);
}

.brigade-card__priority {
  height: 32px;
  min-height: 32px;
  padding: 0 12px;
  box-shadow: inset 0 0 16px var(--color-stroke-blue);
}

.brigade-card__featured-body,
.brigade-card__copy,
.brigade-card__main {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

.brigade-card__featured-body {
  gap: 20px;
}

.brigade-card__copy,
.brigade-card__main {
  gap: 12px;
}

.brigade-grid__cards {
  display: grid;
  min-width: 0;
  flex: 1 1 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.brigade-card--compact {
  display: flex;
  min-height: 206px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.brigade-card__icon {
  --brigade-icon-color: var(--color-icon-deep-blue);
  --brigade-icon-url: none;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  padding: 12px;
  overflow: hidden;
  border-radius: 12px;
}

.brigade-card__icon::before {
  width: 20px;
  height: 20px;
  background: var(--brigade-icon-color);
  content: "";
  mask: var(--brigade-icon-url) center / contain no-repeat;
  -webkit-mask: var(--brigade-icon-url) center / contain no-repeat;
}

.brigade-card__icon--white {
  --brigade-icon-url: url("../icons/timer-flash-line.svg");
  background: var(--color-background-white);
}

.brigade-card__icon--mint {
  --brigade-icon-color: var(--color-icon-mint);
  --brigade-icon-url: url("../icons/heart-pulse-line.svg");
  background: var(--color-background-light-mint);
}

.brigade-card__icon--purple {
  --brigade-icon-color: var(--color-icon-purple);
  --brigade-icon-url: url("../icons/doctor-help.svg");
  background: var(--color-background-light-purple);
}

.brigade-card__icon--beige {
  --brigade-icon-color: var(--color-icon-beige);
  --brigade-icon-url: url("../icons/stethoscope-line.svg");
  background: var(--color-background-light-beige);
}

.brigade-card__icon--green {
  --brigade-icon-color: var(--color-icon-green);
  --brigade-icon-url: url("../icons/pram.svg");
  background: var(--color-background-light-green);
}

.brigade-card__icon img {
  display: none;
}

.brigade-card h3 {
  margin: 0;
  font-size: var(--typography-h4-font-size);
  font-weight: var(--typography-h4-font-weight);
  line-height: var(--typography-h4-line-height);
}

.brigade-card--featured h3 {
  font-size: var(--typography-h3-font-size);
  line-height: var(--typography-h3-line-height);
}

.brigade-card--featured h3 span {
  display: block;
}

.brigade-card__head {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
}

.brigade-card p {
  max-width: 100%;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.brigade-card--featured p {
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.brigade-card__footer {
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid var(--color-stroke-light-blue);
}

.brigade-card__badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 40px;
  color: var(--color-text-grey);
  background: var(--color-background-light-grey);
  font-size: var(--typography-h6-font-size);
  font-weight: var(--typography-h6-font-weight);
  line-height: var(--typography-h6-line-height);
  white-space: nowrap;
}

.team {
  min-height: 773px;
  padding: 72px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.team-card {
  min-width: 0;
  min-height: 435px;
  padding: 8px;
  border-radius: 8px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.team-card img {
  width: 100%;
  height: 332px;
  border-radius: 6px;
  object-fit: cover;
}

.team-card h3 {
  margin: 20px 12px 0;
}

.team-card p {
  margin: 6px 12px 0;
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.about-hero {
  min-height: 1025px;
  padding: 134px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.74) 79%, #ffffff 100%),
    linear-gradient(180deg, #6a85d3 0%, #b5c3e7 46%, #f4f8ff 100%);
}

.about-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-hero h1 {
  max-width: 940px;
  margin-top: 16px;
}

.about-hero__lead {
  max-width: 790px;
  margin-top: 14px;
  color: var(--color-text-white);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.about-hero__image {
  width: 100%;
  height: 512px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 26px 68px rgba(76, 109, 166, 0.14);
}

.about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__numbers {
  width: 100%;
  margin-top: 80px;
  text-align: left;
}

.about-gallery {
  min-height: 682px;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 384px) minmax(0, 490px) minmax(0, 384px);
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  overflow: hidden;
}

.about-gallery__image {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  transform-origin: center;
  transition:
    opacity 260ms ease,
    transform 360ms var(--motion-ease),
    height 360ms var(--motion-ease),
    box-shadow 300ms ease;
}

.about-gallery__image--side {
  height: 384px;
  opacity: 0.96;
}

.about-gallery__image--main {
  height: 490px;
  opacity: 1;
  box-shadow: var(--effect-drop-shadow);
}

.about-gallery__image--previous {
  transform: translateX(0) scale(0.995);
}

.about-gallery__image--next {
  transform: translateX(0) scale(0.995);
}

.about-gallery__image[hidden] {
  display: none;
}

.about-mission__panel,
.about-regions__panel {
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(190, 201, 227, 0.74) 0, rgba(236, 243, 255, 0) 48%),
    var(--color-background-light-blue);
}

.about-mission__panel {
  min-height: 510px;
  padding: 56px 48px;
  border: 1px solid var(--color-stroke-light-blue);
}

.about-mission__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 386px);
  gap: 48px;
  align-items: end;
}

.about-mission__head h2 {
  margin-top: 20px;
}

.about-mission__head p {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 50px;
}

.mission-card {
  display: grid;
  min-height: 126px;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px 16px;
  align-content: start;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-background-white);
}

.mission-card__icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gradient-radial-2);
  box-shadow: var(--effect-inner-shadow);
}

.mission-card__icon img {
  width: 24px;
  height: 24px;
}

.mission-card h3 {
  align-self: center;
}

.mission-card p {
  grid-column: 1 / -1;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.about-regions__panel {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1fr) 568px;
  gap: 56px;
  padding: 56px 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(236, 243, 255, 0.66) 100%),
    #aec7f3;
}

.about-regions__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.about-regions__copy h2 {
  max-width: 480px;
  margin-top: 20px;
}

.about-regions__copy p {
  max-width: 500px;
  margin-top: 14px;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.about-regions__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding-bottom: 1px;
}

.about-regions__chips span,
.trust-cta__chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid rgba(190, 201, 227, 0.62);
  border-radius: 999px;
  color: var(--color-text-grey);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: var(--effect-inner-shadow), var(--effect-drop-shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.about-regions__map {
  position: relative;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-background-light-blue);
}

.about-regions__map::before,
.about-regions__map::after {
  display: none;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.about-regions__map::before {
  content: "";
  top: 50%;
  left: 51%;
  width: 36px;
  height: 36px;
  border: 6px solid var(--color-background-white);
  border-radius: 50% 50% 50% 4px;
  background: var(--color-background-red);
  box-shadow: 0 8px 22px rgba(215, 36, 42, 0.28);
  transform: translate(-50%, -100%) rotate(-45deg);
}

.about-regions__map::after {
  content: "Московская область";
  top: calc(50% - 46px);
  left: calc(51% + 24px);
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--color-text-deep-blue);
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
  font-size: var(--typography-h6-font-size);
  font-weight: var(--typography-h6-font-weight);
  line-height: var(--typography-h6-line-height);
  white-space: nowrap;
}

.about-regions__map img,
.about-regions__map iframe {
  width: 100%;
  height: 100%;
}

.about-regions__map img {
  object-fit: cover;
}

.about-regions__map iframe {
  display: block;
  border: 0;
}

.contacts-hero {
  min-height: 930px;
  padding: 132px 0 96px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.82) 86%, #ffffff 100%),
    linear-gradient(180deg, #6a85d3 0%, #aebee6 51%, #f6faff 100%);
}

.contacts-hero__head {
  display: flex;
  min-height: 94px;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  margin-bottom: 48px;
  text-align: center;
}

.contacts-hero h1 {
  color: var(--color-text-white);
  text-align: center;
}

.contacts-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 528px) minmax(0, 740px);
  gap: 12px;
  align-items: stretch;
}

.contacts-card,
.contact-form {
  min-width: 0;
  min-height: 632px;
  border: 1px solid rgba(190, 201, 227, 0.58);
  border-radius: 24px;
  box-shadow: var(--effect-drop-shadow);
}

.contacts-card {
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: var(--color-background-white);
}

.contacts-card h2 {
  font-size: var(--typography-h3-font-size);
  line-height: var(--typography-h3-line-height);
}

.contacts-card__requisites {
  margin-top: 20px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.contacts-card__requisites p + p {
  margin-top: 1px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.contacts-list__item {
  display: grid;
  min-height: 88px;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-template-areas:
    "icon value"
    "icon label";
  gap: 2px 20px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--color-stroke-light-blue);
}

.contacts-list__item span {
  display: flex;
  width: 56px;
  height: 56px;
  grid-area: icon;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-radial-2);
  box-shadow: var(--effect-inner-shadow);
}

.contacts-list__item img {
  width: 24px;
  height: 24px;
}

.contacts-list__item strong {
  display: block;
  min-width: 0;
  grid-area: value;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h4-font-size);
  font-weight: var(--typography-h4-font-weight);
  line-height: var(--typography-h4-line-height);
}

.contacts-list__item small {
  display: block;
  grid-area: label;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 100%),
    var(--color-background-light-purple);
}

.contact-form__head {
  display: flex;
  max-width: 560px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.contact-form__head h2 {
  font-size: var(--typography-h2-font-size);
  line-height: var(--typography-h2-line-height);
}

.contact-form__head p {
  color: var(--color-text-grey);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.contact-form__fields {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form__message {
  grid-column: 1 / -1;
}

.input-field__control--area {
  height: 110px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 20px;
}

.contact-form textarea {
  width: 100%;
  min-height: 78px;
  resize: vertical;
  border: 0;
  outline: 0;
  color: var(--color-text-deep-blue);
  background: transparent;
  font: inherit;
}

.contact-form textarea::placeholder {
  color: var(--color-text-grey);
}

.contact-form__actions {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact-form__button {
  width: 100%;
  box-shadow: none;
}

.contact-form__status {
  min-height: 0;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
  text-align: center;
}

.contact-form__status:empty {
  display: none;
}

.contact-form__divider {
  width: 100%;
  height: 0;
  border-top: 1px solid var(--color-stroke-blue);
}

.contact-form__social {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.contact-form__social > span {
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.contact-form__social div {
  display: flex;
  gap: 12px;
}

.contacts-map {
  min-height: 672px;
}

.contacts-map .section-heading {
  gap: 16px;
}

.contacts-map .section-heading > .tag {
  min-height: 32px;
  padding: 0 12px;
}

.contacts-map h2 {
  max-width: 760px;
}

.contacts-map__frame {
  position: relative;
  height: 440px;
  margin-top: 40px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--color-background-light-blue);
  box-shadow: var(--effect-drop-shadow);
}

.contacts-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contacts-map__pin {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 51%;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 14px 7px 44px;
  border-radius: 999px;
  color: var(--color-text-deep-blue);
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
  font-size: var(--typography-h6-font-size);
  font-weight: var(--typography-h6-font-weight);
  line-height: var(--typography-h6-line-height);
  white-space: nowrap;
  pointer-events: none;
  transform: translate(-8%, -70%);
}

.contacts-map__pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  width: 36px;
  height: 36px;
  border: 6px solid var(--color-background-white);
  border-radius: 50% 50% 50% 4px;
  background: var(--color-background-red);
  box-shadow: 0 8px 22px rgba(215, 36, 42, 0.28);
  transform: translate(-50%, -72%) rotate(-45deg);
}

.contacts-map__fallback {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 16px;
  color: var(--color-text-grey);
  background: rgba(255, 255, 255, 0.9);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
  text-align: center;
  box-shadow: var(--effect-drop-shadow);
}

.contacts-map__fallback a {
  color: var(--color-text-deep-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contacts-map__frame.is-loaded .contacts-map__fallback {
  display: none;
}

.contacts-faq h2 {
  text-align: center;
}

.about-team {
  min-height: 1152px;
  padding: 72px 0;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.team-card--profile {
  position: relative;
  min-height: 432px;
  overflow: hidden;
  border-radius: 24px;
}

.team-card--profile img {
  height: 332px;
  border-radius: 18px;
}

.team-card__badge {
  position: absolute;
  z-index: 1;
  top: 24px;
  left: 24px;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 999px;
  color: var(--color-text-grey);
  background: rgba(236, 243, 255, 0.82);
  box-shadow: var(--effect-inner-shadow);
  font-size: var(--typography-h6-font-size);
  line-height: var(--typography-h6-line-height);
  white-space: nowrap;
}

.license-panel--about .license-panel__copy {
  justify-content: center;
}

.trust-cta__panel {
  position: relative;
  display: flex;
  min-height: 405px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 48px;
  border-radius: 24px;
  background: linear-gradient(180deg, #6a85d3 0%, #d9e6ff 100%);
  text-align: center;
}

.trust-cta h2 {
  max-width: 500px;
  color: var(--color-text-white);
}

.trust-cta p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--color-text-white);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.trust-cta .button {
  gap: 10px;
  margin-top: 40px;
  box-shadow: none;
}

.trust-cta__chip {
  position: absolute;
  color: var(--color-text-white);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.72), 0 10px 26px rgba(76, 109, 166, 0.12);
}

.trust-cta__chip--one {
  top: 60px;
  left: 221px;
}

.trust-cta__chip--two {
  top: 87px;
  right: 142px;
}

.trust-cta__chip--three {
  top: 134px;
  left: 60px;
}

.trust-cta__chip--four {
  bottom: 100px;
  left: 145px;
}

.trust-cta__chip--five {
  right: 68px;
  bottom: 88px;
}

.reviews {
  height: 449px;
  min-height: 449px;
}

.reviews .section-heading {
  gap: 16px;
}

.reviews .section-heading p {
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.review-grid {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.review-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex: 0 0 calc((100% - 24px) / 3);
  height: 268px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-background-white);
  box-shadow: 0 10px 26px rgba(76, 109, 166, 0.14);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.review-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.stars__icon {
  display: block;
  width: 16px;
  height: 16px;
  background: var(--color-icon-purple);
  mask: url("../icons/star-fill.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/star-fill.svg") center / contain no-repeat;
}

.quote-icon {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background: var(--color-icon-light-blue);
  mask: url("../icons/double-quotes-r.svg") center / 40px 40px no-repeat;
  -webkit-mask: url("../icons/double-quotes-r.svg") center / 40px 40px no-repeat;
}

.review-card__text {
  margin-top: 4px;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

.review-card__author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.review-card__author strong,
.review-card__author span {
  display: block;
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.review-card__author strong {
  font-weight: 500;
}

.review-card__author span {
  margin-top: 4px;
  color: var(--color-text-grey);
}

.reviews .icon-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--color-stroke-blue);
  box-shadow: none;
}

.about-usp {
  min-height: 510px;
}

.about-panel {
  min-height: 510px;
  padding: 48px;
  border-radius: 8px;
  background: var(--color-background-light-blue);
}

.about-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 386px;
  gap: 80px;
  align-items: end;
}

.about-panel__head h2 {
  margin-top: 16px;
}

.about-panel__head p {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.usp-card {
  min-height: 116px;
  padding: 16px;
  border-radius: 8px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.usp-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-background-light-blue);
}

.usp-card span img {
  width: 24px;
  height: 24px;
}

.usp-card h3 {
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
}

.usp-card p {
  margin-top: 18px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.steps {
  height: 527px;
  min-height: 527px;
}

.steps .section-heading {
  gap: 16px;
}

.steps .section-heading > .tag {
  height: 32px;
  min-height: 32px;
  padding: 0 12px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.step-card {
  height: 220px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--color-stroke-light-blue);
  border-radius: 24px;
  background: var(--color-background-white);
}

.step-card__number {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--color-text-deep-blue);
  background: var(--color-background-white);
  font-size: var(--typography-h4-font-size);
  line-height: var(--typography-h4-line-height);
  box-shadow: inset 0 0 16px var(--color-stroke-blue);
}

.step-card h3 {
  margin-top: 16px;
  font-size: var(--typography-h4-font-size);
  font-weight: var(--typography-h4-font-weight);
  line-height: var(--typography-h4-line-height);
}

.step-card p {
  margin-top: 8px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.urgent-card {
  position: relative;
  display: flex;
  height: 161px;
  gap: 32px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 0 64px;
  overflow: hidden;
  border-radius: 24px;
  color: var(--color-text-white);
  background: linear-gradient(6.6804010084deg, #efd5d3 0%, #a1bef0 32.212%, #3d55bc 100%);
}

.urgent-card__content {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
}

.urgent-card__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.urgent-card h3 {
  color: var(--color-text-white);
  font-size: var(--typography-h3-font-size);
  font-weight: var(--typography-h3-font-weight);
  line-height: var(--typography-h3-line-height);
}

.urgent-card p {
  color: var(--color-text-light-blue);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.urgent-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.urgent-card .button {
  min-height: 44px;
  padding: 4px 20px;
  box-shadow: none;
}

.urgent-card__phone {
  color: var(--color-text-white);
  background: var(--color-background-deep-blue);
}

.urgent-card__call {
  gap: 8px;
  color: var(--color-text-deep-blue);
  border: 1px solid var(--color-stroke-blue);
  background: var(--color-background-white);
}

.urgent-card__call img {
  position: static;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
}

.urgent-card > img {
  position: absolute;
  right: 51px;
  bottom: -4px;
  width: 380px;
  max-width: none;
  height: 176px;
  object-fit: cover;
  object-position: center 30%;
}

.cta {
  min-height: 739px;
}

.cta-panel {
  position: relative;
  display: flex;
  height: 739px;
  min-height: 739px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 64px 404px;
  border-radius: 24px;
  background:
    linear-gradient(242.5256073203deg, rgba(255, 234, 224, 0) 60.146%, #FFEAE0 99.155%),
    linear-gradient(137.4919277545deg, #70A1ED 0%, #A7C2E9 48%, #FFEAE0 100%);
}

.cta-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 122.525845%;
  background: url("../images/cta-union-86-3695.svg") center top / 100% 100% no-repeat;
  pointer-events: none;
}

.lead-form {
  position: relative;
  z-index: 1;
  display: flex;
  width: 472px;
  min-height: 611px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 40px 40px;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 24px;
  background: var(--gradient-linear-2);
  box-shadow: var(--effect-drop-shadow-2);
}

.lead-form__intro,
.lead-form__body,
.lead-form__fields,
.lead-form__actions-block {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.lead-form__intro {
  align-items: center;
  gap: 16px;
}

.lead-form__body {
  align-items: center;
  gap: 20px;
}

.lead-form__fields,
.lead-form__actions-block {
  gap: 12px;
}

.lead-form__actions-block {
  align-items: center;
}

.lead-form__icon {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  align-self: center;
  border-radius: 50%;
  background: var(--color-background-white);
  box-shadow: var(--effect-inner-shadow);
}

.lead-form__icon img {
  width: 24px;
  height: 24px;
}

.lead-form__head {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.lead-form__head h2 {
  font-size: var(--typography-h3-font-size);
  line-height: var(--typography-h3-line-height);
}

.lead-form__head p {
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-text-grey-2);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
}

.lead-form__head + .input-field {
  margin-top: 0;
}

.input-field__control {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 999px;
  background: var(--color-background-light-grey);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.input-field__control:focus-within {
  border-color: var(--color-stroke-deep-blue);
  box-shadow: 0 0 0 3px rgba(190, 201, 227, 0.4);
}

.input-field--error .input-field__control {
  border-color: var(--color-stroke-red);
}

.input-field__error {
  color: var(--color-background-red);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
}

.input-field__control img {
  width: 16px;
  height: 16px;
}

.input-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--color-text-deep-blue);
  background: transparent;
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.input-field input::placeholder {
  color: var(--color-text-grey);
}

.contact-form .input-field__control--area {
  height: 110px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 20px;
}

.lead-form__button {
  width: 100%;
  box-shadow: none;
}

.lead-form__note {
  color: var(--color-text-grey);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
  text-align: center;
}

.lead-form__note a,
.lead-form__note span {
  color: var(--color-text-deep-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.lead-form__status {
  min-height: 0;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
  text-align: center;
}

.lead-form__status:empty {
  display: none;
}

.lead-form__status--success,
.contact-form__status--success {
  color: var(--color-icon-green);
}

.lead-form__status--error,
.contact-form__status--error {
  color: var(--color-background-red);
}

.lead-form__divider {
  width: 100%;
  height: 0;
  border-top: 1px solid var(--color-stroke-blue);
}

.lead-form__social {
  display: flex;
  height: 79px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lead-form__social span {
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.lead-form__social div {
  display: flex;
  gap: 16px;
}

.lead-form__social .icon-button {
  border: 1px solid var(--color-stroke-light-blue);
  box-shadow: none;
}

.faq {
  min-height: 759px;
}

.faq h2 {
  text-align: center;
}

.faq-list {
  display: flex;
  width: min(846px, 100%);
  flex-direction: column;
  gap: 12px;
  margin: 40px auto 0;
}

.faq-list details {
  padding: 24px;
  border: 1px solid var(--color-stroke-light-blue);
  border-radius: 16px;
  background: var(--color-background-white);
}

.faq-list summary {
  position: relative;
  min-height: 0;
  padding: 0 56px 0 0;
  list-style: none;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h4-font-size);
  line-height: var(--typography-h4-line-height);
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  background: url("../icons/add-circle-fill.svg") center / 24px 24px no-repeat;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  background-image: url("../icons/indeterminate-circle-fill.svg");
}

.faq-list details p {
  margin-top: 8px;
  padding: 0 40px 0 0;
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.site-footer {
  min-height: 626px;
  padding: 40px 0 32px;
  color: var(--color-text-white);
  background: linear-gradient(180deg, #7ea1e9 0%, #82a6ef 100%);
}

.footer-grid {
  display: grid;
  min-height: 554px;
  grid-template-columns: 197px 229px minmax(180px, 1fr) 440px;
  gap: 20px;
}

.footer-column h2 {
  color: var(--color-text-white);
  font-size: var(--typography-text-s-font-size);
  font-weight: 400;
  line-height: var(--typography-text-s-line-height);
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column:first-child {
  grid-column: 1;
  grid-row: 1;
}

.footer-column--services {
  grid-column: 2;
  grid-row: 1;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
}

.footer-column a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 4px 0;
  color: var(--color-text-white);
  font-size: var(--typography-button-m-font-size);
  font-weight: var(--typography-button-m-font-weight);
  line-height: var(--typography-button-m-line-height);
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-brand {
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: end;
}

.footer-contact {
  grid-column: 4;
  grid-row: 1;
}

.footer-brand img {
  width: 143px;
  height: 96px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  width: 143px;
  color: transparent;
  background: linear-gradient(90deg, #0074EB 0%, #00288E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.footer-brand p {
  width: max-content;
  max-width: none;
  margin-top: 12px;
  color: var(--color-text-white);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--color-text-white);
}

.footer-contact__slogan {
  color: var(--color-text-white);
  font-size: var(--typography-h2-font-size);
  font-weight: var(--typography-h2-font-weight);
  line-height: var(--typography-h2-line-height);
  letter-spacing: -0.36px;
}

.footer-contact__avatars {
  display: flex;
  margin-top: 35px;
}

.footer-contact__avatars img {
  width: 48px;
  height: 48px;
  margin-right: -8px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.footer-phone {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 4px 0;
  color: var(--color-text-white);
  font-size: var(--typography-button-m-font-size);
  font-weight: var(--typography-button-m-font-weight);
  line-height: var(--typography-button-m-line-height);
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-contact p:not(.footer-contact__slogan) {
  width: 440px;
  max-width: 100%;
  margin-top: 12px;
  color: var(--color-text-white);
  font-size: var(--typography-text-s-font-size);
  font-weight: var(--typography-text-s-font-weight);
  line-height: var(--typography-text-s-line-height);
  letter-spacing: 0;
}

.header-shell {
  animation: headerDropIn 720ms var(--motion-ease) both;
  transition: border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease, backdrop-filter 240ms ease;
}

.header-shell:hover {
  border-color: rgba(190, 201, 227, 0.82);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 38px rgba(76, 109, 166, 0.14);
}

.site-nav a,
.footer-column a,
.footer-phone,
.service-card__bottom a {
  transition: color 220ms ease, background-color 220ms ease, opacity 220ms ease, transform 220ms var(--motion-ease);
}

.site-nav a:hover,
.footer-column a:hover,
.footer-phone:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.hero {
  background-size: 120% 120%, 120% 120%, 100% 100%;
  animation: heroBreath 16s ease-in-out infinite;
}

.hero__photo,
.photo-band__image {
  animation: softFloat 8s ease-in-out infinite;
  transition: box-shadow 320ms ease, transform 420ms var(--motion-ease), scale 420ms var(--motion-ease);
}

.photo-band__image--two {
  animation-delay: -3.5s;
}

.photo-band__image--three {
  animation-delay: -1.8s;
}

.photo-band__image--four {
  animation-delay: -5.2s;
}

.number-card strong {
  transition: color 520ms var(--motion-ease);
}

.number-card.is-visible strong {
  color: var(--color-text-deep-blue);
}

.service-card,
.brigade-card,
.team-card,
.review-card,
.usp-card,
.step-card,
.urgent-card,
.lead-form,
.license-panel__copy,
.license-panel__documents,
.faq-list details {
  transition: border-color 260ms ease, box-shadow 300ms ease, transform 300ms var(--motion-ease);
}

.service-card__image img,
.team-card img,
.hero__photo img,
.license-panel__document img {
  transition: transform 680ms var(--motion-ease);
  will-change: transform;
}

.service-card__bottom a:hover {
  background: var(--color-background-blue-sky);
  transform: translateY(-1px);
}

.cta-panel::before {
  animation: ctaRaysDrift 18s ease-in-out infinite alternate;
  transform-origin: center;
}

.faq-list details[open] {
  border-color: var(--color-stroke-blue);
  box-shadow: 0 12px 34px rgba(76, 109, 166, 0.12);
}

.faq-list details[open] p {
  animation: faqAnswerIn 280ms var(--motion-ease) both;
}

.faq-list summary::after {
  transition: transform 260ms var(--motion-ease), opacity 220ms ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover,
  .brigade-card:hover,
  .team-card:hover,
  .review-card:hover,
  .usp-card:hover,
  .step-card:hover,
  .urgent-card:hover,
  .lead-form:hover,
  .license-panel__copy:hover,
  .license-panel__documents:hover {
    transform: translateY(-6px);
    box-shadow: var(--motion-shadow-hover);
  }

  .service-card--catalog:hover {
    transform: none;
  }

  .service-card:hover .service-card__image img,
  .team-card:hover img,
  .hero__photo:hover img,
  .license-panel__document:hover img {
    transform: scale(1.045);
  }

  .brigade-card:hover .brigade-card__icon,
  .usp-card:hover span {
    transform: scale(1.05);
  }
}

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

  html.motion-ready .reveal-on-scroll {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@media (max-width: 1240px) {
  .container {
    width: min(100% - 64px, 1120px);
  }

  .header-shell {
    width: calc(100% - 64px);
  }

  .brand {
    min-width: 210px;
  }

  .site-nav {
    gap: 20px;
  }

  .header-actions .icon-button {
    display: none;
  }

  .photo-band__image {
    width: 430px;
    height: 250px;
  }

  .service-card h3,
  .brigade-card h3,
  .usp-card h3 {
    font-size: 18px;
  }

  .services-catalog {
    min-height: auto;
  }

  .blog-index,
  .article-hero {
    min-height: auto;
  }

  .service-hero {
    min-height: auto;
  }

  .service-hero__image {
    height: 448px;
  }

  .about-hero__image {
    height: 448px;
  }

  .about-gallery__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.26fr) minmax(0, 1fr);
  }

  .about-gallery__image--side {
    height: 330px;
  }

  .about-gallery__image--main {
    height: 420px;
  }

  .about-regions__panel {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
    gap: 40px;
  }

  .service-price__panel {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 48px;
  }

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

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

  .contacts-hero__grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  }

  .contacts-card,
  .contact-form {
    min-height: 0;
  }

  .contacts-card {
    padding: 40px 32px;
  }

  .contact-form {
    padding: 40px 32px;
  }

  .article-layout__grid {
    grid-template-columns: 240px minmax(0, 1fr) 240px;
  }

  .article-layout__grid--no-toc {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .article-content {
    padding: 0 28px;
  }

  .related-news__grid .blog-card {
    flex-basis: calc((100% - 24px) / 3);
  }

  .brigade-card--featured h3 {
    font-size: var(--typography-h3-font-size);
  }

  .footer-grid {
    grid-template-columns: 180px 230px minmax(0, 1fr) 360px;
  }
}

@media (max-width: 1024px) {
  .section-space {
    margin-top: 72px;
  }

  .container {
    width: calc(100% - 48px);
  }

  .site-header {
    top: 16px;
  }

  .header-shell {
    position: relative;
    width: calc(100% - 48px);
    padding-left: 18px;
  }

  .site-nav,
  .header-actions {
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    background: var(--color-background-white);
  }

  .header-shell.is-open {
    border-radius: 30px 30px 8px 8px;
  }

  .header-shell.is-open .site-nav,
  .header-shell.is-open .header-actions {
    display: flex;
  }

  .site-nav {
    top: 68px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 8px;
    border-radius: 8px 8px 0 0;
    box-shadow: var(--effect-drop-shadow);
  }

  .header-actions {
    top: 272px;
    justify-content: flex-start;
    padding: 8px 24px 20px;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--effect-drop-shadow);
  }

  .header-actions .icon-button {
    display: inline-flex;
  }

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

  .hero {
    min-height: 860px;
    padding-top: 124px;
  }

  h1 {
    font-size: 40px;
  }

  .about-hero {
    min-height: auto;
    padding: 112px 0 48px;
  }

  .about-hero__image {
    height: 400px;
    margin-top: 40px;
  }

  .about-hero__numbers {
    margin-top: 48px;
  }

  .about-gallery,
  .about-team {
    min-height: auto;
  }

  .about-mission__panel,
  .about-regions__panel {
    padding: 40px 32px;
  }

  .about-mission__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
  }

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

  .about-regions__copy p,
  .about-regions__copy h2 {
    max-width: 720px;
  }

  .about-regions__chips {
    margin-top: 32px;
  }

  .about-regions__map {
    height: 460px;
  }

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

  .trust-cta__chip--one {
    left: 80px;
  }

  .trust-cta__chip--two {
    right: 80px;
  }

  .trust-cta__chip--four {
    left: 80px;
  }

  .trust-cta__chip--five {
    right: 80px;
  }

  .services-catalog {
    padding: 112px 0 40px;
  }

  .blog-index,
  .contacts-hero,
  .article-hero {
    padding: 112px 0 40px;
  }

  .services-catalog__head {
    margin-bottom: 40px;
  }

  .blog-index__head,
  .contacts-hero__head,
  .article-hero__head {
    margin-bottom: 40px;
  }

  .contacts-hero {
    min-height: auto;
  }

  .contacts-hero__grid {
    grid-template-columns: 1fr;
  }

  .contacts-card {
    min-height: 0;
  }

  .contacts-list {
    margin-top: 48px;
  }

  .contact-form {
    min-height: 0;
  }

  .contacts-map {
    min-height: auto;
  }

  .contacts-map__frame {
    height: 380px;
  }

  .article-hero {
    min-height: auto;
  }

  .article-hero__media img {
    height: 380px;
  }

  .article-layout__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-layout__grid--no-toc {
    grid-template-columns: 1fr;
  }

  .article-toc,
  .article-sidebar {
    position: static;
  }

  .article-content {
    order: 2;
    padding: 0;
  }

  .article-toc {
    order: 1;
  }

  .article-sidebar {
    order: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-hero {
    padding: 112px 0 40px;
  }

  .service-hero__lead {
    font-size: var(--typography-text-m-font-size);
    line-height: var(--typography-text-m-line-height);
  }

  .service-hero__actions {
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .service-hero__actions strong,
  .service-hero__actions .button {
    flex: 1 1 210px;
  }

  .service-hero__image {
    height: 380px;
  }

  .service-description__panel {
    min-height: auto;
    padding: 40px 32px;
  }

  .service-price__panel {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 32px;
  }

  .service-price__copy h2,
  .service-price__copy p {
    max-width: 720px;
  }

  .service-price__copy .button {
    margin-top: 24px;
  }

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

  .equipment,
  .symptoms {
    min-height: auto;
  }

  .symptoms-cta {
    align-items: flex-start;
  }

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

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

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

  .mini-cta__panel {
    align-items: flex-start;
  }

  .price-panel {
    min-height: auto;
    padding: 40px 32px;
  }

  .price-panel__head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .include-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px;
  }

  .hero__photo img {
    height: 430px;
  }

  .photo-band {
    min-height: auto;
  }

  .photo-band__inner {
    position: relative;
    top: auto;
    min-height: 660px;
    overflow: hidden;
  }

  .photo-band h2 {
    font-size: 56px;
  }

  .photo-band__image--one {
    top: 60px;
    left: -60px;
  }

  .photo-band__image--two {
    top: 94px;
    right: -60px;
  }

  .photo-band__image--three {
    bottom: 96px;
    left: 8%;
  }

  .photo-band__image--four {
    right: 10%;
    bottom: 56px;
  }

  .numbers__grid,
  .service-grid,
  .team-grid,
  .review-grid,
  .steps-grid,
  .usp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews {
    height: auto;
    min-height: 0;
  }

  .review-card {
    flex-basis: calc((100% - 12px) / 2);
    height: auto;
    min-height: 268px;
  }

  .steps {
    height: auto;
    min-height: 0;
  }

  .step-card {
    height: auto;
    min-height: 220px;
  }

  .brigade-grid {
    height: auto;
    flex-direction: column;
  }

  .brigade {
    height: auto;
  }

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

  .brigade-card--featured {
    width: 100%;
    height: auto;
    min-height: 360px;
    flex-basis: auto;
  }

  .license-panel {
    height: auto;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .license-panel__copy {
    width: 100%;
    height: auto;
    min-height: auto;
    flex: 0 0 auto;
  }

  .license-panel__documents {
    display: block;
    width: 100%;
    height: 360px;
  }

  .license-panel__document {
    width: 246px;
    height: 352px;
  }

  .license-panel__document--appendix {
    top: 36px;
    left: calc(50% - 210px);
  }

  .license-panel__document--main {
    top: 48px;
    left: calc(50% - 28px);
  }

  .about-panel__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .urgent-card {
    height: auto;
    min-height: 210px;
    padding: 24px 280px 24px 32px;
  }

  .urgent-card__actions {
    flex-wrap: wrap;
  }

  .urgent-card__content {
    padding: 0;
  }

  .urgent-card > img {
    right: 24px;
    bottom: 0;
    width: 300px;
    height: auto;
  }

  .cta-panel {
    height: auto;
    padding: 48px 24px;
  }

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

  .footer-brand,
  .footer-contact,
  .footer-column:first-child,
  .footer-column--services {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-contact__slogan {
    font-size: 32px;
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 32px);
  }

  .section-space {
    margin-top: 56px;
  }

  .services-catalog {
    padding: 104px 0 32px;
  }

  .services-catalog__head {
    min-height: 0;
    gap: 14px;
    margin-bottom: 32px;
  }

  .services-catalog h1 {
    font-size: 38px;
  }

  .blog-index,
  .contacts-hero,
  .article-hero {
    padding: 104px 0 32px;
  }

  .blog-index__head,
  .contacts-hero__head,
  .article-hero__head {
    min-height: 0;
    gap: 14px;
    margin-bottom: 32px;
  }

  .blog-index h1,
  .contacts-hero h1,
  .article-hero h1 {
    font-size: 38px;
  }

  .contacts-card,
  .contact-form {
    border-radius: 20px;
  }

  .contacts-card {
    padding: 28px 20px;
  }

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

  .contacts-card__requisites {
    font-size: var(--typography-text-m-font-size);
    line-height: var(--typography-text-m-line-height);
  }

  .contacts-list {
    margin-top: 32px;
  }

  .contacts-list__item {
    min-height: 78px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 2px 14px;
    padding: 14px 0;
  }

  .contacts-list__item span {
    width: 48px;
    height: 48px;
  }

  .contacts-list__item strong {
    font-size: 18px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .contact-form__head h2 {
    font-size: 30px;
  }

  .contact-form__head p {
    font-size: var(--typography-text-m-font-size);
    line-height: var(--typography-text-m-line-height);
  }

  .contact-form__fields {
    grid-template-columns: 1fr;
  }

  .contacts-map__frame {
    height: 320px;
    margin-top: 28px;
    border-radius: 16px;
  }

  .contacts-map__pin {
    left: 50%;
    max-width: calc(100% - 48px);
    overflow: hidden;
    text-overflow: ellipsis;
    transform: translate(-18%, -70%);
  }

  .article-hero__head p {
    font-size: var(--typography-text-m-font-size);
    line-height: var(--typography-text-m-line-height);
  }

  .article-hero__media img {
    height: auto;
    aspect-ratio: 295 / 183;
    border-radius: 18px;
  }

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

  .blog-card {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
  }

  .blog-card:hover,
  .blog-card:focus-within {
    transform: none;
  }

  .blog-card__media,
  .blog-card:hover .blog-card__media,
  .blog-card:focus-within .blog-card__media {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 295 / 183;
  }

  .blog-card__body,
  .blog-card:hover .blog-card__body,
  .blog-card:focus-within .blog-card__body {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    height: auto;
    min-height: 0;
    margin-top: -12px;
  }

  .blog-card__excerpt,
  .blog-card:hover .blog-card__excerpt,
  .blog-card:focus-within .blog-card__excerpt {
    max-height: none;
    margin-top: 8px;
    opacity: 1;
  }

  .blog-card__actions,
  .blog-card:hover .blog-card__actions,
  .blog-card:focus-within .blog-card__actions {
    grid-template-columns: 1fr;
    max-height: none;
    margin-top: 14px;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .article-layout {
    margin-top: 24px;
  }

  .article-toc,
  .article-info-card,
  .article-author-card {
    border-radius: 18px;
  }

  .article-content h2 {
    font-size: 30px;
  }

  .article-content h3 {
    font-size: 22px;
  }

  .article-content p,
  .article-content li {
    font-size: var(--typography-text-m-font-size);
    line-height: var(--typography-text-m-line-height);
  }

  .article-content__figure img {
    height: auto;
    aspect-ratio: 538 / 324;
    border-radius: 16px;
  }

  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .related-news {
    min-height: auto;
    padding: 48px 0 40px;
    border-radius: 18px;
  }

  .related-news__grid {
    gap: 12px;
    margin-top: 28px;
    padding: 0 0 8px;
  }

  .related-news__grid .blog-card {
    flex: 0 0 min(311px, 84vw);
    scroll-snap-align: start;
  }

  .service-hero {
    padding: 104px 0 32px;
  }

  .service-hero h1 {
    margin-top: 14px;
  }

  .service-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .service-hero__actions strong {
    flex: 0 0 auto;
    justify-content: center;
  }

  .service-hero__actions .button {
    flex: 0 0 auto;
    width: 100%;
  }

  .service-hero__image {
    height: 260px;
    margin-top: 32px;
    border-radius: 16px;
  }

  .service-description {
    margin-top: 24px;
  }

  .service-description__panel {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .service-description__panel p {
    margin-top: 18px;
  }

  .service-description__panel ul {
    gap: 12px;
    padding-left: 22px;
  }

  .service-price__panel {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .service-price-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0 24px;
  }

  .service-price-item__icon {
    width: 44px;
    height: 44px;
  }

  .service-price-item h3 span {
    display: block;
    margin-top: 2px;
  }

  .service-price-item p {
    margin-top: 12px;
  }

  .equipment-grid,
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .equipment-card,
  .symptom-card {
    min-height: 0;
  }

  .symptoms-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .symptoms-cta .button {
    width: 100%;
    min-width: 0;
  }

  .related-services {
    min-height: auto;
    padding: 48px 0;
    border-radius: 20px;
  }

  .breadcrumbs ol {
    justify-content: flex-start;
  }

  .service-grid--catalog,
  .include-grid {
    grid-template-columns: 1fr;
  }

  .service-card--catalog {
    height: auto;
    min-height: 0;
  }

  .service-card--catalog .service-card__image,
  .service-card__image--short {
    flex-basis: 190px;
    height: 190px;
  }

  .service-card--catalog .service-card__image--short + .service-card__body {
    min-height: 134px;
  }

  .pagination {
    flex-wrap: wrap;
  }

  .mini-cta__panel {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .mini-cta__panel .button {
    width: 100%;
  }

  .price-panel {
    padding: 28px 16px;
  }

  .price-table,
  .price-table thead,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    padding: 16px;
    border-top: 1px solid var(--color-stroke-blue);
  }

  .price-table td {
    height: auto;
    padding: 0;
    border: 0;
  }

  .price-table td:last-child {
    width: auto;
    margin-top: 10px;
    font-weight: 500;
  }

  .include-grid {
    padding: 16px;
  }

  .include-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .service-relink__panel {
    padding: 28px 20px;
  }

  .service-relink__links {
    flex-direction: column;
    align-items: stretch;
  }

  .header-shell {
    width: calc(100% - 32px);
    height: 56px;
    padding: 4px 8px 4px 16px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand__mark {
    width: 54px;
    height: 36px;
  }

  .brand__name {
    font-size: 18px;
  }

  .site-nav {
    top: 64px;
  }

  .header-actions {
    top: 268px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 32px;
  }

  .hero__inner {
    min-height: 0;
  }

  h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  h2 {
    font-size: 30px;
  }

  .about-hero {
    padding: 104px 0 32px;
  }

  .about-hero h1 {
    margin-top: 14px;
  }

  .about-hero__lead {
    font-size: var(--typography-text-m-font-size);
    line-height: var(--typography-text-m-line-height);
  }

  .about-hero__image {
    height: auto;
    aspect-ratio: 1 / 0.72;
    margin-top: 32px;
    border-radius: 16px;
  }

  .about-hero__numbers {
    margin-top: 36px;
    text-align: center;
  }

  .about-hero__numbers .number-card strong {
    justify-content: center;
  }

  .about-gallery__grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .about-gallery__image--side,
  .about-gallery__image--main {
    height: auto;
    aspect-ratio: 1 / 0.78;
    border-radius: 18px;
  }

  .about-gallery__image--side {
    display: none;
  }

  .about-gallery__image--main {
    display: block;
    animation: teamCardIn 260ms var(--motion-ease) both;
  }

  .about-mission__panel,
  .about-regions__panel {
    padding: 28px 16px;
    border-radius: 20px;
  }

  .about-mission__head p,
  .about-regions__copy p,
  .trust-cta p {
    font-size: var(--typography-text-m-font-size);
    line-height: var(--typography-text-m-line-height);
  }

  .mission-grid,
  .about-team__grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    min-height: 0;
    padding: 18px;
  }

  .about-regions__panel {
    min-height: 0;
    gap: 28px;
  }

  .about-regions__chips {
    gap: 8px;
  }

  .about-regions__chips span {
    min-height: 38px;
    padding: 8px 14px;
  }

  .about-regions__map {
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
  }

  .about-team {
    padding: 48px 0;
  }

  .team-card--profile {
    min-height: 0;
    border-radius: 20px;
  }

  .team-card--profile img {
    border-radius: 16px;
  }

  .team-card__badge {
    top: 20px;
    left: 20px;
  }

  .trust-cta__panel {
    min-height: 0;
    align-items: stretch;
    padding: 32px 20px;
    border-radius: 20px;
  }

  .trust-cta h2,
  .trust-cta p {
    max-width: none;
  }

  .trust-cta h2 {
    text-align: left;
  }

  .trust-cta p {
    margin-top: 18px;
    text-align: left;
  }

  .trust-cta .button {
    width: 100%;
    margin-top: 28px;
  }

  .trust-cta__chip {
    display: none;
  }

  .hero__copy p {
    font-size: 16px;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
  }

  .hero__actions > * {
    width: 100%;
  }

  .hero__photo {
    margin-top: 36px;
  }

  .hero__photo img {
    height: 260px;
  }

  .photo-band__inner {
    min-height: 760px;
    align-items: flex-start;
    padding-top: 24px;
  }

  .photo-band h2 {
    font-size: 42px;
    text-align: left;
  }

  .photo-band__image {
    width: 82%;
    height: auto;
    aspect-ratio: 536 / 312;
  }

  .photo-band__image--one {
    top: 205px;
    left: -16px;
  }

  .photo-band__image--two {
    top: 330px;
    right: -16px;
  }

  .photo-band__image--three {
    top: 472px;
    left: 8px;
    width: 70%;
  }

  .photo-band__image--four {
    top: 590px;
    right: 8px;
    width: 70%;
  }

  .numbers__grid,
  .service-grid,
  .team-grid,
  .review-grid,
  .steps-grid,
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brigade-grid {
    height: auto;
    flex-direction: column;
    gap: 12px;
  }

  .brigade-grid__cards {
    grid-template-columns: 1fr;
  }

  .numbers__grid {
    min-height: 0;
  }

  .number-card strong {
    font-size: 48px;
  }

  .number-card strong span {
    font-size: 30px;
  }

  .services,
  .team {
    padding: 48px 0;
  }

  .service-card__image {
    height: 190px;
  }

  .license-panel {
    height: auto;
    min-height: auto;
  }

  .license-panel__copy {
    padding: 32px 24px;
  }

  .license-panel__documents {
    height: 270px;
  }

  .license-panel__document {
    width: 180px;
    height: 256px;
    border-radius: 16px;
  }

  .license-panel__document--appendix {
    top: 24px;
    left: calc(50% - 150px);
  }

  .license-panel__document--main {
    top: 34px;
    left: calc(50% - 20px);
  }

  .partners__strip {
    height: 72px;
  }

  .partners-marquee {
    height: 72px;
  }

  .partners-marquee__track img {
    width: 960px;
    height: 72px;
  }

  .brigade-card--featured {
    width: 100%;
    height: auto;
    min-height: 340px;
    flex-basis: auto;
  }

  .brigade-card--compact {
    min-height: 0;
  }

  .team-card img {
    height: auto;
    aspect-ratio: 295 / 332;
  }

  .team .team-grid {
    overflow: hidden;
  }

  .team .team-card.is-active {
    animation: teamCardIn 260ms var(--motion-ease) both;
  }

  .review-card {
    flex-basis: min(100%, 420px);
    height: auto;
    min-height: 248px;
  }

  .about-panel {
    padding: 32px 20px;
  }

  .usp-card h3 {
    display: block;
    margin: 14px 0 0;
  }

  .urgent-card {
    height: auto;
    min-height: 360px;
    padding: 24px;
  }

  .urgent-card__content {
    position: relative;
    z-index: 1;
  }

  .urgent-card > img {
    right: -20px;
    bottom: 0;
    width: 280px;
    height: auto;
  }

  .urgent-card__actions {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 112px;
  }

  .cta-panel {
    min-height: auto;
    padding: 32px 16px;
  }

  .lead-form {
    width: 100%;
    min-height: auto;
    padding: 28px 20px 24px;
  }

  .faq-list summary {
    min-height: 0;
    padding: 0 40px 0 0;
    font-size: 18px;
  }

  .faq-list summary::after {
    top: 50%;
    right: 0;
  }

  .faq-list details p {
    padding: 0 40px 0 0;
    font-size: 14px;
  }

  .site-footer {
    padding: 32px 0;
  }

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

  .footer-contact__slogan {
    font-size: 30px;
  }

  .footer-brand p,
  .footer-contact p:not(.footer-contact__slogan) {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .footer-phone {
    margin-top: 24px;
  }
}

@media (max-width: 420px) {
  .hero__photo img {
    height: 220px;
  }

  .photo-band h2 {
    font-size: 36px;
  }

  .service-card__image {
    height: 156px;
  }

  .button {
    width: 100%;
  }

  .header-call,
  .header-actions .icon-button,
  .slider-controls .icon-button,
  .lead-form__social .icon-button {
    width: 44px;
  }
}

/* 404 page */
.error-hero {
  height: 704px;
  min-height: 704px;
  padding: 132px 80px 48px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background:
    radial-gradient(ellipse 85% 145% at 50% -10%, #3d55bc 27.5%, #a7c2e9 72.6%, #ffeae0 100%);
}

.error-hero__content {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.error-page .error-hero .breadcrumbs ol {
  min-height: 28px;
  gap: 2px;
  padding: 0 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.error-page .error-hero .breadcrumbs li {
  gap: 4px;
}

.error-page .error-hero .breadcrumbs li:first-child::before,
.error-page .error-hero .breadcrumbs li + li::before {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.error-page .error-hero .breadcrumbs li[aria-current="page"] {
  color: var(--color-text-blue);
}

.error-hero__body {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.error-hero__illustration {
  width: 449px;
  height: 280px;
  max-width: 100%;
  object-fit: contain;
}

.error-hero__copy {
  display: flex;
  width: min(800px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  text-align: center;
}

.error-hero__text {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.error-hero h1 {
  max-width: 800px;
  color: var(--color-text-white);
  font-size: var(--typography-h1-font-size);
  font-weight: var(--typography-h1-font-weight);
  line-height: var(--typography-h1-line-height);
  letter-spacing: var(--typography-h1-letter-spacing);
  text-align: center;
}

.error-hero__text p {
  max-width: 800px;
  color: var(--color-text-light-grey);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.error-hero__button {
  min-width: 176px;
  gap: 8px;
  box-shadow: none;
}

.error-hero__button-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: currentColor;
  mask: url("../icons/home-7-line.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/home-7-line.svg") center / contain no-repeat;
}

.error-page .site-footer {
  border-radius: 24px 24px 0 0;
  background: linear-gradient(22deg, #efd5d3 0%, #a1bef0 32.2%, #3d55bc 100%);
}

.error-page .footer-grid {
  grid-template-columns: 197px 521px 440px;
}

.error-page .footer-contact {
  grid-column: 3;
}

.error-page a:focus-visible,
.error-page button:focus-visible {
  outline: 2px solid var(--color-text-white);
  outline-offset: 3px;
}

@media (max-width: 1240px) {
  .error-page .footer-grid {
    grid-template-columns: 180px minmax(230px, 1fr) 360px;
  }
}

@media (max-width: 1024px) {
  .error-hero {
    height: auto;
    min-height: 680px;
    padding: 112px 24px 40px;
  }

  .error-hero__content {
    height: auto;
  }

  .error-hero__illustration {
    width: min(400px, 100%);
    height: auto;
  }

  .error-hero h1 {
    font-size: 40px;
  }

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

  .error-page .footer-contact {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .error-hero {
    min-height: 620px;
    padding: 104px 16px 32px;
    border-radius: 0 0 20px 20px;
    background:
      radial-gradient(ellipse 130% 120% at 50% 0%, #3d55bc 20%, #a7c2e9 70%, #ffeae0 100%);
  }

  .error-hero__illustration {
    width: min(360px, 100%);
  }

  .error-hero__copy {
    gap: 24px;
    padding-bottom: 16px;
  }

  .error-hero h1 {
    font-size: 36px;
  }

  .error-hero__text p {
    font-size: var(--typography-text-m-font-size);
  }

  .error-page .site-footer {
    border-radius: 20px 20px 0 0;
  }

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

@media (max-width: 420px) {
  .error-hero {
    min-height: 580px;
  }

  .error-hero h1 {
    font-size: 32px;
  }

  .error-page .error-hero__button {
    width: auto;
  }
}

/* Cookie notice */
.cookie-banner {
  position: fixed;
  z-index: 80;
  left: 24px;
  bottom: 24px;
  display: grid;
  width: min(560px, calc(100% - 48px));
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(190, 201, 227, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 58px rgba(76, 109, 166, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 280ms var(--motion-ease);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner__icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-background-blue-sky);
  box-shadow: inset 0 0 16px var(--color-stroke-blue);
}

.cookie-banner__icon img {
  width: 22px;
  height: 22px;
}

.cookie-banner__copy {
  min-width: 0;
}

.cookie-banner__copy strong {
  display: block;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-m-font-size);
  font-weight: 600;
  line-height: var(--typography-text-m-line-height);
}

.cookie-banner__copy p {
  margin-top: 4px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.cookie-banner__copy a {
  color: var(--color-text-deep-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cookie-banner__button {
  min-width: 112px;
  box-shadow: none;
}

.cookie-banner__button:focus-visible,
.cookie-banner__copy a:focus-visible {
  outline: 2px solid var(--color-background-deep-blue);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .cookie-banner__icon {
    width: 40px;
    height: 40px;
  }

  .cookie-banner__button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* Request modals */
.site-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 11, 51, 0.38);
  opacity: 1;
  transition: opacity 180ms ease;
}

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

.site-modal__panel {
  position: relative;
  display: flex;
  width: min(404px, 100%);
  max-height: calc(100dvh - 48px);
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  overflow-y: auto;
  padding: 32px 40px 40px;
  border: 0;
  border-radius: 24px;
  background: var(--gradient-linear-2);
  box-shadow: inset 0 0 0 1px var(--color-stroke-blue), var(--effect-drop-shadow-2);
  overscroll-behavior: contain;
}

.site-modal__panel--service {
  padding-top: 40px;
}

.site-modal--image {
  z-index: 130;
  padding: 24px;
  background: rgba(0, 11, 51, 0.64);
}

.site-modal__panel--image {
  width: min(920px, 100%);
  max-height: calc(100dvh - 48px);
  gap: 12px;
  overflow: hidden;
  padding: 48px 18px 18px;
  background: var(--color-background-white);
  box-shadow: 0 24px 72px rgba(0, 11, 51, 0.28);
}

.site-modal--image .site-modal__close {
  top: 8px;
  right: 8px;
  color: var(--color-icon-deep-blue);
  background: var(--color-background-blue-sky);
  box-shadow: var(--effect-inner-shadow);
}

.site-modal__image {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 132px);
  object-fit: contain;
  border-radius: 18px;
  background: var(--color-background-light-grey);
}

.site-modal__caption {
  color: var(--color-text-grey);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
  text-align: center;
}

.site-modal__caption[hidden] {
  display: none;
}

.site-modal__close {
  position: absolute;
  z-index: 2;
  top: 3px;
  right: 3px;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 50%;
  color: var(--color-icon-grey);
  background: transparent;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--motion-ease);
}

.site-modal__close::before {
  content: "";
  width: 16px;
  height: 16px;
  background: currentColor;
  mask: url("../icons/close-large-fill.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/close-large-fill.svg") center / contain no-repeat;
}

.site-modal__close:hover {
  color: var(--color-icon-deep-blue);
  background: rgba(255, 255, 255, 0.42);
  transform: rotate(5deg);
}

.site-modal__intro {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.site-modal__icon {
  display: flex;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-icon-deep-blue);
  background: var(--color-background-white);
  box-shadow: var(--effect-inner-shadow);
}

.site-modal__icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.site-modal__icon--request::before {
  mask-image: url("../icons/customer-service-line.svg");
  -webkit-mask-image: url("../icons/customer-service-line.svg");
}

.site-modal__icon--success {
  color: var(--color-icon-green);
}

.site-modal__icon--success::before {
  mask-image: url("../icons/checkbox-circle-line.svg");
  -webkit-mask-image: url("../icons/checkbox-circle-line.svg");
}

.site-modal__icon--error {
  color: var(--color-icon-pink);
}

.site-modal__icon--error::before {
  mask-image: url("../icons/error-warning-line.svg");
  -webkit-mask-image: url("../icons/error-warning-line.svg");
}

.site-modal__heading {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.site-modal__heading h2 {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h3-font-size);
  font-weight: var(--typography-h3-font-weight);
  line-height: var(--typography-h3-line-height);
}

.site-modal__heading p {
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.site-modal__form,
.site-modal__form-fields,
.site-modal__form-actions,
.site-modal__result-actions {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.site-modal__form {
  gap: 20px;
}

.site-modal__form-fields,
.site-modal__form-actions,
.site-modal__result-actions {
  gap: 12px;
}

.site-modal__form-actions {
  align-items: center;
}

.site-modal__result-actions > [hidden],
[data-form-result][hidden] {
  display: none !important;
}

.site-modal__field {
  display: flex;
  width: 100%;
  min-height: 66px;
  flex-direction: column;
  gap: 8px;
  color: var(--color-text-grey-2);
  font-size: var(--typography-caption-font-size);
  line-height: var(--typography-caption-line-height);
}

.site-modal__control {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 999px;
  background: var(--color-background-light-grey);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-modal__control::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: var(--color-icon-grey);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.site-modal__control--name::before {
  mask-image: url("../icons/user-3-fill.svg");
  -webkit-mask-image: url("../icons/user-3-fill.svg");
}

.site-modal__control--phone::before {
  mask-image: url("../icons/phone-fill.svg");
  -webkit-mask-image: url("../icons/phone-fill.svg");
}

.site-modal__control:focus-within {
  border-color: var(--color-stroke-deep-blue);
  box-shadow: 0 0 0 3px rgba(190, 201, 227, 0.4);
}

.site-modal__field.is-invalid .site-modal__control {
  border-color: var(--color-stroke-red);
}

.site-modal__control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--color-text-deep-blue);
  background: transparent;
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.site-modal__control input::placeholder {
  color: var(--color-text-grey);
  opacity: 1;
}

.site-modal__submit,
.site-modal__result-button {
  width: 100%;
  min-height: 44px;
  box-shadow: none;
}

.site-modal__submit[disabled] {
  cursor: wait;
  opacity: 0.68;
}

.site-modal__note {
  color: var(--color-text-grey);
  font-size: var(--typography-caption-font-size);
  line-height: 14px;
  text-align: center;
}

.site-modal__note a {
  color: var(--color-text-deep-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.site-modal__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 18px;
  color: var(--color-text-deep-blue);
  background: rgba(255, 255, 255, 0.58);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
  text-align: center;
}

.site-modal__message .site-modal__icon {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}

.site-modal__message--success {
  border-color: rgba(81, 171, 119, 0.36);
}

.site-modal__message--error {
  border-color: rgba(221, 86, 98, 0.36);
}

.site-modal__result-button {
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
  border: 1px solid var(--color-stroke-blue);
  color: var(--color-text-deep-blue);
  background: var(--color-background-blue-sky);
}

.site-modal__result-button--secondary {
  background: var(--color-background-white);
}

.site-modal__close:focus-visible,
.site-modal__submit:focus-visible,
.site-modal__result-button:focus-visible,
.site-modal__note a:focus-visible {
  outline: 2px solid var(--color-background-deep-blue);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  .site-modal {
    padding: 16px;
  }

  .site-modal__panel {
    max-height: calc(100dvh - 32px);
    padding-right: 24px;
    padding-left: 24px;
    border-radius: 20px;
  }

  .site-modal__panel--image {
    padding: 44px 12px 12px;
  }

  .site-modal__image {
    max-height: calc(100dvh - 116px);
    border-radius: 14px;
  }
}

/* Privacy policy page */
.privacy-hero {
  min-height: 1281px;
  padding: 132px 80px 48px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background:
    radial-gradient(ellipse 54% 50% at 0 50%, rgba(255, 234, 224, 0.8) 0%, rgba(255, 234, 224, 0) 100%),
    radial-gradient(ellipse 46% 46% at 100% 50%, rgba(255, 234, 224, 0.8) 0%, rgba(255, 234, 224, 0) 100%),
    linear-gradient(0deg, #ffffff 0%, #e7f0ff 34.459%, #6a85d3 86.148%, #3d55bc 172.3%);
}

.privacy-hero__inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.privacy-page .privacy-hero .breadcrumbs ol {
  min-height: 28px;
  gap: 2px;
  padding: 0 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.privacy-page .privacy-hero .breadcrumbs li {
  gap: 4px;
}

.privacy-page .privacy-hero .breadcrumbs li:first-child::before,
.privacy-page .privacy-hero .breadcrumbs li + li::before {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.privacy-page .privacy-hero .breadcrumbs li[aria-current="page"] {
  color: var(--color-text-blue);
}

.privacy-document {
  display: flex;
  width: min(1280px, 100%);
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 56px 48px;
  border-radius: 24px;
  background: var(--color-background-light-blue);
}

.privacy-document h1 {
  max-width: none;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h2-font-size);
  font-weight: var(--typography-h2-font-weight);
  line-height: var(--typography-h2-line-height);
  letter-spacing: var(--typography-h2-letter-spacing);
}

.privacy-document__sections {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}

.privacy-document__section {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 16px;
}

.privacy-document__section h2 {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h3-font-size);
  font-weight: var(--typography-h3-font-weight);
  line-height: var(--typography-h3-line-height);
  letter-spacing: var(--typography-h3-letter-spacing);
}

.privacy-document__text {
  display: flex;
  width: 100%;
  flex-direction: column;
}

.privacy-document__text p {
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: 1.1875;
  overflow-wrap: anywhere;
}

.privacy-document__text a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 180ms ease;
}

.privacy-document__text a:hover {
  color: var(--color-text-deep-blue);
}

.privacy-page .site-footer {
  border-radius: 24px 24px 0 0;
  background: linear-gradient(22deg, #efd5d3 0%, #a1bef0 32.2%, #3d55bc 100%);
}

.privacy-page a:focus-visible,
.privacy-page button:focus-visible {
  outline: 2px solid var(--color-background-deep-blue);
  outline-offset: 3px;
}

.privacy-page .site-footer a:focus-visible,
.privacy-page .site-header a:focus-visible,
.privacy-page .site-header button:focus-visible {
  outline-color: var(--color-text-white);
}

@media (max-width: 1024px) {
  .privacy-hero {
    min-height: 0;
    padding: 112px 24px 40px;
  }

  .privacy-document {
    padding: 48px 36px;
  }
}

@media (max-width: 720px) {
  .privacy-hero {
    padding: 104px 16px 32px;
    border-radius: 0 0 20px 20px;
  }

  .privacy-page .privacy-hero .breadcrumbs {
    width: 100%;
  }

  .privacy-page .privacy-hero .breadcrumbs ol {
    display: flex;
    width: 100%;
  }

  .privacy-page .privacy-hero .breadcrumbs li[aria-current="page"] {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .privacy-document {
    gap: 24px;
    padding: 32px 20px;
    border-radius: 20px;
  }

  .privacy-document h1 {
    font-size: 30px;
  }

  .privacy-document__section h2 {
    font-size: 22px;
  }

  .privacy-document__text p {
    font-size: var(--typography-text-s-font-size);
    line-height: 1.35;
  }

  .privacy-page .site-footer {
    border-radius: 20px 20px 0 0;
  }
}

/* Regions page */
.regions-catalog {
  height: 1190px;
  min-height: 1190px;
  padding: 132px 0 48px;
  overflow: hidden;
  border-radius: 0 0 24px 24px;
  background:
    radial-gradient(circle at 0 50%, rgba(255, 234, 224, 0.82) 0, rgba(255, 234, 224, 0) 28%),
    radial-gradient(circle at 100% 50%, rgba(255, 234, 224, 0.82) 0, rgba(255, 234, 224, 0) 28%),
    linear-gradient(0deg, #ffffff 0%, #e7f0ff 34.459%, #6a85d3 86.148%, #3d55bc 172.3%);
}

.regions-catalog__head {
  display: flex;
  max-width: 800px;
  min-height: 168px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  text-align: center;
}

.regions-catalog__head h1 {
  max-width: 640px;
  text-align: center;
}

.regions-catalog__head > p {
  color: var(--color-text-light-grey);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.regions-tools {
  position: relative;
  z-index: 6;
  display: flex;
  width: min(836px, 100%);
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin: 48px auto 0;
}

.regions-tabs {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 999px;
  background: var(--color-background-light-blue);
  backdrop-filter: blur(6px);
}

.regions-tab {
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 999px;
  color: var(--color-text-grey);
  background: var(--color-background-white);
  font-size: var(--typography-button-m-font-size);
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--motion-ease);
}

.regions-tab:hover,
.regions-tab:focus-visible,
.regions-tab.is-active {
  color: var(--color-text-deep-blue);
  background: var(--color-background-blue-sky);
}

.regions-tab:focus-visible,
.regions-search__field:focus-within,
.region-card:focus-visible,
.regions-pagination button:focus-visible {
  outline: 2px solid var(--color-background-deep-blue);
  outline-offset: 3px;
}

.regions-search {
  position: relative;
  width: 560px;
  max-width: 100%;
  flex: 0 1 560px;
}

.regions-search__field {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 999px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.regions-search__field img {
  width: 20px;
  height: 20px;
}

.regions-search__field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--color-text-deep-blue);
  background: transparent;
  font-size: var(--typography-text-s-font-size);
}

.regions-search__field input::placeholder {
  color: var(--color-text-grey);
}

.regions-search__field input::-webkit-search-cancel-button {
  cursor: pointer;
}

.regions-search__panel {
  position: absolute;
  top: 60px;
  left: 0;
  display: none;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 24px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow-2);
}

.regions-search__panel.is-open {
  display: block;
  animation: regionSearchIn 240ms var(--motion-ease) both;
}

.regions-search__content {
  max-height: 276px;
  padding: 20px 24px 16px;
  overflow-y: auto;
}

.regions-search__content > p {
  margin-bottom: 12px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
}

.regions-search__content > p:not(:first-child) {
  margin-top: 18px;
}

.regions-search__popular {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.regions-search__popular button {
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--color-text-deep-blue);
  background: var(--color-background-light-blue);
  font-size: var(--typography-text-s-font-size);
}

.regions-search__results {
  display: flex;
  flex-direction: column;
}

.regions-search__results button {
  min-height: 36px;
  padding: 6px 0;
  color: var(--color-text-deep-blue);
  background: transparent;
  font-size: var(--typography-text-s-font-size);
  text-align: left;
}

.regions-search__popular button:hover,
.regions-search__popular button:focus-visible,
.regions-search__results button:hover,
.regions-search__results button:focus-visible {
  color: var(--color-text-deep-blue);
  background: var(--color-background-blue-sky);
  outline: 0;
}

.regions-search__results button:hover,
.regions-search__results button:focus-visible {
  padding-left: 10px;
  border-radius: 8px;
}

.regions-search__footer {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 5px 20px;
  color: var(--color-text-grey-2);
  background: var(--color-background-light-blue);
  font-size: var(--typography-caption-font-size);
}

.regions-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
  scroll-margin-top: 112px;
}

.region-card {
  display: flex;
  min-height: 138px;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 24px;
  background: var(--gradient-linear-2);
  transition: transform 240ms var(--motion-ease), box-shadow 240ms ease, border-color 240ms ease;
}

.region-card__top {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.region-card__pin {
  position: relative;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  border-radius: 50%;
  background: var(--color-background-white);
}

.region-card__pin::before {
  width: 16px;
  height: 16px;
  background: var(--color-icon-purple);
  content: "";
  mask: url("../icons/map-pin-fill-frame-duplicate.svg") center / contain no-repeat;
  -webkit-mask: url("../icons/map-pin-fill-frame-duplicate.svg") center / contain no-repeat;
}

.region-card__ambulance {
  width: 72px;
  height: 48px;
  object-fit: contain;
}

.region-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.region-card__copy span {
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.region-card__copy strong {
  overflow: hidden;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h4-font-size);
  font-weight: 400;
  line-height: var(--typography-h4-line-height);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.region-card:hover {
  z-index: 1;
  border-color: #9eb3e1;
  box-shadow: var(--motion-shadow-hover);
  transform: translateY(-4px);
}

.region-card:hover .region-card__ambulance {
  animation: regionAmbulance 650ms var(--motion-ease) both;
}

.regions-empty {
  margin-top: 48px;
  color: var(--color-text-grey);
  text-align: center;
}

.regions-pagination {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.regions-pagination__item {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  border: 1px solid var(--color-stroke-blue);
  border-radius: 50%;
  color: var(--color-text-grey);
  background: var(--color-background-white);
  font-size: var(--typography-text-l-font-size);
}

.regions-pagination button {
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--motion-ease);
}

.regions-pagination button:hover:not(:disabled),
.regions-pagination button.is-active {
  color: var(--color-text-deep-blue);
  background: var(--color-background-blue-sky);
  transform: translateY(-2px);
}

.regions-pagination button:disabled {
  opacity: 0.45;
  cursor: default;
}

.regions-pagination__arrow img {
  width: 24px;
  height: 24px;
}

.regions-brigade {
  height: auto;
  min-height: 628px;
}

.regions-page .faq {
  height: 759px;
  min-height: 759px;
}

.region-cta__panel {
  display: flex;
  min-height: 386px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  padding: 80px;
  border-radius: 24px;
  color: var(--color-text-white);
  background: var(--gradient-radial-3);
  text-align: center;
}

.region-cta__panel > div:first-child {
  display: flex;
  max-width: 600px;
  flex-direction: column;
  gap: 24px;
}

.region-cta h2 {
  color: var(--color-text-white);
}

.region-cta p {
  color: var(--color-text-white);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.region-cta__actions {
  display: flex;
  gap: 12px;
}

.region-cta .button {
  min-height: 48px;
  box-shadow: none;
}

@keyframes regionSearchIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes regionAmbulance {
  0% { transform: translateX(0); }
  45% { transform: translateX(10px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}

@media (max-width: 1024px) {
  .regions-catalog {
    height: auto;
    min-height: auto;
    padding: 112px 0 48px;
  }

  .regions-tools {
    width: min(720px, 100%);
  }

  .regions-search {
    flex-basis: 440px;
  }

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

  .regions-brigade {
    min-height: auto;
  }

  .region-cta__panel {
    min-height: 340px;
    padding: 56px 32px;
  }
}

@media (max-width: 720px) {
  .regions-catalog {
    padding: 104px 0 32px;
    border-radius: 0 0 20px 20px;
  }

  .regions-catalog__head {
    min-height: 0;
    gap: 14px;
  }

  .regions-catalog__head > p {
    font-size: var(--typography-text-m-font-size);
  }

  .regions-tools {
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
  }

  .regions-tabs,
  .regions-search {
    width: 100%;
  }

  .regions-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .regions-tab {
    padding-inline: 10px;
  }

  .regions-search {
    flex: none;
  }

  .regions-search__panel {
    max-height: min(430px, calc(100vh - 190px));
  }

  .regions-search__content {
    max-height: min(360px, calc(100vh - 250px));
    padding: 18px 16px 14px;
  }

  .regions-search__footer span:last-child {
    display: none;
  }

  .regions-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .region-card {
    min-height: 132px;
    padding: 18px;
    border-radius: 20px;
  }

  .region-card__copy strong {
    white-space: normal;
  }

  .regions-pagination {
    flex-wrap: wrap;
  }

  .regions-brigade .section-heading {
    align-items: flex-start;
    text-align: left;
  }

  .regions-brigade .section-heading__text {
    align-items: flex-start;
  }

  .region-cta__panel {
    min-height: 0;
    align-items: stretch;
    gap: 28px;
    padding: 40px 20px;
    border-radius: 20px;
  }

  .region-cta__actions {
    flex-direction: column;
  }

  .regions-page .faq {
    height: auto;
    min-height: 0;
  }
}
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.entity-page {
  padding: 132px 0 80px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 234, 224, 0.8) 0, rgba(255, 234, 224, 0) 28%),
    var(--color-background-light-blue);
}

.entity-page__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.entity-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
}

.entity-page__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.entity-page__lead {
  max-width: 760px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.entity-page__media {
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.entity-page__media img {
  display: block;
  width: 100%;
  min-height: 320px;
  max-height: 460px;
  object-fit: cover;
}

.entity-page__meta,
.entity-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.entity-page__meta strong {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-h4-font-size);
  font-weight: 500;
  line-height: var(--typography-h4-line-height);
}

.entity-page__meta span,
.entity-page__note {
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

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

.entity-page__facts div {
  min-width: 0;
  padding: 16px;
  border-radius: 16px;
  background: var(--color-background-white);
}

.entity-page__facts dt {
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.entity-page__facts dd {
  margin: 6px 0 0;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.entity-page__content,
.entity-page__author {
  padding: 32px;
  border-radius: 24px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.entity-page__content > * + * {
  margin-top: 16px;
}

.entity-page__author {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.entity-page__author img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  object-fit: cover;
}

.entity-page__author strong,
.entity-page__author span {
  display: block;
}

.entity-page__author span,
.entity-page__author p {
  margin-top: 4px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.page-content:empty {
  display: none;
}

.listing-section,
.related-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.listing-section {
  margin-top: 48px;
}

.listing-section + .listing-section,
.related-section {
  margin-top: 56px;
}

.related-section {
  padding: 32px;
  border-radius: 24px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.listing-grid {
  margin-top: 0;
}

.listing-empty {
  padding: 28px;
  border: 1px dashed var(--color-stroke-blue);
  border-radius: 20px;
  color: var(--color-text-grey);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.listing-empty h3 {
  color: var(--color-text-deep-blue);
}

.listing-empty p {
  margin-top: 8px;
}

.service-card--category .tag {
  margin-bottom: 10px;
}

.service-card--category .service-card__body {
  justify-content: flex-start;
}

.related-section .service-grid--catalog,
.related-section .team-grid,
.related-section .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-related__grid {
  display: flex;
  flex-direction: column;
}

.service-related .related-section:first-child {
  margin-top: 0;
}

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

.migx-section,
.migx-tags {
  border-radius: 24px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.migx-section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px;
}

main > .migx-section {
  width: min(1280px, calc(100% - 160px));
  margin: 0 auto 80px;
}

main > .migx-section:first-child {
  margin-top: 80px;
}

.migx-faq__list,
.migx-schedule__list {
  display: grid;
  gap: 12px;
}

.migx-faq__item,
.migx-schedule__item {
  border: 1px solid var(--color-stroke-blue);
  border-radius: 18px;
  background: var(--color-background-light-blue);
}

.migx-faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
  cursor: pointer;
}

.migx-faq__item summary::-webkit-details-marker {
  display: none;
}

.migx-faq__item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  color: var(--color-text-deep-blue);
  background: var(--color-background-white);
  transition: transform 220ms var(--motion-ease), background-color 220ms ease;
}

.migx-faq__item[open] summary::after {
  transform: rotate(45deg);
  background: var(--color-background-blue-sky);
}

.migx-faq__answer {
  padding: 0 24px 22px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.migx-faq__answer > * + * {
  margin-top: 12px;
}

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

.migx-gallery__item {
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: var(--color-background-light-blue);
}

.migx-gallery__item a {
  display: block;
}

.migx-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.migx-gallery__item figcaption {
  padding: 12px 14px 14px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.migx-schedule__item {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
}

.migx-schedule__item strong,
.migx-schedule__item span {
  display: block;
}

.migx-schedule__item strong {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.migx-schedule__item span,
.migx-schedule__item p,
.migx-schedule__item small {
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.migx-schedule__item small {
  display: block;
}

.migx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px;
}

.migx-tags__item--light {
  background: var(--color-background-light-blue);
}

.migx-tags__item--red {
  color: var(--color-text-white);
  border-color: transparent;
  background: var(--color-background-red);
}

.migx-tags__item--green {
  color: var(--color-text-deep-blue);
  border-color: transparent;
  background: var(--color-background-light-mint);
}

@media (max-width: 1023px) {
  .entity-page {
    padding-top: 104px;
  }

  .entity-page__hero {
    grid-template-columns: 1fr;
  }
}

.pb-hero {
  padding: 132px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 234, 224, 0.88) 0, rgba(255, 234, 224, 0) 30%),
    linear-gradient(180deg, var(--color-background-light-blue) 0%, var(--color-background-white) 100%);
}

.pb-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 36px;
  align-items: center;
}

.pb-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.pb-hero__copy p {
  max-width: 720px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.pb-hero__actions,
.pb-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.pb-hero__media {
  overflow: hidden;
  border-radius: 28px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.pb-hero__media img {
  display: block;
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.pb-section {
  padding: 80px 0;
}

.pb-section--services,
.pb-section--articles {
  background: var(--color-background-light-blue);
}

.pb-section--doctors,
.pb-section--text,
.pb-section--contacts,
.pb-section--policy {
  background: var(--color-background-white);
}

.pb-section__grid {
  display: grid;
  gap: 12px;
  margin-top: 40px;
}

.pb-section__grid--services,
.pb-section__grid--doctors,
.pb-section__grid--articles {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pb-section__actions {
  justify-content: center;
  margin-top: 32px;
}

.pb-empty {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--color-stroke-blue);
  border-radius: 20px;
  color: var(--color-text-grey);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.pb-empty h3 {
  color: var(--color-text-deep-blue);
}

.pb-empty p {
  margin-top: 8px;
}

.pb-text,
.pb-policy,
.pb-contacts {
  padding: 40px;
  border-radius: 28px;
  background: var(--color-background-white);
  box-shadow: var(--effect-drop-shadow);
}

.pb-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pb-text__lead,
.pb-policy__lead,
.pb-contacts__copy > p {
  color: var(--color-text-grey);
  font-size: var(--typography-text-l-font-size);
  line-height: var(--typography-text-l-line-height);
}

.pb-text__content,
.pb-policy__content,
.pb-contacts__content {
  color: var(--color-text-grey);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.pb-text__content > * + *,
.pb-policy__content > * + *,
.pb-contacts__content > * + * {
  margin-top: 14px;
}

.pb-contacts {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
}

.pb-contacts__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}

.pb-contacts__cards {
  display: grid;
  gap: 12px;
}

.pb-contacts__cards article {
  padding: 20px;
  border-radius: 20px;
  background: var(--color-background-light-blue);
}

.pb-contacts__cards span {
  display: block;
  margin-bottom: 6px;
  color: var(--color-text-grey);
  font-size: var(--typography-text-s-font-size);
  line-height: var(--typography-text-s-line-height);
}

.pb-contacts__cards a,
.pb-contacts__cards p {
  color: var(--color-text-deep-blue);
  font-size: var(--typography-text-m-font-size);
  line-height: var(--typography-text-m-line-height);
}

.pb-contacts__map {
  grid-column: 1 / -1;
  overflow: hidden;
  min-height: 320px;
  border-radius: 24px;
  background: var(--color-background-light-blue);
}

.pb-contacts__map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 1180px) {
  .pb-section__grid--services,
  .pb-section__grid--doctors,
  .pb-section__grid--articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .pb-hero {
    padding-top: 104px;
  }

  .pb-hero__inner,
  .pb-contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .pb-hero {
    padding: 88px 0 56px;
  }

  .pb-section {
    padding: 56px 0;
  }

  .pb-section__grid--services,
  .pb-section__grid--doctors,
  .pb-section__grid--articles {
    grid-template-columns: 1fr;
  }

  .pb-text,
  .pb-policy,
  .pb-contacts {
    padding: 24px;
    border-radius: 22px;
  }

  .pb-hero__media img {
    min-height: 240px;
  }
}

@media (max-width: 767px) {
  .entity-page {
    padding: 88px 0 56px;
  }

  .entity-page__hero,
  .entity-page__container {
    gap: 24px;
  }

  .entity-page__facts {
    grid-template-columns: 1fr;
  }

  .entity-page__content,
  .entity-page__author,
  .migx-section,
  .related-section {
    padding: 22px;
    border-radius: 20px;
  }

  .entity-page__media img {
    min-height: 220px;
  }

  main > .migx-section {
    width: min(1280px, calc(100% - 40px));
    margin-bottom: 56px;
  }

  .migx-gallery__grid,
  .migx-schedule__item {
    grid-template-columns: 1fr;
  }

  .related-section .service-grid--catalog,
  .related-section .team-grid,
  .related-section .blog-grid {
    grid-template-columns: 1fr;
  }
}
