:root {
  --bg: #eef5fb;
  --text: #102746;
  --muted: rgba(16, 39, 70, 0.62);
  --line: rgba(16, 39, 70, 0.14);
  --line-strong: rgba(16, 39, 70, 0.22);
  --accent: #27c9da;
  --accent-strong: #1db6cf;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(19, 55, 93, 0.1);
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.55) 12%,
      rgba(255, 255, 255, 0.25) 24%,
      rgba(255, 255, 255, 0) 38%
    ),
    radial-gradient(
      ellipse 70% 55% at 100% 100%,
      rgba(105, 185, 235, 0.18),
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 50% at 0% 80%,
      rgba(95, 170, 225, 0.11),
      transparent 65%
    ),
    linear-gradient(
      180deg,
      #eff5fa 0%,
      #deeff7 20%,
      #c5dff1 40%,
      #94c4eb 60%,
      #5fabe0 80%,
      #3196d4 100%
    );
  min-height: 100vh;
  color: var(--text);
  font-family: "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.bg-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2200px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.bg-glow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(248, 251, 255, 0.55) 0%,
      rgba(248, 251, 255, 0.32) 22%,
      rgba(248, 251, 255, 0.12) 40%,
      rgba(248, 251, 255, 0) 55%
    ),
    url("assets/1be9e699-d34b-4059-a2c1-45175576393d(q).png") center center / cover no-repeat;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0,
    rgba(0, 0, 0, 1) calc(100% - 260px),
    rgba(0, 0, 0, 0.92) calc(100% - 200px),
    rgba(0, 0, 0, 0.7) calc(100% - 140px),
    rgba(0, 0, 0, 0.4) calc(100% - 80px),
    rgba(0, 0, 0, 0.15) calc(100% - 30px),
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 1) 0,
    rgba(0, 0, 0, 1) calc(100% - 260px),
    rgba(0, 0, 0, 0.92) calc(100% - 200px),
    rgba(0, 0, 0, 0.7) calc(100% - 140px),
    rgba(0, 0, 0, 0.4) calc(100% - 80px),
    rgba(0, 0, 0, 0.15) calc(100% - 30px),
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 16% 34%, rgba(255, 255, 255, 0.6), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero__header,
.hero__content {
  position: relative;
  z-index: 1;
}

.hero__header,
.hero__content {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.hero__header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  gap: 0;
}

.logo__image {
  display: block;
  width: 95px;
  height: auto;
}

.hero__nav {
  display: flex;
  gap: 34px;
  margin-left: 28px;
  color: rgba(16, 39, 70, 0.82);
}

.hero__nav a {
  transition: color 160ms ease;
}

.hero__nav a:hover,
.hero__nav a:focus-visible {
  color: var(--text);
}

.hero__contact {
  display: grid;
  gap: 3px;
  margin-left: auto;
  text-align: right;
}

.hero__contact a {
  font-weight: 700;
}

.hero__contact span {
  font-size: 0.86rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
  position: relative;
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  font-size: 0;
  line-height: 0;
  z-index: 1001;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 200ms ease, top 200ms ease, bottom 200ms ease, opacity 150ms ease;
}

.menu-toggle::before {
  top: 12px;
  box-shadow: 0 8px 0 var(--text);
}

.menu-toggle::after {
  bottom: 12px;
}

.menu-toggle[aria-expanded="true"]::before {
  top: 20px;
  box-shadow: 0 0 0 transparent;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  bottom: 20px;
  transform: rotate(-45deg);
}

.mobile-call {
  display: none;
}

@media (max-width: 920px) {
  .mobile-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(8, 174, 202, 0.24);
  }

  .mobile-call img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .menu-toggle {
    margin-left: 10px;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--solid {
  color: var(--white);
  background: linear-gradient(180deg, #0a8fa4 0%, #16b1c8 55%, #2cd5e6 100%);
  box-shadow:
    0 14px 30px rgba(39, 201, 218, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.button--ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.button--large {
  min-width: 220px;
}

.hero__header > .button {
  min-height: 36px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 0.84rem;
  box-shadow: 0 10px 22px rgba(39, 201, 218, 0.14);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100svh - 96px);
  padding: 64px 0 78px;
}

.hero__copy {
  max-width: 570px;
}

.hero__copy h1 {
  margin: 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(1.91rem, 3.57vw, 3.31rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.hero__break-mobile {
  display: none;
}

.hero__break-wide {
  display: none;
}

@media (min-width: 921px) {
  .hero__break-wide {
    display: inline;
  }
}

.hero__lead {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 18px 24px;
  width: min(720px, calc(100vw - 72px));
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-feature {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: auto;
  padding: 0;
}

.hero-feature__icon {
  position: relative;
  width: 38px;
  height: 38px;
}

.hero-feature__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-feature--shield .hero-feature__icon::before {
  background-image: url("assets/главная/c1(q).png");
}

.hero-feature--clock .hero-feature__icon::before {
  background-image: url("assets/главная/c2(q).png");
}

.hero-feature--manager .hero-feature__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%2327c9da' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 12a3.7 3.7 0 1 0 0-7.4 3.7 3.7 0 0 0 0 7.4Z'/%3E%3Cpath d='M5.2 19.4c1.6-3 4-4.5 6.8-4.5s5.2 1.5 6.8 4.5'/%3E%3C/svg%3E");
}

.hero-feature--guarantee .hero-feature__icon::before {
  background-image: url("assets/главная/c3(q).png");
}

.hero-feature__text {
  display: grid;
  gap: 3px;
  padding-top: 1px;
}

.hero-feature__text strong,
.hero-feature__text span {
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
}

.hero-feature__text strong {
  color: rgba(16, 39, 70, 0.92);
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.14;
}

.hero-feature__text span {
  color: rgba(16, 39, 70, 0.62);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.22;
}

.hero__trust {
  width: 100%;
  min-width: 0;
  margin-top: 42px;
}

.hero__trust p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
}

.hero__logos {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  color: rgba(16, 39, 70, 0.44);
  font-size: clamp(1.1rem, 1.62vw, 1.42rem);
  font-weight: 700;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.hero__logos-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: hero-logos-scroll 28s linear infinite;
}

.hero__logos-track > span {
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero__logos:hover .hero__logos-track {
  animation-play-state: paused;
}

@keyframes hero-logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__logos-track {
    animation: none;
  }
}

.hero__cases-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: #41bcdc;
  font-weight: 600;
}

.hero__cases-link span {
  font-size: 1.3rem;
}

.problems {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: -120px;
  color: #0F2A44;
  background: #ffffff;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.12) 18px,
    rgba(0, 0, 0, 0.34) 42px,
    rgba(0, 0, 0, 0.66) 76px,
    rgba(0, 0, 0, 0.9) 108px,
    rgba(0, 0, 0, 1) 140px,
    rgba(0, 0, 0, 1) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.12) 18px,
    rgba(0, 0, 0, 0.34) 42px,
    rgba(0, 0, 0, 0.66) 76px,
    rgba(0, 0, 0, 0.9) 108px,
    rgba(0, 0, 0, 1) 140px,
    rgba(0, 0, 0, 1) 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.problems::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 100% 0%, rgba(255, 255, 255, 0.42), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.problems::after {
  content: none;
}

.problems__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 148px 0 110px;
}

.problems__head {
  max-width: 390px;
}

.problems__eyebrow {
  margin: 0;
  color: #27c9da;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.problems h2 {
  margin: 18px 0 0;
  color: #0F2A44;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 2.62rem;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.problems__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
}

.problem-card {
  min-height: 166px;
  padding: 0 34px 0 0;
  border-right: 1px solid rgba(15, 42, 68, 0.14);
}

.problem-card + .problem-card {
  padding-left: 34px;
}

.problem-card:last-child {
  border-right: 0;
}

.has-js .problems__eyebrow,
.has-js .problems h2,
.has-js .problem-card {
  opacity: 0;
  transform: translateY(14px);
}

.has-js .problems.is-revealed .problems__eyebrow,
.has-js .problems.is-revealed h2,
.has-js .problems.is-revealed .problem-card {
  animation: problemsReveal .58s cubic-bezier(.2, .72, .2, 1) forwards;
}

.has-js .problems.is-revealed .problems__eyebrow {
  animation-delay: 0s;
}

.has-js .problems.is-revealed h2 {
  animation-delay: .08s;
}

.has-js .problems.is-revealed .problem-card:nth-child(1) {
  animation-delay: .22s;
}

.has-js .problems.is-revealed .problem-card:nth-child(2) {
  animation-delay: .32s;
}

.has-js .problems.is-revealed .problem-card:nth-child(3) {
  animation-delay: .42s;
}

.has-js .problems.is-revealed .problem-card:nth-child(4) {
  animation-delay: .52s;
}

@keyframes problemsReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .problems__eyebrow,
  .has-js .problems h2,
  .has-js .problem-card,
  .has-js .problems.is-revealed .problems__eyebrow,
  .has-js .problems.is-revealed h2,
  .has-js .problems.is-revealed .problem-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.problem-card__icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.problem-card--staff .problem-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none' stroke='%2327c9da' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 42h32'/%3E%3Cpath d='M12 42V20l12-8 12 8v22'/%3E%3Cpath d='M18 42V27h12v15'/%3E%3Cpath d='M18 20h.1M24 20h.1M30 20h.1'/%3E%3C/svg%3E");
}

.problem-card--risk .problem-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none' stroke='%2327c9da' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 6 40 13v11c0 10-6.7 15.3-16 18C14.7 39.3 8 34 8 24V13l16-7Z'/%3E%3Cpath d='M24 16v10'/%3E%3Cpath d='M24 33h.1'/%3E%3C/svg%3E");
}

.problem-card--docs .problem-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none' stroke='%2327c9da' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 6h14l8 8v28H15V6Z'/%3E%3Cpath d='M29 6v9h8'/%3E%3Cpath d='M20 24h12'/%3E%3Cpath d='M20 31h12'/%3E%3Cpath d='M20 38h7'/%3E%3C/svg%3E");
}

.problem-card--time .problem-card__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48' fill='none' stroke='%2327c9da' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='22' cy='22' r='13'/%3E%3Cpath d='m32 32 8 8'/%3E%3Cpath d='M22 14v8l5 4'/%3E%3C/svg%3E");
}

.problem-card h3 {
  margin: 0;
  max-width: 230px;
  color: #0F2A44;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.08;
}

.problem-card p {
  margin: 14px 0 0;
  max-width: 260px;
  color: rgba(15, 42, 68, 0.66);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.problems__stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 64px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(15, 42, 68, 0.14);
}

.problem-stat {
  min-height: 94px;
  padding: 0 26px;
  border-right: 1px solid rgba(15, 42, 68, 0.14);
  text-align: center;
}

.problem-stat:first-child {
  padding-left: 0;
}

.problem-stat:last-child {
  padding-right: 0;
  border-right: 0;
}

.problem-stat strong {
  display: block;
  color: #16b1c8;
  background: linear-gradient(180deg, #0d8497 0%, #1eb8ce 50%, #36d8e8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 0.95;
}

.problem-stat span {
  display: block;
  max-width: 180px;
  margin: 12px auto 0;
  color: rgba(15, 42, 68, 0.74);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.32;
}

@media (max-width: 1180px) {
  .hero__header {
    gap: 16px;
  }

  .hero__nav {
    gap: 22px;
    margin-left: 12px;
  }

  .hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(620px, 100%);
  }

  .problem-card {
    padding-right: 28px;
  }

  .problem-card + .problem-card {
    padding-left: 28px;
  }

  .problem-stat {
    padding: 0 18px;
  }

  .services__photo-frame {
    position: static;
    width: auto;
    left: auto;
    height: 320px;
    margin: 0 calc((100vw - min(calc(100% - 48px), var(--container))) / -2) 40px;
    border-radius: 14px;
    overflow: hidden;
  }

  .services__photo {
    object-position: 50% 30%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .services__head,
  .services__grid {
    max-width: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services__top-wave {
    height: 160px;
  }

  .services {
    padding-top: 80px;
  }
}

@media (max-width: 920px) {
  .hero {
    background-position: 72% center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero__nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 22px;
    border: 1px solid rgba(15, 42, 68, 0.1);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 42, 68, 0.18);
    z-index: 1000;
    font-size: 1.05rem;
  }

  .hero__nav.is-open {
    display: flex;
  }

  .hero__contact,
  .hero__header > .button {
    display: none;
  }

  .hero__content {
    min-height: auto;
    padding: 54px 0 72px;
  }

  .hero__copy {
    max-width: 620px;
  }

  .problems {
    background-position: center center, center center, 64% 12%;
  }

  .problems__content {
    padding: 118px 0 62px;
  }

  .problems h2 {
    font-size: 2.24rem;
  }

  .problems__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .problem-card {
    min-height: auto;
    padding: 0 30px 0 0;
  }

  .problem-card + .problem-card {
    padding-left: 30px;
  }

  .problem-card:nth-child(2n) {
    border-right: 0;
  }

  .problem-card:nth-child(2n + 1) {
    border-right: 1px solid rgba(15, 42, 68, 0.14);
  }

  .problems__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 0;
  }

  .problem-stat {
    min-height: auto;
    padding: 0 20px;
  }

  .problem-stat:nth-child(3n) {
    border-right: 0;
  }

  .problem-stat:last-child {
    padding-right: 20px;
  }

  .services {
    margin-top: 0;
    padding: 150px 0 80px;
  }

  .services__top-wave {
    height: 130px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 920px) {
  .hero__header,
  .hero__content {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero {
    min-height: auto;
    overflow: hidden;
    background: #ffffff;
    isolation: isolate;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: clamp(380px, 55vw, 540px);
    background:
      radial-gradient(120% 60% at 50% 18%, rgba(39, 201, 218, 0.16), transparent 62%),
      linear-gradient(180deg, rgba(247, 251, 255, 0) 64%, #ffffff 100%),
      url("assets/1be9e699-d34b-4059-a2c1-45175576393d(q).png") 50% 22% / cover no-repeat;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 54%,
      rgba(0, 0, 0, 0.7) 68%,
      rgba(0, 0, 0, 0.22) 82%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 54%,
      rgba(0, 0, 0, 0.7) 68%,
      rgba(0, 0, 0, 0.22) 82%,
      transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    z-index: 0;
    pointer-events: none;
  }

  .hero::after {
    display: none;
  }

  .hero__header {
    padding-top: 28px;
  }

  .logo__image {
    width: 96px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(16, 39, 70, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(16, 39, 70, 0.12);
  }

  .menu-toggle::before {
    left: 12px;
    right: 12px;
    top: 14px;
    height: 2px;
    box-shadow: 0 7px 0 var(--text);
  }

  .menu-toggle::after {
    left: 12px;
    right: 12px;
    bottom: 13px;
    height: 2px;
  }

  .menu-toggle[aria-expanded="true"]::before {
    top: 21px;
    box-shadow: 0 0 0 transparent;
  }

  .menu-toggle[aria-expanded="true"]::after {
    bottom: 21px;
  }

  .hero__logos {
    justify-content: center;
  }

  .hero__content {
    padding: clamp(210px, 34vw, 340px) 0 36px;
    align-items: stretch;
  }

  .hero__copy {
    width: 100%;
    max-width: 540px;
    min-width: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
    overflow: hidden;
  }

  .hero__copy h1 {
    max-width: 16em;
    color: #081f3d;
    font-size: clamp(2rem, 6.65vw, 3.13rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
  }

  .hero__break-mobile {
    display: inline;
  }

  .hero__lead {
    max-width: 22em;
    margin: 22px auto 0;
    color: #0c233e;
    font-size: clamp(1rem, 4.2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    margin: 28px auto 0;
  }

  .button--large {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    font-size: 0.98rem;
    font-weight: 800;
  }

  .hero__features {
    display: none;
  }

  .hero-feature__icon {
    width: 34px;
    height: 34px;
  }

  .hero-feature__icon::before {
    width: 26px;
    height: 26px;
  }

  .hero-feature__text strong {
    font-size: 0.98rem;
  }

  .hero-feature__text span {
    font-size: 0.9rem;
  }

  .hero__logos {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    font-size: 1.17rem;
  }

  .hero__logos-track {
    gap: 20px;
    animation-duration: 22s;
  }

  .problems {
    margin-top: 0;
    background: #ffffff;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .problems__content {
    width: min(calc(100% - 24px), var(--container));
    padding: 28px 0 52px;
  }

  .problems__head {
    max-width: 330px;
  }

  .problems h2 {
    font-size: 1.84rem;
  }

  .problems__grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
  }

  .problem-card,
  .problem-card:nth-child(2n),
  .problem-card:nth-child(2n + 1) {
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 42, 68, 0.14);
  }

  .problem-card + .problem-card {
    padding-left: 0;
    padding-top: 26px;
  }

  .problem-card:last-child {
    border-bottom: 0;
  }

  .problem-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .problem-card h3 {
    max-width: none;
    font-size: 1.18rem;
  }

  .problem-card p {
    max-width: 330px;
    font-size: 0.9rem;
  }

  .problems__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 0;
    margin-top: 36px;
    padding-top: 34px;
  }

  .problem-stat,
  .problem-stat:first-child,
  .problem-stat:last-child {
    padding: 0 14px;
  }

  .problem-stat:nth-child(2n+1):not(:last-child) {
    border-right: 1px solid rgba(15, 42, 68, 0.14);
  }

  .problem-stat:nth-child(2n) {
    border-right: 0;
  }

  .problem-stat:last-child {
    grid-column: 1 / -1;
  }

  .problem-stat strong {
    font-size: 2.25rem;
  }

  .problem-stat span {
    max-width: 180px;
    font-size: 0.82rem;
  }

  .services {
    margin-top: 0;
    padding: 110px 0 72px;
  }

  .services__top-wave {
    height: 90px;
  }

  .services h2 {
    font-size: 1.95rem;
  }

  .services__photo-frame {
    height: 220px;
    border-radius: 12px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
  }

  .service-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .service-card__icon {
    width: 38px;
    height: 38px;
  }

  .service-card h3 {
    font-size: 1.04rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

.services {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 80px 0 110px;
  background: #ffffff;
  color: var(--text);
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 36% 28% at 25% 28%, rgba(255, 255, 255, 0.4), transparent 72%),
    radial-gradient(ellipse 30% 40% at 22% 60%, rgba(255, 255, 255, 0.38), transparent 70%),
    radial-gradient(ellipse 30% 30% at 50% 38%, rgba(255, 255, 255, 0.5), transparent 70%),
    radial-gradient(ellipse 28% 30% at 50% 68%, rgba(255, 255, 255, 0.4), transparent 70%),
    radial-gradient(ellipse 28% 28% at 22% 92%, rgba(255, 255, 255, 0.36), transparent 70%),
    radial-gradient(ellipse 60% 55% at 0% 70%, rgba(255, 255, 255, 0.22), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.services::after {
  content: none;
}

.services__top-wave { display: none; }

.services__line {
  position: absolute;
  right: 0;
  height: 2px;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(
    90deg,
    rgba(15, 42, 68, 0) 0%,
    rgba(39, 201, 218, 0.55) 28%,
    rgba(39, 201, 218, 0.95) 70%,
    rgba(39, 201, 218, 0.55) 100%
  );
  box-shadow: 0 0 14px rgba(39, 201, 218, 0.35);
}

.services__line--top {
  top: 0;
  width: 55%;
}

.services__line--bottom {
  bottom: 0;
  width: 75%;
}

@media (max-width: 1180px) {
  .services__line--top {
    top: 60px;
    right: 24px;
    width: 70%;
  }

  .services__line--bottom {
    top: 340px;
    bottom: auto;
    right: 24px;
    width: 75%;
  }
}

@media (max-width: 480px) {
  .services__line {
    display: none;
  }
}

.services__photo-frame {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 18%;
  z-index: 1;
  pointer-events: none;
}

.services__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 28%,
      rgba(0, 0, 0, 0.45) 42%,
      rgba(0, 0, 0, 0.85) 55%,
      rgba(0, 0, 0, 1) 65%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2) 6%,
      rgba(0, 0, 0, 0.6) 14%,
      rgba(0, 0, 0, 0.9) 22%,
      rgba(0, 0, 0, 1) 30%,
      rgba(0, 0, 0, 1) 82%,
      rgba(0, 0, 0, 0.9) 88%,
      rgba(0, 0, 0, 0.6) 93%,
      rgba(0, 0, 0, 0.2) 97%,
      rgba(0, 0, 0, 0) 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0) 28%,
      rgba(0, 0, 0, 0.45) 42%,
      rgba(0, 0, 0, 0.85) 55%,
      rgba(0, 0, 0, 1) 65%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2) 6%,
      rgba(0, 0, 0, 0.6) 14%,
      rgba(0, 0, 0, 0.9) 22%,
      rgba(0, 0, 0, 1) 30%,
      rgba(0, 0, 0, 1) 82%,
      rgba(0, 0, 0, 0.9) 88%,
      rgba(0, 0, 0, 0.6) 93%,
      rgba(0, 0, 0, 0.2) 97%,
      rgba(0, 0, 0, 0) 100%
    );
  mask-composite: intersect;
}

@media (min-width: 1921px) {
  .hero__copy h1 {
    font-size: clamp(2.2rem, 4.1vw, 3.8rem);
    line-height: 1.15;
  }

  .hero__lead {
    margin-top: 42px;
  }

  .hero__actions {
    margin-top: 48px;
  }

  .hero__trust {
    margin-top: 64px;
  }

  .hero__cases-link {
    margin-top: 40px;
  }

  .problems__stats {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }

  body.is-scrolled-past-hero .problems__stats {
    opacity: 1;
    transform: translateY(0);
  }

  .hero::before {
    left: 50%;
    right: auto;
    width: 2288px;
    transform: translateX(calc(-50% + 280px));
    -webkit-mask-image:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 4%,
        rgba(0, 0, 0, 0.65) 8%,
        rgba(0, 0, 0, 1) 12%,
        rgba(0, 0, 0, 1) 88%,
        rgba(0, 0, 0, 0.65) 92%,
        rgba(0, 0, 0, 0.2) 96%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 1) 0,
        rgba(0, 0, 0, 1) calc(100% - 260px),
        rgba(0, 0, 0, 0.92) calc(100% - 200px),
        rgba(0, 0, 0, 0.7) calc(100% - 140px),
        rgba(0, 0, 0, 0.4) calc(100% - 80px),
        rgba(0, 0, 0, 0.15) calc(100% - 30px),
        rgba(0, 0, 0, 0) 100%
      );
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 4%,
        rgba(0, 0, 0, 0.65) 8%,
        rgba(0, 0, 0, 1) 12%,
        rgba(0, 0, 0, 1) 88%,
        rgba(0, 0, 0, 0.65) 92%,
        rgba(0, 0, 0, 0.2) 96%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 1) 0,
        rgba(0, 0, 0, 1) calc(100% - 260px),
        rgba(0, 0, 0, 0.92) calc(100% - 200px),
        rgba(0, 0, 0, 0.7) calc(100% - 140px),
        rgba(0, 0, 0, 0.4) calc(100% - 80px),
        rgba(0, 0, 0, 0.15) calc(100% - 30px),
        rgba(0, 0, 0, 0) 100%
      );
    mask-composite: intersect;
  }
}

@media (min-width: 1921px) {
  .services__photo-frame {
    left: 50%;
    right: auto;
    width: 1920px;
    transform: translateX(-50%);
  }

  .services__photo {
    -webkit-mask-image:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 28%,
        rgba(0, 0, 0, 0.45) 42%,
        rgba(0, 0, 0, 0.85) 55%,
        rgba(0, 0, 0, 1) 64%,
        rgba(0, 0, 0, 1) 84%,
        rgba(0, 0, 0, 0.68) 91%,
        rgba(0, 0, 0, 0.18) 97%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 6%,
        rgba(0, 0, 0, 0.6) 14%,
        rgba(0, 0, 0, 0.9) 22%,
        rgba(0, 0, 0, 1) 30%,
        rgba(0, 0, 0, 1) 82%,
        rgba(0, 0, 0, 0.9) 88%,
        rgba(0, 0, 0, 0.6) 93%,
        rgba(0, 0, 0, 0.2) 97%,
        rgba(0, 0, 0, 0) 100%
      );
    mask-image:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 28%,
        rgba(0, 0, 0, 0.45) 42%,
        rgba(0, 0, 0, 0.85) 55%,
        rgba(0, 0, 0, 1) 64%,
        rgba(0, 0, 0, 1) 84%,
        rgba(0, 0, 0, 0.68) 91%,
        rgba(0, 0, 0, 0.18) 97%,
        rgba(0, 0, 0, 0) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 6%,
        rgba(0, 0, 0, 0.6) 14%,
        rgba(0, 0, 0, 0.9) 22%,
        rgba(0, 0, 0, 1) 30%,
        rgba(0, 0, 0, 1) 82%,
        rgba(0, 0, 0, 0.9) 88%,
        rgba(0, 0, 0, 0.6) 93%,
        rgba(0, 0, 0, 0.2) 97%,
        rgba(0, 0, 0, 0) 100%
      );
  }

  .services__line {
    right: max(0px, calc((100vw - 1920px) / 2));
  }
}

.services__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.services__eyebrow {
  margin: 0 0 16px;
  color: #27c9da;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services h2 {
  margin: 0;
  max-width: 580px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--text);
}

.services__head {
  max-width: 56%;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px 32px;
  align-content: start;
  max-width: 50%;
  margin-top: 56px;
}

.services__cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  max-width: 50%;
  margin-top: 44px;
}

.services__cta .services__button {
  grid-column: 2;
  justify-self: start;
  margin-left: -32px;
}

.services__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 32px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(180deg, #0a8fa4 0%, #16b1c8 55%, #2cd5e6 100%);
  box-shadow:
    0 14px 30px rgba(39, 201, 218, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.services__button:hover,
.services__button:focus-visible {
  background: linear-gradient(180deg, #0d9eb5 0%, #1cc1d8 55%, #36def0 100%);
  box-shadow:
    0 18px 34px rgba(39, 201, 218, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  outline: none;
  transform: translateY(-1px);
}

.services__button span[aria-hidden="true"] {
  font-size: 1.25rem;
  line-height: 1;
}

.service-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.service-card__icon {
  position: relative;
  display: block;
  width: 43px;
  height: 43px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.service-card--staff .service-card__icon {
  background-image: url("assets/главная/m1(q).png");
}

.service-card--docs .service-card__icon {
  background-image: url("assets/главная/m2(q).png");
}

.service-card--visa .service-card__icon {
  background-image: url("assets/главная/m2(q).png");
}

.service-card--hr .service-card__icon {
  background-image: url("assets/главная/m3(q).png");
}

.service-card--support .service-card__icon {
  background-image: url("assets/главная/m4(q).png");
}

.service-card--scale .service-card__icon {
  background-image: url("assets/главная/m5(q).png");
}

.service-card__body {
  min-width: 0;
}

.service-card h3 {
  margin: 4px 0 8px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.18;
  color: var(--text);
}

.service-card p {
  margin: 0;
  color: #1a3556;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.services__break-mobile {
  display: none;
}

.has-js .services__eyebrow,
.has-js .services h2,
.has-js .service-card {
  opacity: 0;
  transform: translateY(14px);
}

.has-js .services.is-revealed .services__eyebrow,
.has-js .services.is-revealed h2,
.has-js .services.is-revealed .service-card {
  animation: servicesReveal .58s cubic-bezier(.2, .72, .2, 1) forwards;
}

.has-js .services.is-revealed .services__eyebrow {
  animation-delay: 0s;
}

.has-js .services.is-revealed h2 {
  animation-delay: .08s;
}

.has-js .services.is-revealed .service-card:nth-child(1) {
  animation-delay: .22s;
}

.has-js .services.is-revealed .service-card:nth-child(2) {
  animation-delay: .32s;
}

.has-js .services.is-revealed .service-card:nth-child(3) {
  animation-delay: .42s;
}

.has-js .services.is-revealed .service-card:nth-child(4) {
  animation-delay: .52s;
}

.has-js .services.is-revealed .service-card:nth-child(5) {
  animation-delay: .62s;
}

@keyframes servicesReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .services__eyebrow,
  .has-js .services h2,
  .has-js .service-card,
  .has-js .services.is-revealed .services__eyebrow,
  .has-js .services.is-revealed h2,
  .has-js .services.is-revealed .service-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1180px) {
  .services {
    padding: 60px 0 80px;
    position: relative;
  }

  .services__photo-frame {
    position: absolute;
    top: 60px;
    left: 24px;
    right: 24px;
    bottom: auto;
    width: auto;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    z-index: 1;
  }

  .services__photo-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.92) 30%,
      rgba(255, 255, 255, 0.55) 52%,
      rgba(255, 255, 255, 0.18) 68%,
      rgba(255, 255, 255, 0) 80%
    );
    pointer-events: none;
  }

  .services__photo {
    object-position: 60% 30%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .services__head {
    position: relative;
    z-index: 2;
    max-width: 60%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0 22px 12px;
  }

  .services h2 {
    font-size: clamp(1.725rem, 5.3vw, 2.3rem);
    line-height: 1.06;
  }

  .services__break-mobile {
    display: inline;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
    max-width: none;
  }

  .services__cta {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 32px auto 0;
  }

  .services__cta .services__button {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
    min-height: 54px;
    margin-left: 0;
    border-radius: 16px;
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 50px 0 64px;
  }

  .services__photo-frame {
    position: absolute;
    top: 50px;
    left: auto;
    right: 0;
    bottom: auto;
    width: clamp(210px, 64vw, 320px);
    height: clamp(210px, 60vw, 300px);
    margin: 0;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    z-index: 1;
  }

  .services__photo-frame::after {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.9) 14%,
      rgba(255, 255, 255, 0.45) 38%,
      rgba(255, 255, 255, 0.12) 62%,
      rgba(255, 255, 255, 0) 80%
    );
  }

  .services__photo {
    object-position: 65% 30%;
  }

  .services__head {
    position: relative;
    z-index: 2;
    max-width: 58%;
    min-height: clamp(210px, 60vw, 300px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0 12px 4px;
  }

  .services h2 {
    font-size: clamp(1.4rem, 6.4vw, 1.85rem);
    line-height: 1.06;
  }

  .services__grid {
    margin-top: 32px;
  }

  .service-card {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .service-card__icon {
    width: 38px;
    height: 38px;
  }

  .service-card h3 {
    font-size: 1.04rem;
  }
}

.endorsement {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

.endorsement__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 8%,
    rgba(0, 0, 0, 0.9) 13%,
    rgba(0, 0, 0, 1) 18%,
    rgba(0, 0, 0, 1) 82%,
    rgba(0, 0, 0, 0.9) 87%,
    rgba(0, 0, 0, 0.6) 92%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 8%,
    rgba(0, 0, 0, 0.9) 13%,
    rgba(0, 0, 0, 1) 18%,
    rgba(0, 0, 0, 1) 82%,
    rgba(0, 0, 0, 0.9) 87%,
    rgba(0, 0, 0, 0.6) 92%,
    rgba(0, 0, 0, 0) 100%
  );
}

.endorsement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.has-js .endorsement::before {
  opacity: 1;
}

.has-js .endorsement.is-revealed::before {
  opacity: 0;
}

.endorsement__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 72px 6vw;
  text-align: center;
}

.endorsement__text {
  margin: 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  max-width: 980px;
}

.has-js .endorsement__text {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease-out 0.35s, transform 0.9s ease-out 0.35s;
}

.has-js .endorsement.is-revealed .endorsement__text {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 680px) {
  .endorsement__content {
    min-height: 180px;
    padding: 56px 24px;
  }
}

.work-formats {
  position: relative;
  z-index: 3;
  padding: 16px 12px 28px;
  color: #102746;
  background: #f7fbff;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
}

.work-formats__panel {
  position: relative;
  width: min(100%, 1390px);
  margin: 0 auto;
  overflow: hidden;
  padding: 48px 80px 24px;
  border: 1px solid rgba(8, 174, 218, 0.42);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(16, 39, 70, 0.06);
}

.work-formats__corner-lines {
  position: absolute;
  z-index: 0;
  width: 390px;
  height: 238px;
  color: #08aeda;
  pointer-events: none;
}

.work-formats__corner-lines path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.05;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: 0.28;
}

.has-js .work-formats__corner-lines path {
  stroke-dasharray: 1;
  stroke-dashoffset: -1;
}

.has-js .work-formats.is-revealed .work-formats__corner-lines path {
  animation: workFormatsLineDraw 1.1s cubic-bezier(.22, .68, .25, 1) forwards;
}

.has-js .work-formats.is-revealed .work-formats__corner-lines--top path:nth-child(8) { animation-delay: .25s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--top path:nth-child(7) { animation-delay: .32s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--top path:nth-child(6) { animation-delay: .39s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--top path:nth-child(5) { animation-delay: .46s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--top path:nth-child(4) { animation-delay: .53s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--top path:nth-child(3) { animation-delay: .60s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--top path:nth-child(2) { animation-delay: .67s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--top path:nth-child(1) { animation-delay: .74s; }

.has-js .work-formats.is-revealed .work-formats__corner-lines--bottom path:nth-child(8) { animation-delay: 1.85s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--bottom path:nth-child(7) { animation-delay: 1.92s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--bottom path:nth-child(6) { animation-delay: 1.99s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--bottom path:nth-child(5) { animation-delay: 2.06s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--bottom path:nth-child(4) { animation-delay: 2.13s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--bottom path:nth-child(3) { animation-delay: 2.20s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--bottom path:nth-child(2) { animation-delay: 2.27s; }
.has-js .work-formats.is-revealed .work-formats__corner-lines--bottom path:nth-child(1) { animation-delay: 2.34s; }

@keyframes workFormatsLineDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .work-formats__corner-lines path,
  .has-js .work-formats.is-revealed .work-formats__corner-lines path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    animation: none;
  }
}

.work-formats__corner-lines--top {
  top: -1px;
  right: -1px;
}

.work-formats__corner-lines--bottom {
  bottom: -1px;
  left: -1px;
  transform: rotate(180deg);
}

.work-formats__head,
.work-formats__grid,
.work-formats__cta {
  position: relative;
  z-index: 1;
}

.work-formats__head {
  width: min(790px, 100%);
  margin: 0 auto;
  text-align: center;
}

.work-formats__eyebrow {
  margin: 0 0 20px;
  color: #08aeda;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.work-formats h2 {
  margin: 0;
  color: #102746;
  font-size: 3.1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
}

.work-formats__lead {
  width: min(650px, 100%);
  margin: 22px auto 0;
  color: rgba(16, 39, 70, 0.66);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.work-formats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.work-format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 378px;
  padding: 30px 32px 26px;
  border: 1px solid rgba(8, 174, 218, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.work-format-card__icon,
.work-formats__support-icon {
  display: grid;
  place-items: center;
  color: #08aeda;
}

.work-formats__support-icon {
  border-radius: 50%;
  background: transparent;
}

.work-formats__support-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-format-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
}

.work-format-card__icon svg,
.work-formats__support-icon svg {
  display: block;
  width: 50px;
  height: 50px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.work-format-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.work-format-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  width: 100%;
}

.work-format-card h3 {
  margin: 0;
  color: #102746;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
  text-align: center;
}

.work-format-card__text {
  margin: 14px 0 0;
  color: rgba(16, 39, 70, 0.66);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
}

.work-format-card__benefit {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: auto;
  padding-top: 25px;
  border-top: 1px solid rgba(8, 174, 218, 0.34);
  color: #08aeda;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.work-format-card__check {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1.5px solid #08aeda;
  border-radius: 50%;
}

.work-format-card__check::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 5px;
  border-left: 1.8px solid #08aeda;
  border-bottom: 1.8px solid #08aeda;
  transform: rotate(-45deg);
}

.work-format-card__arrow {
  display: none;
}

.work-formats__cta {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: min(1080px, 88%);
  margin: 26px auto 0;
  padding: 20px 66px 20px 52px;
  border: 1px solid rgba(8, 174, 218, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.work-formats__support-icon {
  width: 72px;
  height: 72px;
}

.work-formats__support-icon svg {
  width: 52px;
  height: 52px;
}

.work-formats__cta h3 {
  margin: 0;
  color: #102746;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
}

.work-formats__cta p {
  margin: 5px 0 0;
  color: rgba(16, 39, 70, 0.66);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.work-formats__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 286px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(180deg, #0a8fa4 0%, #16b1c8 55%, #2cd5e6 100%);
  box-shadow:
    0 14px 30px rgba(39, 201, 218, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.work-formats__button:hover,
.work-formats__button:focus-visible {
  background: linear-gradient(180deg, #0d9eb5 0%, #1cc1d8 55%, #36def0 100%);
  box-shadow:
    0 18px 34px rgba(39, 201, 218, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  outline: none;
  transform: translateY(-1px);
}

.has-js .work-formats__eyebrow,
.has-js .work-formats h2,
.has-js .work-formats__lead,
.has-js .work-format-card,
.has-js .work-formats__cta {
  opacity: 0;
  transform: translateY(14px);
}

.has-js .work-formats.is-revealed .work-formats__eyebrow,
.has-js .work-formats.is-revealed h2,
.has-js .work-formats.is-revealed .work-formats__lead,
.has-js .work-formats.is-revealed .work-format-card,
.has-js .work-formats.is-revealed .work-formats__cta {
  animation: workFormatsReveal .58s cubic-bezier(.2, .72, .2, 1) forwards;
}

.has-js .work-formats.is-revealed .work-formats__eyebrow {
  animation-delay: 0s;
}

.has-js .work-formats.is-revealed h2 {
  animation-delay: .08s;
}

.has-js .work-formats.is-revealed .work-formats__lead {
  animation-delay: .16s;
}

.has-js .work-formats.is-revealed .work-format-card:nth-child(1) {
  animation-delay: .3s;
}

.has-js .work-formats.is-revealed .work-format-card:nth-child(2) {
  animation-delay: .44s;
}

.has-js .work-formats.is-revealed .work-format-card:nth-child(3) {
  animation-delay: .58s;
}

.has-js .work-formats.is-revealed .work-formats__cta {
  animation-delay: .76s;
}

@keyframes workFormatsReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .work-formats__eyebrow,
  .has-js .work-formats h2,
  .has-js .work-formats__lead,
  .has-js .work-format-card,
  .has-js .work-formats__cta,
  .has-js .work-formats.is-revealed .work-formats__eyebrow,
  .has-js .work-formats.is-revealed h2,
  .has-js .work-formats.is-revealed .work-formats__lead,
  .has-js .work-formats.is-revealed .work-format-card,
  .has-js .work-formats.is-revealed .work-formats__cta {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1060px) {
  .work-formats {
    padding: 18px 18px 26px;
  }

  .work-formats__panel {
    width: min(100%, 820px);
    padding: 34px 54px 30px;
  }

  .work-formats__corner-lines {
    width: 310px;
    height: 190px;
  }

  .work-formats__head {
    width: min(590px, 100%);
  }

  .work-formats h2 {
    font-size: 2.25rem;
    line-height: 1.06;
  }

  .work-formats__lead {
    width: min(540px, 100%);
    font-size: 0.9rem;
  }

  .work-formats__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .work-format-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    min-height: 0;
    padding: 22px 28px;
  }

  .work-format-card__icon {
    width: 57px;
    height: 57px;
    margin: 0;
  }

  .work-format-card__icon svg {
    width: 40px;
    height: 40px;
  }

  .work-format-card h3 {
    text-align: left;
    font-size: 1.18rem;
  }

  .work-format-card__text {
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .work-format-card__benefit {
    margin-top: 10px;
    padding-top: 0;
    border-top: 0;
    font-size: 0.78rem;
  }

  .work-formats__cta {
    grid-template-columns: 72px minmax(0, 1fr) auto;
    width: 100%;
    margin-top: 22px;
    padding: 18px 24px;
    gap: 20px;
  }

  .work-formats__support-icon {
    width: 62px;
    height: 62px;
  }

  .work-formats__support-icon svg {
    width: 44px;
    height: 44px;
  }

  .work-formats__button {
    min-width: 214px;
    min-height: 48px;
    gap: 16px;
    padding: 0 18px;
    font-size: 0.88rem;
  }
}

@media (max-width: 620px) {
  .work-formats {
    padding: 10px 20px 18px;
  }

  .work-formats__panel {
    width: 100%;
    padding: 24px 18px 18px;
  }

  .work-formats__corner-lines {
    width: 205px;
    height: 126px;
  }

  .work-formats__corner-lines path {
    opacity: 0.32;
  }

  .work-formats__head {
    text-align: left;
  }

  .work-formats__eyebrow {
    margin-bottom: 12px;
    font-size: 0.66rem;
  }

  .work-formats h2 {
    font-size: 1.68rem;
    line-height: 1.08;
  }

  .work-formats__lead {
    margin-top: 12px;
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .work-formats__grid {
    gap: 12px;
    margin-top: 22px;
  }

  .work-format-card {
    grid-template-columns: 62px minmax(0, 1fr) 28px;
    gap: 14px;
    padding: 14px;
  }

  .work-format-card__icon {
    width: 44px;
    height: 44px;
  }

  .work-format-card__icon svg {
    width: 30px;
    height: 30px;
  }

  .work-format-card h3 {
    font-size: 1.02rem;
    line-height: 1.16;
  }

  .work-format-card__text {
    display: none;
  }

  .work-format-card__benefit {
    display: block;
    margin-top: 6px;
    color: rgba(16, 39, 70, 0.66);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.35;
  }

  .work-format-card__check {
    display: none;
  }

  .work-format-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #08aeda;
    font-size: 1.35rem;
    line-height: 1;
  }

  .work-formats__cta {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    margin-top: 14px;
    padding: 14px;
  }

  .work-formats__support-icon {
    width: 58px;
    height: 58px;
  }

  .work-formats__support-icon svg {
    width: 40px;
    height: 40px;
  }

  .work-formats__cta h3 {
    font-size: 1.02rem;
    line-height: 1.16;
  }

  .work-formats__cta p {
    margin-top: 5px;
    font-size: 0.78rem;
  }

  .work-formats__button {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    gap: 18px;
    font-size: 0.84rem;
  }
}

.callout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6vw;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 8%,
    rgba(244, 250, 253, 1) 30%,
    rgba(232, 244, 250, 0.95) 50%,
    rgba(244, 250, 253, 1) 70%,
    rgba(255, 255, 255, 1) 92%,
    rgba(255, 255, 255, 1) 100%
  );
}

.callout::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 55% at 50% 50%,
    rgba(39, 201, 218, 0.12) 0%,
    rgba(39, 201, 218, 0.04) 45%,
    transparent 75%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 1) 35%,
    rgba(0, 0, 0, 1) 65%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 1) 35%,
    rgba(0, 0, 0, 1) 65%,
    transparent 100%
  );
}

.callout__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1100px, 100%);
}

.callout__line {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(15, 42, 68, 0) 0%,
    rgba(39, 201, 218, 0.55) 45%,
    rgba(15, 42, 68, 0.28) 100%
  );
  transform: scaleX(0);
  transition: transform 1.05s cubic-bezier(.2, .72, .2, 1) 0.35s;
}

.callout__line--left {
  transform-origin: right center;
}

.callout__line--right {
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    rgba(15, 42, 68, 0.28) 0%,
    rgba(39, 201, 218, 0.55) 55%,
    rgba(15, 42, 68, 0) 100%
  );
}

.callout__text {
  margin: 0;
  flex: 0 1 auto;
  max-width: 720px;
  text-align: center;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.85rem);
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--text);
}

.callout__break {
  display: none;
}

.has-js .callout__line {
  transform: scaleX(0);
}

.has-js .callout__text {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease-out 0.55s, transform 0.7s ease-out 0.55s;
}

.has-js .callout.is-revealed .callout__line {
  transform: scaleX(1);
}

.has-js .callout.is-revealed .callout__text {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .callout {
    padding: 56px 24px;
  }

  .callout__inner {
    gap: 14px;
  }

  .callout__text {
    font-size: clamp(1rem, 4.4vw, 1.3rem);
  }

  .callout__break {
    display: inline;
  }
}

.industries {
  --industries-stage-width: 100%;
  --industries-stage-shift: -50%;
  --blue-dark: #0c1d3a;
  --blue-muted: #66738c;
  --cyan: #17bad4;
  --cyan-soft: rgba(23, 186, 212, .34);
  --card-bg: rgba(255, 255, 255, .9);
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 96px 5vw;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  color: var(--blue-dark);
  background:
    radial-gradient(circle at 70% 38%, rgba(23, 186, 212, .08), transparent 30%),
    radial-gradient(circle at 58% 71%, rgba(23, 186, 212, .06), transparent 24%),
    #fff;
}

.industries::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(247, 251, 255, 0), rgba(247, 251, 255, 1));
  pointer-events: none;
  z-index: 4;
}

.industries__bg-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/industries-map(q).png") center / cover no-repeat;
  opacity: 0.11;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.industries__text {
  position: relative;
  z-index: 3;
  max-width: 560px;
}

.industries .eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.industries h2 {
  margin: 0 0 28px;
  color: var(--blue-dark);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
}

.industries__text p {
  max-width: 430px;
  margin: 0;
  color: var(--blue-muted);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.65;
}

.industries__lines {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 1;
  width: var(--industries-stage-width);
  height: 100%;
  pointer-events: none;
  transform: translateX(var(--industries-stage-shift));
}

.industries .line {
  --line-delay: 1.36s;
  --line-duration: 1.65s;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  opacity: .48;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  transition:
    opacity .24s ease,
    stroke-width .24s ease,
    filter .24s ease;
}

.has-js .industries .line {
  stroke-dashoffset: 1;
}

.has-js .industries.is-visible .line {
  animation: indDrawLine var(--line-duration) ease forwards;
  animation-delay: var(--line-delay);
}

.industries .line--background {
  opacity: .34;
}

.industries .line-2 { --line-delay: 1.48s; }
.industries .line-3 { --line-delay: 1.62s; }
.industries .line-8 { --line-delay: 1.78s; }
.industries .line-4 { --line-delay: 1.92s; }
.industries .line-5 { --line-delay: 2.08s; }
.industries .line-6 { --line-delay: 2.2s; }
.industries .line-7 { --line-delay: 2.32s; }

.industries .junction {
  --junction-delay: 1.72s;
  fill: var(--cyan);
  opacity: .86;
  filter: drop-shadow(0 0 7px rgba(23, 186, 212, .65));
  transform-box: fill-box;
  transform-origin: center;
  transition:
    opacity .24s ease,
    transform .24s ease,
    filter .24s ease;
}

.has-js .industries .junction {
  opacity: 0;
  transform: scale(.72);
}

.has-js .industries.is-visible .junction {
  opacity: .86;
  transform: scale(1);
  transition:
    opacity .34s ease var(--junction-delay),
    transform .34s ease var(--junction-delay),
    filter .24s ease;
}

.industries .junction-1 { --junction-delay: 1.38s; }
.industries .junction-3 { --junction-delay: 1.5s; }
.industries .junction-6 { --junction-delay: 1.94s; }
.industries .junction-4 { --junction-delay: 2.9s; }
.industries .junction-2 { --junction-delay: 3.18s; }
.industries .junction-5 { --junction-delay: 3.34s; }

.industries .particle {
  --particle-delay: 3.9s;
  fill: var(--cyan);
  opacity: .88;
  transition:
    opacity .24s ease,
    filter .24s ease;
}

.industries .particle-2 { --particle-delay: 4.06s; }
.industries .particle-5 { --particle-delay: 4.14s; }
.industries .particle-3 { --particle-delay: 4.22s; }
.industries .particle-4 { --particle-delay: 4.38s; }
.industries .particle-6 { --particle-delay: 4.46s; }

.has-js .industries .particle {
  opacity: 0;
}

.has-js .industries.is-visible .particle {
  opacity: .88;
  transition:
    opacity .35s ease var(--particle-delay),
    filter .24s ease;
}

.has-js .industries.is-routes-ready .junction {
  transition:
    opacity .24s ease,
    transform .24s ease,
    filter .24s ease;
}

.has-js .industries.is-routes-ready .particle {
  transition:
    opacity .24s ease,
    filter .24s ease;
}

@keyframes indDrawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes indJunctionAppear {
  from {
    opacity: 0;
    transform: scale(.72);
  }

  to {
    opacity: .86;
    transform: scale(1);
  }
}

@keyframes indParticleAppear {
  to {
    opacity: .88;
  }
}

.industries__cards {
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: 2;
  width: var(--industries-stage-width);
  height: 100%;
  pointer-events: none;
  transform: translateX(var(--industries-stage-shift));
}

.industry-card {
  --card-delay: 0s;
  --card-scale: 1;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 19px;
  width: 248px;
  min-height: 100px;
  padding: 20px 24px;
  border: 1px solid var(--cyan-soft);
  border-radius: 15px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  box-shadow: none;
  pointer-events: auto;
  transform: scale(var(--card-scale));
  transition:
    border-color .25s ease,
    background-color .25s ease,
    transform .25s ease;
}

.has-js .industry-card {
  opacity: 0;
  translate: 0 22px;
}

.has-js .industries.is-visible .industry-card {
  opacity: 1;
  translate: 0 0;
  animation: indCardAppear .72s cubic-bezier(.2, .72, .2, 1) backwards;
  animation-delay: var(--card-delay);
}

.industry-card:hover {
  border-color: rgba(23, 186, 212, .72);
  background: rgba(255, 255, 255, .92);
  transform: translate3d(0, -3px, 0) scale(var(--card-scale));
}

@media (hover: hover) and (pointer: fine) {
  .industries.is-routes-ready:has(.industry-card:hover) .line {
    opacity: .14;
  }

  .industries.is-routes-ready:has(.industry-card:hover) .junction,
  .industries.is-routes-ready:has(.industry-card:hover) .particle {
    opacity: .18;
    filter: none;
  }

  .industries.is-routes-ready:has(.industry-card:hover) .industry-card:not(:hover) {
    border-color: rgba(23, 186, 212, .18);
    background: rgba(255, 255, 255, .78);
  }

  .industries.is-routes-ready:has(.industry-card--production:hover) .line.route-production,
  .industries.is-routes-ready:has(.industry-card--building:hover) .line.route-building,
  .industries.is-routes-ready:has(.industry-card--logistics:hover) .line.route-logistics,
  .industries.is-routes-ready:has(.industry-card--agro:hover) .line.route-agro,
  .industries.is-routes-ready:has(.industry-card--retail:hover) .line.route-retail {
    opacity: .86;
    stroke-width: 3.8;
    filter: drop-shadow(0 0 8px rgba(23, 186, 212, .3));
  }

  .industries.is-routes-ready:has(.industry-card--production:hover) .junction.route-production,
  .industries.is-routes-ready:has(.industry-card--building:hover) .junction.route-building,
  .industries.is-routes-ready:has(.industry-card--logistics:hover) .junction.route-logistics,
  .industries.is-routes-ready:has(.industry-card--agro:hover) .junction.route-agro,
  .industries.is-routes-ready:has(.industry-card--retail:hover) .junction.route-retail {
    opacity: 1;
    transform: scale(1.24);
    filter: drop-shadow(0 0 10px rgba(23, 186, 212, .72));
  }

  .industries.is-routes-ready:has(.industry-card--production:hover) .particle.route-production,
  .industries.is-routes-ready:has(.industry-card--building:hover) .particle.route-building,
  .industries.is-routes-ready:has(.industry-card--logistics:hover) .particle.route-logistics,
  .industries.is-routes-ready:has(.industry-card--agro:hover) .particle.route-agro,
  .industries.is-routes-ready:has(.industry-card--retail:hover) .particle.route-retail {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(23, 186, 212, .6));
  }
}

.industry-card__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--cyan);
}

.industry-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.industry-card p {
  margin: 0;
  color: #122442;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.35;
}

.industry-card--production {
  --card-delay: .02s;
  left: 53%;
  top: 15.2%;
}

.industry-card--building {
  --card-delay: .16s;
  left: 71.4%;
  top: 27.1%;
}

.industry-card--logistics {
  --card-delay: .3s;
  left: 46.8%;
  top: 45.3%;
}

.industry-card--agro {
  --card-delay: .44s;
  left: 72.1%;
  top: 53.8%;
  width: 289px;
}

.industry-card--retail {
  --card-delay: .58s;
  left: 56.4%;
  top: 69.1%;
  width: 213px;
}

@keyframes indCardAppear {
  from {
    opacity: 0;
    translate: 0 22px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

.industries-cta {
  position: absolute;
  left: 5.2vw;
  bottom: 140px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 23px;
  width: min(627px, 48vw);
  min-height: 102px;
  padding: 23px 29px;
  border: 1px solid var(--cyan-soft);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
}

.has-js .industries-cta {
  opacity: 0;
  translate: 0 22px;
}

.has-js .industries.is-visible .industries-cta {
  opacity: 1;
  translate: 0 0;
  animation: indCardAppear .72s cubic-bezier(.2, .72, .2, 1) .72s backwards;
}

.industries-cta__icon {
  flex: 0 0 59px;
  display: grid;
  place-items: center;
  width: 59px;
  height: 59px;
  color: var(--cyan);
}

.industries-cta__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industries-cta__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.industries-cta__copy {
  min-width: 0;
}

.industries-cta strong {
  display: block;
  margin-bottom: 7px;
  color: #122442;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 15px;
  line-height: 1.3;
}

.industries-cta p {
  margin: 0;
  color: var(--blue-muted);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

.industries-cta__button {
  flex: 0 0 auto;
  margin-left: auto;
  padding: 15px 21px;
  border-radius: 9px;
  outline: none;
  color: #fff;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(180deg, #0a8fa4 0%, #16b1c8 55%, #2cd5e6 100%);
  box-shadow:
    0 0 0 0 rgba(23, 186, 212, 0),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition:
    transform .22s ease,
    filter .22s ease,
    box-shadow .22s ease;
}

.industries-cta__button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.industries-cta__button:focus-visible {
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, .95),
    0 0 0 8px rgba(23, 186, 212, .34),
    0 12px 28px rgba(5, 167, 200, .24);
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.industries-cta__button span {
  display: inline-block;
  margin-left: 10px;
  font-size: 20px;
  line-height: 0;
  vertical-align: -2px;
}

@media (min-width: 1921px) {
  .industries {
    --industries-stage-width: 1920px;
  }

  .industries__text {
    margin-left: max(0px, calc((100vw - 1920px) / 2));
  }

  .industries__lines {
    -webkit-mask-image: linear-gradient(
      90deg,
      #000 0%,
      #000 84%,
      rgba(0, 0, 0, .72) 90%,
      rgba(0, 0, 0, .22) 96%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      #000 0%,
      #000 84%,
      rgba(0, 0, 0, .72) 90%,
      rgba(0, 0, 0, .22) 96%,
      transparent 100%
    );
  }

  .industries-cta {
    left: calc(max(5.2vw, (100vw - 1920px) / 2 + 100px));
  }
}

@media (max-width: 1280px) {
  .industries {
    min-height: 780px;
  }

  .industry-card {
    --card-scale: .88;
    transform-origin: center;
  }

  .industry-card:hover {
    transform: translate3d(0, -3px, 0) scale(var(--card-scale));
  }

  .industries-cta {
    width: min(627px, 56vw);
  }
}

@media (max-width: 980px) {
  .industries {
    min-height: auto;
    padding: 72px 22px;
  }

  .industries__text {
    max-width: 100%;
  }

  .industries__lines {
    display: none;
  }

  .industries__cards {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: auto;
    height: auto;
    margin-top: 42px;
    transform: none;
  }

  .industry-card,
  .industry-card:hover {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 104px;
    transform: none;
  }

  .industry-card--agro {
    width: auto;
  }

  .industries-cta {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .industries__cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-left: 32px;
  }

  .industries__cards::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 36px;
    bottom: 36px;
    z-index: 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(
      180deg,
      rgba(23, 186, 212, 0),
      rgba(23, 186, 212, .52) 12%,
      rgba(23, 186, 212, .52) 88%,
      rgba(23, 186, 212, 0)
    );
    transform-origin: top;
  }

  .industry-card {
    z-index: 1;
    min-height: 92px;
    overflow: visible;
  }

  .industry-card::before,
  .industry-card::after {
    content: "";
    position: absolute;
    top: 50%;
    pointer-events: none;
  }

  .industry-card::before {
    --mobile-node-opacity: 1;
    left: -22px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(23, 186, 212, .45);
    transform: translate(-50%, -50%);
  }

  .industry-card::after {
    --mobile-node-opacity: .42;
    left: -22px;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--cyan);
    opacity: .42;
    transform: translateY(-50%);
  }

  .has-js .industries__cards::before,
  .has-js .industry-card::before,
  .has-js .industry-card::after {
    opacity: 0;
  }

  .has-js .industries.is-visible .industries__cards::before {
    animation: indMobileAxisAppear .72s ease .86s forwards;
  }

  .has-js .industries.is-visible .industry-card::before,
  .has-js .industries.is-visible .industry-card::after {
    animation: indMobileNodeAppear .36s ease forwards;
  }

  .has-js .industries.is-visible .industry-card--production::before,
  .has-js .industries.is-visible .industry-card--production::after {
    animation-delay: .82s;
  }

  .has-js .industries.is-visible .industry-card--building::before,
  .has-js .industries.is-visible .industry-card--building::after {
    animation-delay: .96s;
  }

  .has-js .industries.is-visible .industry-card--logistics::before,
  .has-js .industries.is-visible .industry-card--logistics::after {
    animation-delay: 1.1s;
  }

  .has-js .industries.is-visible .industry-card--agro::before,
  .has-js .industries.is-visible .industry-card--agro::after {
    animation-delay: 1.24s;
  }

  .has-js .industries.is-visible .industry-card--retail::before,
  .has-js .industries.is-visible .industry-card--retail::after {
    animation-delay: 1.38s;
  }

  .industries-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .industries-cta__button {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}

@keyframes indMobileAxisAppear {
  from {
    opacity: 0;
    transform: scaleY(.2);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes indMobileNodeAppear {
  from {
    opacity: 0;
  }

  to {
    opacity: var(--mobile-node-opacity, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }

  .industries .line,
  .industries .junction,
  .industries .particle,
  .industry-card,
  .industries-cta,
  .industries__cards::before,
  .industry-card::before,
  .industry-card::after,
  .has-js .industries.is-visible .line,
  .has-js .industries.is-visible .junction,
  .has-js .industries.is-visible .particle,
  .has-js .industries.is-visible .industry-card,
  .has-js .industries.is-visible .industries-cta,
  .has-js .industries.is-visible .industries__cards::before,
  .has-js .industries.is-visible .industry-card::before,
  .has-js .industries.is-visible .industry-card::after {
    animation: none;
    transition: none;
  }

  .has-js .endorsement::before,
  .has-js .endorsement__text {
    transition: none;
  }

  .has-js .endorsement::before {
    opacity: 0;
  }

  .has-js .endorsement__text {
    opacity: 1;
    transform: none;
  }

  .has-js .callout__line,
  .has-js .callout__text {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .has-js .callout__line {
    transform: scaleX(1);
  }

  .industries .line,
  .has-js .industries .line {
    stroke-dashoffset: 0;
  }

  .industries .junction,
  .has-js .industries .junction {
    opacity: .86;
    transform: scale(1);
  }

  .industries .particle,
  .has-js .industries .particle {
    opacity: .88;
  }

  .industry-card,
  .industries-cta,
  .has-js .industry-card,
  .has-js .industries-cta {
    opacity: 1;
    translate: 0 0;
  }

  .industries__cards::before,
  .industry-card::before,
  .industry-card::after,
  .has-js .industries__cards::before,
  .has-js .industry-card::before,
  .has-js .industry-card::after {
    opacity: var(--mobile-node-opacity, 1);
  }
}

.problems-frame {
  position: relative;
  left: 50%;
  width: min(calc(100vw - 48px), 1320px);
  min-height: 460px;
  overflow: hidden;
  padding: 86px 98px 98px;
  border-radius: 82px 18px 82px 18px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .58)),
    radial-gradient(ellipse 54% 95% at 44% 56%, rgba(13, 75, 123, .045), transparent 70%);
  transform: translateX(-50%);
}

.problems-frame__desktop-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.problems-frame__desktop-line,
.problems-frame__tablet-line {
  position: absolute;
  border-style: solid;
  pointer-events: none;
}

.problems-frame__desktop-line::before,
.problems-frame__desktop-line::after,
.problems-frame__tablet-line::before,
.problems-frame__tablet-line::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.problems-frame__desktop-line::before {
  left: 34%;
  right: -3px;
  top: -4px;
  height: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff 34%, #ffffff 100%);
}

.problems-frame__desktop-line::after {
  right: -5px;
  top: -4px;
  width: 12px;
  height: 142px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, .82) 28%, rgba(255, 255, 255, 0) 100%);
}

.problems-frame__desktop-line--outer {
  inset: 42px 20px;
  border-width: 1.25px;
  border-color: rgba(22, 187, 217, .52);
  border-radius: 72px 18px 72px 72px;
}

.problems-frame__desktop-line--inner {
  inset: 54px 32px;
  border-width: 1px;
  border-color: rgba(22, 187, 217, .3);
  border-radius: 60px 6px 60px 60px;
}

.problems-frame__desktop-line--inner::after {
  height: 130px;
}

.problems-frame__tablet-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  pointer-events: none;
}

.problems-frame__tablet-line::before {
  left: 33%;
  right: -3px;
  top: -4px;
  height: 10px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #ffffff 34%, #ffffff 100%);
}

.problems-frame__tablet-line::after {
  right: -5px;
  top: -4px;
  width: 12px;
  height: 178px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, .82) 26%, rgba(255, 255, 255, 0) 100%);
}

.problems-frame__tablet-line--outer {
  inset: 42px 20px;
  border-width: 1.25px;
  border-color: rgba(22, 187, 217, .52);
  border-radius: 72px 18px 72px 72px;
}

.problems-frame__tablet-line--inner {
  inset: 54px 32px;
  border-width: 1px;
  border-color: rgba(22, 187, 217, .3);
  border-radius: 60px 6px 60px 60px;
}

.problems-frame__tablet-line--inner::before {
  top: -4px;
}

.problems-frame__tablet-line--inner::after {
  height: 166px;
}

.problems-frame__content {
  position: relative;
  z-index: 1;
}

.problems-frame__eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1;
  text-transform: uppercase;
}

.problems-frame h2 {
  max-width: 600px;
  margin: 0;
  color: var(--text);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: clamp(2rem, 3vw, 2.95rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.problems-frame__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 42px;
}

.problems-frame__cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 44px;
}

.problems-frame-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  padding: 26px 28px 24px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04)),
    rgba(255, 255, 255, .02);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.problems-frame-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(22, 187, 217, .72) 0%,
    rgba(22, 187, 217, .5) 42%,
    rgba(22, 187, 217, .22) 68%,
    rgba(22, 187, 217, 0) 94%
  );
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.problems-frame-card > * {
  position: relative;
  z-index: 1;
}

.problems-frame-card__icon {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  color: var(--accent);
}

.problems-frame-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.problems-frame-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.problems-frame-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.problems-frame-card p {
  margin: 0;
  color: var(--muted);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.45;
}

.problems-frame-card__arrow {
  display: block;
  margin-top: auto;
  padding-top: 26px;
  color: var(--accent);
  font-size: 1.28rem;
  line-height: 1;
}

.has-js .problems-frame__eyebrow,
.has-js .problems-frame h2,
.has-js .problems-frame-card {
  opacity: 0;
  transform: translateY(14px);
}

.has-js .problems.is-revealed .problems-frame__eyebrow,
.has-js .problems.is-revealed .problems-frame h2,
.has-js .problems.is-revealed .problems-frame-card {
  animation: problemsReveal .58s cubic-bezier(.2, .72, .2, 1) forwards;
}

.has-js .problems.is-revealed .problems-frame__eyebrow {
  animation-delay: 0s;
}

.has-js .problems.is-revealed .problems-frame h2 {
  animation-delay: .08s;
}

.has-js .problems.is-revealed .problems-frame-card:nth-child(1) {
  animation-delay: .22s;
}

.has-js .problems.is-revealed .problems-frame-card:nth-child(2) {
  animation-delay: .32s;
}

.has-js .problems.is-revealed .problems-frame-card:nth-child(3) {
  animation-delay: .42s;
}

.has-js .problems.is-revealed .problems-frame-card:nth-child(4) {
  animation-delay: .52s;
}

@media (max-width: 1080px) {
  .problems-frame {
    left: auto;
    width: min(100%, 980px);
    padding: 88px 50px 82px;
    border-radius: 58px 16px 58px 16px;
    transform: none;
  }

  .problems-frame__desktop-frame {
    display: none;
  }

  .problems-frame__tablet-frame {
    display: block;
  }

  .problems-frame__content {
    width: min(100%, 808px);
    margin: 0 auto;
  }

  .problems-frame__grid {
    grid-template-columns: repeat(2, minmax(280px, 390px));
    gap: 24px 28px;
  }

  .problems-frame-card {
    min-height: 230px;
  }
}

@media (max-width: 620px) {
  .problems-frame {
    width: min(calc(100% - 24px), 560px);
    margin: 0 auto;
    padding: 86px clamp(34px, 9vw, 56px) 64px;
    border-radius: 34px 10px 34px 10px;
  }

  .problems-frame__tablet-line--outer {
    inset: 34px 10px 28px;
    border-radius: 42px 10px 42px 42px;
  }

  .problems-frame__tablet-line--inner {
    inset: 46px 22px 40px;
    border-radius: 30px 4px 30px 30px;
  }

  .problems-frame__tablet-line::before {
    left: 42%;
  }

  .problems-frame__tablet-line::after {
    height: 122px;
  }

  .problems-frame__tablet-line--inner::after {
    height: 110px;
  }

  .problems-frame h2 {
    font-size: clamp(1.48rem, 8vw, 1.8rem);
  }

  .problems-frame__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .problems-frame-card {
    display: grid;
    grid-template-columns: 41px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 0;
    padding: 15px 14px;
  }

  .problems-frame-card__icon {
    width: 41px;
    height: 41px;
    margin: 0;
  }

  .problems-frame-card h3 {
    margin-bottom: 5px;
    font-size: 1rem;
  }

  .problems-frame-card p {
    font-size: .8rem;
  }

  .problems-frame-card__arrow {
    align-self: center;
    margin-top: 0;
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .problems-frame__eyebrow,
  .has-js .problems-frame h2,
  .has-js .problems-frame-card,
  .has-js .problems.is-revealed .problems-frame__eyebrow,
  .has-js .problems.is-revealed .problems-frame h2,
  .has-js .problems.is-revealed .problems-frame-card {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.cases {
  position: relative;
  padding: 88px 24px 110px;
  background: #f7fbff;
  color: var(--text);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  overflow: hidden;
}

.cases::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  pointer-events: none;
  z-index: 4;
}

.cases__panel {
  position: relative;
  width: min(100%, 1320px);
  margin: 0 auto;
  overflow: hidden;
  padding: 38px 36px 24px;
  border: 1px solid rgba(16, 39, 70, .12);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 68% 54% at 54% 42%, rgba(22, 187, 217, .065), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .8));
  box-shadow: 0 24px 70px rgba(16, 39, 70, .055);
}

.cases__dotted-wave {
  position: absolute;
  top: -26px;
  right: 0;
  z-index: 0;
  width: min(54vw, 720px);
  height: 380px;
  opacity: .94;
  pointer-events: none;
}

.cases__head,
.cases__viewport,
.cases__controls,
.cases__cta {
  position: relative;
  z-index: 1;
}

.cases__head {
  max-width: 520px;
}

.cases__eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.cases h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.cases__lead {
  max-width: 390px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.cases__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 34px;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.cases__viewport::-webkit-scrollbar {
  display: none;
}

.cases__track {
  display: flex;
  gap: 20px;
}

.case-card {
  flex: 0 0 calc((100% - 20px) / 2);
  display: grid;
  grid-template-columns: minmax(190px, .88fr) minmax(0, 1.12fr);
  min-height: 472px;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 70, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 44px rgba(16, 39, 70, .045);
  scroll-snap-align: start;
}

.case-card__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22, 187, 217, .18), rgba(255, 255, 255, .1)),
    repeating-linear-gradient(
      90deg,
      rgba(16, 39, 70, .055) 0 1px,
      transparent 1px 24px
    ),
    linear-gradient(180deg, #edf8fc, #ffffff);
}

.case-card__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(22, 187, 217, .32);
  border-radius: 12px;
}

.case-card__media::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 36px;
  height: 110px;
  border-radius: 999px 999px 0 0;
  background:
    linear-gradient(90deg, rgba(22, 187, 217, .16), rgba(22, 187, 217, .04)),
    repeating-linear-gradient(
      90deg,
      rgba(22, 187, 217, .4) 0 2px,
      transparent 2px 18px
    );
  opacity: .72;
}

.case-card__media--retail {
  background:
    linear-gradient(135deg, rgba(6, 156, 99, .12), rgba(255, 255, 255, .1)),
    repeating-linear-gradient(
      0deg,
      rgba(16, 39, 70, .055) 0 1px,
      transparent 1px 28px
    ),
    linear-gradient(180deg, #eefbf7, #ffffff);
}

.case-card__media span {
  position: absolute;
  left: 24px;
  top: 24px;
  color: rgba(16, 39, 70, .36);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  z-index: 2;
}

.case-card__media--photo {
  background: #0c1e35;
}

.case-card__media--photo::before,
.case-card__media--photo::after {
  display: none;
}

.case-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-card__media--photo span {
  left: 16px;
  top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: rgba(16, 39, 70, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(16, 39, 70, .12);
}

.case-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 28px 22px;
}

.case-card__industry {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.case-card__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  margin-bottom: 24px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.2;
}

.case-card__brand-mark {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 999px 999px 999px 3px;
  background:
    radial-gradient(circle at 56% 45%, #ffffff 0 22%, transparent 23%),
    linear-gradient(135deg, #0f4a98, #17bad4);
  transform: rotate(-35deg);
}

.case-card__brand--green .case-card__brand-mark {
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 52%, #ffffff 0 22%, transparent 23%),
    linear-gradient(135deg, #087942, #16b66f);
  transform: none;
}

.case-card h3 {
  max-width: 300px;
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.12;
}

.case-card__lead {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.55;
}

.case-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.case-card__metrics div {
  min-height: 72px;
  padding: 13px 12px;
  border: 1px solid rgba(16, 39, 70, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .55);
}

.case-card__metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.case-card__highlights {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-card__highlights li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.case-card__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(39, 201, 218, 0.18);
}

.case-card__metrics span {
  display: block;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 600;
  line-height: 1.25;
}

.case-card__quote {
  position: relative;
  margin: auto 0 0;
  padding: 24px 18px 18px 44px;
  border: 1px solid rgba(16, 39, 70, .09);
  border-radius: 12px;
  background: rgba(255, 255, 255, .44);
}

.case-card__quote::before {
  content: "“";
  position: absolute;
  left: 16px;
  top: 10px;
  color: var(--accent);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.case-card__quote p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.55;
}

.case-card__quote cite {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-style: normal;
}

.case-card__quote cite strong,
.case-card__quote cite span {
  display: block;
}

.case-card__quote cite strong {
  margin-bottom: 4px;
  font-size: .78rem;
  font-weight: 800;
}

.case-card__quote cite span {
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
}

.cases__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.cases__control {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(16, 39, 70, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
}

.cases__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cases__dot {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 39, 70, .13);
  cursor: pointer;
  transition: background 160ms ease, width 160ms ease;
}

.cases__dot:hover {
  background: rgba(16, 39, 70, .26);
}

.cases__dot--active {
  background: var(--accent);
}

.cases__cta {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: 22px 36px;
  border: 1px solid rgba(22, 187, 217, .26);
  border-radius: 16px;
  background: rgba(255, 255, 255, .62);
}

.cases__cta-icon {
  display: block;
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.cases__cta-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cases__cta-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cases__cta-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.cases__cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.cases__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 288px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 9px;
  color: #ffffff;
  font-size: .95rem;
  font-weight: 700;
  background: linear-gradient(180deg, #0a8fa4 0%, #16b1c8 55%, #2cd5e6 100%);
  box-shadow:
    0 14px 30px rgba(39, 201, 218, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cases__button span[aria-hidden="true"] {
  font-size: 1.45rem;
  line-height: 1;
}

.has-js .cases__eyebrow,
.has-js .cases h2,
.has-js .cases__lead,
.has-js .case-card,
.has-js .cases__controls,
.has-js .cases__cta {
  opacity: 0;
  transform: translateY(14px);
}

.has-js .cases.is-revealed .cases__eyebrow,
.has-js .cases.is-revealed h2,
.has-js .cases.is-revealed .cases__lead,
.has-js .cases.is-revealed .case-card,
.has-js .cases.is-revealed .cases__controls,
.has-js .cases.is-revealed .cases__cta {
  animation: casesReveal .6s cubic-bezier(.2, .72, .2, 1) forwards;
}

.has-js .cases.is-revealed .cases__eyebrow { animation-delay: 0s; }
.has-js .cases.is-revealed h2 { animation-delay: .1s; }
.has-js .cases.is-revealed .cases__lead { animation-delay: .2s; }
.has-js .cases.is-revealed .case-card:nth-child(1) { animation-delay: .36s; }
.has-js .cases.is-revealed .case-card:nth-child(2) { animation-delay: .48s; }
.has-js .cases.is-revealed .case-card:nth-child(3) { animation-delay: .60s; }
.has-js .cases.is-revealed .case-card:nth-child(4) { animation-delay: .72s; }
.has-js .cases.is-revealed .case-card:nth-child(5) { animation-delay: .84s; }
.has-js .cases.is-revealed .case-card:nth-child(6) { animation-delay: .96s; }
.has-js .cases.is-revealed .cases__controls { animation-delay: 1.1s; }
.has-js .cases.is-revealed .cases__cta { animation-delay: 1.24s; }

@keyframes casesReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .cases__eyebrow,
  .has-js .cases h2,
  .has-js .cases__lead,
  .has-js .case-card,
  .has-js .cases__controls,
  .has-js .cases__cta,
  .has-js .cases.is-revealed .cases__eyebrow,
  .has-js .cases.is-revealed h2,
  .has-js .cases.is-revealed .cases__lead,
  .has-js .cases.is-revealed .case-card,
  .has-js .cases.is-revealed .cases__controls,
  .has-js .cases.is-revealed .cases__cta {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 1100px) {
  .cases {
    padding: 72px 18px 84px;
  }

  .cases__panel {
    padding: 30px;
  }

  .cases__dotted-wave {
    top: -12px;
    right: 0;
    width: min(62vw, 560px);
    height: 300px;
  }

  .cases__track {
    gap: 18px;
  }

  .case-card {
    flex: 0 0 100%;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: 0;
  }

  .case-card__media {
    min-height: 210px;
  }

  .case-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, .78fr);
    gap: 0 24px;
    padding: 22px;
  }

  .case-card__industry,
  .case-card__brand,
  .case-card h3,
  .case-card__lead,
  .case-card__metrics {
    grid-column: 1;
  }

  .case-card__quote {
    grid-column: 2;
    grid-row: 1 / 6;
    margin: 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-radius: 0;
    background: transparent;
  }

  .cases__cta {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    padding: 20px;
  }

  .cases__button {
    min-width: 230px;
  }
}

@media (max-width: 760px) {
  .cases {
    padding: 52px 10px 70px;
  }

  .cases__panel {
    padding: 26px 16px 16px;
    border-radius: 16px;
  }

  .cases__dotted-wave {
    display: none;
  }

  .cases__lead {
    margin-top: 10px;
    font-size: .86rem;
  }

  .cases__viewport {
    overflow-x: auto;
    margin: 22px -2px 0;
    padding: 0 2px 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .cases__viewport::-webkit-scrollbar {
    display: none;
  }

  .cases__track {
    display: flex;
    gap: 14px;
  }

  .case-card {
    flex: 0 0 100%;
    display: block;
    min-height: 0;
    scroll-snap-align: start;
  }

  .case-card__media {
    min-height: 176px;
    border-bottom: 1px solid rgba(16, 39, 70, .09);
  }

  .case-card__body {
    display: block;
    padding: 22px 18px 18px;
  }

  .case-card__brand {
    margin-bottom: 20px;
    font-size: .95rem;
  }

  .case-card h3 {
    font-size: 1.22rem;
  }

  .case-card__lead {
    font-size: .82rem;
  }

  .case-card__metrics {
    gap: 8px;
    margin-top: 20px;
  }

  .case-card__metrics div {
    min-height: 66px;
    padding: 10px 9px;
  }

  .case-card__quote {
    margin-top: 18px;
    padding: 22px 16px 16px 40px;
    border: 1px solid rgba(16, 39, 70, .09);
    border-radius: 12px;
    background: rgba(255, 255, 255, .44);
  }

  .cases__controls {
    margin-top: 18px;
  }

  .cases__cta {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    margin-top: 22px;
    padding: 18px;
  }

  .cases__cta-icon {
    width: 40px;
    height: 40px;
  }

  .cases__cta-copy strong {
    font-size: .95rem;
  }

  .cases__cta-copy p {
    font-size: .86rem;
  }

  .cases__button {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    min-height: 48px;
    gap: 18px;
    font-size: .86rem;
  }
}

/* ===== Footer (CTA + main + legal) ===== */

.footer-test {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 30px 44px 34px;
  overflow: hidden;
  background: #ffffff;
}

.footer-test > * {
  max-width: var(--container);
  margin-inline: auto;
}

.footer-test::after {
  content: none;
}

.footer-cta {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(390px, 1fr)
    minmax(300px, 0.72fr)
    minmax(620px, 1.35fr);
  align-items: center;
  height: 236px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 70, 0.12);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(16, 39, 70, 0.05);
}

.footer-cta__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 0 52px;
  align-self: center;
}

.footer-cta .eyebrow {
  display: block;
  margin-bottom: 10px;
  color: #08aeca;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 390px;
  margin: 0;
  color: var(--text);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: clamp(1.42rem, 1.48vw, 1.92rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.footer-cta__copy p {
  max-width: 400px;
  margin: 12px 0 0;
  color: #738298;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.footer-cta__photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% + 180px);
  height: 236px;
  min-height: 0;
  justify-self: end;
  margin-left: -180px;
  z-index: 1;
  pointer-events: none;
  --fade-left: 12%;
  --soft-left: 30%;
  --solid-left: 52%;
  --solid-right: 72%;
  --soft-right: 90%;
  --fade-right: 100%;
}

.footer-cta__photo img {
  width: auto;
  height: 100%;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
  object-position: right center;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.16) var(--fade-left),
    rgba(0, 0, 0, 0.58) var(--soft-left),
    rgba(0, 0, 0, 0.95) var(--solid-left),
    #000 50%,
    rgba(0, 0, 0, 0.95) var(--solid-right),
    rgba(0, 0, 0, 0.58) var(--soft-right),
    rgba(0, 0, 0, 0.16) var(--fade-right),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.16) var(--fade-left),
    rgba(0, 0, 0, 0.58) var(--soft-left),
    rgba(0, 0, 0, 0.95) var(--solid-left),
    #000 50%,
    rgba(0, 0, 0, 0.95) var(--solid-right),
    rgba(0, 0, 0, 0.58) var(--soft-right),
    rgba(0, 0, 0, 0.16) var(--fade-right),
    transparent 100%
  );
}

.footer-cta__actions {
  position: relative;
  z-index: 2;
  align-self: center;
  display: grid;
  gap: 20px;
  padding: 0 18px 0 0;
  transform: translateX(72px);
}

.footer-cta__actions .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.footer-cta__actions .button--primary {
  color: #ffffff;
  background: linear-gradient(180deg, #0a8fa4 0%, #16b1c8 55%, #2cd5e6 100%);
  box-shadow:
    0 12px 26px rgba(39, 201, 218, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 120px minmax(180px, 1fr) minmax(280px, 360px);
  gap: 34px;
  align-items: start;
  padding: 30px 96px 28px;
}

.footer-main .footer-logo img {
  display: block;
  width: 96px;
  height: auto;
}

.footer-about {
  margin: 0;
  color: #738298;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.55;
}

.footer-col {
  display: grid;
  gap: 10px;
  color: #738298;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
}

.footer-col strong {
  margin-bottom: 4px;
  color: var(--text);
}

.footer-test .contacts a {
  color: var(--text);
  font-size: 1.03rem;
  font-weight: 900;
}

.footer-test .contacts span {
  color: #738298;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-test .socials {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  padding-top: 24px;
}

.footer-test .social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(16, 39, 70, 0.13);
  border-radius: 50%;
  color: #7e8da1;
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-test .social svg {
  width: 20px;
  height: 20px;
}

.footer-test .legal-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  gap: 92px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 39, 70, 0.13);
  color: #91a0b2;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-test .legal-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-test .legal-bottom span:first-child {
  justify-self: start;
}

@media (max-width: 1180px) {
  .footer-test {
    padding: 20px;
  }

  .footer-test .legal-bottom {
    grid-template-columns: 1fr auto auto;
    gap: 10px 28px;
  }

  .footer-cta {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    grid-template-areas:
      "copy photo"
      "actions photo";
    height: auto;
    min-height: 220px;
  }

  .footer-cta__copy {
    grid-area: copy;
    min-height: auto;
    padding: 26px 30px 10px;
  }

  .footer-cta__actions {
    grid-area: actions;
    padding: 8px 30px 26px;
    transform: none;
  }

  .footer-cta__photo {
    grid-area: photo;
    position: relative;
    inset: auto;
    width: calc(100% + 70px);
    height: 220px;
    margin-left: -70px;
    --fade-left: 4%;
    --soft-left: 22%;
    --solid-left: 46%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "company contacts";
    gap: 22px 28px;
    padding: 28px 4px 30px;
    justify-items: start;
  }

  .footer-main .footer-logo {
    grid-area: logo;
  }

  .footer-col--company {
    grid-area: company;
  }

  .footer-col--contacts {
    grid-area: contacts;
  }

  .footer-test .social {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 760px) {
  .footer-test {
    padding: 12px;
  }

  .footer-test .legal-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    font-size: 0.76rem;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "copy"
      "actions";
    border-radius: 12px;
  }

  .footer-cta__photo {
    width: 100%;
    height: 180px;
    margin-left: 0;
    --fade-left: 0%;
    --soft-left: 8%;
    --solid-left: 18%;
    --solid-right: 82%;
    --soft-right: 94%;
    --fade-right: 100%;
  }

  .footer-cta__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .footer-cta__copy {
    padding: 24px 22px 8px;
  }

  .footer-cta h2 {
    max-width: none;
    font-size: clamp(1.48rem, 8vw, 2rem);
    line-height: 1.05;
  }

  .footer-cta__copy p {
    max-width: none;
    font-size: 0.96rem;
  }

  .footer-cta__actions {
    padding: 14px 22px 24px;
  }

  .footer-cta__actions .button {
    width: 100%;
    min-height: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "logo logo"
      "company contacts";
    gap: 20px 18px;
    padding: 26px 4px 30px;
    justify-items: start;
  }

  .footer-main .footer-logo img {
    width: 86px;
  }

  .footer-about {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .footer-col {
    gap: 8px;
    min-width: 0;
    font-size: 0.88rem;
  }

  .footer-test .contacts a {
    font-size: 1.02rem;
  }

  .footer-test .socials {
    padding-top: 4px;
  }
}

/* ===== About page ===== */
.about-page {
  background:
    linear-gradient(180deg, #fbfdff 0%, #f4f9fd 58%, #eef6fb 100%);
  color: var(--text);
  font-family: "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

.about-page.is-doc-lightbox-open {
  overflow: hidden;
}

.about-page .logo__image {
  width: 95px;
}

.about-page .about-header,
.about-page .hero__nav,
.about-page .hero__contact {
  font-family: "Segoe UI Variable Text", "Segoe UI", sans-serif;
}

.about-page .hero__nav a {
  position: relative;
  padding-bottom: 8px;
}

.about-page .hero__nav a.is-active {
  color: #08aeca;
}

.about-page .hero__nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #08aeca;
}

.about-main {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 26px 0 34px;
}

.about-eyebrow {
  margin: 0 0 12px;
  color: #08aeca;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.88fr);
  gap: 34px;
  align-items: stretch;
  min-height: 610px;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 250px;
  width: 520px;
  height: 330px;
  opacity: 0.5;
  background-image: radial-gradient(circle, rgba(39, 201, 218, 0.58) 1px, transparent 1.2px);
  background-size: 18px 12px;
  transform: rotate(-11deg);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.72) 45%, transparent 74%);
  mask-image: radial-gradient(ellipse at center, #000 0%, rgba(0, 0, 0, 0.72) 45%, transparent 74%);
  pointer-events: none;
}

.about-hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 0 52px 10px;
}

.about-hero h1 {
  max-width: 650px;
  margin: 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 4.55rem;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-hero__lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.65;
}

.about-hero__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 30px;
  max-width: 820px;
  margin: 58px 0 0;
  padding: 0;
  list-style: none;
}

.about-hero__features li {
  display: grid;
  gap: 12px;
  align-content: start;
  min-width: 0;
  color: rgba(16, 39, 70, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.28;
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #08aeca;
}

.about-feature-icon svg {
  width: 31px;
  height: 31px;
}

.about-hero__mobile-actions,
.about-team__video-link {
  display: none;
}

.about-hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  min-height: 560px;
}

.about-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 180px;
  overflow: hidden;
  border: 1px dashed rgba(8, 174, 202, 0.45);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(214, 235, 247, 0.4)),
    repeating-linear-gradient(135deg, rgba(8, 174, 202, 0.12) 0 1px, transparent 1px 18px);
  color: rgba(16, 39, 70, 0.62);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  pointer-events: none;
}

.about-photo span {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 34px rgba(16, 39, 70, 0.08);
}

.about-photo__image {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo--hero {
  min-height: 560px;
  border: 0;
  border-radius: 24px 0 0 24px;
  background: transparent;
}

.about-photo--hero::after {
  content: none;
}

.about-photo--hero span {
  display: none;
}

.about-photo--hero .about-photo__image {
  z-index: 1;
  object-position: 56% center;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 6%,
    rgba(0, 0, 0, 0.72) 15%,
    #000 26%,
    #000 74%,
    rgba(0, 0, 0, 0.72) 85%,
    rgba(0, 0, 0, 0.18) 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.18) 6%,
    rgba(0, 0, 0, 0.72) 15%,
    #000 26%,
    #000 74%,
    rgba(0, 0, 0, 0.72) 85%,
    rgba(0, 0, 0, 0.18) 94%,
    transparent 100%
  );
}

.about-page--v2 .about-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.08fr);
  min-height: 660px;
}

.about-page--v2 .about-hero__copy {
  padding-top: 62px;
}

.about-page--v2 .about-hero__visual {
  min-height: 640px;
  margin-right: -44px;
}

.about-page--v2 .about-hero {
  overflow: visible;
}

.about-page--v2 .about-hero__visual {
  overflow: visible;
}

.about-page--v2 .about-photo--hero {
  min-height: 640px;
  overflow: visible;
  border-radius: 0;
}

.about-page--v2 .about-photo--hero .about-photo__image {
  inset: -110px 0 -150px 0;
  width: 100%;
  height: calc(100% + 260px);
  object-fit: cover;
  object-position: 88% center;
  -webkit-mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 10%,
      rgba(0, 0, 0, 0.62) 24%,
      #000 42%,
      #000 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 9%,
      rgba(0, 0, 0, 0.1) 17%,
      rgba(0, 0, 0, 0.34) 26%,
      rgba(0, 0, 0, 0.62) 35%,
      rgba(0, 0, 0, 0.88) 44%,
      #000 53%,
      #000 62%,
      rgba(0, 0, 0, 0.85) 70%,
      rgba(0, 0, 0, 0.55) 78%,
      rgba(0, 0, 0, 0.25) 86%,
      rgba(0, 0, 0, 0.08) 94%,
      transparent 100%
    );
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 10%,
      rgba(0, 0, 0, 0.62) 24%,
      #000 42%,
      #000 100%
    ),
    linear-gradient(
      180deg,
      transparent 0%,
      transparent 9%,
      rgba(0, 0, 0, 0.1) 17%,
      rgba(0, 0, 0, 0.34) 26%,
      rgba(0, 0, 0, 0.62) 35%,
      rgba(0, 0, 0, 0.88) 44%,
      #000 53%,
      #000 62%,
      rgba(0, 0, 0, 0.85) 70%,
      rgba(0, 0, 0, 0.55) 78%,
      rgba(0, 0, 0, 0.25) 86%,
      rgba(0, 0, 0, 0.08) 94%,
      transparent 100%
    );
  mask-composite: intersect;
}

.about-page--v2 .about-founder {
  position: relative;
  z-index: 5;
  grid-template-columns: 1fr;
  margin-top: 70px;
  overflow: visible;
  background:
    linear-gradient(135deg, #d8e0e9 0%, #e7ecf2 48%, #f8fbfd 100%);
  background-color: #e7ecf2;
}

.about-page--v2 .about-founder__bio {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.38fr);
  border-right: 0;
}

.about-page--v2 .about-founder__profile {
  display: grid;
  grid-template-columns: minmax(250px, 0.46fr) minmax(340px, 0.7fr) minmax(360px, 0.72fr);
  align-items: stretch;
  min-height: 330px;
  overflow: visible;
}

.about-page--v2 .about-founder__cutout {
  position: relative;
  order: 1;
  align-self: stretch;
  min-height: 330px;
  overflow: visible;
  clip-path: inset(-86px -18px 0 0);
  pointer-events: none;
  z-index: 2;
}

.about-page--v2 .about-founder__cutout img {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 0;
  width: auto;
  height: 104%;
  max-width: none;
  display: block;
}

.about-page--v2 .about-founder__info {
  order: 2;
  padding: 50px 54px 46px 18px;
}

.about-page--v2 .about-founder__info h2 {
  margin: 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.about-page--v2 .about-founder__info p:not(.about-eyebrow) {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(16, 39, 70, 0.72);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

.about-page--v2 .about-founder__quote {
  position: relative;
  order: 3;
  align-self: stretch;
  display: grid;
  align-content: center;
  min-height: 100%;
  margin: 0;
  padding: 48px 58px 48px 70px;
  border-left: 1px solid rgba(16, 39, 70, 0.1);
}

.about-page--v2 .about-founder__quote::before,
.about-page--v2 .about-founder__quote::after {
  position: absolute;
  left: 70px;
  color: #08aeca;
  font-family: Georgia, serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
}

.about-page--v2 .about-founder__quote::before {
  content: "\201C";
  top: 38px;
}

.about-page--v2 .about-founder__quote::after {
  content: "\201D";
  bottom: 18px;
}

.about-page--v2 .about-founder__quote p {
  max-width: 520px;
  margin: 0;
  padding: 38px 0 40px;
  color: rgba(16, 39, 70, 0.78);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.52;
}

.about-page--v2 .about-video--team {
  align-self: end;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-page--v2 .about-video--team .about-video__frame {
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(16, 39, 70, 0.12);
}

.about-photo--hero::before,
.about-photo--team::before,
.about-photo--office::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  filter: blur(2px);
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 70, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 255, 0.92) 100%);
  box-shadow: 0 18px 44px rgba(16, 39, 70, 0.055);
}

.about-founder__bio,
.about-video,
.about-panel,
.about-docs {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 70, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 255, 0.92) 100%);
  box-shadow: 0 18px 44px rgba(16, 39, 70, 0.055);
}

.about-founder__bio::before,
.about-video::before,
.about-panel::before,
.about-docs::before {
  content: none;
}

.about-founder__bio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.5fr);
  min-height: 324px;
  overflow: hidden;
  border: 0;
  border-right: 1px solid rgba(16, 39, 70, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-founder__copy {
  padding: 34px 34px 32px;
}

.about-founder blockquote {
  position: relative;
  margin: 26px 0 0;
  padding: 24px 0 0;
  color: rgba(16, 39, 70, 0.84);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.about-founder blockquote::before {
  content: "\201C";
  position: absolute;
  top: -12px;
  left: 0;
  color: #08aeca;
  font-family: Georgia, serif;
  font-size: 3.8rem;
  line-height: 1;
}

.about-founder h2,
.about-panel h2,
.about-docs h2,
.about-bottom-cta h2 {
  margin: 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.about-founder h2 {
  font-size: 1.72rem;
  line-height: 1.12;
}

.about-founder p,
.about-video p,
.about-panel p,
.about-docs p,
.about-bottom-cta p {
  margin: 16px 0 0;
  color: rgba(16, 39, 70, 0.72);
  font-weight: 600;
  line-height: 1.55;
}

.about-founder .about-eyebrow,
.about-video .about-eyebrow,
.about-panel .about-eyebrow,
.about-docs .about-eyebrow,
.about-bottom-cta .about-eyebrow {
  margin: 0 0 12px;
  color: #08aeca;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
}


.about-photo--portrait {
  min-height: 100%;
  border-width: 0;
  border-left: 1px solid rgba(16, 39, 70, 0.08);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(16, 39, 70, 0.1)),
    linear-gradient(145deg, #f2f8fc 0%, #cae7f2 55%, #87bdd9 100%);
}

.about-photo--portrait .about-photo__image {
  object-position: center 26%;
}

.about-video {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #071b31;
}

.about-video__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video h3 {
  margin: 16px 0 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.about-video p {
  margin-top: 5px;
  font-size: 0.9rem;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 70, 0.1);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 255, 0.92) 100%);
  box-shadow: 0 18px 44px rgba(16, 39, 70, 0.055);
}

.about-panel {
  min-height: 372px;
  padding: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-approach {
  border-right: 1px solid rgba(16, 39, 70, 0.1);
}

.about-panel h2,
.about-docs h2 {
  color: #08aeca;
  font-size: 1.48rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-approach ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.about-approach li {
  position: relative;
  min-width: 0;
  padding-left: 36px;
  color: rgba(16, 39, 70, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.about-approach li::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 24px;
  height: 24px;
  background: url("assets/Слой3(q).png") center / contain no-repeat;
}

.about-team {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
}

.about-photo--team {
  min-height: 230px;
  border-style: solid;
  background:
    linear-gradient(0deg, rgba(5, 23, 44, 0.18), rgba(5, 23, 44, 0.02)),
    linear-gradient(135deg, #eaf4fb, #98c7dd);
}

.about-photo--team::before,
.about-photo--team::after {
  content: none;
}

.about-photo--team .about-photo__image {
  object-position: center center;
}

.about-photo--team span {
  display: none;
}

.about-docs {
  margin-top: 24px;
  padding: 34px 34px 28px;
}

.about-docs__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.about-docs__head h2 {
  color: var(--text);
  text-transform: none;
}

.about-docs__head p {
  max-width: 520px;
  margin-top: 12px;
}

.about-docs__head a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-top: 10px;
  color: #08aeca;
  font-size: 0.94rem;
  font-weight: 900;
}

.about-docs__rail {
  display: grid;
  grid-template-columns: 44px repeat(4, minmax(0, 1fr)) 44px;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
}

.about-page--v2 .about-docs__rail {
  grid-template-columns: minmax(0, 1fr);
}

.about-page--v2 .about-docs__track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
  overflow: visible;
}

.about-page--v2 .about-docs__arrow {
  display: none;
}

.about-page--v2 .about-docs__track::-webkit-scrollbar {
  display: none;
}

.about-page--v2 .about-doc-card {
  scroll-snap-align: start;
}

.about-docs__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 39, 70, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(16, 39, 70, 0.08);
}

.about-docs__arrow:disabled {
  opacity: 0.42;
  cursor: default;
  box-shadow: none;
}

.about-doc-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  min-width: 0;
  text-align: center;
  transition: transform 160ms ease;
}

.about-doc-card:hover,
.about-doc-card:focus-within {
  transform: translateY(-2px);
}

.about-doc-card__paper {
  position: relative;
  display: block;
  width: min(156px, 100%);
  aspect-ratio: 0.72;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 39, 70, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(16, 39, 70, 0.08);
  cursor: zoom-in;
}

.about-doc-card__paper::before {
  content: none;
}

.about-doc-card__paper::after {
  content: none;
}

.about-doc-card__paper:focus-visible {
  outline: 3px solid rgba(8, 174, 202, 0.42);
  outline-offset: 4px;
}

.about-doc-card__paper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-doc-card strong {
  max-width: 154px;
  color: rgba(16, 39, 70, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.22;
}

.about-doc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.about-doc-lightbox.is-open {
  display: flex;
}

.about-doc-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 23, 44, 0.74);
  backdrop-filter: blur(8px);
}

.about-doc-lightbox__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: min(92vw, 920px);
  max-height: 92vh;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(5, 23, 44, 0.34);
}

.about-doc-lightbox__image {
  display: block;
  width: auto;
  max-width: calc(92vw - 36px);
  max-height: calc(92vh - 92px);
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 12px 36px rgba(5, 23, 44, 0.18);
}

.about-doc-lightbox__title {
  color: rgba(16, 39, 70, 0.84);
  font-weight: 900;
  text-align: center;
}

.about-doc-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(16, 39, 70, 0.12);
  border-radius: 50%;
  background: #ffffff;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(5, 23, 44, 0.22);
}

@media (max-width: 760px) {
  .about-doc-lightbox {
    padding: 14px;
  }

  .about-doc-lightbox__content {
    max-width: 100%;
    padding: 12px;
  }

  .about-doc-lightbox__image {
    max-width: calc(100vw - 52px);
    max-height: calc(100vh - 86px);
  }

  .about-doc-lightbox__close {
    top: 8px;
    right: 8px;
  }
}

.about-bottom-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(420px, 1.14fr);
  min-height: 255px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 14px;
  background: #08223f;
  box-shadow: 0 22px 60px rgba(5, 23, 44, 0.12);
}

.about-bottom-cta::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 300px;
  height: 220px;
  opacity: 0.34;
  background-image: radial-gradient(circle, rgba(39, 201, 218, 0.78) 1px, transparent 1.2px);
  background-size: 12px 10px;
  transform: rotate(-20deg);
  pointer-events: none;
}

.about-bottom-cta__copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: 42px 56px;
}

.about-bottom-cta h2 {
  max-width: 510px;
  color: #ffffff;
  font-size: 2.12rem;
  line-height: 1.08;
}

.about-bottom-cta p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}

.about-bottom-cta .button {
  justify-self: start;
  min-height: 46px;
  margin-top: 24px;
  padding: 0 24px;
  border-radius: 8px;
  gap: 16px;
}

.about-photo--office {
  min-height: 255px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, #08223f 0%, rgba(8, 34, 63, 0.68) 30%, rgba(8, 34, 63, 0.05) 66%),
    linear-gradient(135deg, #cfe6f3, #789eb8);
  color: rgba(255, 255, 255, 0.88);
}

.about-photo--office::before,
.about-photo--office::after {
  content: none;
}

.about-photo--office .about-photo__image {
  z-index: 1;
  object-position: center center;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.14) 8%,
    rgba(0, 0, 0, 0.58) 20%,
    #000 36%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.14) 8%,
    rgba(0, 0, 0, 0.58) 20%,
    #000 36%,
    #000 100%
  );
}

.about-photo--office span {
  display: none;
}

.about-footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .about-hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    min-height: auto;
  }

  .about-hero h1 {
    font-size: 3.7rem;
  }

  .about-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 540px;
    margin-top: 42px;
  }

  /* На планшете у v2 — карточная компоновка как на мобилке: фото абсолютом справа, копи слева */
  .about-page--v2 .about-hero {
    position: relative;
    display: block;
    min-height: 640px;
    padding: 40px 28px 28px;
    overflow: hidden;
    border: 1px solid rgba(16, 39, 70, 0.06);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 56px rgba(16, 39, 70, 0.08);
  }

  .about-page--v2 .about-hero::before {
    content: none;
  }

  .about-page--v2 .about-hero__copy {
    position: relative;
    z-index: 2;
    max-width: 58%;
    padding: 0;
  }

  .about-page--v2 .about-hero__visual {
    position: absolute;
    top: 56px;
    right: -40px;
    bottom: 120px;
    z-index: 1;
    width: 58%;
    min-height: 0;
    margin: 0;
    pointer-events: none;
  }

  .about-page--v2 .about-photo--hero {
    min-height: 100%;
    border-radius: 0;
    background: transparent;
  }

  .about-page--v2 .about-photo--hero .about-photo__image {
    inset: -40px 0 -40px 0;
    height: calc(100% + 80px);
    object-position: 60% center;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.75) 23%, #000 42%, #000 100%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 8%, #000 24%, #000 78%, rgba(0, 0, 0, 0.18) 92%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.75) 23%, #000 42%, #000 100%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 8%, #000 24%, #000 78%, rgba(0, 0, 0, 0.18) 92%, transparent 100%);
  }

  /* Фичи на планшете — карточная компоновка как на мобилке */
  .about-page--v2 .about-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: min(620px, 70%);
    max-width: none;
    margin-top: 56px;
  }

  .about-page--v2 .about-hero__features::before {
    content: "Наш подход";
    grid-column: 1 / -1;
    margin-bottom: 6px;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 900;
  }

  .about-page--v2 .about-hero__features li {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 14px;
    min-height: 120px;
    padding: 20px 18px;
    border: 1px solid rgba(16, 39, 70, 0.06);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(16, 39, 70, 0.075);
  }

  .about-page--v2 .about-feature-icon {
    width: 34px;
    height: 34px;
  }

  .about-page--v2 .about-feature-icon svg {
    width: 30px;
    height: 30px;
  }

  .about-page--v2 .about-hero__features span:last-child {
    color: rgba(16, 39, 70, 0.86);
    font-size: 0.92rem;
    line-height: 1.28;
  }

  .about-founder {
    grid-template-columns: 1fr;
  }

  .about-page--v2 .about-founder__profile {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  }

  .about-page--v2 .about-founder__cutout {
    order: 1;
  }

  .about-page--v2 .about-founder__quote {
    order: 3;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(16, 39, 70, 0.1);
    border-left: 0;
  }

  .about-founder__bio {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 39, 70, 0.1);
  }

  .about-docs__rail {
    grid-template-columns: 44px repeat(4, minmax(116px, 1fr)) 44px;
  }

  .about-page--v2 .about-doc-card__paper {
    width: 100%;
    max-width: 160px;
  }
}

@media (max-width: 920px) {
  .about-page .about-header {
    padding-top: 18px;
  }

  .about-page .hero__nav a {
    padding-bottom: 0;
  }

  .about-page .hero__nav a.is-active::after {
    display: none;
  }

  .about-main {
    padding-top: 12px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-hero::before {
    top: 300px;
    right: -90px;
  }

  .about-hero__copy {
    padding: 44px 0 20px;
  }

  .about-hero h1 {
    font-size: 3.2rem;
  }

  .about-hero__visual,
  .about-photo--hero {
    min-height: 360px;
  }

  .about-photo--hero {
    border-radius: 14px;
  }

  .about-founder__bio {
    grid-template-columns: 1fr;
  }

  .about-photo--portrait {
    min-height: 310px;
    border-left: 0;
    border-top: 1px solid rgba(16, 39, 70, 0.08);
  }

  .about-split,
  .about-bottom-cta {
    grid-template-columns: 1fr;
  }

  .about-approach {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 39, 70, 0.1);
  }

  .about-panel {
    min-height: auto;
  }

  .about-docs__head {
    display: grid;
  }

  .about-docs__rail {
    grid-template-columns: repeat(4, minmax(136px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .about-docs__arrow {
    display: none;
  }

  .about-photo--office {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .about-main,
  .about-page .about-header {
    width: min(calc(100% - 24px), var(--container));
  }

  .about-hero h1 {
    font-size: 2.56rem;
  }

  .about-hero__lead {
    font-size: 1rem;
  }

  .about-hero__features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-hero__features li {
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
  }

  .about-page--v2 .about-founder__profile {
    grid-template-columns: 1fr;
  }

  .about-page--v2 .about-founder__cutout {
    min-height: 280px;
    clip-path: inset(-64px 0 0 0);
  }

  .about-page--v2 .about-founder__cutout img {
    right: auto;
    left: 50%;
    bottom: 0;
    height: 112%;
    transform: translateX(-50%);
  }

  .about-page--v2 .about-founder__info {
    padding: 24px;
  }

  .about-page--v2 .about-founder__quote {
    padding: 34px 24px 28px;
  }

  .about-page--v2 .about-founder__quote::before,
  .about-page--v2 .about-founder__quote::after {
    left: 24px;
    font-size: 3.4rem;
  }

  .about-page--v2 .about-founder__quote p {
    padding: 34px 0 34px;
    font-size: 1.12rem;
  }

  .about-founder__copy,
  .about-panel,
  .about-docs,
  .about-bottom-cta__copy {
    padding: 24px;
  }

  .about-approach ul {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .about-docs__rail {
    grid-template-columns: repeat(2, minmax(136px, 1fr));
  }

  .about-bottom-cta h2 {
    font-size: 1.72rem;
  }

  .about-bottom-cta .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .about-page--v2 {
    background:
      linear-gradient(180deg, #f3f8fc 0%, #ffffff 22%, #f2f7fb 100%);
  }

  .about-page--v2 .about-header {
    display: flex;
    align-items: center;
    width: min(calc(100% - 24px), 390px);
    padding-top: 18px;
  }

  .about-page--v2 .logo__image {
    width: 94px;
  }

  .about-page--v2 .hero__contact {
    display: none;
  }

  .about-page--v2 .mobile-call {
    order: 2;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(8, 174, 202, 0.24);
  }

  .about-page--v2 .menu-toggle {
    order: 3;
    width: 44px;
    height: 44px;
    margin-left: 10px;
    border: 1px solid rgba(16, 39, 70, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 26px rgba(16, 39, 70, 0.12);
  }

  .about-page--v2 .menu-toggle::before {
    left: 12px;
    right: 12px;
    top: 14px;
    height: 2px;
    box-shadow: 0 7px 0 var(--text);
  }

  .about-page--v2 .menu-toggle::after {
    left: 12px;
    right: 12px;
    bottom: 13px;
    height: 2px;
  }

  .about-page--v2 .menu-toggle[aria-expanded="true"]::before {
    top: 21px;
  }

  .about-page--v2 .menu-toggle[aria-expanded="true"]::after {
    bottom: 21px;
  }

  .about-page--v2 .about-main {
    width: min(calc(100% - 24px), 390px);
    padding-top: 12px;
  }

  .about-page--v2 .about-hero {
    position: relative;
    display: block;
    min-height: 666px;
    padding: 28px 18px 18px;
    overflow: hidden;
    border: 1px solid rgba(16, 39, 70, 0.06);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 56px rgba(16, 39, 70, 0.08);
  }

  .about-page--v2 .about-hero::before {
    content: none;
  }

  .about-page--v2 .about-hero__copy {
    position: relative;
    z-index: 2;
    max-width: none;
    padding: 0;
  }

  .about-page--v2 .about-hero .about-eyebrow {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  .about-page--v2 .about-hero h1 {
    max-width: 7.1em;
    font-size: clamp(2.38rem, 13.2vw, 3.25rem);
    line-height: 0.98;
  }

  .about-page--v2 .about-hero__lead {
    max-width: 14.5em;
    margin-top: 18px;
    color: rgba(16, 39, 70, 0.78);
    font-size: 0.93rem;
    font-weight: 700;
    line-height: 1.48;
  }

  .about-page--v2 .about-hero__mobile-actions {
    display: grid;
    gap: 16px;
    width: min(100%, 220px);
    margin-top: 26px;
  }

  .about-page--v2 .about-hero__mobile-actions .button {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 12px;
    gap: 16px;
    font-size: 0.9rem;
  }

  .about-page--v2 .about-hero__docs-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #08aeca;
    font-size: 0.86rem;
    font-weight: 900;
  }

  .about-page--v2 .about-hero__docs-link::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    background: #08aeca;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h7l5 5v15H7V2Zm7 1v5h5M10 13h6M10 17h6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2h7l5 5v15H7V2Zm7 1v5h5M10 13h6M10 17h6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .about-page--v2 .about-hero__visual {
    position: absolute;
    top: 86px;
    right: -102px;
    bottom: 200px;
    z-index: 1;
    width: 76%;
    min-height: 0;
    margin: 0;
    pointer-events: none;
  }

  .about-page--v2 .about-photo--hero {
    min-height: 100%;
  }

  .about-page--v2 .about-photo--hero .about-photo__image {
    inset: -56px 0 -78px 0;
    height: calc(100% + 134px);
    object-position: 72% center;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.75) 23%, #000 42%, #000 100%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 8%, #000 24%, #000 78%, rgba(0, 0, 0, 0.18) 92%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.75) 23%, #000 42%, #000 100%),
      linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 8%, #000 24%, #000 78%, rgba(0, 0, 0, 0.18) 92%, transparent 100%);
  }

  .about-page--v2 .about-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: auto;
    max-width: none;
    margin-top: 82px;
  }

  .about-page--v2 .about-hero__features::before {
    content: "Наш подход";
    grid-column: 1 / -1;
    margin-bottom: 4px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 900;
  }

  .about-page--v2 .about-hero__features li {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    min-height: 112px;
    padding: 18px 16px;
    border: 1px solid rgba(16, 39, 70, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(16, 39, 70, 0.075);
  }

  .about-page--v2 .about-feature-icon {
    width: 30px;
    height: 30px;
  }

  .about-page--v2 .about-feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .about-page--v2 .about-hero__features span:last-child {
    color: rgba(16, 39, 70, 0.86);
    font-size: 0.84rem;
    line-height: 1.24;
  }

  .about-page--v2 .about-founder {
    margin-top: 24px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-page--v2 .about-founder__profile {
    display: grid;
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    gap: 0;
    min-height: 0;
    overflow: visible;
  }

  .about-page--v2 .about-founder__cutout {
    grid-column: 1;
    grid-row: 1;
    min-height: 224px;
    overflow: visible;
    clip-path: inset(-58px 0 0 0);
    border: 1px solid rgba(16, 39, 70, 0.06);
    border-right: 0;
    border-radius: 16px 0 0 16px;
    background:
      linear-gradient(135deg, #d7e1eb 0%, #eef3f7 100%);
    box-shadow: 0 18px 42px rgba(16, 39, 70, 0.07);
  }

  .about-page--v2 .about-founder__cutout img {
    left: -40px;
    bottom: 0;
    height: 108%;
    transform: none;
  }

  .about-page--v2 .about-founder__info {
    grid-column: 2;
    grid-row: 1;
    padding: 24px 18px 22px;
    border: 1px solid rgba(16, 39, 70, 0.06);
    border-left: 0;
    border-radius: 0 16px 16px 0;
    background:
      linear-gradient(135deg, #edf3f8 0%, #ffffff 100%);
    box-shadow: 0 18px 42px rgba(16, 39, 70, 0.07);
  }

  .about-page--v2 .about-founder__info .about-eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .about-page--v2 .about-founder__info h2 {
    font-size: 1.36rem;
    line-height: 1.05;
  }

  .about-page--v2 .about-founder__info p:not(.about-eyebrow) {
    margin-top: 16px;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .about-page--v2 .about-founder__quote {
    grid-column: 1 / -1;
    margin-top: 12px;
    padding: 26px 22px 24px;
    border: 1px solid rgba(16, 39, 70, 0.06);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 42px rgba(16, 39, 70, 0.07);
  }

  .about-page--v2 .about-founder__quote::before,
  .about-page--v2 .about-founder__quote::after {
    left: 22px;
    font-size: 3.6rem;
  }

  .about-page--v2 .about-founder__quote::before {
    top: 18px;
  }

  .about-page--v2 .about-founder__quote::after {
    right: 22px;
    bottom: 4px;
    left: auto;
  }

  .about-page--v2 .about-founder__quote p {
    padding: 44px 0 18px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .about-page--v2 .about-split {
    display: block;
    margin-top: 18px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-page--v2 .about-panel {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-page--v2 .about-panel h2,
  .about-page--v2 .about-docs h2 {
    color: var(--text);
    font-size: 1.12rem;
    line-height: 1.1;
  }

  .about-page--v2 .about-approach {
    padding: 26px 6px 26px;
    border: 0;
  }

  .about-page--v2 .about-approach > p {
    margin-top: 14px;
    font-size: 0.86rem;
  }

  .about-page--v2 .about-approach ul {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
    padding-left: 8px;
  }

  .about-page--v2 .about-approach ul::before {
    content: "";
    position: absolute;
    top: 11px;
    bottom: 11px;
    left: 16px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(8, 174, 202, 0.1), #08aeca 14%, #08aeca 86%, rgba(8, 174, 202, 0.1));
  }

  .about-page--v2 .about-approach li {
    min-height: 28px;
    padding-left: 42px;
    color: rgba(16, 39, 70, 0.78);
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .about-page--v2 .about-approach li::before {
    top: 5px;
    left: 3px;
    width: 12px;
    height: 12px;
    border: 3px solid #dff7fb;
    border-radius: 50%;
    background: #08aeca;
    box-shadow: 0 0 0 1px rgba(8, 174, 202, 0.2);
  }

  .about-page--v2 .about-team {
    gap: 16px;
    padding: 8px 0 22px;
  }

  .about-page--v2 .about-team__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: baseline;
  }

  .about-page--v2 .about-team__head p {
    grid-column: 1 / -1;
    margin-top: 10px;
    font-size: 0.88rem;
  }

  .about-page--v2 .about-team__video-link {
    display: inline-flex;
    color: #08aeca;
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
  }

  .about-page--v2 .about-video--team {
    padding: 0;
  }

  .about-page--v2 .about-video--team .about-video__frame {
    border-radius: 12px;
  }

  .about-page--v2 .about-docs {
    margin-top: 8px;
    padding: 22px 0 26px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-page--v2 .about-docs__head {
    display: block;
  }

  .about-page--v2 .about-docs__head p {
    display: none;
  }

  .about-page--v2 .about-docs__head a {
    margin: 0;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .about-page--v2 .about-docs__rail {
    position: relative;
    display: block;
    margin-top: 18px;
    padding: 0;
    overflow: visible;
  }

  .about-page--v2 .about-docs__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 42px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .about-page--v2 .about-docs__track::-webkit-scrollbar {
    display: none;
  }

  .about-page--v2 .about-docs__arrow {
    position: absolute;
    top: 54px;
    z-index: 4;
    display: inline-flex;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }

  .about-page--v2 .about-docs__arrow:first-child {
    left: 0;
  }

  .about-page--v2 .about-docs__arrow:last-child {
    right: 0;
  }

  .about-page--v2 .about-doc-card {
    flex: 0 0 112px;
    gap: 10px;
  }

  .about-page--v2 .about-doc-card__paper {
    width: 96px;
    border-radius: 9px;
  }

  .about-page--v2 .about-doc-card strong {
    max-width: 112px;
    font-size: 0.74rem;
  }

  .about-page--v2 .about-bottom-cta {
    display: block;
    min-height: 0;
    margin: 0 0 22px;
    padding: 34px 22px 22px;
    overflow: hidden;
    border-radius: 18px;
    background:
      radial-gradient(150% 80% at 100% 0%, rgba(8, 174, 202, 0.34), transparent 45%),
      linear-gradient(160deg, #09284b 0%, #071d37 78%);
    box-shadow: 0 24px 52px rgba(5, 23, 44, 0.2);
  }

  .about-page--v2 .about-bottom-cta::before {
    left: -60px;
    bottom: auto;
    top: -70px;
    width: 380px;
    height: 120px;
    opacity: 0.55;
    background:
      radial-gradient(80% 100% at 50% 100%, rgba(17, 210, 230, 0.24), transparent 62%);
    transform: rotate(-4deg);
  }

  .about-page--v2 .about-bottom-cta__copy {
    padding: 0;
  }

  .about-page--v2 .about-bottom-cta h2 {
    max-width: 280px;
    font-size: 1.76rem;
  }

  .about-page--v2 .about-bottom-cta p {
    max-width: 300px;
    font-size: 0.88rem;
  }

  .about-page--v2 .about-bottom-cta .button {
    width: 100%;
    min-height: 52px;
    margin-top: 24px;
    border-radius: 12px;
  }

  .about-page--v2 .about-photo--office {
    display: none;
  }
}

/* === Hero copy reveal (запускается после typewriter) === */

.has-js .hero__copy .hero__lead,
.has-js .hero__copy .hero__actions,
.has-js .hero__copy .hero__features,
.has-js .hero__copy .hero__trust,
.has-js .about-hero__copy .about-hero__lead,
.has-js .about-hero__copy .about-hero__mobile-actions,
.has-js .about-hero__copy .about-hero__features {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 620ms cubic-bezier(.2, .72, .2, 1),
    transform 620ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}

.hero.is-copy-ready .hero__lead     { opacity: 1; transform: none; transition-delay:    0ms; }
.hero.is-copy-ready .hero__actions  { opacity: 1; transform: none; transition-delay:  140ms; }
.hero.is-copy-ready .hero__features { opacity: 1; transform: none; transition-delay:  260ms; }
.hero.is-copy-ready .hero__trust    { opacity: 1; transform: none; transition-delay:  380ms; }

.about-hero.is-copy-ready .about-hero__lead           { opacity: 1; transform: none; transition-delay:    0ms; }
.about-hero.is-copy-ready .about-hero__mobile-actions { opacity: 1; transform: none; transition-delay:  140ms; }
.about-hero.is-copy-ready .about-hero__features       { opacity: 1; transform: none; transition-delay:  260ms; }

.has-js .india-hero__workers,
.has-js .india-hero__map {
  opacity: 0;
  transition: opacity 720ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity;
}

.india-hero.is-workers-in .india-hero__map {
  opacity: 0.95;
  transition-delay: 0ms;
}

.india-hero.is-workers-in .india-hero__workers {
  opacity: 1;
  transition-delay: 200ms;
}

.has-js .india-hero__copy .india-hero__title,
.has-js .india-hero__copy .india-hero__lead,
.has-js .india-hero__copy .india-hero__actions {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 620ms cubic-bezier(.2, .72, .2, 1),
    transform 620ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}

.india-hero.is-copy-ready .india-hero__title   { opacity: 1; transform: none; transition-delay:    0ms; }
.india-hero.is-copy-ready .india-hero__lead    { opacity: 1; transform: none; transition-delay:  180ms; }
.india-hero.is-copy-ready .india-hero__actions { opacity: 1; transform: none; transition-delay:  320ms; }

@media (prefers-reduced-motion: reduce) {
  .has-js .india-hero__workers,
  .has-js .india-hero__map,
  .has-js .india-hero__copy .india-hero__title,
  .has-js .india-hero__copy .india-hero__lead,
  .has-js .india-hero__copy .india-hero__actions {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .hero__copy .hero__lead,
  .has-js .hero__copy .hero__actions,
  .has-js .hero__copy .hero__features,
  .has-js .hero__copy .hero__trust,
  .has-js .about-hero__copy .about-hero__lead,
  .has-js .about-hero__copy .about-hero__mobile-actions,
  .has-js .about-hero__copy .about-hero__features {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === Hero title typewriter === */

[data-typewriter].is-typing::after,
[data-typewriter].is-typing-done::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.95em;
  margin-left: 4px;
  vertical-align: -0.05em;
  background: currentColor;
  animation: typewriter-caret 850ms steps(1) infinite;
}

[data-typewriter].is-typing-done::after {
  animation-duration: 1.1s;
  opacity: 0.65;
}

@keyframes typewriter-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  [data-typewriter].is-typing::after,
  [data-typewriter].is-typing-done::after {
    display: none;
  }
}

/* === Legal pages (privacy.html / consent.html) === */

.legal-page {
  background: var(--bg);
  min-height: 100vh;
  color: var(--text);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(238, 245, 251, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.legal-header__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.legal-header__logo img {
  display: block;
  width: 95px;
  height: auto;
}

.legal-header__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 160ms ease;
}

.legal-header__back:hover,
.legal-header__back:focus-visible {
  color: var(--text);
}

.legal-main {
  width: min(calc(100% - 48px), 860px);
  margin: 0 auto;
  padding: 56px 0 80px;
}

.legal-doc {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 56px;
  box-shadow: 0 18px 46px rgba(16, 39, 70, 0.06);
}

.legal-doc__eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.legal-doc h1 {
  margin: 0 0 16px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--text);
}

.legal-doc__meta {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-doc h2 {
  margin: 36px 0 14px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.32;
  color: var(--text);
}

.legal-doc p {
  margin: 0 0 14px;
  line-height: 1.65;
  font-size: 1rem;
  color: var(--text);
}

.legal-doc__list {
  margin: 0 0 14px;
  padding: 0 0 0 22px;
  line-height: 1.6;
}

.legal-doc__list li {
  margin: 0 0 8px;
}

.legal-doc a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 160ms ease;
}

.legal-doc a:hover,
.legal-doc a:focus-visible {
  color: var(--text);
}

.legal-doc section {
  margin-bottom: 8px;
}

.legal-footer {
  background: rgba(16, 39, 70, 0.04);
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.legal-footer__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-footer__inner a {
  color: var(--muted);
  transition: color 160ms ease;
}

.legal-footer__inner a:hover,
.legal-footer__inner a:focus-visible {
  color: var(--text);
}

@media (max-width: 720px) {
  .legal-main {
    padding: 32px 0 60px;
  }

  .legal-doc {
    padding: 28px 22px;
    border-radius: 14px;
  }

  .legal-doc h1 {
    font-size: 1.45rem;
  }

  .legal-doc h2 {
    font-size: 1.06rem;
    margin-top: 28px;
  }

  .legal-footer__inner {
    justify-content: flex-start;
  }
}

/* === Lead popup (заявка → Битрикс24) === */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lead-popup.is-open {
  display: flex;
}

.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 23, 44, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.lead-popup__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 36px 36px 30px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(5, 23, 44, 0.34);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 220ms cubic-bezier(.2, .72, .2, 1),
              opacity 220ms cubic-bezier(.2, .72, .2, 1);
}

.lead-popup.is-open .lead-popup__panel {
  transform: scale(1);
  opacity: 1;
}

.lead-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.lead-popup__close::before,
.lead-popup__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.lead-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lead-popup__close:hover,
.lead-popup__close:focus-visible {
  background: rgba(16, 39, 70, 0.06);
  color: var(--text);
  outline: none;
}

.lead-popup__title {
  margin: 0 0 8px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text);
}

.lead-popup__lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.lead-popup__form {
  display: grid;
  gap: 14px;
}

.lead-popup__field {
  position: relative;
  display: block;
}

.lead-popup__input {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.lead-popup__input::placeholder {
  color: rgba(16, 39, 70, 0.42);
  font-weight: 500;
}

.lead-popup__input:focus,
.lead-popup__input:focus-visible {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(39, 201, 218, 0.14);
}

.lead-popup__input.is-invalid {
  border-color: #e54848;
  box-shadow: 0 0 0 4px rgba(229, 72, 72, 0.12);
}

.lead-popup__honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lead-popup__consent {
  display: flex;
  gap: 10px;
  margin: 2px 0 4px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
}

.lead-popup__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.lead-popup__checkbox:checked {
  background: var(--accent);
  border-color: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='3.2 8.2 6.6 11.6 12.8 5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.lead-popup__checkbox:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(39, 201, 218, 0.16);
}

.lead-popup__consent a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.lead-popup__consent a:hover,
.lead-popup__consent a:focus-visible {
  color: var(--text);
}

.lead-popup__submit {
  margin-top: 6px;
  width: 100%;
}

.lead-popup__submit[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

.lead-popup__submit.is-loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.lead-popup__submit.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: lead-popup-spin 720ms linear infinite;
}

@keyframes lead-popup-spin {
  to {
    transform: rotate(360deg);
  }
}

.lead-popup__error {
  margin: 4px 0 0;
  min-height: 1.2em;
  color: #c93434;
  font-size: 0.88rem;
  line-height: 1.4;
}

.lead-popup__success {
  text-align: center;
  padding: 8px 0 4px;
}

.lead-popup__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(39, 201, 218, 0.14);
  color: var(--accent-strong);
}

.lead-popup__success-icon svg {
  width: 30px;
  height: 30px;
}

.lead-popup__success h2 {
  margin: 0 0 10px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
}

.lead-popup__success p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.5;
}

.lead-popup__success .button {
  width: 100%;
}

.lead-popup__fallback {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: rgba(16, 39, 70, 0.04);
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.lead-popup__fallback a {
  color: var(--accent-strong);
  font-weight: 700;
}

body.is-lead-popup-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .lead-popup {
    padding: 0;
    align-items: flex-end;
  }

  .lead-popup__panel {
    max-width: 100%;
    max-height: 92vh;
    padding: 28px 22px 24px;
    border-radius: 18px 18px 0 0;
  }

  .lead-popup__title {
    font-size: 1.32rem;
  }
}

/* === India page === */
.india-page {
  background: #fff;
  color: var(--text);
}

.india-header {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
}

.india-main {
  min-height: calc(100vh - 96px);
}

.india-hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 56px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
  overflow: hidden;
}

.india-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.india-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(39, 201, 218, 0.12);
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.india-hero__badge {
  display: none;
}

.india-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}

.india-hero__lead {
  margin: 0;
  max-width: 560px;
  font-size: 1.06rem;
  line-height: 1.55;
  color: var(--muted);
}

.india-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.india-hero__features {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 36px;
  row-gap: 22px;
  max-width: 720px;
}

.india-hero__features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text);
  font-weight: 500;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s cubic-bezier(0.2, 0.72, 0.2, 1), transform 0.55s cubic-bezier(0.2, 0.72, 0.2, 1);
}

.india-hero__features.is-revealed li {
  opacity: 1;
  transform: translateY(0);
}

.india-hero__features.is-revealed li:nth-child(1) { transition-delay: 0ms; }
.india-hero__features.is-revealed li:nth-child(2) { transition-delay: 120ms; }
.india-hero__features.is-revealed li:nth-child(3) { transition-delay: 240ms; }
.india-hero__features.is-revealed li:nth-child(4) { transition-delay: 360ms; }
.india-hero__features.is-revealed li:nth-child(5) { transition-delay: 480ms; }

.india-hero__features li.india-hero__features-item--mobile {
  display: none;
}

@media (max-width: 920px) {
  .india-hero__features li.india-hero__features-item--pc {
    display: none;
  }
  .india-hero__features li.india-hero__features-item--mobile {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .india-hero__features li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.india-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--accent-strong);
}

.india-feature-icon svg,
.india-feature-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.india-hero__visual {
  position: relative;
  min-height: 560px;
}

.india-hero__map {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 165%;
  max-width: none;
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 100px, #000 216px),
    linear-gradient(to left, transparent 44px, #000 77px);
  mask-image:
    linear-gradient(to bottom, transparent 100px, #000 216px),
    linear-gradient(to left, transparent 44px, #000 77px);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.india-hero__workers {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 105%;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(to left, transparent 0px, #000 11px);
  mask-image: linear-gradient(to left, transparent 0px, #000 11px);
}

@media (max-width: 1180px) {
  .india-hero {
    padding: 48px 36px 64px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
  }

  .india-hero__visual {
    min-height: 480px;
  }

  .india-hero__map {
    top: -120px;
    right: -80px;
    width: 158%;
  }

  .india-hero__workers {
    right: -20px;
    width: 100%;
  }

  .india-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
  }
}

@media (max-width: 920px) {
  .india-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: transparent;
    backdrop-filter: none;
  }

  .india-hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 0 24px 48px;
  }

  .india-hero__copy {
    order: 2;
    gap: 20px;
    margin-top: -32px;
    margin-left: -24px;
    margin-right: -24px;
    padding: 32px 22px 28px;
    background: #fff;
    border-radius: 40px 40px 0 0;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
    box-shadow:
      0 -10px 30px rgba(15, 42, 68, 0.08),
      0 12px 32px rgba(15, 42, 68, 0.08),
      0 0 24px rgba(15, 42, 68, 0.05);
  }

  .india-hero__visual {
    order: 1;
    position: relative;
    min-height: 320px;
    width: 100%;
    margin-left: -24px;
    margin-right: -24px;
    width: calc(100% + 48px);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 30px);
    mask-image: linear-gradient(to bottom, transparent 0, #000 30px);
  }

  .india-hero__map {
    position: absolute;
    top: clamp(-60px, calc(-17vw + 15px), -55px);
    left: 50%;
    width: 100%;
    max-width: 440px;
    height: auto;
    margin: 0;
    display: block;
    transform: translateX(-50%);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .india-hero__workers {
    position: absolute;
    left: 50%;
    bottom: -30px;
    width: 82%;
    max-width: 362px;
    transform: translateX(-50%);
    z-index: 2;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .india-hero__actions {
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    margin: 4px auto 0;
  }

  .india-hero__actions .button {
    width: 100%;
  }

  .india-hero__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    gap: 12px;
  }

  .india-hero__features li {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 12px;
    padding: 14px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 42, 68, 0.04);
  }

  .india-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
  }

  .india-feature-icon img,
  .india-feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .india-hero__title {
    text-align: center;
    align-self: center;
  }

  .india-hero__badge {
    display: inline-flex;
    align-items: center;
    align-self: center;
    padding: 10px 18px;
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(39, 201, 218, 0.78) 0%, rgba(29, 182, 207, 0.62) 100%);
    backdrop-filter: blur(14px) saturate(170%);
    -webkit-backdrop-filter: blur(14px) saturate(170%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    margin: -50px 0 -4px;
    position: relative;
    z-index: 4;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 10px 24px rgba(39, 201, 218, 0.28);
  }
}

@media (max-width: 480px) {
  .india-hero {
    padding: 0 18px 36px;
  }

  .india-hero__visual {
    margin-left: -18px;
    margin-right: -18px;
    width: calc(100% + 36px);
  }

  .india-hero__copy {
    margin-left: -18px;
    margin-right: -18px;
    padding: 28px 18px 24px;
  }

  .india-hero__title {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
    text-align: center;
    align-self: center;
  }

  .india-hero__lead {
    font-size: 0.98rem;
  }

  .india-hero__actions {
    display: grid;
    gap: 10px;
    width: 100%;
    max-width: 380px;
    margin: 4px auto 0;
  }

  .india-hero__actions .button {
    width: 100%;
  }

  .india-hero__features {
    gap: 16px 14px;
  }

  .india-hero__features li {
    font-size: 0.88rem;
  }

  .india-hero__workers {
    width: 78%;
  }
}

/* === India offer === */
.india-offer {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 56px 80px;
}

.india-offer__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 40px;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.india-offer__title-line {
  flex: 0 0 120px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(15, 42, 68, 0) 0%,
    rgba(39, 201, 218, 0.55) 60%,
    rgba(15, 42, 68, 0.28) 100%
  );
}

.india-offer__title-line:last-child {
  background: linear-gradient(
    90deg,
    rgba(15, 42, 68, 0.28) 0%,
    rgba(39, 201, 218, 0.55) 40%,
    rgba(15, 42, 68, 0) 100%
  );
}

.india-offer__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.india-offer__card {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-areas:
    "icon title"
    "text text";
  gap: 14px 16px;
  padding: 28px 24px 30px;
  background: #fff;
  border: 1px solid rgba(16, 39, 70, 0.06);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(8, 30, 64, 0.05);
}

.india-offer__icon {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--accent-strong);
}

.india-offer__icon svg,
.india-offer__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.india-offer__card-title {
  grid-area: title;
  margin: 0;
  align-self: center;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.india-offer__card-text {
  grid-area: text;
  margin: 4px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .india-offer {
    padding: 32px 36px 64px;
  }

  .india-offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .india-offer {
    padding: 24px 18px 32px;
  }

  .india-offer__title {
    gap: 12px;
    margin-bottom: 16px;
  }

  .india-offer__title-line {
    flex-basis: 56px;
  }

  .india-offer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .india-offer__card {
    position: relative;
    display: grid;
    grid-template-columns: 52px 1fr 24px;
    grid-template-rows: auto auto;
    grid-template-areas:
      "icon title caret"
      ".    text  text";
    column-gap: 14px;
    row-gap: 4px;
    padding: 18px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    align-items: center;
  }

  .india-offer__card::after {
    content: "";
    position: absolute;
    left: 26px;
    top: 56px;
    bottom: 0;
    width: 0;
    border-left: 1px dashed rgba(29, 182, 207, 0.45);
    z-index: 0;
  }

  .india-offer__card:last-child::after {
    display: none;
  }

  .india-offer__icon {
    grid-area: icon;
    align-self: start;
    background: #fff;
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
  }

  .india-offer__card-title {
    grid-area: title / title / title / caret;
    margin: 0;
    padding-right: 28px;
    font-size: 1rem;
    line-height: 1.3;
    align-self: center;
    position: relative;
  }

  .india-offer__card-title::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23073d4a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center / contain;
    transform: translateY(-50%);
    transition: transform 240ms cubic-bezier(.2,.72,.2,1);
  }

  .india-offer__card.is-open .india-offer__card-title::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .india-offer__card-text {
    grid-area: text;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 380ms cubic-bezier(.2,.72,.2,1), opacity 240ms ease, padding-top 240ms ease;
  }

  .india-offer__card.is-open .india-offer__card-text {
    max-height: 260px;
    opacity: 1;
    padding-top: 8px;
  }

  .india-offer__card::after {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.32s;
  }

  .india-offer__card.is-revealed::after {
    clip-path: inset(0 0 0 0);
  }
}

/* India section title — reveal (text → lines from center outward) */
.india-offer__title > span:not(.india-offer__title-line),
.india-process__title > span:not(.india-offer__title-line) {
  display: inline-block;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.india-offer__title.is-revealed > span:not(.india-offer__title-line),
.india-process__title.is-revealed > span:not(.india-offer__title-line) {
  opacity: 1;
  transform: translateY(0);
}

.india-offer__title > .india-offer__title-line,
.india-process__title > .india-offer__title-line {
  transform: scaleX(0);
  transition: transform 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) 0.75s;
}

.india-offer__title > .india-offer__title-line:first-child,
.india-process__title > .india-offer__title-line:first-child {
  transform-origin: right center;
}

.india-offer__title > .india-offer__title-line:last-child,
.india-process__title > .india-offer__title-line:last-child {
  transform-origin: left center;
}

.india-offer__title.is-revealed > .india-offer__title-line,
.india-process__title.is-revealed > .india-offer__title-line {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .india-offer__title > span,
  .india-process__title > span {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* India offer — reveal animation */
.india-offer__card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.india-offer__card.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.india-offer__card .india-offer__icon {
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
    opacity 0.35s ease 0.15s;
  transform-origin: center;
}

.india-offer__card.is-revealed .india-offer__icon {
  transform: scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .india-offer__card,
  .india-offer__card .india-offer__icon {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .india-offer__card::after {
    transition: none;
    clip-path: none;
  }
}

/* India reasons / uses — title reveal */
.india-reasons__title,
.india-uses__title {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.india-reasons__title.is-revealed,
.india-uses__title.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.india-reasons__item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.india-reasons__item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.india-reasons__item .india-reasons__icon {
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s,
    opacity 0.35s ease 0.15s;
  transform-origin: center;
}

.india-reasons__item.is-revealed .india-reasons__icon {
  transform: scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .india-reasons__title,
  .india-reasons__item,
  .india-reasons__item .india-reasons__icon {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* === India reasons === */
.india-reasons {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 56px 96px;
}

.india-reasons__title {
  margin: 0 0 56px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  text-align: center;
}

.india-reasons__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.india-reasons__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 0 20px;
}

.india-reasons__item + .india-reasons__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(16, 39, 70, 0.1);
}

.india-reasons__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--accent-strong);
}

.india-reasons__icon svg,
.india-reasons__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.india-reasons__item-title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: 700;
  background: linear-gradient(135deg, #0a8fa4 0%, #2cd5e6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.india-reasons__item-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 1180px) {
  .india-reasons {
    padding: 32px 36px 72px;
  }

  .india-reasons__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 26px;
  }

  .india-reasons__item + .india-reasons__item::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .india-reasons {
    padding: 24px 18px 32px;
  }

  .india-reasons__title {
    margin-bottom: 24px;
  }

  .india-reasons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .india-reasons__item {
    align-items: center;
    text-align: center;
    padding: 26px 16px 22px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(8, 30, 64, 0.06);
    gap: 14px;
  }

  .india-reasons__icon {
    width: 56px;
    height: 56px;
  }

  .india-reasons__icon svg,
  .india-reasons__icon img {
    width: 48px;
    height: 48px;
  }

  .india-reasons__item:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    grid-template-areas:
      ".    icon title ."
      "text text text  text";
    column-gap: 14px;
    row-gap: 8px;
    text-align: center;
    padding: 24px 22px 24px;
  }

  .india-reasons__item:last-child .india-reasons__icon {
    grid-area: icon;
    align-self: center;
    flex-shrink: 0;
  }

  .india-reasons__item:last-child .india-reasons__item-title {
    grid-area: title;
    align-self: center;
  }

  .india-reasons__item:last-child .india-reasons__item-text {
    grid-area: text;
    align-self: start;
  }
}

/* === India banner === */
.india-banner {
  position: relative;
  background:
    linear-gradient(180deg, rgba(8, 30, 48, 0.86) 0%, rgba(12, 38, 60, 0.94) 100%),
    url("assets/workers(q).png") right center / cover no-repeat,
    #0a2438;
  color: #fff;
  padding: 56px 0;
}

.india-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.6fr);
  gap: 48px;
  align-items: center;
}

.india-banner__title {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
}

.india-banner__lead {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.india-banner__stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.india-banner__stats li {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.india-banner__stat-value {
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.india-banner__stats li:nth-child(3) .india-banner__stat-value {
  font-size: clamp(3.4rem, 5.2vw, 4.4rem);
  line-height: 1;
  margin-top: -0.28em;
  margin-bottom: -0.28em;
  color: #fff;
}

.india-banner__stat-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1180px) {
  .india-banner {
    padding: 44px 0;
  }

  .india-banner__inner {
    padding: 0 36px;
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 760px) {
  .india-banner {
    background: transparent;
    padding: 24px 18px;
  }

  .india-banner__inner {
    padding: 26px 20px 22px;
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(8, 30, 48, 0.82) 0%, rgba(12, 38, 60, 0.94) 100%),
      url("assets/workers(q).png") right -20px top -10px / auto 110% no-repeat,
      #0a2438;
    color: #fff;
    box-shadow: 0 18px 38px rgba(15, 42, 68, 0.18);
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .india-banner__title {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .india-banner__lead {
    display: none;
  }

  .india-banner__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .india-banner__stats li {
    position: relative;
    padding: 0 12px;
    gap: 10px;
  }

  .india-banner__stats li:first-child {
    padding-left: 0;
  }

  .india-banner__stats li:last-child {
    padding-right: 0;
  }

  .india-banner__stats li:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(255, 255, 255, 0.18);
  }

  .india-banner__stat-value {
    font-size: 1.1rem;
  }

  .india-banner__stats li:nth-child(3) .india-banner__stat-value {
    font-size: 2.2rem;
    line-height: 1;
    margin-top: -0.28em;
    margin-bottom: -0.28em;
  }

  .india-banner__stat-text {
    font-size: 0.72rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.74);
  }
}

/* === India process === */
.india-process {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 56px 80px;
}

.india-process__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 48px;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

.india-process__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 0;
  position: relative;
}

.india-process__step {
  display: grid;
  grid-template-columns: 76px 1fr;
  grid-template-areas:
    "icon num"
    "icon title"
    "icon text";
  column-gap: 18px;
  row-gap: 4px;
  align-items: start;
  padding: 28px 26px 30px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(8, 30, 64, 0.02);
}

.india-process__step:nth-child(-n+3) {
  grid-row: 1;
  margin-bottom: 0;
}

.india-process__step:nth-child(n+4) {
  grid-row: 3;
  margin-top: 0;
}

.india-process__num {
  grid-area: num;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-strong);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.india-process__icon {
  grid-area: icon;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 64px;
  height: 64px;
  color: var(--accent-strong);
}

.india-process__icon svg,
.india-process__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.india-process__step-title {
  grid-area: title;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
}

.india-process__step-text {
  grid-area: text;
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}

.india-process__flow {
  grid-row: 2;
  grid-column: 1 / -1;
  position: relative;
  height: 24px;
  margin: 28px 0;
}

.india-process__flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--accent);
  transform: translateY(-50%);
}

.india-process__flow-dot,
.india-process__flow-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
}

.india-process__flow-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(39, 201, 218, 0.35);
  transform: translate(-50%, -50%);
}

.india-process__flow-arrow {
  width: 8px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 10' fill='none' stroke='%2327c9da' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M0 1l8 4-8 4'/%3E%3C/svg%3E") center/contain no-repeat;
  transform: translate(-50%, -50%);
}

.india-process__flow > :nth-child(1) { left: calc(100% / 6); }
.india-process__flow > :nth-child(2) { left: calc(100% / 3); }
.india-process__flow > :nth-child(3) { left: 50%; }
.india-process__flow > :nth-child(4) { left: calc(2 / 3 * 100%); }
.india-process__flow > :nth-child(5) { left: calc(5 / 6 * 100%); }
.india-process__flow > :nth-child(6) {
  left: 100%;
  transform: translate(-100%, -50%);
}

.india-process__connector {
  display: none;
}

@media (max-width: 1180px) {
  .india-process {
    padding: 40px 36px 64px;
  }

  .india-process__grid {
    column-gap: 20px;
  }

  .india-process__step {
    padding: 22px 20px 24px;
    grid-template-columns: 60px 1fr;
    column-gap: 14px;
  }

  .india-process__icon {
    width: 56px;
    height: 56px;
  }

  .india-process__icon img,
  .india-process__icon svg {
    width: 48px;
    height: 48px;
  }

  .india-process__step + .india-process__step::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .india-process {
    padding: 32px 52px 48px;
    position: relative;
  }

  .india-process__title {
    gap: 12px;
    margin-bottom: 32px;
  }

  .india-process__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }

  .india-process__flow {
    display: none;
  }

  .india-process__step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "icon title"
      "text text";
    column-gap: 14px;
    row-gap: 10px;
    align-items: center;
    padding: 22px 22px 24px;
    border: 0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(8, 30, 64, 0.07);
    cursor: default;
  }

  .india-process__step + .india-process__step::before {
    display: none;
  }

  .india-process__step:nth-child(-n+3),
  .india-process__step:nth-child(n+4) {
    grid-row: auto;
    margin-top: 0;
    margin-bottom: 0;
  }

  .india-process__icon {
    grid-area: icon;
    align-self: start;
    width: 52px;
    height: 52px;
    background: transparent;
    position: static;
  }

  .india-process__icon img,
  .india-process__icon svg {
    width: 44px;
    height: 44px;
  }

  .india-process__num {
    position: absolute;
    top: 29px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(39, 201, 218, 0.32);
  }

  .india-process__step:nth-child(odd) .india-process__num {
    left: -52px;
  }

  .india-process__step:nth-child(even) .india-process__num {
    right: -52px;
  }

  .india-process__step-title {
    grid-area: title;
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    align-self: center;
    padding-right: 0;
    position: static;
  }

  .india-process__step-title::after {
    display: none;
  }

  .india-process__step-text {
    grid-area: text;
    margin: 0;
    max-height: none;
    overflow: visible;
    opacity: 1;
    padding-top: 0;
    transition: none;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--muted);
  }

  .india-process__connector {
    display: none;
  }

  .india-process__step:nth-child(odd):not(:nth-last-child(2))::before,
  .india-process__step:nth-child(odd):not(:nth-last-child(2))::after,
  .india-process__step:nth-child(even):not(:nth-last-child(2))::before,
  .india-process__step:nth-child(even):not(:nth-last-child(2))::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    display: block;
    box-sizing: border-box;
    background: none;
    width: auto;
    height: auto;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .india-process__step:nth-child(odd):not(:nth-last-child(2))::before {
    top: 48px;
    left: -33px;
    width: calc(50% + 35px);
    height: calc(100% - 16px);
    border-left: 2px solid #27c9da;
    border-bottom: 2px solid #27c9da;
    border-bottom-left-radius: 16px;
  }

  .india-process__step:nth-child(odd):not(:nth-last-child(2))::after {
    top: calc(100% + 30px);
    left: calc(50% - 2px);
    width: calc(50% + 35px);
    height: 82px;
    border-top: 2px solid #27c9da;
    border-right: 2px solid #27c9da;
    border-top-right-radius: 16px;
  }

  .india-process__step:nth-child(even):not(:nth-last-child(2))::before {
    top: 48px;
    right: -33px;
    width: calc(50% + 35px);
    height: calc(100% - 16px);
    border-right: 2px solid #27c9da;
    border-bottom: 2px solid #27c9da;
    border-bottom-right-radius: 16px;
  }

  .india-process__step:nth-child(even):not(:nth-last-child(2))::after {
    top: calc(100% + 30px);
    right: calc(50% - 2px);
    width: calc(50% + 35px);
    height: 82px;
    border-top: 2px solid #27c9da;
    border-left: 2px solid #27c9da;
    border-top-left-radius: 16px;
  }
}

/* India process — reveal animation */
.india-process__step {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.india-process__step.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* India process flow — line draws + dots/arrows pop along its path */
.india-process__flow::before {
  transform: scaleX(0) translateY(-50%);
  transform-origin: left center;
  transition: transform 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.india-process__flow.is-revealed::before {
  transform: scaleX(1) translateY(-50%);
}

.india-process__flow-dot,
.india-process__flow-arrow {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.india-process__flow-dot {
  transform: translate(-50%, -50%) scale(0);
}

.india-process__flow-arrow {
  transform: translate(-50%, -50%) scale(0);
}

.india-process__flow > :nth-child(6) {
  transform: translate(-100%, -50%) scale(0);
}

.india-process__flow.is-revealed .india-process__flow-dot {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.india-process__flow.is-revealed .india-process__flow-arrow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.india-process__flow.is-revealed > :nth-child(6) {
  transform: translate(-100%, -50%) scale(1);
}

.india-process__flow.is-revealed > :nth-child(1) { transition-delay: 250ms; }
.india-process__flow.is-revealed > :nth-child(2) { transition-delay: 500ms; }
.india-process__flow.is-revealed > :nth-child(3) { transition-delay: 750ms; }
.india-process__flow.is-revealed > :nth-child(4) { transition-delay: 1000ms; }
.india-process__flow.is-revealed > :nth-child(5) { transition-delay: 1250ms; }
.india-process__flow.is-revealed > :nth-child(6) { transition-delay: 1500ms; }

@media (max-width: 760px) {
  .india-process__step .india-process__num {
    transform: scale(0.4);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s,
      opacity 0.35s ease 0.18s;
  }

  .india-process__step.is-revealed .india-process__num {
    transform: scale(1);
    opacity: 1;
  }

  .india-process__step:nth-child(odd):not(:nth-last-child(2))::before,
  .india-process__step:nth-child(odd):not(:nth-last-child(2))::after,
  .india-process__step:nth-child(even):not(:nth-last-child(2))::before,
  .india-process__step:nth-child(even):not(:nth-last-child(2))::after {
    opacity: 0;
    transition: opacity 0.55s ease 0.32s;
  }

  .india-process__step.is-revealed:nth-child(odd):not(:nth-last-child(2))::before,
  .india-process__step.is-revealed:nth-child(odd):not(:nth-last-child(2))::after,
  .india-process__step.is-revealed:nth-child(even):not(:nth-last-child(2))::before,
  .india-process__step.is-revealed:nth-child(even):not(:nth-last-child(2))::after {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .india-process__step,
  .india-process__step .india-process__num {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* === India uses === */
.india-uses {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 56px 40px;
}

.india-uses__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}

.india-uses__title {
  margin: 0 0 32px;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

.india-uses__list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
}

.india-uses__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.96rem;
  line-height: 1.35;
  color: var(--text);
  font-weight: 500;
}

.india-uses__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: var(--accent-strong);
}

.india-uses__icon svg,
.india-uses__icon img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.india-uses__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1px solid rgba(39, 201, 218, 0.5);
  border-radius: 12px;
  color: var(--accent-strong);
  background: transparent;
  font-weight: 700;
  font-size: 0.94rem;
  transition: background 160ms ease, border-color 160ms ease;
}

.india-uses__cta:hover,
.india-uses__cta:focus-visible {
  background: rgba(39, 201, 218, 0.08);
  border-color: var(--accent);
}

.india-uses__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, 180px);
  gap: 14px;
}

.india-uses__photo {
  border-radius: 14px;
  background: rgba(16, 39, 70, 0.06);
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 30px rgba(8, 30, 64, 0.06);
}

.india-uses__photo--1 { background-image: url("assets/india/d1(q).png"); }
.india-uses__photo--2 { background-image: url("assets/india/d2(q).png"); }
.india-uses__photo--3 { background-image: url("assets/india/d3(q).png"); }
.india-uses__photo--4 { background-image: url("assets/india/d4(q).png"); }
.india-uses__photo--5 { background-image: url("assets/india/d5(q).png"); }
.india-uses__photo--6 { background-image: url("assets/india/d6(q).png"); }

/* India uses — PC reveal (list items + gallery photos) */
.india-uses__list li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.india-uses__list li.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.india-uses__photo {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.india-uses__photo.is-revealed {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .india-uses__list li,
  .india-uses__photo {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .india-uses {
    padding: 32px 36px 32px;
  }

  .india-uses__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .india-uses__gallery {
    grid-template-rows: repeat(2, 160px);
  }
}

@media (max-width: 760px) {
  .india-uses {
    padding: 24px 18px 24px;
  }

  .india-uses__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
  }

  .india-uses__list li {
    position: relative;
    min-height: 118px;
    padding: 14px;
    border-radius: 16px;
    overflow: hidden;
    color: #fff;
    font-weight: 700;
    font-size: 0.96rem;
    line-height: 1.25;
    align-items: flex-end;
    box-shadow: 0 10px 26px rgba(8, 30, 64, 0.14);
  }

  .india-uses__list li::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
  }

  .india-uses__list li::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(8, 30, 48, 0.15) 0%, rgba(8, 30, 48, 0.78) 100%);
  }

  .india-uses__list li > span:last-child {
    position: relative;
    z-index: 2;
  }

  .india-uses__list .india-uses__icon {
    display: none;
  }

  .india-uses__list li:nth-child(1)::after { background-image: url("assets/india/d1(q).png"); }
  .india-uses__list li:nth-child(2)::after { background-image: url("assets/india/d5(q).png"); }
  .india-uses__list li:nth-child(3)::after { background-image: url("assets/india/d2(q).png"); }
  .india-uses__list li:nth-child(4)::after { background-image: url("assets/india/d6(q).png"); }
  .india-uses__list li:nth-child(5)::after { background-image: url("assets/india/d3(q).png"); }
  .india-uses__list li:nth-child(6)::after { background-image: url("assets/india/d7(q).png"); }
  .india-uses__list li:nth-child(7)::after { background-image: url("assets/india/d4(q).png"); }
  .india-uses__list li:nth-child(8)::after { background-image: url("assets/india/d8(q).png"); }

  .india-uses__list li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1),
      transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  }

  .india-uses__list li.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .india-uses__list li.is-revealed::after {
    transform: scale(1);
  }

  @media (prefers-reduced-motion: reduce) {
    .india-uses__list li,
    .india-uses__list li::after {
      transition: none;
      opacity: 1;
      transform: none;
    }
  }

  .india-uses__gallery {
    display: none;
  }
}

@media (max-width: 480px) {
  .india-uses__cta {
    width: 100%;
    text-align: center;
  }
}

/* === India mid CTA === */
.india-midcta {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 56px 64px;
}

.india-midcta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(247, 251, 253, 0.6) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.india-midcta__copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.india-midcta__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
}

.india-midcta__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.india-midcta__button {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .india-midcta {
    padding: 16px 24px 48px;
  }

  .india-midcta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }

  .india-midcta__title {
    font-size: 18px;
  }

  .india-midcta__button {
    width: 100%;
    text-align: center;
  }
}

/* Footer CTA — reveal (used on india.html final block) */
.footer-cta {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.footer-cta.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* India midcta — reveal */
.india-midcta__inner {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.india-midcta__inner.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .india-midcta__inner {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Button glint (one-shot shine across CTA) */
.button.has-glint {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.button.has-glint::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-200%) skewX(-14deg);
  pointer-events: none;
  z-index: 1;
}

.button.has-glint.is-glinting::after {
  animation: button-glint 2500ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes button-glint {
  to {
    transform: translateX(320%) skewX(-14deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button.has-glint.is-glinting::after {
    animation: none;
  }
}

/* === Outsourcing hero (отдельная страница /outsourcing) === */

body.page-outsourcing {
  background: #ffffff;
}

.hero--outsourcing {
  background: #ffffff;
}


/* Stagger reveal animation for outsourcing hero (desktop + mobile) */
.has-js .hero--outsourcing .hero__title,
.has-js .hero--outsourcing .hero__lead,
.has-js .hero--outsourcing .hero__bullets,
.has-js .hero--outsourcing .hero__actions {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-outsourcing-reveal 620ms cubic-bezier(.2, .72, .2, 1) forwards;
}
.has-js .hero--outsourcing .hero__title    { animation-delay:  80ms; }
.has-js .hero--outsourcing .hero__lead     { animation-delay: 220ms; }
.has-js .hero--outsourcing .hero__bullets  { animation-delay: 340ms; }
.has-js .hero--outsourcing .hero__actions  { animation-delay: 460ms; }

@keyframes hero-outsourcing-reveal {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .has-js .hero--outsourcing .hero__title,
  .has-js .hero--outsourcing .hero__lead,
  .has-js .hero--outsourcing .hero__bullets,
  .has-js .hero--outsourcing .hero__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero__bullets {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 540px;
}

.hero__bullets li {
  position: relative;
  padding-left: 32px;
  color: rgba(16, 39, 70, 0.92);
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
}

.hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%2327c9da' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpolyline points='8 12.5 11 15.5 16 9.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* === Outstaffing «Что входит в аутстаффинг» (шаги) === */

.outsourcing-included {
  position: relative;
  background: #ffffff;
  padding: 90px 0 100px;
}

.outsourcing-included__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.outsourcing-included__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 16px;
  color: #27c9da;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.outsourcing-included__eyebrow::before,
.outsourcing-included__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: #27c9da;
}

.outsourcing-included__title {
  margin: 0 0 64px;
  text-align: center;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.outsourcing-included__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

/* Горизонтальная линия, проходящая через центры всех 5 нод */
.outsourcing-included__grid::before {
  content: "";
  position: absolute;
  top: 7px; /* центр ноды (14/2) */
  left: 10%;  /* центр первого столбца */
  right: 10%; /* центр последнего */
  height: 1px;
  background: rgba(39, 201, 218, 0.55);
  z-index: 0;
}

.outsourcing-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 22px 8px;
}

/* Вертикальный разделитель между столбцами */
.outsourcing-step-card:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 56px;  /* ниже линии нод */
  bottom: 0;
  width: 1px;
  background: rgba(16, 39, 70, 0.08);
}

/* Нода: солидный cyan-диск + белый «выгрыз» + светлый cyan-обод (как в .india-process__flow-dot) */
.outsourcing-step-card__node {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #27c9da;
  box-shadow:
    0 0 0 4px #ffffff,
    0 0 0 6px rgba(39, 201, 218, 0.35);
  margin-bottom: 44px;
}

.outsourcing-step-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  color: #27c9da;
  margin-bottom: 26px;
}

.outsourcing-step-card__icon svg,
.outsourcing-step-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.outsourcing-step-card__title {
  margin: 0 0 24px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.28;
  color: rgba(16, 39, 70, 0.94);
}

.outsourcing-step-card__text {
  margin: 0;
  color: rgba(16, 39, 70, 0.6);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ---- Старые .outsourcing-card стили (используются в «Что получает бизнес») ---- */

.outsourcing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 38px 22px 36px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(10, 35, 70, 0.07);
  text-align: center;
}

.outsourcing-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #27c9da;
}

.outsourcing-card__icon svg,
.outsourcing-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.outsourcing-card__title {
  margin: 4px 0 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.28;
  color: rgba(16, 39, 70, 0.94);
}

.outsourcing-card__text {
  margin: 0;
  color: rgba(16, 39, 70, 0.58);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .outsourcing-included__inner {
    width: min(calc(100% - 48px), 820px);
  }
  .outsourcing-included__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 48px;
    column-gap: 32px;
  }
  .outsourcing-included__grid::before {
    display: none;
  }
  .outsourcing-step-card:not(:first-child)::before {
    display: none;
  }
  /* Последняя 5-я карточка — по центру под двумя колонками */
  .outsourcing-step-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: min(360px, 90%);
  }
}

/* Скрываем номера на десктопе/планшете — они нужны только на мобильной timeline */
.outsourcing-step-card__num {
  display: none;
}

@media (max-width: 760px) {
  .outsourcing-included {
    padding: 56px 0 64px;
  }
  .outsourcing-included__title {
    margin-bottom: 36px;
  }
  .outsourcing-included__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 8px 22px;
    position: relative;
  }

  /* Вертикальная cyan-линия слева через все ноды (до центра последней) */
  .outsourcing-included__grid::before {
    content: "";
    display: block;
    position: absolute;
    left: 33px;          /* центр ноды (22px padding + 11px) */
    right: auto;
    top: var(--line-top, 38px);
    bottom: auto;
    width: 1.5px;
    height: var(--line-height, calc(100% - 200px));
    background: rgba(39, 201, 218, 0.45);
    z-index: 0;
  }

  .outsourcing-step-card {
    position: relative;
    display: grid;
    grid-template-columns: 22px 64px 1fr;
    column-gap: 16px;
    row-gap: 0;
    align-items: start;
    text-align: left;
    padding: 16px 0 28px;
  }

  /* Скрываем старые desktop-разделители */
  .outsourcing-step-card:not(:first-child)::before {
    display: none;
  }

  /* Нода — слева на линии */
  .outsourcing-step-card__node {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 14px 0 0;
    justify-self: center;
    align-self: start;
  }

  /* Иконка — крупнее */
  .outsourcing-step-card__icon {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 58px;
    height: 58px;
    align-self: start;
    margin: 0;
  }

  .outsourcing-step-card__title {
    grid-column: 3;
    grid-row: 1;
    margin: 6px 0 10px;
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.25;
  }

  .outsourcing-step-card__text {
    grid-column: 3;
    grid-row: 2;
    text-align: left;
    color: rgba(16, 39, 70, 0.6);
    font-size: 0.94rem;
    line-height: 1.5;
  }
}

/* === Outstaffing «Что входит» — desktop reveal (one-shot stagger) === */
@media (min-width: 761px) {
  .outsourcing-included .outsourcing-included__title {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 520ms cubic-bezier(.2, .72, .2, 1),
      transform 520ms cubic-bezier(.2, .72, .2, 1);
    will-change: opacity, transform;
  }
  .outsourcing-included .outsourcing-included__grid::before {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 900ms cubic-bezier(.4, .1, .3, 1);
  }
  .outsourcing-included .outsourcing-step-card__node {
    opacity: 0;
    transform: scale(0.3);
    transition:
      opacity 280ms cubic-bezier(.2, .72, .2, 1),
      transform 380ms cubic-bezier(.34, 1.56, .64, 1);
  }
  .outsourcing-included .outsourcing-step-card__icon,
  .outsourcing-included .outsourcing-step-card__title,
  .outsourcing-included .outsourcing-step-card__text {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 360ms cubic-bezier(.2, .72, .2, 1),
      transform 360ms cubic-bezier(.2, .72, .2, 1);
  }

  .outsourcing-included.is-revealed .outsourcing-included__title {
    opacity: 1;
    transform: none;
  }
  .outsourcing-included.is-revealed .outsourcing-included__grid::before {
    transform: scaleX(1);
    transition-delay: 320ms;
  }
  .outsourcing-included.is-revealed .outsourcing-step-card__node {
    opacity: 1;
    transform: scale(1);
  }
  .outsourcing-included.is-revealed .outsourcing-step-card__icon,
  .outsourcing-included.is-revealed .outsourcing-step-card__title,
  .outsourcing-included.is-revealed .outsourcing-step-card__text {
    opacity: 1;
    transform: none;
  }

  /* Per-card stagger (5 cards × 180ms, starting at 400ms) */
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(1) .outsourcing-step-card__node  { transition-delay: 400ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(1) .outsourcing-step-card__icon  { transition-delay: 480ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(1) .outsourcing-step-card__title { transition-delay: 560ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(1) .outsourcing-step-card__text  { transition-delay: 640ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(2) .outsourcing-step-card__node  { transition-delay: 580ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(2) .outsourcing-step-card__icon  { transition-delay: 660ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(2) .outsourcing-step-card__title { transition-delay: 740ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(2) .outsourcing-step-card__text  { transition-delay: 820ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(3) .outsourcing-step-card__node  { transition-delay: 760ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(3) .outsourcing-step-card__icon  { transition-delay: 840ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(3) .outsourcing-step-card__title { transition-delay: 920ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(3) .outsourcing-step-card__text  { transition-delay: 1000ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(4) .outsourcing-step-card__node  { transition-delay: 940ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(4) .outsourcing-step-card__icon  { transition-delay: 1020ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(4) .outsourcing-step-card__title { transition-delay: 1100ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(4) .outsourcing-step-card__text  { transition-delay: 1180ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(5) .outsourcing-step-card__node  { transition-delay: 1120ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(5) .outsourcing-step-card__icon  { transition-delay: 1200ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(5) .outsourcing-step-card__title { transition-delay: 1280ms; }
  .outsourcing-included.is-revealed .outsourcing-step-card:nth-child(5) .outsourcing-step-card__text  { transition-delay: 1360ms; }
}

/* === Outstaffing «Что входит» — mobile timeline reveal (scroll-driven) === */
@media (max-width: 760px) {
  .outsourcing-included .outsourcing-included__title {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 460ms cubic-bezier(.2, .72, .2, 1),
      transform 460ms cubic-bezier(.2, .72, .2, 1);
    will-change: opacity, transform;
  }
  .outsourcing-included .outsourcing-included__grid::before {
    transform: scaleY(var(--line-progress, 0));
    transform-origin: top center;
    transition: transform 700ms cubic-bezier(.4, .1, .3, 1);
  }
  .outsourcing-included .outsourcing-step-card__node {
    opacity: 0;
    transform: scale(0.3);
    transition:
      opacity 280ms cubic-bezier(.2, .72, .2, 1),
      transform 380ms cubic-bezier(.34, 1.56, .64, 1);
  }
  .outsourcing-included .outsourcing-step-card__icon,
  .outsourcing-included .outsourcing-step-card__title,
  .outsourcing-included .outsourcing-step-card__text {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 360ms cubic-bezier(.2, .72, .2, 1),
      transform 360ms cubic-bezier(.2, .72, .2, 1);
  }

  .outsourcing-included.is-revealed .outsourcing-included__title {
    opacity: 1;
    transform: none;
  }

  .outsourcing-step-card.is-revealed .outsourcing-step-card__node {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0ms;
  }
  .outsourcing-step-card.is-revealed .outsourcing-step-card__icon {
    opacity: 1;
    transform: none;
    transition-delay: 90ms;
  }
  .outsourcing-step-card.is-revealed .outsourcing-step-card__title {
    opacity: 1;
    transform: none;
    transition-delay: 160ms;
  }
  .outsourcing-step-card.is-revealed .outsourcing-step-card__text {
    opacity: 1;
    transform: none;
    transition-delay: 230ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .outsourcing-included .outsourcing-included__title,
  .outsourcing-included .outsourcing-step-card__node,
  .outsourcing-included .outsourcing-step-card__icon,
  .outsourcing-included .outsourcing-step-card__title,
  .outsourcing-included .outsourcing-step-card__text,
  .outsourcing-included .outsourcing-included__grid::before {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === Outstaffing «Что получает бизнес» === */

.outsourcing-benefits {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5fafe 28%, #f5fafe 72%, #ffffff 100%);
  padding: 84px 0 100px;
}

.outsourcing-benefits__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.outsourcing-benefits__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.outsourcing-benefits .outsourcing-included__title,
.outsourcing-benefits .outsourcing-card--benefit {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(.2, .72, .2, 1),
    transform 620ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}

.outsourcing-benefits.is-revealed .outsourcing-included__title,
.outsourcing-benefits.is-revealed .outsourcing-card--benefit {
  opacity: 1;
  transform: none;
}

.outsourcing-benefits.is-revealed .outsourcing-included__title { transition-delay:   0ms; }
.outsourcing-benefits.is-revealed .outsourcing-card--benefit:nth-child(1) { transition-delay: 340ms; }
.outsourcing-benefits.is-revealed .outsourcing-card--benefit:nth-child(2) { transition-delay: 450ms; }
.outsourcing-benefits.is-revealed .outsourcing-card--benefit:nth-child(3) { transition-delay: 560ms; }
.outsourcing-benefits.is-revealed .outsourcing-card--benefit:nth-child(4) { transition-delay: 670ms; }

@media (prefers-reduced-motion: reduce) {
  .outsourcing-benefits .outsourcing-included__title,
  .outsourcing-benefits .outsourcing-card--benefit {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1000px) {
  .outsourcing-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .outsourcing-benefits {
    padding: 64px 0 72px;
  }
  .outsourcing-benefits__grid {
    gap: 16px;
  }
}

@media (max-width: 460px) {
  .outsourcing-benefits__grid {
    grid-template-columns: 1fr;
  }

  .outsourcing-benefits.is-revealed .outsourcing-card--benefit {
    opacity: 0;
    transform: translateY(24px);
    transition-delay: 0ms;
  }
  .outsourcing-card--benefit.is-revealed-card {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === Outstaffing «Для каких задач подходит» === */

.outsourcing-tasks {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5fafe 28%, #f5fafe 72%, #ffffff 100%);
  padding: 84px 0 100px;
}

.outsourcing-tasks__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.outsourcing-tasks__title {
  margin: 0 0 44px;
  text-align: center;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.outsourcing-tasks__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.outsourcing-tasks__card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(16, 39, 70, 0.08);
  min-height: 240px;
  isolation: isolate;
}

.outsourcing-tasks__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 0% 100%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.55) 45%, rgba(255, 255, 255, 0) 80%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.5) 100%);
}

.outsourcing-tasks__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.95) 25%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.95) 25%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0) 100%);
  z-index: 0;
}

.outsourcing-tasks__card--production .outsourcing-tasks__photo {
  background-image: url("assets/аутсорсинг/d1(q).png");
}
.outsourcing-tasks__card--logistics .outsourcing-tasks__photo {
  background-image: url("assets/аутсорсинг/d2(q).png");
}
.outsourcing-tasks__card--building .outsourcing-tasks__photo {
  background-image: url("assets/аутсорсинг/d3(q).png");
}
.outsourcing-tasks__card--food .outsourcing-tasks__photo {
  background-image: url("assets/аутсорсинг/d4(q).png");
}
.outsourcing-tasks__card--retail .outsourcing-tasks__photo {
  background-image: url("assets/аутсорсинг/d5(q).png");
}
.outsourcing-tasks__card--agro .outsourcing-tasks__photo {
  background-image: url("assets/аутсорсинг/d6(q).png");
}

.outsourcing-tasks__body {
  position: relative;
  z-index: 1;
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
}

.outsourcing-tasks__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #27c9da;
  margin-bottom: 22px;
}

.outsourcing-tasks__icon svg,
.outsourcing-tasks__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.outsourcing-tasks__name {
  margin: 0 0 18px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--text);
}

.outsourcing-tasks__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.outsourcing-tasks__list li {
  position: relative;
  padding-left: 16px;
  color: rgba(16, 39, 70, 0.78);
  font-size: 0.98rem;
  line-height: 1.4;
}

.outsourcing-tasks__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27c9da;
}

.outsourcing-tasks__tabs,
.outsourcing-tasks__dots {
  display: none;
}

.outsourcing-tasks__cta {
  margin: 56px auto 0;
  padding: 0;
  max-width: 760px;
}

@media (max-width: 1000px) {
  .outsourcing-tasks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .outsourcing-tasks {
    padding: 64px 0 72px;
  }
  .outsourcing-tasks__grid {
    gap: 16px;
  }
  .outsourcing-tasks__title {
    margin-bottom: 28px;
  }
  .outsourcing-tasks__body {
    padding: 24px 22px 26px;
  }
}

@media (max-width: 640px) {
  .outsourcing-tasks__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
  }

  .outsourcing-tasks__tab {
    flex: 0 0 auto;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(39, 201, 218, 0.55);
    background: #ffffff;
    color: var(--text);
    font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  }

  .outsourcing-tasks__tab.is-active {
    background: #27c9da;
    color: #ffffff;
    border-color: #27c9da;
    box-shadow: 0 6px 18px rgba(39, 201, 218, 0.34);
  }

  .outsourcing-tasks__grid {
    display: block;
    margin: 0;
  }

  .outsourcing-tasks__card {
    display: none;
    min-height: 360px;
  }

  .outsourcing-tasks__card.is-active {
    display: flex;
    flex-direction: column;
    animation: outsourcing-tasks-fade 320ms ease both;
  }

  .outsourcing-tasks__body {
    flex: 1;
    justify-content: flex-end;
    padding: 22px 22px 26px;
  }

  .outsourcing-tasks__icon {
    margin-bottom: 14px;
  }

  .outsourcing-tasks__name {
    margin-bottom: 14px;
  }

  .outsourcing-tasks__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 0;
  }

  .outsourcing-tasks__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(16, 39, 70, 0.18);
    cursor: pointer;
    transition: background 220ms ease, transform 220ms ease;
  }

  .outsourcing-tasks__dot.is-active {
    background: #27c9da;
    transform: scale(1.25);
  }
}

@keyframes outsourcing-tasks-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Desktop reveal: title → row 1 (cards 1-3) на входе секции; row 2 (cards 4-6) — при достижении 85% viewport */
@media (min-width: 641px) {
  .outsourcing-tasks .outsourcing-tasks__title {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 520ms cubic-bezier(.2, .72, .2, 1),
      transform 520ms cubic-bezier(.2, .72, .2, 1);
    will-change: opacity, transform;
  }
  .outsourcing-tasks .outsourcing-tasks__card {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 580ms cubic-bezier(.2, .72, .2, 1),
      transform 580ms cubic-bezier(.2, .72, .2, 1);
    will-change: opacity, transform;
  }

  .outsourcing-tasks.is-revealed .outsourcing-tasks__title {
    opacity: 1;
    transform: none;
  }

  /* Row 1 — карточки 1-3, появляются с секцией */
  .outsourcing-tasks.is-revealed .outsourcing-tasks__card:nth-child(1),
  .outsourcing-tasks.is-revealed .outsourcing-tasks__card:nth-child(2),
  .outsourcing-tasks.is-revealed .outsourcing-tasks__card:nth-child(3) {
    opacity: 1;
    transform: none;
  }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__card:nth-child(1) { transition-delay: 280ms; }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__card:nth-child(2) { transition-delay: 380ms; }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__card:nth-child(3) { transition-delay: 480ms; }

  /* Row 2 — карточки 4-6 появляются индивидуально при пересечении 85% сверху */
  .outsourcing-tasks .outsourcing-tasks__card.is-revealed {
    opacity: 1;
    transform: none;
  }
  .outsourcing-tasks .outsourcing-tasks__card:nth-child(4).is-revealed { transition-delay: 0ms; }
  .outsourcing-tasks .outsourcing-tasks__card:nth-child(5).is-revealed { transition-delay: 100ms; }
  .outsourcing-tasks .outsourcing-tasks__card:nth-child(6).is-revealed { transition-delay: 200ms; }
}

/* Reveal animation: title → tabs (stagger) → active card → dots */
@media (max-width: 640px) {
  .outsourcing-tasks .outsourcing-tasks__title,
  .outsourcing-tasks .outsourcing-tasks__tab,
  .outsourcing-tasks .outsourcing-tasks__grid,
  .outsourcing-tasks .outsourcing-tasks__dots {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 540ms cubic-bezier(.2, .72, .2, 1),
      transform 540ms cubic-bezier(.2, .72, .2, 1);
    will-change: opacity, transform;
  }

  .outsourcing-tasks.is-revealed .outsourcing-tasks__title {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__tab {
    opacity: 1;
    transform: none;
  }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__tab:nth-child(1) { transition-delay: 260ms; }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__tab:nth-child(2) { transition-delay: 320ms; }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__tab:nth-child(3) { transition-delay: 380ms; }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__tab:nth-child(4) { transition-delay: 440ms; }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__tab:nth-child(5) { transition-delay: 500ms; }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__tab:nth-child(6) { transition-delay: 560ms; }

  .outsourcing-tasks.is-revealed .outsourcing-tasks__grid {
    opacity: 1;
    transform: none;
    transition-delay: 700ms;
  }
  .outsourcing-tasks.is-revealed .outsourcing-tasks__dots {
    opacity: 1;
    transform: none;
    transition-delay: 880ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .outsourcing-tasks .outsourcing-tasks__title,
  .outsourcing-tasks .outsourcing-tasks__tab,
  .outsourcing-tasks .outsourcing-tasks__grid,
  .outsourcing-tasks .outsourcing-tasks__dots {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === Outstaffing «Почему нам доверяют» === */

.outsourcing-trust {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5fafe 30%, #f5fafe 70%, #ffffff 100%);
  padding: 92px 0 100px;
  overflow: hidden;
}

.outsourcing-trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(640px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(16, 39, 70, 0.12) 50%, transparent 100%);
}

.outsourcing-trust__inner {
  position: relative;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  text-align: center;
}

.outsourcing-trust__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.outsourcing-trust__eyebrow::before,
.outsourcing-trust__eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}

.outsourcing-trust__title {
  margin: 0 0 64px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.outsourcing-trust__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  position: relative;
}

.outsourcing-trust__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 18px 22px;
}

.outsourcing-trust__item + .outsourcing-trust__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(16, 39, 70, 0.16) 25%, rgba(16, 39, 70, 0.16) 75%, transparent 100%);
}

.outsourcing-trust__value {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
}

.outsourcing-trust__num,
.outsourcing-trust__unit {
  background: linear-gradient(135deg, #27c9da 0%, #1db6cf 60%, #1a3d6e 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

.outsourcing-trust__num {
  font-weight: 800;
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.outsourcing-trust__unit {
  font-weight: 600;
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  text-transform: lowercase;
  opacity: 0.85;
}

.outsourcing-trust__label {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 760px) {
  .outsourcing-trust__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
  }
  .outsourcing-trust__item + .outsourcing-trust__item::before {
    content: none;
  }
  .outsourcing-trust__item:nth-child(2)::before,
  .outsourcing-trust__item:nth-child(4)::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 14%;
    bottom: 14%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 39, 70, 0.18) 25%, rgba(16, 39, 70, 0.18) 75%, transparent 100%);
  }
  .outsourcing-trust__item:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 380px;
    margin-top: 8px;
  }
}

@media (max-width: 600px) {
  .outsourcing-trust {
    padding: 64px 0 72px;
  }
  .outsourcing-trust__title {
    margin-bottom: 44px;
  }
  .outsourcing-trust__grid {
    row-gap: 36px;
  }
  .outsourcing-trust__item {
    padding: 12px 14px;
  }
}

/* Reveal animation: eyebrow → title → numbers pop in (cascade) */
.outsourcing-trust .outsourcing-trust__eyebrow span {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 520ms cubic-bezier(.2, .72, .2, 1),
    transform 520ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}
.outsourcing-trust .outsourcing-trust__eyebrow::before {
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 520ms cubic-bezier(.2, .72, .2, 1);
}
.outsourcing-trust .outsourcing-trust__eyebrow::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(.2, .72, .2, 1);
}
.outsourcing-trust .outsourcing-trust__title {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 560ms cubic-bezier(.2, .72, .2, 1),
    transform 560ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}
.outsourcing-trust .outsourcing-trust__value {
  opacity: 0;
  transition: opacity 480ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity;
}
.outsourcing-trust .outsourcing-trust__label {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 460ms cubic-bezier(.2, .72, .2, 1),
    transform 460ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}

.outsourcing-trust.is-revealed .outsourcing-trust__eyebrow span {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}
.outsourcing-trust.is-revealed .outsourcing-trust__eyebrow::before,
.outsourcing-trust.is-revealed .outsourcing-trust__eyebrow::after {
  transform: scaleX(1);
  transition-delay: 280ms;
}
.outsourcing-trust.is-revealed .outsourcing-trust__title {
  opacity: 1;
  transform: none;
  transition-delay: 560ms;
}
.outsourcing-trust.is-revealed .outsourcing-trust__value,
.outsourcing-trust.is-revealed .outsourcing-trust__label {
  opacity: 1;
  transform: none;
}

.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(1) .outsourcing-trust__value { transition-delay: 950ms; }
.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(1) .outsourcing-trust__label { transition-delay: 1070ms; }
.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(2) .outsourcing-trust__value { transition-delay: 1090ms; }
.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(2) .outsourcing-trust__label { transition-delay: 1210ms; }
.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(3) .outsourcing-trust__value { transition-delay: 1230ms; }
.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(3) .outsourcing-trust__label { transition-delay: 1350ms; }
.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(4) .outsourcing-trust__value { transition-delay: 1370ms; }
.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(4) .outsourcing-trust__label { transition-delay: 1490ms; }
.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(5) .outsourcing-trust__value { transition-delay: 1510ms; }
.outsourcing-trust.is-revealed .outsourcing-trust__item:nth-child(5) .outsourcing-trust__label { transition-delay: 1630ms; }

@media (prefers-reduced-motion: reduce) {
  .outsourcing-trust .outsourcing-trust__eyebrow span,
  .outsourcing-trust .outsourcing-trust__title,
  .outsourcing-trust .outsourcing-trust__value,
  .outsourcing-trust .outsourcing-trust__label {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .outsourcing-trust .outsourcing-trust__eyebrow::before,
  .outsourcing-trust .outsourcing-trust__eyebrow::after {
    transform: none;
    transition: none;
  }
}

/* === Outstaffing «Как запускаем проект» === */

.outsourcing-process {
  position: relative;
  background: #ffffff;
  padding: 84px 0 100px;
}

.outsourcing-process__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.outsourcing-process__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.outsourcing-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.outsourcing-step__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #27c9da;
  color: #ffffff;
  border-radius: 50%;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 26px;
  box-shadow: 0 10px 24px rgba(39, 201, 218, 0.32);
}

.outsourcing-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 26px;
  left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: #27c9da;
  z-index: 0;
}

.outsourcing-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: calc(-50% + 25px);
  width: 0;
  height: 0;
  border-left: 7px solid #27c9da;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  z-index: 0;
}

.outsourcing-step__title {
  margin: 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.28;
  color: rgba(16, 39, 70, 0.94);
}

.outsourcing-step__text {
  margin: 16px 0 0;
  color: rgba(16, 39, 70, 0.58);
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 960px) {
  .outsourcing-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 16px;
  }
  .outsourcing-step:not(:last-child)::before,
  .outsourcing-step:not(:last-child)::after {
    display: none;
  }
}

/* === Outstaffing «Как запускаем» — desktop reveal === */
@media (min-width: 761px) {
  .outsourcing-process .outsourcing-included__title {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 520ms cubic-bezier(.2, .72, .2, 1),
      transform 520ms cubic-bezier(.2, .72, .2, 1);
    will-change: opacity, transform;
  }
  .outsourcing-process .outsourcing-step__num {
    opacity: 0;
    transform: scale(0.3);
    transition:
      opacity 280ms cubic-bezier(.2, .72, .2, 1),
      transform 380ms cubic-bezier(.34, 1.56, .64, 1);
  }
  .outsourcing-process .outsourcing-step__title,
  .outsourcing-process .outsourcing-step__text {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 360ms cubic-bezier(.2, .72, .2, 1),
      transform 360ms cubic-bezier(.2, .72, .2, 1);
  }
  .outsourcing-process .outsourcing-step:not(:last-child)::before {
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 380ms cubic-bezier(.4, .1, .3, 1);
  }
  .outsourcing-process .outsourcing-step:not(:last-child)::after {
    opacity: 0;
    transform: scale(0.4);
    transition:
      opacity 280ms cubic-bezier(.2, .72, .2, 1),
      transform 280ms cubic-bezier(.34, 1.56, .64, 1);
  }

  .outsourcing-process.is-revealed .outsourcing-included__title { opacity: 1; transform: none; }
  .outsourcing-process.is-revealed .outsourcing-step__num { opacity: 1; transform: scale(1); }
  .outsourcing-process.is-revealed .outsourcing-step__title { opacity: 1; transform: none; }
  .outsourcing-process.is-revealed .outsourcing-step__text { opacity: 1; transform: none; }
  .outsourcing-process.is-revealed .outsourcing-step:not(:last-child)::before { transform: scaleX(1); }
  .outsourcing-process.is-revealed .outsourcing-step:not(:last-child)::after { opacity: 1; transform: scale(1); }

  /* Per-step stagger (5 steps × 180ms, starting at 380ms) */
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(1) .outsourcing-step__num   { transition-delay: 380ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(1) .outsourcing-step__title { transition-delay: 460ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(1) .outsourcing-step__text  { transition-delay: 540ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(1):not(:last-child)::before { transition-delay: 440ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(1):not(:last-child)::after  { transition-delay: 760ms; }

  .outsourcing-process.is-revealed .outsourcing-step:nth-child(2) .outsourcing-step__num   { transition-delay: 560ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(2) .outsourcing-step__title { transition-delay: 640ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(2) .outsourcing-step__text  { transition-delay: 720ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(2):not(:last-child)::before { transition-delay: 620ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(2):not(:last-child)::after  { transition-delay: 940ms; }

  .outsourcing-process.is-revealed .outsourcing-step:nth-child(3) .outsourcing-step__num   { transition-delay: 740ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(3) .outsourcing-step__title { transition-delay: 820ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(3) .outsourcing-step__text  { transition-delay: 900ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(3):not(:last-child)::before { transition-delay: 800ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(3):not(:last-child)::after  { transition-delay: 1120ms; }

  .outsourcing-process.is-revealed .outsourcing-step:nth-child(4) .outsourcing-step__num   { transition-delay: 920ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(4) .outsourcing-step__title { transition-delay: 1000ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(4) .outsourcing-step__text  { transition-delay: 1080ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(4):not(:last-child)::before { transition-delay: 980ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(4):not(:last-child)::after  { transition-delay: 1300ms; }

  .outsourcing-process.is-revealed .outsourcing-step:nth-child(5) .outsourcing-step__num   { transition-delay: 1100ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(5) .outsourcing-step__title { transition-delay: 1180ms; }
  .outsourcing-process.is-revealed .outsourcing-step:nth-child(5) .outsourcing-step__text  { transition-delay: 1260ms; }
}

@media (max-width: 760px) {
  .outsourcing-process {
    padding: 64px 0 72px;
  }

  .outsourcing-process__steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 4px 0 0;
  }

  .outsourcing-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 6px;
    align-items: start;
    text-align: left;
    padding: 6px 0 44px;
    position: relative;
  }

  .outsourcing-step:last-child {
    padding-bottom: 0;
  }

  /* Вертикальная cyan-линия от низа кружка к стрелке/следующему кружку */
  .outsourcing-step:not(:last-child)::before {
    content: "";
    display: block;
    position: absolute;
    left: 27px;        /* центр кружка (54/2) */
    top: 62px;         /* сразу под кружком */
    bottom: 22px;      /* до начала стрелки */
    width: 2px;
    height: auto;
    background: #27c9da;
    transform: translateX(-1px);
    z-index: 0;
    border: none;
    right: auto;
  }

  /* Стрелка вниз в конце линии (как у ПК-стрелки, но повёрнутая) */
  .outsourcing-step:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    left: 27px;
    bottom: 8px;
    width: 0;
    height: 0;
    border-top: 7px solid #27c9da;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    transform: translateX(-50%);
    z-index: 0;
    top: auto;
    right: auto;
  }

  /* Cyan-filled круг с белой цифрой — как на ПК */
  .outsourcing-step__num {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    background: #27c9da;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 24px rgba(39, 201, 218, 0.32);
    font-size: 1.25rem;
    margin: 0;
    justify-self: start;
    align-self: start;
  }

  .outsourcing-step__title {
    grid-column: 2;
    grid-row: 1;
    margin: 9px 0 4px;
    text-align: left;
    font-size: 1.07rem;
    line-height: 1.25;
  }

  .outsourcing-step__text {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    text-align: left;
    color: rgba(16, 39, 70, 0.6);
    font-size: 0.94rem;
    line-height: 1.5;
  }

  /* Scroll-driven reveal: title → each step in sequence */
  .outsourcing-process .outsourcing-included__title {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 460ms cubic-bezier(.2, .72, .2, 1),
      transform 460ms cubic-bezier(.2, .72, .2, 1);
    will-change: opacity, transform;
  }
  .outsourcing-process .outsourcing-step__num {
    opacity: 0;
    transform: scale(0.3);
    transition:
      opacity 280ms cubic-bezier(.2, .72, .2, 1),
      transform 380ms cubic-bezier(.34, 1.56, .64, 1);
  }
  .outsourcing-process .outsourcing-step__title,
  .outsourcing-process .outsourcing-step__text {
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 360ms cubic-bezier(.2, .72, .2, 1),
      transform 360ms cubic-bezier(.2, .72, .2, 1);
  }
  .outsourcing-process .outsourcing-step:not(:last-child)::before {
    transform: translateX(-1px) scaleY(0);
    transform-origin: top center;
    transition: transform 420ms cubic-bezier(.4, .1, .3, 1);
  }
  .outsourcing-process .outsourcing-step:not(:last-child)::after {
    opacity: 0;
    transform: translateX(-50%) scale(0.4);
    transition:
      opacity 300ms cubic-bezier(.2, .72, .2, 1),
      transform 300ms cubic-bezier(.34, 1.56, .64, 1);
  }

  .outsourcing-process.is-revealed .outsourcing-included__title {
    opacity: 1;
    transform: none;
  }
  .outsourcing-step.is-revealed .outsourcing-step__num {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0ms;
  }
  .outsourcing-step.is-revealed .outsourcing-step__title {
    opacity: 1;
    transform: none;
    transition-delay: 90ms;
  }
  .outsourcing-step.is-revealed .outsourcing-step__text {
    opacity: 1;
    transform: none;
    transition-delay: 170ms;
  }
  .outsourcing-step.is-revealed:not(:last-child)::before {
    transform: translateX(-1px) scaleY(1);
    transition-delay: 280ms;
  }
  .outsourcing-step.is-revealed:not(:last-child)::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    transition-delay: 660ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .outsourcing-process .outsourcing-included__title,
  .outsourcing-process .outsourcing-step__num,
  .outsourcing-process .outsourcing-step__title,
  .outsourcing-process .outsourcing-step__text {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .outsourcing-process .outsourcing-step:not(:last-child)::before,
  .outsourcing-process .outsourcing-step:not(:last-child)::after {
    opacity: 1;
    transform: translateX(-1px) scaleY(1);
    transition: none;
  }
}

.outsourcing-process__cta {
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
}

.outsourcing-process__cta .button {
  padding: 0 36px;
}

/* CTA panel reveal animation (bottom dark block) */
.cta-panel .cta-panel__photo,
.cta-panel .cta-panel__title,
.cta-panel .cta-panel__text,
.cta-panel .cta-panel__actions,
.cta-panel .cta-panel__meta {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms cubic-bezier(.2, .72, .2, 1),
    transform 620ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}
.cta-panel .cta-panel__photo {
  transform: translateY(0) scale(1.04);
  transition:
    opacity 720ms cubic-bezier(.2, .72, .2, 1),
    transform 720ms cubic-bezier(.2, .72, .2, 1);
}

.cta-panel.is-revealed .cta-panel__photo {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0ms;
}
.cta-panel.is-revealed .cta-panel__title {
  opacity: 1;
  transform: none;
  transition-delay: 240ms;
}
.cta-panel.is-revealed .cta-panel__text {
  opacity: 1;
  transform: none;
  transition-delay: 380ms;
}
.cta-panel.is-revealed .cta-panel__actions {
  opacity: 1;
  transform: none;
  transition-delay: 520ms;
}
.cta-panel.is-revealed .cta-panel__meta {
  opacity: 1;
  transform: none;
  transition-delay: 660ms;
}

@media (prefers-reduced-motion: reduce) {
  .cta-panel .cta-panel__photo,
  .cta-panel .cta-panel__title,
  .cta-panel .cta-panel__text,
  .cta-panel .cta-panel__actions,
  .cta-panel .cta-panel__meta {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 760px) {
  .outsourcing-process__cta {
    margin-top: 40px;
  }
  .outsourcing-process__cta .button {
    width: 100%;
    max-width: 420px;
    padding: 0 22px;
    text-align: center;
    line-height: 1.2;
  }
}

.hero--outsourcing::before {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 11%,
      rgba(255, 255, 255, 0.6) 15%,
      rgba(255, 255, 255, 0) 22%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.45) 75%,
      rgba(255, 255, 255, 0.85) 90%,
      rgba(255, 255, 255, 1) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 42%,
      rgba(255, 255, 255, 0.82) 52%,
      rgba(255, 255, 255, 0.45) 62%,
      rgba(255, 255, 255, 0.12) 72%,
      rgba(255, 255, 255, 0) 82%
    ),
    url("assets/ChatGPT Image Jun 9, 2026, 08_22_07 PM(q).png") center right / cover no-repeat;
  -webkit-mask-image: none;
  mask-image: none;
}

/* Hero аутстаффинга: те же кроссфейды, только другое фото. */
.hero--outstaffing::before {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 11%,
      rgba(255, 255, 255, 0.6) 15%,
      rgba(255, 255, 255, 0) 22%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.45) 75%,
      rgba(255, 255, 255, 0.85) 90%,
      rgba(255, 255, 255, 1) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 42%,
      rgba(255, 255, 255, 0.82) 52%,
      rgba(255, 255, 255, 0.45) 62%,
      rgba(255, 255, 255, 0.12) 72%,
      rgba(255, 255, 255, 0) 82%
    ),
    url("assets/254c0e8d-7bb3-4b4e-8d06-bd6440e71b61(q).png") center right / cover no-repeat;
}

.hero--outsourcing .hero__features {
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  width: min(820px, calc(100vw - 72px));
}

.hero-feature--rocket .hero-feature__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%2327c9da' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.5 3c3.5 0 6.5 3 6.5 6.5L14 16.5l-3-3L14.5 3Z'/%3E%3Cpath d='M11 13.5 7.5 17 9 19l3.5-3.5'/%3E%3Cpath d='M5 19c0-1.5.6-2.8 1.7-3.7'/%3E%3Cpath d='M14.5 9.5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z'/%3E%3C/svg%3E");
}

.hero-feature--swap .hero-feature__icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 24 24' fill='none' stroke='%2327c9da' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h14'/%3E%3Cpath d='m14 4 4 4-4 4'/%3E%3Cpath d='M20 16H6'/%3E%3Cpath d='m10 20-4-4 4-4'/%3E%3C/svg%3E");
}

@media (max-width: 920px) {
  .hero--outsourcing::before {
    background:
      radial-gradient(
        ellipse 78% 48% at left top,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.5) 32%,
        rgba(255, 255, 255, 0) 62%
      ),
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.35) 60%,
        rgba(255, 255, 255, 0.85) 82%,
        rgba(255, 255, 255, 1) 95%
      ),
      url("assets/ChatGPT Image Jun 9, 2026, 08_22_07 PM(q).png") right center / cover no-repeat;
  }

  /* Hero аутстаффинга на мобилке: фото прижато к правому краю (как у аутсорсинга). */
  .hero--outstaffing::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.35) 60%,
        rgba(255, 255, 255, 0.85) 82%,
        rgba(255, 255, 255, 1) 95%
      ),
      url("assets/254c0e8d-7bb3-4b4e-8d06-bd6440e71b61(q).png") right center / cover no-repeat;
  }

  .hero--outsourcing .hero__features {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    width: 100%;
  }

  .hero--outsourcing .hero__lead {
    margin-top: 32px;
  }

  .hero--outsourcing .hero__bullets {
    margin: 38px auto 0;
    justify-self: center;
    width: max-content;
    max-width: min(440px, calc(100vw - 56px));
    gap: 14px;
    text-align: left;
  }

  .hero--outsourcing .hero__actions {
    margin-top: 38px;
  }

  .hero--outsourcing .hero__bullets li {
    text-align: left;
    font-size: 0.98rem;
    line-height: 1.4;
    padding-left: 30px;
  }

  .hero--outsourcing .hero__bullets li::before {
    top: 1px;
    width: 20px;
    height: 20px;
  }

  /* Ghost-кнопка на белом фоне снизу hero: усиливаем border и делаем непрозрачный bg */
  .hero--outsourcing .button--ghost {
    background: #ffffff;
    border-color: rgba(16, 39, 70, 0.32);
  }

  /* На outsourcing hero не обрезаем тени/борды кнопок снизу */
  .hero--outsourcing .hero__copy {
    overflow: visible;
  }

  .hero--outsourcing .hero__actions {
    padding-bottom: 24px;
  }
}

/* === Result banner (outsourcing) === */
.result-banner {
  background: linear-gradient(180deg, #ffffff 0%, #f5fafe 28%, #f5fafe 72%, #ffffff 100%);
  padding: 80px 24px 80px;
}

.result-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.result-banner__eyebrow {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #27c9da;
}

.result-banner__eyebrow::before,
.result-banner__eyebrow::after {
  content: "";
  width: 36px;
  height: 2px;
  background: #27c9da;
  border-radius: 1px;
}

.result-banner__text {
  margin: 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.005em;
}

.result-banner__text strong {
  font-weight: 700;
  color: #27c9da;
}

.result-banner__rule {
  display: block;
  width: 56px;
  height: 3px;
  background: #27c9da;
  border-radius: 2px;
  margin-top: 8px;
}

@media (max-width: 720px) {
  .result-banner {
    padding: 56px 22px;
  }
  .result-banner__text br {
    display: none;
  }
  .result-banner__eyebrow::before,
  .result-banner__eyebrow::after {
    width: 24px;
  }
}

/* Reveal animation: eyebrow text → side lines draw out → body text */
.result-banner__eyebrow span {
  display: inline-block;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 520ms cubic-bezier(.2, .72, .2, 1),
    transform 520ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}
.result-banner__eyebrow::before {
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 520ms cubic-bezier(.2, .72, .2, 1);
}
.result-banner__eyebrow::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(.2, .72, .2, 1);
}
.result-banner__text,
.result-banner__rule {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms cubic-bezier(.2, .72, .2, 1),
    transform 620ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}

.result-banner.is-revealed .result-banner__eyebrow span {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}
.result-banner.is-revealed .result-banner__eyebrow::before,
.result-banner.is-revealed .result-banner__eyebrow::after {
  transform: scaleX(1);
  transition-delay: 380ms;
}
.result-banner.is-revealed .result-banner__text {
  opacity: 1;
  transform: none;
  transition-delay: 820ms;
}
.result-banner.is-revealed .result-banner__rule {
  opacity: 1;
  transform: none;
  transition-delay: 1020ms;
}

@media (prefers-reduced-motion: reduce) {
  .result-banner__eyebrow span,
  .result-banner__text,
  .result-banner__rule {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .result-banner__eyebrow::before,
  .result-banner__eyebrow::after {
    transform: none;
    transition: none;
  }
}

/* === Dark CTA panel (outsourcing bottom) === */
.cta-panel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #0a1d3a;
  color: #ffffff;
  isolation: isolate;
  box-shadow: 0 30px 80px rgba(5, 23, 44, 0.18);
}

.cta-panel__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-panel__photo img {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 18%, rgba(0, 0, 0, 0.85) 42%, #000 70%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 18%, rgba(0, 0, 0, 0.85) 42%, #000 70%);
}

.cta-panel__body {
  position: relative;
  z-index: 1;
  padding: 56px 64px;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-panel__title {
  margin: 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.cta-panel__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(220, 232, 246, 0.78);
}

.cta-panel__actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-panel__actions .button--solid {
  padding: 16px 28px;
}

.cta-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.18s ease;
}

.cta-panel__link span {
  transition: transform 0.18s ease;
}

.cta-panel__link:hover {
  color: #27c9da;
}

.cta-panel__link:hover span {
  transform: translateX(4px);
}

.cta-panel__meta {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.92rem;
  color: rgba(220, 232, 246, 0.7);
}

.cta-panel__meta li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-panel__meta-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(39, 201, 218, 0.16);
  color: #27c9da;
}

.cta-panel__meta-icon svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 960px) {
  .cta-panel {
    margin: 0 24px 48px;
    display: flex;
    flex-direction: column;
  }
  .cta-panel__photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 200px;
    flex-shrink: 0;
  }
  .cta-panel__photo img {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  }
  .cta-panel__body {
    padding: 24px 28px 36px;
    max-width: 100%;
  }
  .cta-panel__title {
    font-size: 1.6rem;
  }
  .cta-panel__actions {
    gap: 18px;
  }
  .cta-panel__meta {
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .cta-panel__photo {
    height: 170px;
  }
  .cta-panel__body {
    padding: 22px 22px 28px;
  }
  .cta-panel__title {
    font-size: 1.35rem;
  }
  .cta-panel__title br,
  .cta-panel__text br {
    display: none;
  }
  .cta-panel__actions .button--solid {
    width: 100%;
    text-align: center;
    padding: 14px 22px;
  }
}


/* === Outstaffing «Кому нужен аутстаффинг» === */
.outstaffing-need {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfe 30%, #f6fbfe 70%, #ffffff 100%);
  padding: 88px 0 96px;
}

.outstaffing-need__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.outstaffing-need__title {
  margin: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
}

.outstaffing-need__title::before,
.outstaffing-need__title::after {
  content: "";
  flex: 0 0 auto;
  width: clamp(28px, 5vw, 64px);
  height: 2px;
  border-radius: 1px;
}

/* Левая линия — растворяется к внешнему (левому) краю */
.outstaffing-need__title::before {
  background: linear-gradient(90deg, rgba(39, 201, 218, 0) 0%, #27c9da 100%);
}

/* Правая линия — растворяется к внешнему (правому) краю */
.outstaffing-need__title::after {
  background: linear-gradient(90deg, #27c9da 0%, rgba(39, 201, 218, 0) 100%);
}

.outstaffing-need__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.need-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 28px 30px;
  background: #ffffff;
  border: 1px solid rgba(16, 39, 70, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(10, 35, 70, 0.05);
}

.need-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  margin-bottom: 28px;
  color: #27c9da;
}

.need-card__icon svg,
.need-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.need-card__title {
  margin: 0 0 18px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(16, 39, 70, 0.94);
}

.need-card__text {
  margin: 0 0 26px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(16, 39, 70, 0.56);
}

.need-card__rule {
  margin-top: auto;
  width: 32px;
  height: 2px;
  border-radius: 1px;
  background: #27c9da;
}

/* Выделенная (тёмная) карточка */
.need-card--accent {
  background: linear-gradient(165deg, #143256 0%, #0c1d33 100%);
  border-color: #27c9da;
  box-shadow: 0 26px 60px rgba(10, 35, 70, 0.30);
  transform: scale(1.045);
  position: relative;
  z-index: 1;
}

.need-card--accent .need-card__title {
  color: #ffffff;
}

.need-card--accent .need-card__text {
  color: rgba(255, 255, 255, 0.72);
}

/* Подпись со щитом под карточками */
.outstaffing-need__note {
  margin: 56px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: rgba(16, 39, 70, 0.66);
}

.outstaffing-need__note::before,
.outstaffing-need__note::after {
  content: "";
  flex: 0 0 auto;
  width: 2px;
  height: 22px;
  background: #27c9da;
  border-radius: 1px;
  margin: 0 12px;
}

.outstaffing-need__note-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: #27c9da;
}

.outstaffing-need__note-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1000px) {
  .outstaffing-need__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .need-card--accent {
    transform: none;
  }
}

@media (max-width: 760px) {
  .outstaffing-need {
    padding: 64px 0 72px;
  }
  .outstaffing-need__title {
    margin-bottom: 40px;
    gap: 8px;
    white-space: nowrap;
    font-size: clamp(0.82rem, 4vw, 1.45rem);
  }
  .outstaffing-need__title::before,
  .outstaffing-need__title::after {
    width: clamp(18px, 5vw, 40px);
  }
  .outstaffing-need__grid {
    gap: 16px;
  }
  .outstaffing-need__note {
    margin-top: 40px;
    font-size: 0.94rem;
    padding: 0 20px;
    text-align: center;
  }
  .outstaffing-need__note::before,
  .outstaffing-need__note::after {
    margin: 0 6px;
  }
}

@media (max-width: 460px) {
  .outstaffing-need__grid {
    grid-template-columns: 1fr;
  }
  .need-card {
    padding: 26px 24px 26px;
  }
  .need-card__icon {
    margin-bottom: 22px;
  }
  .need-card__title br {
    display: none;
  }
}

/* === Outstaffing «Что вы получаете» === */
.outstaffing-gains {
  background: linear-gradient(180deg, #ffffff 0%, #fafdff 50%, #ffffff 100%);
  padding: 84px 0 92px;
}

.outstaffing-gains__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.outstaffing-gains__title {
  margin: 0 0 60px;
  text-align: center;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.outstaffing-gains__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.gain {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 26px;
}

.gain:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  height: 62%;
  width: 1px;
  background: rgba(16, 39, 70, 0.10);
}

.gain__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  color: #27c9da;
}

.gain__icon svg,
.gain__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gain__title {
  margin: 0 0 16px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.32;
  color: rgba(16, 39, 70, 0.94);
}

.gain__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(16, 39, 70, 0.55);
}

@media (max-width: 1024px) {
  .outstaffing-gains__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 52px;
  }
  .gain:not(:first-child)::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .outstaffing-gains {
    padding: 64px 0 72px;
  }
  .outstaffing-gains__title {
    margin-bottom: 44px;
  }
}

@media (max-width: 620px) {
  .outstaffing-gains__grid {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
  .gain {
    position: relative;
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 20px;
    align-items: center;
    text-align: left;
    padding: 24px 22px 26px;
    background: #ffffff;
    border: 1px solid rgba(16, 39, 70, 0.08);
    border-radius: 18px;
    box-shadow: 0 14px 38px rgba(10, 35, 70, 0.05);
    cursor: pointer;
    grid-template-areas:
      "icon title"
      "icon text";
  }
  /* Стрелка-индикатор раскрытия */
  .gain::after {
    content: "";
    position: absolute;
    top: 32px;
    right: 24px;
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(16, 39, 70, 0.4);
    border-bottom: 2px solid rgba(16, 39, 70, 0.4);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    pointer-events: none;
  }
  .gain.is-open::after {
    transform: rotate(-135deg);
  }
  .gain__icon {
    grid-area: icon;
    align-self: center;
    width: 56px;
    height: 56px;
    margin: 0;
  }
  .gain__title {
    grid-area: title;
    align-self: center;
    text-align: left;
    margin: 0;
    padding-right: 26px;
  }
  /* Описание скрыто по умолчанию, раскрывается по тапу */
  .gain__text {
    grid-area: text;
    align-self: start;
    text-align: left;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.32s ease,
      opacity 0.26s ease,
      margin-top 0.32s ease;
  }
  .gain.is-open .gain__title {
    align-self: end;
  }
  .gain.is-open .gain__text {
    max-height: 240px;
    opacity: 1;
    margin-top: 8px;
  }
}

/* === Outstaffing «Этапы работы» === */
.outstaffing-stages {
  background: #ffffff;
  padding: 84px 0 96px;
}

.outstaffing-stages__inner {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.outstaffing-stages__title {
  margin: 0 0 76px;
  text-align: center;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

/* Единый контейнер с бирюзовой рамкой; ячейки разделены вертикальными линиями */
.outstaffing-stages__grid {
  position: relative;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(39, 201, 218, 0.5);
  border-radius: 18px;
}

.stage {
  position: relative;
  padding: 54px 28px 40px;
}

.stage:not(:last-child) {
  border-right: 1px solid rgba(39, 201, 218, 0.26);
}

/* Кружок-номер по центру ячейки, сидит на верхней линии-рамке */
.stage__num {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #36cde0 0%, #1aa3c6 100%);
  color: #ffffff;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(39, 201, 218, 0.35);
}

/* Стрелка между этапами — остриём упирается в вертикальный разделитель */
.stage:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 9px;
  height: 9px;
  border-top: 2px solid rgba(39, 201, 218, 0.78);
  border-right: 2px solid rgba(39, 201, 218, 0.78);
  transform: translate(-2px, -50%) rotate(45deg);
}

.stage__card {
  width: 100%;
}

.stage__title {
  margin: 0 0 16px;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgba(16, 39, 70, 0.94);
}

.stage__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(16, 39, 70, 0.55);
}

/* На планшете/мобилке — отдельные карточки, кружок над карточкой по центру */
@media (max-width: 1024px) {
  .outstaffing-stages__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px 22px;
    margin-top: 0;
    border: none;
    border-radius: 0;
  }
  .stage {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .stage:not(:last-child) {
    border-right: none;
  }
  .stage:not(:last-child)::after {
    display: none;
  }
  .stage__num {
    position: static;
    transform: none;
    align-self: center;
    margin: 0 0 24px;
  }
  .stage__card {
    flex: 1;
    border: 1px solid rgba(39, 201, 218, 0.35);
    border-radius: 14px;
    padding: 26px 22px 28px;
  }
}

/* Мобилка: вертикальная timeline (как процесс на аутсорсинге), описание раскрывается по тапу */
@media (max-width: 760px) {
  .outstaffing-stages {
    padding: 64px 0 72px;
  }
  .outstaffing-stages__title {
    margin-bottom: 48px;
  }
  .outstaffing-stages__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    padding: 4px 0 0;
    border: none;
    border-radius: 0;
  }
  .stage {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
    align-items: start;
    text-align: left;
    padding: 6px 0 44px;
    cursor: pointer;
  }
  .stage:last-child {
    padding-bottom: 0;
  }
  /* Вертикальная бирюзовая линия от кружка к стрелке */
  .stage:not(:last-child)::before {
    content: "";
    display: block;
    position: absolute;
    left: 27px;
    top: 62px;
    bottom: 22px;
    width: 2px;
    background: #27c9da;
    transform: translateX(-1px);
    z-index: 0;
  }
  /* Стрелка вниз в конце линии */
  .stage:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    left: 27px;
    bottom: 8px;
    top: auto;
    right: auto;
    width: 0;
    height: 0;
    border-top: 7px solid #27c9da;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    transform: translateX(-50%);
    z-index: 0;
  }
  .stage__num {
    position: static;
    transform: none;
    grid-column: 1;
    width: 54px;
    height: 54px;
    margin: 0;
    justify-self: start;
    align-self: start;
    font-size: 1.25rem;
    z-index: 1;
  }
  .stage__card {
    grid-column: 2;
    flex: none;
    border: none;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }
  .stage__title {
    position: relative;
    margin: 9px 0 0;
    padding-right: 24px;
    text-align: left;
    font-size: 1.07rem;
    line-height: 1.25;
  }
  .stage__title br {
    display: none;
  }
  /* Стрелка-индикатор раскрытия */
  .stage__title::after {
    content: "";
    position: absolute;
    right: 2px;
    top: 0.45em;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(16, 39, 70, 0.4);
    border-bottom: 2px solid rgba(16, 39, 70, 0.4);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  .stage.is-open .stage__title::after {
    transform: rotate(-135deg);
  }
  /* Описание скрыто по умолчанию, раскрывается по тапу */
  .stage__text {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.32s ease,
      opacity 0.26s ease,
      margin-top 0.32s ease;
  }
  .stage.is-open .stage__text {
    max-height: 220px;
    opacity: 1;
    margin-top: 8px;
  }
}

/* Свежий градиент цифр: тёмный сверху → бирюзовый снизу */
.outsourcing-trust--four .outsourcing-trust__num,
.outsourcing-trust--four .outsourcing-trust__unit {
  background: linear-gradient(135deg, #2b5a91 0%, #1eb0d4 55%, #34d0df 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

/* Trust (аутстаффинг): поэлементное появление по 75% видимости экрана — на всех экранах.
   Scope на --four, чтобы не задеть аналогичный блок на аутсорсинге. */
.outsourcing-trust--four .outsourcing-trust__title,
.outsourcing-trust--four .outsourcing-trust__value,
.outsourcing-trust--four .outsourcing-trust__label {
  transition-delay: 0ms !important;
}
/* Блокируем секционный каскад: нераскрытые элементы остаются скрытыми даже при .is-revealed */
.outsourcing-trust--four.is-revealed .outsourcing-trust__item:not(.is-revealed-card) .outsourcing-trust__value {
  opacity: 0;
}
.outsourcing-trust--four.is-revealed .outsourcing-trust__item:not(.is-revealed-card) .outsourcing-trust__label {
  opacity: 0;
  transform: translateY(8px);
}
.outsourcing-trust--four.is-revealed .outsourcing-trust__title:not(.is-revealed-card) {
  opacity: 0;
  transform: translateY(16px);
}
/* Показ при достижении 75% экрана */
.outsourcing-trust--four .outsourcing-trust__item.is-revealed-card .outsourcing-trust__value {
  opacity: 1;
}
.outsourcing-trust--four .outsourcing-trust__item.is-revealed-card .outsourcing-trust__label {
  opacity: 1;
  transform: none;
}
.outsourcing-trust--four .outsourcing-trust__title.is-revealed-card {
  opacity: 1;
  transform: none;
}

/* === Анимация блока «Вам нужен аутстаффинг, если» (по 75% экрана) === */
/* Заголовок-текст: появляется первым */
.outstaffing-need__title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms cubic-bezier(.2, .72, .2, 1),
    transform 520ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}
/* Линии: выезжают наружу от текста, после заголовка */
.outstaffing-need__title::before {
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 520ms cubic-bezier(.2, .72, .2, 1);
}
.outstaffing-need__title::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 520ms cubic-bezier(.2, .72, .2, 1);
}
.outstaffing-need.is-revealed .outstaffing-need__title span {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}
.outstaffing-need.is-revealed .outstaffing-need__title::before,
.outstaffing-need.is-revealed .outstaffing-need__title::after {
  transform: scaleX(1);
  transition-delay: 320ms;
}

/* Карточки: появляются по одной (opacity, чтобы не сбить scale у акцентной) */
.need-card {
  opacity: 0;
  transition: opacity 820ms cubic-bezier(.2, .72, .2, 1);
}
.need-card.is-revealed-card {
  opacity: 1;
}
.need-card.is-revealed-card:nth-child(1) { transition-delay: 0ms; }
.need-card.is-revealed-card:nth-child(2) { transition-delay: 150ms; }
.need-card.is-revealed-card:nth-child(3) { transition-delay: 300ms; }
.need-card.is-revealed-card:nth-child(4) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  .outstaffing-need__title span { opacity: 1; transform: none; }
  .outstaffing-need__title::before,
  .outstaffing-need__title::after { transform: scaleX(1); }
  .need-card { opacity: 1; }
}

/* === Анимация блока «Что вы получаете» (по 75% экрана) === */
.outstaffing-gains__title {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms cubic-bezier(.2, .72, .2, 1),
    transform 520ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}
.outstaffing-gains__title.is-revealed-card {
  opacity: 1;
  transform: none;
}
.gain {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 780ms cubic-bezier(.2, .72, .2, 1),
    transform 780ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}
.gain.is-revealed-card {
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}
/* На десктопе/планшете весь ряд пересекает 75% разом — стаггер + базовая задержка,
   чтобы заголовок успел появиться раньше карточек */
@media (min-width: 761px) {
  .gain.is-revealed-card:nth-child(1) { transition-delay: 260ms; }
  .gain.is-revealed-card:nth-child(2) { transition-delay: 400ms; }
  .gain.is-revealed-card:nth-child(3) { transition-delay: 540ms; }
  .gain.is-revealed-card:nth-child(4) { transition-delay: 680ms; }
  .gain.is-revealed-card:nth-child(5) { transition-delay: 820ms; }
}

@media (prefers-reduced-motion: reduce) {
  .outstaffing-gains__title,
  .gain {
    opacity: 1;
    transform: none;
  }
}

/* === Анимация «Этапы работы»: сначала заголовок, затем каждый шаг по своему 75% === */
.outstaffing-stages__title {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms cubic-bezier(.2, .72, .2, 1),
    transform 520ms cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}
.outstaffing-stages__title.is-revealed-card {
  opacity: 1;
  transform: none;
}

/* Карточка шага (заголовок + подзаголовок) */
.stage__card {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 460ms cubic-bezier(.2, .72, .2, 1),
    transform 460ms cubic-bezier(.2, .72, .2, 1);
}
/* Внутри шага строгая последовательность: кружок (0) → карточка (200ms) → стрелка (400ms) */
.stage.is-step-in .stage__card {
  opacity: 1;
  transform: none;
  transition-delay: 200ms;
}

@media (min-width: 761px) {
  .outstaffing-stages .stage__num {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
    transition:
      opacity 280ms cubic-bezier(.2, .72, .2, 1),
      transform 420ms cubic-bezier(.34, 1.56, .64, 1);
    will-change: opacity, transform;
  }
  .stage.is-step-in .stage__num {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition-delay: 0ms;
  }
  .outstaffing-stages .stage:not(:last-child)::after {
    opacity: 0;
    transform: translate(-2px, -50%) rotate(45deg) scale(0.2);
    transition:
      opacity 260ms cubic-bezier(.2, .72, .2, 1),
      transform 320ms cubic-bezier(.34, 1.56, .64, 1);
    will-change: opacity, transform;
  }
  .stage.is-step-in:not(:last-child)::after {
    opacity: 1;
    transform: translate(-2px, -50%) rotate(45deg) scale(1);
    transition-delay: 400ms;
  }
}

@media (max-width: 760px) {
  .outstaffing-stages .stage__num {
    opacity: 0;
    transform: scale(0.3);
    transition:
      opacity 280ms cubic-bezier(.2, .72, .2, 1),
      transform 380ms cubic-bezier(.34, 1.56, .64, 1);
  }
  .stage.is-step-in .stage__num {
    opacity: 1;
    transform: none;
    transition-delay: 0ms;
  }
  .outstaffing-stages .stage:not(:last-child)::before,
  .outstaffing-stages .stage:not(:last-child)::after {
    opacity: 0;
    transition: opacity 320ms cubic-bezier(.2, .72, .2, 1);
  }
  .stage.is-step-in:not(:last-child)::before,
  .stage.is-step-in:not(:last-child)::after {
    opacity: 1;
    transition-delay: 400ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  .outstaffing-stages__title,
  .outstaffing-stages .stage__num,
  .outstaffing-stages .stage__card,
  .outstaffing-stages .stage:not(:last-child)::before,
  .outstaffing-stages .stage:not(:last-child)::after {
    opacity: 1 !important;
    transition: none !important;
  }
  .outstaffing-stages__title,
  .outstaffing-stages .stage__card {
    transform: none !important;
  }
}
/* reduced-motion: возвращаем правильный transform кружка/стрелки по брейкпоинтам */
@media (prefers-reduced-motion: reduce) and (min-width: 761px) {
  .outstaffing-stages .stage__num {
    transform: translate(-50%, -50%) scale(1) !important;
  }
  .outstaffing-stages .stage:not(:last-child)::after {
    transform: translate(-2px, -50%) rotate(45deg) !important;
  }
}
@media (prefers-reduced-motion: reduce) and (max-width: 760px) {
  .outstaffing-stages .stage__num {
    transform: none !important;
  }
}

/* === «Этапы работы»: рисующийся SVG-контур рамки (ПК ≥1025px) === */
.outstaffing-stages__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}
.outstaffing-stages__frame-path {
  fill: none;
  stroke: rgba(39, 201, 218, 0.5);
  stroke-width: 1.5;
}
@media (max-width: 1024px) {
  .outstaffing-stages__frame {
    display: none;
  }
}
@media (min-width: 1025px) {
  /* Когда работает JS-рисование — прячем статичную рамку и разделители, чтобы они «рисовались» */
  .outstaffing-stages.is-frame-ready .outstaffing-stages__grid {
    border-color: transparent;
  }
  .outstaffing-stages.is-frame-ready .stage {
    z-index: 1;
  }
  .outstaffing-stages.is-frame-ready .stage:not(:last-child) {
    border-right-color: transparent;
    transition: border-right-color 420ms ease;
  }
  .outstaffing-stages.is-frame-ready .stage.is-step-in:not(:last-child) {
    border-right-color: rgba(39, 201, 218, 0.26);
  }
}

/* === Промо-CTA «Скидка» (аутстаффинг, после блока «Результат») === */
.outstaffing-promo {
  background: #ffffff;
  padding: 8px 24px 24px;
}
.outstaffing-promo__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 44px;
  border-radius: 20px;
  background: linear-gradient(120deg, #143256 0%, #0c1d33 100%);
  box-shadow: 0 26px 60px rgba(10, 35, 70, 0.20);
}
.outstaffing-promo__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.outstaffing-promo__title {
  margin: 0;
  font-family: "Inter Tight", "Segoe UI Variable Text", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.outstaffing-promo__title span {
  color: #34d0df;
}
.outstaffing-promo__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
  color: rgba(220, 232, 246, 0.78);
}
.outstaffing-promo__button {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .outstaffing-promo {
    padding: 4px 20px 20px;
  }
  .outstaffing-promo__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 24px;
  }
  .outstaffing-promo__button {
    width: 100%;
    text-align: center;
  }
}

/* Промо-CTA: появление при скролле */
.outstaffing-promo__inner {
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  transition:
    opacity 0.6s cubic-bezier(.2, .72, .2, 1),
    transform 0.6s cubic-bezier(.2, .72, .2, 1);
  will-change: opacity, transform;
}
.outstaffing-promo__inner.is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .outstaffing-promo__inner {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* «Результат» (аутстаффинг): боковые линии эйброу с кроссфейдом к внешнему краю */
.page-outstaffing .result-banner__eyebrow::before {
  background: linear-gradient(90deg, rgba(39, 201, 218, 0) 0%, #27c9da 100%);
}
.page-outstaffing .result-banner__eyebrow::after {
  background: linear-gradient(90deg, #27c9da 0%, rgba(39, 201, 218, 0) 100%);
}
