:root {
  --white: #ffffff;
  --blue: #167ff1;
  --dark: #02093d;
  --navy: #070a5f;
  --hero-navy: #070b6b;
  --soft-blue: #e8f2fe;
  --text-muted: rgba(2, 9, 61, 0.8);
  --white-muted: rgba(255, 255, 255, 0.8);
  --border-blue: rgba(22, 127, 241, 0.3);
  --border-white: rgba(255, 255, 255, 0.1);
  --service-frame-stroke-gradient: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.98) 0%,
    #f4f9ff 18%,
    #d8ebff 56%,
    #b4d2f7 100%
  );
  --service-panel-stroke-gradient2: linear-gradient(
    90deg,
    #167ff1 0%,
    #ffffff 100%
  );
  --card-stroke-gradient: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,
    #dbeeff 18%,
    #8bc1ff 48%,
    #167ff1 100%
  );
  --shell: 1600px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--dark);
  font-family: "Ubuntu", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-white {
  background: var(--white);
  color: var(--dark);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  border-bottom: 1px solid var(--border-blue);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: transform 260ms var(--ease), background 220ms var(--ease);
  will-change: transform;
}

.site-header.is-scrolled {
  background: #070a5f;
}

body.gtl-inner-page .site-header {
  background: rgba(7, 10, 95, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(2, 9, 61, 0.18);
}

body.gtl-inner-page .site-header.is-scrolled {
  background: #070a5f;
}

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

body.nav-open .site-header {
  transform: translateY(0);
  z-index: 90;
}

body.nav-open {
  overflow: hidden;
}

#moove_gdpr_cookie_info_bar {
  transition:
    opacity 180ms var(--ease),
    transform 180ms var(--ease),
    visibility 180ms var(--ease);
}

body.nav-open #moove_gdpr_cookie_info_bar {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(24px);
}

.nav-shell {
  width: min(var(--shell), calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-drawer {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.logo {
  position: relative;
  width: 196.265px;
  height: 56px;
  flex: 0 0 196.265px;
  display: block;
}

.logo-full {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-mark {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
}

.logo-mark img {
  position: absolute;
}

.logo-contour {
  left: 0;
  top: 7.43px;
  width: 45.41px;
  height: 45.535px;
}

.logo-water,
.logo-globe {
  left: 3.91px;
  top: 9.57px;
  width: 41.148px;
  height: 41.263px;
}

.logo-arrow {
  left: 2.5px;
  top: 0;
  width: 51.726px;
  height: 56px;
}

.logo-word {
  position: absolute;
  left: 57.04px;
  top: 14.43px;
  width: 139.228px;
  height: 31.54px;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  justify-self: center;
}

.nav-links li,
.footer-links li {
  list-style: none;
}

.nav-links a,
.footer-links a {
  position: relative;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.nav-links a.is-active,
.nav-links a[aria-current="true"] {
  color: var(--blue);
}

.nav-links a.is-active::after,
.nav-links a[aria-current="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
}

.button,
.language-button,
.slider-buttons button {
  border: 0;
  cursor: pointer;
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 8px 32px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

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

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.nav-cta {
  flex: 0 0 auto;
  height: 56px;
  padding: 16px 24px;
}

.button-ghost {
  color: var(--white);
  border: 1px solid var(--blue);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
}

.language-button {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-button img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}

.language-button__copy {
  display: none;
}

.language-button::after {
  content: "";
  display: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.88);
  border-bottom: 2px solid rgba(255, 255, 255, 0.88);
  transform: rotate(45deg);
  transition: transform 180ms var(--ease);
}

.language-switcher.is-open .language-button::after {
  transform: rotate(-135deg) translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: auto;
  min-width: 68px;
  padding: 8px;
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  background: rgba(2, 9, 61, 0.96);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(2, 9, 61, 0.28);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms var(--ease);
  z-index: 80;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.language-options {
  display: grid;
  grid-template-columns: 52px;
  gap: 8px;
}

.language-options a,
.language-options button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 36px;
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.language-options a.is-active,
.language-options a[aria-current="true"],
.language-options button.is-active,
.language-options button[aria-current="true"] {
  background: var(--blue);
  border-color: var(--blue);
}

.language-options a:hover,
.language-options button:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  place-items: center;
  padding: 12px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: var(--white);
  border-radius: 2px;
}

.hero {
  position: relative;
  height: 1080px;
  min-height: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 160px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--hero-navy);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(7, 10, 95, 0) 0%,
    rgba(7, 10, 95, 0.22) 40%,
    rgba(7, 10, 95, 0.68) 76%,
    #070a5f 100%
  );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(
      88% 54% at 50% 28%,
      rgba(2, 8, 86, 0.14) 0%,
      rgba(2, 8, 86, 0.36) 44%,
      rgba(2, 8, 86, 0.62) 100%
    ),
    linear-gradient(
      180deg,
      rgba(2, 8, 86, 0.1) 0%,
      rgba(2, 8, 86, 0.34) 24%,
      rgba(2, 8, 86, 0.58) 55%,
      rgba(2, 8, 86, 0.8) 100%
    );
  transition: opacity 260ms ease;
}

.hero-bg,
.hero-light,
.hero-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-bg {
  z-index: -4;
}

.hero-bg {
  object-fit: cover;
  object-position: bottom center;
  filter: brightness(0.98) saturate(0.84);
}

.hero-light {
  z-index: -2;
  object-fit: cover;
  object-position: bottom center;
  opacity: 0.1;
}

.hero-screen {
  z-index: -3;
  background: #020856;
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1062px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  text-align: center;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 100px;
  padding: 8px 16px 8px 8px;
}

.badge span,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 100px;
  padding: 8px 16px;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
}

.badge strong {
  font-family: "Ubuntu", Arial, sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
}

.badge-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-blue);
  backdrop-filter: blur(2px);
}

.hero-copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero h1 {
  width: 100%;
  margin: 0;
  color: var(--white);
  font-family: "Ubuntu", Arial, sans-serif;
  font-style: normal;
  font-size: 80px;
  line-height: 1.3;
  font-weight: 500;
}

.hero-copy p {
  width: min(791px, 100%);
  margin: 0;
  color: var(--white-muted);
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
}

.hero-actions,
.messenger-list {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions .button-ghost {
  width: 215px;
}

.messenger-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.messenger-block p {
  margin: 0;
  color: var(--white-muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.messenger-pill {
  width: 180px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease);
}

.messenger-pill:hover {
  transform: translateY(-2px);
  border-color: var(--border-blue);
}

.messenger-pill img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.services,
.advantages,
.about,
.team,
.steps,
.locations,
.news,
.contact {
  padding-left: max(32px, calc((100vw - var(--shell)) / 2));
  padding-right: max(32px, calc((100vw - var(--shell)) / 2));
}

.services {
  padding-top: 40px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.section-heading {
  max-width: 792px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-heading-center {
  align-items: center;
  text-align: center;
}

.section-heading .eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
}

.section-heading h2,
.section-title-row h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 500;
}

.section-heading p:not(.eyebrow) {
  margin: 0;
  color: currentColor;
  opacity: 0.8;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
}

.services-slider {
  width: 100%;
  margin: 0 auto;
  touch-action: pan-y pinch-zoom;
}

.services-slider-buttons {
  display: none;
  justify-content: center;
}

.services-slider-buttons[hidden] {
  display: none !important;
}

.services-slider-shell {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 20px;
  border: none;
  padding: 10px;
  background: none;
  display: flex;
  align-items: flex-end;
}

.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 700ms var(--ease);
}

.service-card:hover > img {
  transform: scale(1.05);
}

.service-panel {
  position: relative;
  width: 100%;
  min-height: var(--service-panel-max-height, 238px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 20px;
  border: 2px solid transparent;
  background:
    linear-gradient(#02093d, #02093d) padding-box,
    var(--service-panel-stroke-gradient2) border-box;
}

.service-panel-tall {
  min-height: var(--service-panel-max-height, 268px);
  justify-content: flex-start;
}

.service-panel h3 {
  margin: 0;
  width: 100%;
  font-family: "Ubuntu", Arial, sans-serif;
  font-style: normal;
  color: var(--white);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
}

.service-panel p {
  margin: 0;
  width: 100%;
  font-family: "Ubuntu", Arial, sans-serif;
  font-style: normal;
  color: var(--white-muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.service-panel > .service-tag,
.service-panel > .tag-row {
  margin-top: auto;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 100px;
  border: 1px solid rgba(22, 127, 241, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.service-tag__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 8px 16px;
  border-radius: 100px;
  background: #167ff1;
  color: #ffffff;
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.advantages {
  min-height: 727px;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  overflow: hidden;
}

.advantages-grid {
  width: min(var(--shell), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.advantage-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 20px;
}

.icon-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 100px;
  background: rgba(22, 127, 241, 0.1);
  border: 1px solid var(--border-blue);
}

.icon-bubble__inner {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: var(--blue);
}

.icon-bubble img {
  width: 48px;
  height: 48px;
  display: block;
}

.advantage-item h3 {
  margin: 0;
  width: 100%;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}

.advantage-item p {
  margin: 0;
  width: 100%;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.about {
  position: relative;
  z-index: 1;
  background: #ffffff;
  padding-top: 120px;
  padding-bottom: 120px;
}

.about-shell {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 792px minmax(0, 1fr);
  gap: 64px;
  align-items: stretch;
}

.about-media {
  height: 792px;
  border-radius: 20px;
  overflow: hidden;
}

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

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.check-list img {
  width: 32px;
  height: 32px;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  font-weight: 300;
}

.rating img {
  width: 137px;
  height: 21.151px;
}

.team,
.news {
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.team {
  --team-visible-cards: 3;
}

.news {
  --news-visible-cards: 3;
}

.section-title-row {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-title-row .section-heading {
  gap: 24px;
}

.section-title-row > h2 {
  line-height: 56px;
}

.team-slider {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.news-slider {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.services-slider.is-draggable,
.team-slider.is-draggable,
.news-slider.is-draggable {
  cursor: grab;
}

.services-slider.is-dragging,
.team-slider.is-dragging,
.news-slider.is-dragging {
  cursor: grabbing;
}

.slider-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-with-mobile-controls {
  display: flex;
  flex-direction: column;
}

.slider-buttons--mobile-below {
  align-self: center;
  justify-content: center;
  margin-top: 16px;
}

.team-slider-buttons button img {
  width: 32px;
  height: 32px;
  display: block;
}

.team-slider-buttons .is-next img {
  transform: rotate(180deg);
}

.news-slider-buttons button img {
  width: 32px;
  height: 32px;
  display: block;
}

.news-slider-buttons .is-next img {
  transform: rotate(180deg);
}

.services-slider-buttons button img {
  width: 32px;
  height: 32px;
  display: block;
}

.services-slider-buttons .is-next img {
  transform: rotate(180deg);
}

.slider-buttons button {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(22, 127, 241, 0.1);
  padding: 12px;
}

.slider-buttons button.active {
  background: var(--blue);
}

.slider-buttons button.is-active {
  background: var(--blue);
}

.slider-buttons button.is-disabled,
.slider-buttons button:disabled {
  background: rgba(22, 127, 241, 0.1);
}

.slider-buttons button:focus,
.slider-buttons button:focus-visible {
  outline: none;
}

.team-grid,
.news-grid {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-track {
  display: flex;
  gap: 24px;
  transition: transform 420ms var(--ease);
  will-change: transform;
}

.news-track {
  display: flex;
  gap: 24px;
  transition: transform 420ms var(--ease);
  will-change: transform;
}

.services-track.is-dragging,
.team-track.is-dragging,
.news-track.is-dragging {
  transition: none;
  user-select: none;
}

.person-card {
  position: relative;
  flex: 0 0 calc((100% - (var(--team-visible-cards) - 1) * 24px) / var(--team-visible-cards));
  min-width: 0;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-blue);
}

.person-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.person-card > div {
  position: relative;
  width: 100%;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 2px solid transparent;
  border-radius: 20px;
  background:
    linear-gradient(var(--soft-blue), var(--soft-blue)) padding-box,
    var(--card-stroke-gradient) border-box;
}

.person-card h3 {
  margin: 0 0 8px;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
}

.person-card strong {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.person-card__description {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  overflow: hidden;
  transition: max-height 220ms var(--ease);
}

.person-card__description.is-collapsed {
  display: -webkit-box;
  max-height: calc(1.5em * 4);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  text-overflow: ellipsis;
}

.person-card__description.is-expanded {
  display: block;
  max-height: 1000px;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.person-card__toggle {
  margin-top: 12px;
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  cursor: pointer;
}

.person-card__toggle[hidden] {
  display: none;
}

.person-card__toggle:hover {
  color: var(--dark);
}

.steps {
  padding-top: 120px;
  padding-bottom: 120px;
}

.steps-shell {
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 744px minmax(0, 784px);
  gap: 72px;
  justify-content: space-between;
  align-items: start;
}

.steps-copy {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  border-radius: 15px;
  border: 1px solid var(--border-white);
  background: rgba(255, 255, 255, 0.04);
  padding: 23px 24px;
}

.accordion-item button {
  width: 100%;
  display: grid;
  grid-template-columns: 62px 1fr 32px;
  align-items: center;
  gap: 16px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.accordion-item span {
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.accordion-item strong {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}

.accordion-item img {
  width: 32px;
  height: 32px;
  transition: transform 220ms var(--ease);
}

.accordion-item.is-open img {
  transform: rotate(180deg);
}

.accordion-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding-left: 78px;
  padding-right: 32px;
  color: var(--white-muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  transition: max-height 260ms var(--ease), margin-top 260ms var(--ease);
}

.accordion-item.is-open p {
  max-height: 90px;
  margin-top: 8px;
}

.steps-media {
  position: relative;
  min-height: 784px;
  display: grid;
  place-items: center;
  align-self: start;
  overflow: hidden;
  border-radius: 20px;
}

.steps-bg {
    position: absolute;
    max-width: none;
    border-radius: 20px;
    pointer-events: none;
}

.steps-media > .steps-bg:first-of-type {
    width: 233.85%;
    height: 155.92%;
    left: -57.85%;
    top: -22.1%;
}

.steps-bg.second {
    width: 178.99%;
    height: 119.3%;
    left: -18.09%;
    top: -19.3%;
    opacity: 1;
    mix-blend-mode: normal;
  }

.start-card {
  position: relative;
  width: min(420px, 100%);
  min-height: 404px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, #2f8bf7 0%, #1d7ef0 100%);
  box-shadow: 0 20px 48px rgba(7, 11, 107, 0.24);
  padding: 28px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.start-card > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.start-card h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
}

.start-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 300;
}

.start-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.start-links a {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 100px;
  padding: 12px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.start-links a:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.18) 100%);
  transform: translateY(-1px);
}

.start-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
}

.locations {
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.steps + .locations {
  position: relative;
  margin-top: -1px;
}

.locations > .section-heading {
  width: min(792px, 100%);
}

.location-tabs {
  width: min(var(--shell), 100%);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: -24px;
}

.location-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-blue);
  color: inherit;
  cursor: pointer;
}

.location-tab:focus,
.location-tab:focus-visible {
  outline: none;
}

.location-tab__inner {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 24px 8px 16px;
  border-radius: 100px;
  background: var(--white);
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.location-tab.is-active .location-tab__inner {
  background: var(--blue);
  color: var(--white);
}

.location-tab img {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.location-tab__label {
  display: block;
}

.map-frame {
  width: min(var(--shell), 100%);
  height: 560px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--border-white);
}

.map-frame iframe,
.map-frame img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.news-card {
  flex: 0 0 calc((100% - (var(--news-visible-cards) - 1) * 24px) / var(--news-visible-cards));
  min-width: 0;
  min-height: 641px;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--border-blue);
  background: var(--white);
}

.news-image {
  position: relative;
  height: 320px;
  flex: 0 0 320px;
  padding: 24px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
}

.news-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-tag {
  position: relative;
  z-index: 1;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 100px;
  background: rgba(22, 127, 241, 0.1);
  border: 1px solid rgba(22, 127, 241, 0.3);
}

.news-tag__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.news-body {
  min-height: 321px;
  height: auto;
  flex: 1 1 auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-body time {
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.news-body h3 {
  margin: 0;
  color: var(--dark);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
}

.news-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  flex: 1 1 auto;
  display: block;
  overflow: visible;
}

.news-body a,
.news-link {
  color: var(--blue);
  font-size: 18px;
  line-height: 1.5;
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  text-decoration: underline;
  position: relative;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}

.news-body a:hover,
.news-body a:focus-visible,
.news-link:hover,
.news-link:focus-visible {
  color: var(--dark);
}

.contact {
  padding-top: 120px;
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: minmax(0, 744px) minmax(0, 792px);
  gap: 64px;
  align-items: start;
  justify-content: center;
}

.contact-info {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 80px;
  align-self: start;
}

.contact-info.reveal,
.contact-info.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.contact-grid__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(2, 9, 61, 0.3);
  border-radius: 15px;
  padding: 20px 16px;
}

.contact-card > span,
.social-icons span,
.social-icons .social-icon-link {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue);
}

.social-button-link {
  display: block;
  line-height: 0;
}

.social-icon-link {
  text-decoration: none;
}

.contact-card span img,
.social-icon-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-icon-viber {
  width: 24px;
  height: 25.663px;
  display: block;
}

.contact-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card p {
  margin: 0;
  color: var(--dark);
  font-size: 18px;
  line-height: 1;
}

.contact-grid__column--details .contact-card p {
  font-size: 15px;
  line-height: 1.2;
}

.contact-grid__column--details .contact-card .contact-phone-link {
  font-size: 15px;
  line-height: 1.2;
}

.contact-phone-link {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  text-decoration: none;
}

.contact-phone-link:hover {
  color: var(--blue);
}

.social-card {
  grid-column: 1 / -1;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a:hover {
  transform: translateY(-1px);
}

.social-button-img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.contact-form {
  min-height: 698px;
  height: auto;
  border: 2px solid var(--border-blue);
  border-radius: 20px;
  background: rgba(22, 127, 241, 0.1);
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form h2 {
  margin: 0 0 40px;
  color: var(--dark);
  font-size: 32px;
  line-height: 1.3;
  font-weight: 500;
}

.contact-form__description {
  margin: -24px 0 16px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.contact-form .wpcf7,
.contact-form .wpcf7 form {
  width: 100%;
}

.contact-form .wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form .wpcf7 form > p {
  margin: 0;
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-form .form-label {
  display: block;
}

.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form input:not(.wpcf7-submit):not(.terms-input):not([type="checkbox"]),
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  outline: 0;
  padding: 0 24px;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  text-transform: none;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.contact-form input:not(.wpcf7-submit) {
  height: auto;
}

.contact-form input:not(.wpcf7-submit):not(.terms-input):not([type="checkbox"]) {
  height: 56px;
}

.contact-form textarea {
  min-height: 96px;
  padding-top: 18px;
  resize: vertical;
  line-height: 1.5;
}

.contact-form input:not(.wpcf7-submit):not(.terms-input):not([type="checkbox"])::placeholder,
.contact-form textarea::placeholder {
  color: rgba(2, 9, 61, 0.3);
}

.contact-form input:not(.wpcf7-submit):not(.terms-input):not([type="checkbox"]):focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 127, 241, 0.12);
}

.terms {
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 12px !important;
  row-gap: 8px;
  font-weight: 300 !important;
  text-transform: none !important;
  line-height: 1.5 !important;
}

.terms-checkbox {
  width: auto;
  height: auto;
  min-height: 24px;
  display: contents;
  margin-top: 1px;
}

.terms .terms-checkbox .wpcf7-form-control-wrap {
  display: contents;
  margin: 0;
}

.terms .terms-checkbox .wpcf7-acceptance,
.terms .terms-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.terms .terms-checkbox .wpcf7-acceptance {
  grid-column: 1;
  grid-row: 1;
  width: 24px;
}

.terms > span:not(.terms-checkbox) {
  grid-column: 2;
  grid-row: 1;
  display: block;
  min-width: 0;
}

.terms .terms-checkbox .wpcf7-not-valid-tip {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
  width: 100%;
  margin-top: 0;
}

.terms .terms-checkbox .wpcf7-list-item {
  width: 24px;
}

.terms input.terms-input {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 1px solid rgba(22, 127, 241, 0.32);
  border-radius: 6px;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(22, 127, 241, 0.08);
  cursor: pointer;
  position: relative;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.terms input.terms-input:hover {
  border-color: rgba(22, 127, 241, 0.55);
}

.terms input.terms-input:focus {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(22, 127, 241, 0.12);
}

.terms input.terms-input:checked {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: none;
}

.terms input.terms-input:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms .wpcf7-acceptance,
.terms .wpcf7-list-item {
  width: auto;
  margin: 0;
}

.terms .wpcf7-list-item-label {
  display: none;
}

.terms a {
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  border: 0;
  margin-top: 0;
  background: var(--blue);
  color: var(--white);
  min-height: 56px;
  padding: 8px 32px;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.contact-form .wpcf7-submit[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.contact-form .wpcf7 form {
  position: relative;
}

.contact-form .wpcf7-spinner {
  position: absolute;
  left: 10px;
  bottom: 20px;
  margin: 0;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #cf2e2e;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  text-transform: none;
}

.contact-form .wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.5;
  text-transform: none;
}

.contact-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(9, 122, 74, 0.26);
  background: rgba(9, 122, 74, 0.08);
  color: #0b5d3d;
}

.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form .wpcf7 form.failed .wpcf7-response-output,
.contact-form .wpcf7 form.spam .wpcf7-response-output {
  border-color: rgba(207, 46, 46, 0.22);
  background: rgba(207, 46, 46, 0.08);
  color: #8f1f1f;
}

.footer {
  position: relative;
  overflow: hidden;
  height: 264px;
  padding: 80px max(32px, calc((100vw - var(--shell)) / 2)) 40px;
}

.footer.section-dark {
  background: #020214;
}

.footer-bg {
  position: absolute;
  left: 0;
  top: calc(100vw * -0.511769);
  width: 100%;
  height: calc(100vw * 0.666667);
  max-width: none;
  opacity: 1;
  transform: scale(-1, -1);
  transform-origin: center center;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy);
  mix-blend-mode: screen;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(var(--shell), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top,
.footer-bottom,
.footer-bottom div {
  display: flex;
  align-items: center;
}

.footer-top {
  justify-content: space-between;
  gap: 32px;
}

.footer-bottom {
  justify-content: space-between;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-blue);
  color: var(--white-muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
}

.footer-bottom p {
  margin: 0;
}

.footer-heart {
  color: #6f3ff5;
}

.footer-bottom div {
  gap: 32px;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1500px) {
  :root {
    --shell: 1180px;
  }

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

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

  .nav-links,
  .footer-links {
    gap: 28px;
    font-size: 16px;
  }

  .hero h1 {
    font-size: 68px;
  }

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

  .about-media {
    height: auto;
    min-height: 620px;
  }
}

@media (max-width: 1180px) {
  .team {
    --team-visible-cards: 2;
  }

  .news {
    --news-visible-cards: 2;
  }

  .site-header {
    height: 76px;
  }

  .nav-shell {
    width: min(100% - 40px, 960px);
  }

  .nav-toggle {
    display: grid;
    margin-left: auto;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 76px 0 0;
    background:
      linear-gradient(180deg, rgba(4, 10, 74, 0.28) 0%, rgba(2, 9, 61, 0.58) 100%);
    backdrop-filter: blur(12px);
    z-index: 69;
  }

  .nav-drawer {
    position: fixed;
    left: 20px;
    right: 20px;
    display: none;
    top: 88px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    max-height: calc(100dvh - 108px);
    overflow: hidden auto;
    overscroll-behavior: contain;
    padding: 18px;
    background:
      linear-gradient(180deg, rgba(10, 16, 108, 0.98) 0%, rgba(2, 9, 61, 0.98) 100%);
    border: 1px solid rgba(138, 191, 255, 0.2);
    border-radius: 22px;
    box-shadow:
      0 30px 80px rgba(2, 9, 61, 0.48),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
    z-index: 75;
    scrollbar-width: none;
  }

  .nav-drawer::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: auto;
    padding: 5px 10px;
    border: none;
    border-radius: 14px;
    background: transparent;
    line-height: 1.15;
  }

  .nav-links a::after {
    left: 10px;
    right: 16px;
    bottom: 8px;
    transform-origin: left center;
  }

  .nav-links a.is-active,
  .nav-links a[aria-current="true"] {
    padding-bottom: 18px;
    background: transparent;
  }

  .nav-links a:hover {
    transform: none;
  }

  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .nav-cta,
  .language-switcher {
    width: 100%;
  }

  .language-switcher {
    display: flex;
    flex-direction: column;
  }

  .language-button {
    width: 100%;
    min-height: 56px;
    justify-content: flex-start;
    padding: 12px 16px;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
  }

  .language-button__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .language-button__caption {
    color: var(--white-muted);
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
  }

  .language-button__label {
    color: var(--white);
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
  }

  .language-button::after {
    display: block;
    margin-left: auto;
  }

  .language-menu {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    min-width: 0;
    margin-top: 0;
    padding: 0;
    border-width: 0;
    border-radius: 12px;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
  }

  .language-options {
    grid-template-columns: 1fr;
  }

  .language-switcher.is-open .language-menu {
    margin-top: 8px;
    padding: 8px;
    border-width: 1px;
    border-color: rgba(138, 191, 255, 0.2);
    box-shadow: 0 20px 40px rgba(2, 9, 61, 0.28);
    max-height: 120px;
  }

  body.nav-open .nav-drawer,
  body.nav-open .nav-links,
  body.nav-open .nav-actions {
    display: flex;
  }

  .hero {
    height: auto;
    min-height: 860px;
    padding: 76px 32px 0;
  }

  .services-grid,
  .team-grid,
  .news-grid,
  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-shell,
  .steps-shell,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-media,
  .steps-media {
    min-height: auto;
    height: 620px;
  }

  .contact-info {
    min-height: auto;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .services {
    --services-visible-cards: 1;
  }

  .team {
    --team-visible-cards: 1;
  }

  .news {
    --news-visible-cards: 1;
    gap: 40px;
  }

  .nav-shell {
    width: calc(100% - 32px);
  }

  .nav-drawer {
    left: 16px;
    right: 16px;
    top: 84px;
    max-height: calc(100dvh - 100px);
    padding: 16px;
    border-radius: 18px;
  }

  .logo {
    width: 164px;
    flex-basis: 164px;
    transform: scale(0.84);
    transform-origin: left center;
  }

  .hero {
    background: var(--navy);
    min-height: 760px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-main {
    margin-top: 20px;
  }

  .hero::before {
    z-index: 0;
    opacity: 1;
    background:
      radial-gradient(
        88% 54% at 50% 28%,
        rgba(2, 8, 86, 0.12) 0%,
        rgba(2, 8, 86, 0.28) 44%,
        rgba(2, 8, 86, 0.46) 100%
      ),
      linear-gradient(
        180deg,
        rgba(2, 8, 86, 0.08) 0%,
        rgba(2, 8, 86, 0.24) 24%,
        rgba(2, 8, 86, 0.38) 55%,
        rgba(7, 10, 95, 0.42) 100%
      );
  }

  .hero::after {
    z-index: 1;
    height: 320px;
    background: linear-gradient(
      180deg,
      rgba(7, 10, 95, 0) 0%,
      rgba(7, 10, 95, 0.14) 34%,
      rgba(7, 10, 95, 0.46) 70%,
      #070a5f 100%
    );
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions,
  .messenger-list,
  .about-actions {
    width: 100%;
    flex-direction: column;
  }

  .button,
  .messenger-pill {
    width: 100%;
  }

  .hero-actions .button-ghost {
    width: 100%;
  }

  .services,
  .advantages,
  .about,
  .team,
  .steps,
  .locations,
  .news,
  .contact,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .services,
  .team,
  .steps,
  .locations,
  .news,
  .contact,
  .about,
  .advantages {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .section-title-row h2 {
    font-size: 34px;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 18px;
  }

  .advantages {
    gap: 48px;
  }

  .section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .team .section-title-row {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .team .section-title-row > h2 {
    flex: 1 1 auto;
    line-height: 1.15;
  }

  .team-slider-buttons {
    flex: 0 0 auto;
    align-self: auto;
    gap: 6px;
  }

  .team-slider-buttons button {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 10px;
  }

  .team-slider-buttons button img {
    width: 24px;
    height: 24px;
  }

  .news-slider-buttons {
    flex: 0 0 auto;
    align-self: auto;
    gap: 6px;
    margin-top: 4px;
  }

  .news-slider-buttons.slider-buttons--mobile-below {
    margin-top: 28px;
  }

  .news .section-title-row {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .news .section-heading {
    flex: 1 1 auto;
    min-width: 0;
    gap: 12px;
  }

  .news .section-heading h2 {
    line-height: 1.15;
  }

  .news-slider-buttons button {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 10px;
  }

  .news-slider-buttons button img {
    width: 24px;
    height: 24px;
  }

  .services-slider-buttons {
    display: flex !important;
    align-self: center;
  }

  .services-slider {
    overflow: hidden;
  }

  .services-track {
    display: flex;
    gap: 16px;
    transition: transform 420ms var(--ease);
    will-change: transform;
  }

  .services-track .service-card {
    flex: 0 0 100%;
    min-width: 0;
  }

  .services .service-panel {
    align-items: stretch;
    gap: 20px;
  }

  .services .service-panel-tall {
    min-height: var(--service-panel-max-height, 304px);
  }

  .services .tag-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .services .service-tag {
    width: 100%;
    max-width: 100%;
  }

  .services .service-tag__label {
    width: 100%;
    min-height: auto;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .services-grid,
  .team-grid,
  .news-grid,
  .advantages-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    gap: 40px;
  }

  .advantage-item {
    gap: 20px;
  }

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

  .person-card h3,
  .news-body h3 {
    font-size: 24px;
  }

  .about-media,
  .steps-media,
  .map-frame {
    height: 360px;
  }

  .steps-media {
    height: auto;
    min-height: 520px;
    padding: 16px;
    align-items: end;
  }

  .steps-media .start-card {
    width: 100%;
    min-height: 0;
    padding: 20px;
    gap: 20px;
  }

  .steps-media .start-card h3 {
    font-size: 28px;
  }

  .steps-media .start-card p {
    font-size: 18px;
  }

  .steps-media .start-links {
    gap: 12px;
  }

  .steps-media .start-links a {
    min-height: 60px;
    height: auto;
    padding: 12px 18px;
    font-size: 18px;
  }

  .steps-media .start-links img {
    width: 24px;
    height: 24px;
  }

  .about-shell {
    gap: 32px;
  }

  .about-copy {
    gap: 32px;
  }

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

  .check-list {
    gap: 16px;
  }

  .check-list li {
    align-items: flex-start;
    font-size: 18px;
  }

  .rating {
    line-height: 1.4;
  }

  .accordion-item button {
    grid-template-columns: 1fr 32px;
  }

  .accordion-item span {
    grid-column: 1 / -1;
  }

  .accordion-item p {
    padding-left: 0;
    padding-right: 0;
  }

  .start-card {
    width: 100%;
    min-height: 0;
  }

  .locations {
    gap: 24px;
  }

  .location-tabs {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    margin-top: 8px;
    margin-bottom: 0;
  }

  .location-tab {
    width: 100%;
  }

  .location-tab__inner {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }

  .map-frame {
    order: 2;
  }

  .contact {
    gap: 32px;
    align-items: stretch;
  }

  .contact-info {
    min-height: 0;
    gap: 32px;
  }

  .contact-grid {
    gap: 12px;
  }

  .contact-grid__column--phones {
    order: 1;
  }

  .contact-grid__column--phones .contact-card {
    align-items: center;
  }

  .contact-grid__column--phones .contact-card strong {
    margin-bottom: 4px;
  }

  .contact-grid__column--phones .contact-card p,
  .contact-grid__column--phones .contact-card .contact-phone-link {
    font-size: 15px;
    line-height: 1.2;
  }

  .contact-grid__column--details {
    order: 2;
  }

  .social-card {
    order: 3;
  }

  .contact-card {
    min-height: 0;
    align-items: flex-start;
    padding: 16px;
  }

  .contact-grid__column--details .contact-card strong {
    margin-bottom: 4px;
  }

  .contact-card > span,
  .social-icons span,
  .social-icons .social-icon-link,
  .social-button-img {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .contact-card span img,
  .social-icon-link img {
    width: 22px;
    height: 22px;
  }

  .social-icon-viber {
    width: 22px;
    height: 23.524px;
  }

  .contact-card strong {
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .contact-card p {
    line-height: 1.35;
  }

  .social-card {
    gap: 16px;
  }

  .social-icons {
    flex-wrap: wrap;
  }

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

  .contact-form .wpcf7 form {
    gap: 20px;
  }

  .contact-form h2 {
    margin-bottom: 12px;
    font-size: 28px;
  }

  .contact-form label {
    gap: 10px;
    line-height: 1.2;
  }

  .contact-form input:not(.terms-input):not([type="checkbox"]),
  .contact-form textarea {
    font-size: 18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-form textarea {
    min-height: 132px;
    padding-top: 18px;
  }

  .terms {
    align-items: flex-start;
    column-gap: 10px !important;
  }

  .terms > span:not(.terms-checkbox) {
    display: block;
  }

  .social-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    height: auto;
    min-height: 0;
    padding-top: 56px;
    padding-bottom: 32px;
  }

  .footer-bg {
    left: 0;
    top: calc(100vw * -0.511769);
    width: 100%;
    height: calc(100vw * 0.666667);
    min-height: 0;
    object-fit: fill;
    transform: scale(-1, -1);
  }

  .footer-shell {
    width: 100%;
    gap: 24px;
  }

  .footer-top {
    gap: 24px;
  }

  .footer-top .logo {
    width: 154px;
    flex-basis: auto;
    transform: none;
  }

  .footer-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-bottom {
    gap: 20px;
    padding-top: 24px;
    font-size: 14px;
  }

  .footer-bottom p {
    max-width: 100%;
  }

  .footer-bottom div {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    white-space: normal;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 36px;
  }

  .badge {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .section-heading h2,
  .section-title-row h2 {
    font-size: 30px;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-grid__column--phones .contact-card {
    flex-direction: row;
    align-items: center;
  }

  .contact-grid__column--details .contact-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

body.admin-bar .site-header {
  top: 32px;
}

body.admin-bar .nav-drawer {
  top: 120px;
  max-height: calc(100dvh - 140px);
}

body.admin-bar.nav-open::before {
  inset: 108px 0 0;
}

.legal-page {
  min-height: 100vh;
  padding: 148px 16px 80px;
  background: #f5f7ff;
}

.legal-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.legal-entry {
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(7, 10, 95, 0.08);
  border-radius: 8px;
  padding: 40px 48px 48px;
  box-shadow: 0 24px 64px rgba(7, 10, 95, 0.08);
}

.legal-entry .entry-title,
.legal-entry h1 {
  margin: 0 0 24px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.1;
}

.legal-entry .entry-content {
  display: grid;
  gap: 14px;
}

.legal-entry .entry-content,
.legal-entry p,
.legal-entry li {
  font-size: 18px;
  line-height: 1.7;
}

.legal-entry p,
.legal-entry ul,
.legal-entry ol {
  margin: 0;
}

.legal-entry h2,
.legal-entry h3,
.legal-entry h4 {
  margin: 18px 0 0;
  color: var(--navy);
  scroll-margin-top: 132px;
}

.legal-entry h2 {
  padding-top: 10px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  border-top: 1px solid rgba(7, 10, 95, 0.1);
}

.legal-entry h2:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.legal-entry h3 {
  font-size: 24px;
  line-height: 1.3;
}

.legal-entry h4 {
  font-size: 20px;
  line-height: 1.35;
}

.legal-entry h2 span,
.legal-entry h3 span,
.legal-entry h4 span {
  color: var(--blue);
}

.legal-entry ul,
.legal-entry ol {
  padding-left: 24px;
}

.legal-entry li + li {
  margin-top: 8px;
}

.legal-entry li::marker {
  color: var(--blue);
}

.legal-updated {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(22, 127, 241, 0.1);
  border: 1px solid rgba(22, 127, 241, 0.2);
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.legal-lead {
  max-width: 90ch;
  font-size: 20px;
  line-height: 1.75;
  color: rgba(7, 10, 95, 0.9);
}

.legal-label strong {
  color: var(--navy);
  font-weight: 500;
}

.legal-subhead {
  color: var(--dark);
}

.legal-clause {
  padding-left: 18px;
  border-left: 2px solid rgba(22, 127, 241, 0.18);
}

.legal-clause strong {
  color: var(--navy);
  font-weight: 500;
}

.legal-toc {
  margin: 10px 0 20px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(22, 127, 241, 0.06);
  border: 1px solid rgba(22, 127, 241, 0.16);
}

.legal-toc p {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.legal-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin: 0;
  padding-left: 20px;
}

.legal-toc li {
  line-height: 1.5;
}

.legal-entry a {
  color: var(--blue);
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  body.admin-bar.nav-open::before {
    inset: 122px 0 0;
  }
}

@media (max-width: 760px) {
  body.admin-bar .nav-drawer {
    top: 130px;
    max-height: calc(100dvh - 146px);
  }

  .legal-page {
    padding-top: 116px;
    padding-bottom: 48px;
  }

  .legal-entry {
    padding: 28px 20px 32px;
  }

  .legal-entry .entry-title,
  .legal-entry h1 {
    margin-bottom: 20px;
    font-size: 34px;
  }

  .legal-entry .entry-content,
  .legal-entry p,
  .legal-entry li {
    font-size: 16px;
  }

  .legal-lead {
    font-size: 18px;
    line-height: 1.65;
  }

  .legal-entry h2 {
    font-size: 26px;
    scroll-margin-top: 116px;
  }

  .legal-entry h3 {
    font-size: 21px;
    scroll-margin-top: 116px;
  }

  .legal-entry h4 {
    font-size: 18px;
    scroll-margin-top: 116px;
  }

  .legal-toc {
    padding: 18px 16px;
  }

  .legal-toc ol {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legal-entry ul,
  .legal-entry ol {
    padding-left: 20px;
  }
}
