@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(#00112c 100%, red 50%, #00112c 100%);
  color: #fff;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════ */
.services {
  position: relative;
  width: 100%;

  padding: 100px 0 40px;
  /* Overlap into scroll-section */
  margin-bottom: -80px;
  z-index: 10;
}

.services-inner {
  max-width: 95vw;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.more-services__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto 180px;
  max-width: 95vw;
}

.services-btn {
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  background: linear-gradient(
    to right,
    rgba(21, 68, 190, 0.9) 0%,
    rgba(21, 68, 191, 1) 100%
  );
  margin-bottom: 0;
}

.services-btn a {
  color: inherit;
  text-decoration: none;
}

/* ── Service card base ── */
.srv-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-end;

  /* Animation start state */
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.srv-card.srv-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image side enters from the outside edge */
.srv-card--lr .srv-img-wrap {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.srv-card--rl .srv-img-wrap {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.srv-card.srv-visible .srv-img-wrap {
  opacity: 1;
  transform: translateX(0);
}

/* Text side enters from the opposite edge */
.srv-card--lr .srv-text {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.75s 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.srv-card--rl .srv-text {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.75s 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.srv-card.srv-visible .srv-text {
  opacity: 1;
  transform: translateX(0);
}

/* ── Image wrapper ── */
.srv-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

/* Placeholder images using CSS gradients (swap for real <img> tags) */
.srv-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.srv-img-wrap:hover .srv-img {
  transform: scale(1.04);
}

.srv-img-wrap {
  overflow: hidden;
  border-radius: 30px;
}

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

/* ── Text block ── */
.srv-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.srv-card--rl .srv-text {
  text-align: right;
  align-items: flex-end;
}

.srv-title {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}

.srv-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 440px;
}

.srv-more {
  display: inline-block;
  padding: 8px 24px;
  background: #2255dd;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 50px;
  transition:
    background 0.2s,
    transform 0.15s;
  align-self: flex-start;
  font-style: italic;
}
.srv-card--rl .srv-more {
  align-self: flex-end;
}
.srv-more:hover {
  background: #2d66ff;
  transform: scale(1.05);
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: -80px;
  z-index: 10;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  position: relative;
  padding-top: calc(18px + env(safe-area-inset-top));
}

.hero-policy {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 0;
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #f1f1f1;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-scroll-top {
  background: none;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollArrow {
  0% {
    transform: translateY(12px);
    opacity: 0.4;
  }

  40% {
    transform: translateY(0);
    opacity: 1;
  }

  60% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

.corner {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.corner-tl {
  top: 10%;
  left: 10%;
}
.corner-tr {
  top: 10%;
  right: 10%;
}
.corner-bl {
  bottom: calc(env(safe-area-inset-bottom) + 80px);
  left: 15%;
}
.corner-br {
  bottom: calc(env(safe-area-inset-bottom) + 80px);
  right: 15%;
}

.corner-tl::before,
.corner-tr::before,
.corner-bl::before,
.corner-br::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.15);
  border-style: solid;
  position: absolute;
}
.corner-tl::before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}
.corner-tr::before {
  top: -6px;
  right: -6px;
  border-width: 1px 1px 0 0;
}
.corner-bl::before {
  bottom: -6px;
  left: -6px;
  border-width: 0 0 1px 1px;
}
.corner-br::before {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 32px;
  flex: 1;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(32px, 5.5vw, 80px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(14px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 620px;
}
.hero-sub strong {
  color: #fff;
  font-weight: 700;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #2255dd;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 50px;
  font-style: italic;

  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    /* глубина */ 0 4px 10px rgba(34, 85, 221, 0.45);

  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.15s;
}

.hero-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    0 6px 14px rgba(34, 85, 221, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  gap: 16px;
}

.mobile-menu__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.mobile-lang {
  position: relative;
}

.mobile-menu__lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: #f3f5ff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-lang__arrow {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: translateY(2px);
  transition: transform 0.25s ease;
}

.mobile-lang.is-open .mobile-lang__arrow {
  transform: translateY(2px) rotate(180deg);
}

.mobile-lang__dropdown {
  position: absolute;
  left: 0;
  bottom: calc(100% + 18px);
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: rgba(76, 110, 230, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.mobile-lang.is-open .mobile-lang__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-lang__dropdown::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 100%;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  background: rgba(76, 110, 230, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(45deg);
}

.mobile-lang__dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.mobile-lang__dropdown a:hover,
.mobile-lang__dropdown a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-logo {
  display: flex;
  align-items: center;

  max-width: 200px;
  flex-shrink: 0;
}

.mobile-logo img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
}

.mobile-logo img {
  width: clamp(120px, 28vw, 200px);
  height: auto;
}

.logo-u {
  font-style: italic;
  margin-right: 1px;
}

.hero-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;

  padding: 21px 34px;

  border-radius: 999px 0 0 999px;

  background: linear-gradient(
    90deg,
    rgba(18, 40, 85, 0.45) 0%,
    rgba(12, 30, 65, 0.6) 100%
  );

  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
}

.hero-nav-menu a {
  font-size: 17px;
  letter-spacing: 0.12em;
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 600;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-socials a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
  display: flex;
}
.hero-socials a:hover {
  color: #fff;
}

.hero-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   SCROLL SECTION
═══════════════════════════════════════ */
.scroll-section {
  position: relative;
  z-index: 1;

  background: #00112c;
}

.sticky-viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phrases-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phrase {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 85vw;
  max-width: 85vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  will-change: transform, opacity;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.phrase .line {
  display: block;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.2;
  color: #8a9bb8;
  white-space: nowrap;
}

.process-section .phrases-stage {
  max-width: 1280px;
  margin: 0 auto;
}

.phrase--process {
  width: min(1120px, 92vw);
  max-width: none;
  gap: 0;
}

.process-layout {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
}

.process-number {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(150px, 18vw, 230px);
  font-weight: 800;
  line-height: 0.9;

  text-align: center;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    color 0.35s ease;
}

.process-content {
  max-width: 540px;
  padding-left: 86px;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.process-content h3 {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.process-content p {
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: min(68vh, 560px);
  transform: translate(-50%, -50%);
  background: rgba(215, 227, 255, 0.9);
  border-radius: 999px;
  z-index: 3;
  pointer-events: none;
}

.process-line::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  width: 4px;
  height: 26px;
  transform: translateX(-50%);
  background: rgba(215, 227, 255, 0.9);
  border-radius: 999px;
}

.process-line::after {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 12px solid rgba(215, 227, 255, 0.95);
}

.process-dot {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translateX(-50%);
  background: #d7e3ff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(215, 227, 255, 0.08);
}

.process-dot--top {
  top: 7%;
}

.process-dot--middle {
  top: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
}

.process-dot--bottom {
  bottom: 7%;
}

/* .process-section .phrase[data-index="1"] .process-number {
  color: rgba(255, 255, 255, 0.98);
}

.process-section .phrase[data-index="1"] .process-content {
  opacity: 1;
} */

html.menu-open,
body.menu-open {
  overflow: hidden;
}

.mobile-topbar,
.mobile-menu {
  display: none;
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero-logo,
.hero-socials {
  flex-shrink: 0;
}

.hero-nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 28px);
  padding: 14px 24px;
  min-width: 0;
  flex: 1 1 auto;

  background: linear-gradient(
    90deg,
    rgba(18, 40, 85, 0.45) 0%,
    rgba(12, 30, 65, 0.6) 100%
  );

  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
}

.hero-nav-menu a {
  white-space: nowrap;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 600;
}

.hero-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.hero-logo img {
  width: clamp(120px, 12vw, 200px);
  height: auto;
  display: block;
}

/* html {
  overflow: hidden;
} */

/* PROJECTS */
.projects {
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.projects-slider {
  overflow: unset;
  max-width: 95vw;
}

.projects-top {
  margin: 40px auto 0;
  max-width: 95vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.projects-title {
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* NAV */
.projects-nav {
  display: flex;
  gap: 12px;
}

.projects-prev,
.projects-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.projects-prev::before,
.projects-next::before {
  content: "";
  width: 18px;
  height: 18px;

  background: url("../icons/arrow-up.svg") no-repeat center/contain;
}

.projects-prev::before {
  transform: rotate(-90deg);
}

.projects-next::before {
  transform: rotate(90deg);
}

/* SLIDER */

/* CARD */
.project-card {
  width: 320px;
}

.project-card__inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* DARK OVERLAY */
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);

  transition: 0.3s;
}

.project-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;

  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(180deg, #020715 0%, #081536 100%);

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 3;
}

.project-arrow::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../icons/arrow-up.svg") center/contain no-repeat;
  transform: rotate(90deg);
}

/* TAGS */
.project-tags {
  position: absolute;
  bottom: 16px;
  left: 16px;

  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);

  letter-spacing: 0.1em;
}

/* HOVER */
.project-card:hover img {
  transform: scale(1.05);
}

.project-card:hover .project-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.project-card:hover .project-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
  .projects-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .projects-slider {
    padding-left: 16px;
  }

  .project-card {
    width: 260px;
  }

  .projects-nav {
    display: none;
  }

  .get-started__plus {
    display: block !important;
  }

  .get-started__logo {
    display: none;
  }
  .get-started__phone {
    display: none;
  }
  .more-services__container {
    margin: 80px auto 60px;
  }
  .projects-title {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 100svh;
  }

  .hero-topbar,
  .hero-nav {
    display: none;
  }
  .corner {
    display: flex;
  }

  .mobile-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 16px;
  }

  .mobile-menu-open {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-logo {
    color: #fff;
    text-decoration: none;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .mobile-topbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #2255dd;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-style: italic;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  }

  .hero-content {
    padding: 0px 20px 36px;
    margin-top: 0;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 72px);
    line-height: 0.96;
    letter-spacing: 0.02em;
  }

  .hero-sub {
    max-width: 320px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-btn {
    min-height: 48px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    pointer-events: auto;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 18, 0.58);
    opacity: 0;
    transition: opacity 0.28s ease;
  }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(78vw, 340px);
    height: 100%;
    background: #2450cd;
    padding: 20px 22px 26px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -24px 0 48px rgba(0, 0, 0, 0.35);
  }

  .mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
  }

  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }

  .mobile-menu__top {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 44px;
  }

  .mobile-menu__socials {
    display: flex;
    gap: 10px;
  }

  .mobile-menu__socials a {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .mobile-menu__phone {
    align-self: flex-start;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-style: italic;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    margin-bottom: auto;
  }

  .mobile-menu__nav a {
    color: #fff;
    text-decoration: none;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .mobile-menu__nav a.mobile-menu__muted {
    color: rgba(255, 255, 255, 0.65);
  }

  .mobile-menu__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 38px;
  }

  .mobile-menu__lang,
  .mobile-menu__close {
    appearance: none;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu__lang {
    font-family: "IBM Plex Sans", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .mobile-menu__close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.08);
  }

  .phrase .line {
    white-space: normal;
    word-break: break-word;
    text-align: center;
    font-size: clamp(22px, 7vw, 48px) !important;
    line-height: 1.15;
  }

  .scroll-section .phrase {
    width: min(88vw, 480px);
    padding: 0 8px;
    /* Smooth crossfade transition on mobile */
    transition:
      opacity 0.18s ease,
      transform 0.18s ease;
  }

  .services {
    padding: 72px 0 24px;
    margin-bottom: -40px;
  }

  .services-inner {
    padding: 0 16px;
    gap: 48px;
  }

  .srv-card,
  .srv-card--lr,
  .srv-card--rl {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .srv-card--rl .srv-text {
    text-align: left;
    align-items: flex-start;
  }

  .srv-card + .srv-card {
    padding-top: 48px;
  }

  .srv-title {
    font-size: clamp(26px, 8vw, 40px);
  }

  .srv-desc {
    max-width: none;
    font-size: 15px;
    line-height: 1.6;
  }

  .process-content h3 {
    font-size: clamp(28px, 9vw, 44px);
    margin-bottom: 12px;
  }

  .process-content p {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 900px) {
  .process-layout {
    min-height: 560px;
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .process-number {
    text-align: left;
    padding-left: 18px;
    margin-bottom: 26px;
  }

  .process-content {
    padding-left: 72px;
    max-width: none;
  }

  .process-line {
    left: 48px;
    height: min(60vh, 420px);
  }
}
/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-nav-links {
    display: none;
  }
  .hero-socials .hero-copy {
    display: none;
  }
  .corner {
    display: flex;
  }

  .srv-card,
  .srv-card--lr,
  .srv-card--rl {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .srv-card--rl {
    direction: ltr;
  }
  .srv-card--rl .srv-text {
    text-align: left;
    align-items: flex-start;
    order: 2;
  }
  .srv-card--rl .srv-img-wrap {
    order: 1;
  }
  .srv-card--rl .srv-more {
    align-self: flex-start;
  }
  .services-inner {
    padding: 0 20px;
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .process-section .sticky-viewport {
    min-height: 100svh;
    align-items: center;
    justify-content: center;
  }

  .process-section .phrases-stage {
    width: 100%;
    max-width: none;
    padding: 0 14px;
  }

  .phrase--process {
    width: calc(100vw - 28px);
    max-width: 360px;
  }

  .process-layout {
    min-height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 32px 0;
    text-align: center;
  }

  .process-line {
    display: none;
  }

  .process-number {
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
    text-align: center;
    font-size: clamp(86px, 34vw, 150px);
    line-height: 0.9;
  }

  .process-content {
    width: 100%;
    max-width: 340px;
    padding-left: 0;
    text-align: center;
  }

  .process-content h3 {
    font-size: clamp(24px, 8.5vw, 38px);
    line-height: 0.95;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
  }

  .process-content p {
    max-width: 340px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.45;
  }
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(to bottom, #00112c 0%, #001b4a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: -80px;
  z-index: 10;
}

.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.hero-policy {
  font-size: 16px;
  letter-spacing: 0.12em;
  color: #f1f1f1;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-scroll-top {
  background: none;
  border: 0;
  width: 36px;
  height: 36px;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollArrow 1.8s ease-in-out infinite;
}

@keyframes scrollArrow {
  0% {
    transform: translateY(12px);
    opacity: 0.4;
  }
  40% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0.4;
  }
}

.corner {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.corner-tl {
  top: 20%;
  left: 15%;
}

.corner-tr {
  top: 20%;
  right: 15%;
}

.corner-bl {
  bottom: calc(env(safe-area-inset-bottom) + 250px);
  left: 15%;
}

.corner-br {
  bottom: calc(env(safe-area-inset-bottom) + 250px);
  right: 15%;
}

.corner-tl::before,
.corner-tr::before,
.corner-bl::before,
.corner-br::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.15);
  border-style: solid;
  position: absolute;
}

.corner-tl::before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
}

.corner-tr::before {
  top: -6px;
  right: -6px;
  border-width: 1px 1px 0 0;
}

.corner-bl::before {
  bottom: -6px;
  left: -6px;
  border-width: 0 0 1px 1px;
}

.corner-br::before {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex: 1;
  gap: 32px;
  padding: 0 24px;
}

.hero-title {
  font-size: clamp(32px, 5.5vw, 80px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(14px, 1.3vw, 18px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 620px;
}

.hero-sub strong {
  color: #fff;
  font-weight: 700;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  color: #fff;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  border-radius: 50px;
  font-style: italic;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    0 4px 10px rgba(34, 85, 221, 0.45);
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.15s;
  background: #1544bf;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    0 6px 14px rgba(34, 85, 221, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 32px;
}

.hero-logo,
.hero-socials {
  flex-shrink: 0;
}

.hero-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hero-logo img {
  display: block;
  width: clamp(120px, 12vw, 200px);
  height: auto;
}

.hero-nav-links {
  display: flex;
  align-items: stretch;
  min-width: 0;
  max-width: 100%;
  border-radius: 999px;
}

.hero-nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 28px);
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 24px;
  background: linear-gradient(
    90deg,
    rgba(18, 40, 85, 0.45) 0%,
    rgba(12, 30, 65, 0.6) 100%
  );
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-right: none;
}

.hero-nav-menu a {
  position: relative;
  white-space: nowrap;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.hero-nav-menu a:hover {
  color: #fff;
}

.hero-nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 14px 24px;
  font-size: clamp(10px, 0.8vw, 12px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #fff;
  background: #1544bf;
  border-radius: 0 999px 999px 0;

  border: none;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-socials a {
  display: flex;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.hero-socials a:hover {
  color: #fff;
}

.hero-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.hero-nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero-lang {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-lang__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: transparent;
  border: none;
  color: #fff;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-size: clamp(10px, 0.8vw, 12px);
}

.hero-lang__arrow {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  transform: translateY(-2px);
  transition: transform 0.25s ease;
}

.hero-lang.active .hero-lang__arrow {
  transform: translateY(-2px) rotate(180deg);
}

.hero-lang__dropdown {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translateX(-50%) translateY(10px);
  min-width: 48px;
  padding: 10px 0;
  background: rgba(7, 28, 74, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-lang.active .hero-lang__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.hero-lang__dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 105%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: rgba(7, 28, 74, 0.96);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  rotate: 45deg;
  margin-top: -5px;
}

.hero-lang__dropdown a {
  display: block;
  padding: 6px 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  font-size: clamp(10px, 0.8vw, 12px);
}

.hero-lang__dropdown a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════
   MOBILE HERO / DRAWER
═══════════════════════════════════════ */
html.menu-open,
body.menu-open {
  overflow: hidden;
}

.mobile-topbar,
.mobile-menu {
  display: none;
}

.mobile-bottom {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 35;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.mobile-bottom__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  flex-shrink: 0;
}

.mobile-bottom__logo img {
  display: block;
  width: 34px;
  height: auto;
}

.mobile-bottom__cta {
  min-width: 0;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    90deg,
    rgba(18, 40, 85, 0.45) 0%,
    rgba(12, 30, 65, 0.6) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #f1f1f1;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.mobile-bottom__burger {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: linear-gradient(
    90deg,
    rgba(18, 40, 85, 0.45) 0%,
    rgba(12, 30, 65, 0.6) 100%
  );

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;

  cursor: pointer;
  flex-shrink: 0;
}

.mobile-bottom__burger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: #f1f1f1;
}

.mobile-bottom {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 35;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 0 16px;
  }

  .mobile-bottom__burger span {
    display: block;
    width: 32px;
    height: 1px;
    border-radius: 999px;
    background: #f1f1f1;
  }
}

/* ═══════════════════════════════════════
   HERO ADAPTIVE FROM 1024
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .mobile-bottom {
    display: flex;
  }
  .hero {
    min-height: 80svh;
  }

  .hero-topbar,
  .hero-nav {
    display: none;
  }

  .mobile-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 16px;
  }

  .mobile-menu-open {
    appearance: none;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    max-width: 200px;
    flex-shrink: 0;
    text-decoration: none;
  }

  .mobile-logo img {
    display: block;
    width: clamp(120px, 24vw, 200px);
    height: auto;
  }

  .mobile-topbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #2255dd;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-style: italic;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  }

  .hero-content {
    margin-top: 0;
    padding: 0px 20px 36px;
    gap: 28px;
  }

  .hero-title {
    font-size: clamp(42px, 9vw, 72px);
    line-height: 0.96;
    letter-spacing: 0.02em;
  }

  .hero-sub {
    max-width: 500px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-btn {
    min-height: 48px;
    padding: 0 24px;
    font-size: 20px;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    pointer-events: auto;
  }

  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 18, 0.58);
    opacity: 0;
    transition: opacity 0.28s ease;
  }

  .mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(78vw, 340px);
    height: 100%;
    padding: 20px 22px 26px;
    display: flex;
    flex-direction: column;
    background: #2450cd;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -24px 0 48px rgba(0, 0, 0, 0.35);
  }

  .mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
  }

  .mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0);
  }

  .mobile-menu__top {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 44px;
  }

  .mobile-menu__socials {
    display: flex;
    gap: 10px;
  }

  .mobile-menu__socials a {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .mobile-menu__phone {
    align-self: flex-start;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-style: italic;
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    margin-bottom: auto;
  }

  .mobile-menu__nav a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .mobile-menu__nav a.mobile-menu__muted {
    color: rgba(255, 255, 255, 0.65);
  }

  .mobile-menu__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 38px;
  }

  .mobile-menu__lang,
  .mobile-menu__close {
    appearance: none;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu__lang {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .mobile-menu__close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-topbar {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    height: 24px;
    z-index: 20;
  }

  .mobile-logo {
    position: absolute;
    left: 50%;
    top: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    animation: logoFloat 1.8s ease-in-out infinite;
  }

  .mobile-logo img {
    width: 24px;
    height: 24px;
    display: block;
  }

  @keyframes logoFloat {
    0% {
      transform: translateX(-50%) translateY(10px);
      opacity: 0;
    }
    20% {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    80% {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-10px);
      opacity: 0;
    }
  }
}

@media (max-width: 640px) {
  .mobile-topbar {
    padding: 16px 12px;
  }

  .mobile-topbar-cta {
    display: none;
  }

  .mobile-logo img {
    width: clamp(110px, 34vw, 180px);
  }

  .hero-title {
    font-size: clamp(34px, 12vw, 54px);
  }

  .hero-sub {
    max-width: 320px;
    font-size: 14px;
  }

  .hero-btn {
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .mobile-menu__panel {
    width: min(82vw, 320px);
  }

  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .process-section .phrases-stage {
    width: 100%;
    max-width: none;
    padding: 0 20px;
  }

  .phrase--process {
    width: calc(100vw - 40px);
    max-width: 420px;
  }

  .process-layout {
    min-height: 100svh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 32px 0;
    text-align: center;
  }

  .process-number {
    width: 100%;
    text-align: center;
    padding-left: 0;
    margin-bottom: 0;
    font-size: clamp(96px, 34vw, 170px);
    line-height: 0.88;
  }

  .process-content {
    width: 100%;
    max-width: 420px;
    padding-left: 0;
    text-align: center;
  }

  .process-content h3 {
    font-size: clamp(26px, 8vw, 40px);
    line-height: 0.95;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
  }

  .process-content p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.5;
  }
}

.get-started .more-services__container {
  margin-bottom: 0;
  margin-top: 40px;
}

.get-started__plus {
  display: none;
}

.get-started__phone {
  color: #f1f1f1;
  text-decoration: underline;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
}

.get-started__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.get-started__arrow {
  display: none;
}

@media (max-width: 768px) {
  .get-started__center {
    gap: 18px;
  }

  .corner-tl::before {
    top: 1px;
  }

  .corner-tr::before {
    top: 1px;
  }

  .hero{
    height: 80vh;
    min-height: 80vh;
  }

  .get-started__arrow {
    display: block;
    width: 20px;
    height: 20px;
    opacity: 0.75;
    transform: rotate(180deg);
    animation: getStartedArrowDown 1.6s ease-in-out infinite;
  }
}

@keyframes getStartedArrowDown {
  0% {
    transform: rotate(180deg) translateY(0);
    opacity: 0.45;
  }

  50% {
    transform: rotate(180deg) translateY(-6px);
    opacity: 1;
  }

  100% {
    transform: rotate(180deg) translateY(0);
    opacity: 0.45;
  }
}

/* =========================
   GET STARTED FULLSCREEN
========================= */

.gs-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, #020715 0%, #081536 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.gs-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.gs-open,
body.gs-open {
  overflow: hidden;
}

.gs-screen {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.gs-topbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 34px 34px 0;
}

.gs-back-home {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

.gs-back-home__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 22px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gs-back-home__icon img {
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
}

.gs-back-home__text {
  font-size: 18px;
  line-height: 1;
}

.gs-step-counter {
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.gs-content {
  flex: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gs-title {
  margin: 30px 0 26px;
  text-align: center;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 80px);
  line-height: 1.02;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  color: #f4f4f4;
  max-width: 1400px;
}

.gs-subtitle {
  margin-bottom: 54px;
  text-align: center;
  font-size: clamp(22px, 1.8vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.2;
}

.gs-grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 84px;
}

.gs-card {
  appearance: none;
  border: 0;
  min-height: 320px;
  border-radius: 22px;
  cursor: pointer;
  padding: 28px;
  color: #f4f4f4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(to bottom, #020715 0%, #081536 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 16px 28px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    outline-color 0.22s ease,
    background 0.22s ease;
  outline: 2px solid transparent;
}

.gs-card span {
  font-size: clamp(26px, 1.8vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
}

.gs-card--advice {
  background: #636b82;
}

.gs-card:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 34px rgba(0, 0, 0, 0.28);
}

.gs-card.is-selected {
  outline-color: rgba(46, 99, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 4px rgba(46, 99, 255, 0.12),
    0 20px 34px rgba(0, 0, 0, 0.3);
}

.gs-continue {
  appearance: none;
  border: 0;
  min-width: 280px;
  height: 84px;
  padding: 0 40px;
  border-radius: 999px;
  cursor: pointer;

  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-style: italic;
  text-transform: uppercase;
  color: #f4f4f4;

  background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.32),
    0 4px 12px rgba(46, 99, 255, 0.26);

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.gs-continue:hover:not(:disabled) {
  transform: translateY(-2px);
}

.gs-continue:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

/* MOBILE */
@media (max-width: 1024px) {
  .gs-topbar {
    padding: 8px 10px 0;
  }

  .gs-back-home {
    gap: 8px;
  }

  .gs-back-home__icon {
    width: 44px;
    height: 44px;
  }

  .gs-back-home__icon img {
    width: 16px;
    height: 16px;
  }

  .gs-back-home__text {
    font-size: 10px;
  }

  .gs-step-counter {
    font-size: 14px;
  }

  .gs-content {
    padding: 14px 24px 20px;
  }

  .gs-title {
    max-width: 360px;
    margin: 26px 0 12px;
    font-size: 36px;
    line-height: 0.98;
    letter-spacing: 0.05em;
  }

  .gs-subtitle {
    margin-bottom: 26px;
    font-size: 18px;
  }

  .gs-grid {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 0 0;
    margin-bottom: 56px;
  }

  .gs-card {
    min-height: 205px;
    border-radius: 22px;
    padding: 18px;
  }

  .gs-card span {
    font-size: 22px;
    line-height: 1.08;
  }

  .gs-continue {
    min-width: 248px;
    height: 64px;
    font-size: 28px;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 420px) {
  .gs-card span {
    font-size: 16px;
  }
}

/* =========================
   GET STARTED STEP 2
========================= */

.gs-screen--step-2 {
  display: none;
}

.gs-screen--step-2.active {
  display: flex;
}

.gs-screen--step-1:not(.active) {
  display: none;
}

.gs-contact {
  flex: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gs-contact__title {
  margin: 18px 0 22px;
  text-align: center;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-transform: uppercase;
  color: #f4f4f4;
}

.gs-contact__subtitle {
  margin-bottom: 48px;
  text-align: center;
  font-size: clamp(22px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.82);
}

.gs-form {
  width: 100%;
  max-width: 700px;
}

.gs-input {
  width: 100%;
  height: 58px;
  border: 0;
  outline: none;
  border-radius: 999px;
  padding: 0 26px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 18px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.12)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.gs-input::placeholder,
.gs-attach__textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.gs-phone-row {
  display: flex;
  gap: 0;
  margin-bottom: 18px;
}

.gs-country {
  position: relative;
  width: 108px;
  flex-shrink: 0;
}

.gs-country__selected {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.gs-country__selected img {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.gs-country__arrow {
  color: #fff;
  font-size: 12px;
  opacity: 0.85;
}

.gs-country__dropdown {
  position: absolute;
  top: 64px;
  left: 0;
  width: 54px;
  padding: 8px 0;
  border-radius: 10px;
  background: rgba(23, 32, 62, 0.96);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
}

.gs-country.open .gs-country__dropdown {
  display: flex;
}

.gs-country__option {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  justify-content: center;
}

.gs-country__option img {
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.gs-input--phone {
  border-radius: 0 999px 999px 0;
  margin-bottom: 0;
}

.gs-attach {
  width: 100%;
  min-height: 166px;
  border-radius: 26px;
  overflow: hidden;
  margin-bottom: 22px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.12)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.gs-attach__top {
  min-height: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  padding-left: 24px;
  position: relative;
}

.gs-attach__placeholder {
  color: rgba(255, 255, 255, 0.46);
  font-size: 18px;
  line-height: 1.2;
  padding-right: 130px;
}

.gs-attach__files {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 58px;
}

.gs-file-chip {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  flex-shrink: 0;
}

.gs-file-chip button {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #222;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
}

.gs-attach__pin {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 58px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}

.gs-attach__pin img {
  width: 22px;
  height: 22px;
  opacity: 0.8;
}

.gs-attach__input {
  display: none;
}

.gs-attach__textarea {
  width: 100%;
  min-height: 108px;
  resize: none;
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
  padding: 16px 24px 18px;
}

.gs-check {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
  cursor: pointer;
}

.gs-check input {
  display: none;
}

.gs-check__box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gs-check__tick {
  opacity: 0;
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

.gs-check input:checked + .gs-check__box .gs-check__tick {
  opacity: 1;
}

.gs-check__text {
  color: #fff;
  font-size: 18px;
}

.gs-check__text a {
  color: #fff;
  text-underline-offset: 4px;
}

.gs-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.gs-prev {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gs-prev img {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}

.gs-submit {
  appearance: none;
  border: 0;
  min-width: 190px;
  height: 58px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.14em;
  font-style: italic;
  text-transform: uppercase;
  color: #f4f4f4;
  background: linear-gradient(180deg, #2e63ff 0%, #234fd0 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.32),
    0 4px 12px rgba(46, 99, 255, 0.26);
}

.gs-submit.is-success {
  min-width: 210px;
}

/* MOBILE STEP 2 */
@media (max-width: 768px) {
  .gs-contact {
    max-width: 360px;
    padding: 14px 14px 26px;
    align-items: stretch;
  }

  .gs-contact__title {
    margin: 30px 0 10px;
    font-size: 34px;
    line-height: 0.96;
    text-align: left;
  }

  .gs-contact__subtitle {
    margin-bottom: 28px;
    font-size: 18px;
    text-align: left;
  }

  .gs-form {
    max-width: 100%;
  }

  .gs-input {
    height: 44px;
    padding: 0 18px;
    margin-bottom: 10px;
    font-size: 16px;
  }

  .gs-country {
    width: 62px;
  }

  .gs-country__selected {
    height: 44px;
  }

  .gs-country__selected img,
  .gs-country__option img {
    width: 24px;
    height: 16px;
  }

  .gs-country__dropdown {
    top: 50px;
    width: 46px;
  }

  .gs-attach {
    min-height: 118px;
    border-radius: 20px;
    margin-bottom: 14px;
  }

  .gs-attach__top {
    min-height: 44px;
    padding-left: 14px;
  }

  .gs-attach__placeholder {
    font-size: 14px;
    padding-right: 58px;
  }

  .gs-attach__files {
    gap: 6px;
    padding-right: 44px;
  }

  .gs-file-chip {
    width: 20px;
    height: 20px;
  }

  .gs-file-chip button {
    width: 11px;
    height: 11px;
    top: -4px;
    right: -4px;
    font-size: 8px;
  }

  .gs-attach__pin {
    width: 42px;
    height: 44px;
  }

  .gs-attach__pin img {
    width: 18px;
    height: 18px;
  }

  .gs-attach__textarea {
    min-height: 72px;
    padding: 10px 14px 12px;
    font-size: 16px;
  }

  .gs-check {
    gap: 10px;
    margin-bottom: 28px;
  }

  .gs-check__box {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .gs-check__tick {
    font-size: 21px;
  }

  .gs-check__text {
    font-size: 14px;
  }

  .gs-actions {
    justify-content: flex-start;
    gap: 12px;
    padding-left: 44px;
  }

  .gs-prev {
    width: 42px;
    height: 42px;
  }

  .gs-prev img {
    width: 16px;
    height: 16px;
  }

  .gs-submit {
    min-width: 154px;
    height: 42px;
    font-size: 20px;
    letter-spacing: 0.12em;
  }

  .gs-submit.is-success {
    min-width: 170px;
  }
}

/* ===== GET STARTED MODAL: FINAL FIX ===== */

html.gs-open,
body.gs-open {
  overflow: hidden;
}

.gs-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(to bottom, #020715 0%, #081536 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  overflow: hidden;
}

.gs-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gs-screen {
  display: none;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  flex-direction: column;
  width: 100%;
}

.gs-screen.active {
  display: flex;
}

.gs-topbar {
  flex: 0 0 auto;
}

.gs-content,
.gs-contact {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.gs-content {
  padding: 42px 32px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.gs-contact {
  padding: 42px 32px 64px;
}

@media (max-width: 1024px) {
  .gs-screen {
    padding-bottom: 24px;
  }

  .gs-content,
  .gs-contact {
    padding: 20px 20px 48px;
  }

  .gs-content {
    justify-content: flex-start;
  }
}
/* ═══════════════════════════════════════
   ALINA: CORNER + ARROW FIX FOR MOBILE
   Корнеры и стрелка всегда видны в нижней
   части hero независимо от положения бара
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Верхние корнеры переносим вниз — hero видна снизу при загрузке */
  .corner-tl {
    top: 0;
    bottom: 82px;
    left: 6%;
    padding-top: 8px;
  }
  .corner-tr {
    top: 0;
    right: 6%;
    padding-top: 8px;
  }
  .corner-bl {
    bottom: 20%;
    left: 6%;
  }
  .corner-br {
    bottom: 20%;
    right: 6%;
  }

  /* Стрелка — чуть выше корнеров, по центру */
  .hero-scroll-top {
    position: absolute;
    top: auto !important;
    bottom: 136px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollArrow 1.8s ease-in-out infinite;
  }
}


.srv-card {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform, opacity;
}

.srv-img-wrap {
  overflow: hidden;
  border-radius: 30px;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

html {
  background-color: #00112c;
}

body {
  background-color: #00112c;
}

