:root {
  --c-dark: #16181f;
  --c-dark-2: #1e2029;
  --c-dark-3: #272a36;
  --c-blue: #1f86f5;
  --c-blue-deep: #0f6fd8;
  --c-blue-soft: #e8f2fe;
  --c-teal: #3fd9b5;
  --c-teal-deep: #17a584;
  --c-teal-dark: #0f8a6f;
  --c-light: #f1f4f9;
  --c-white: #ffffff;
  --c-text: #16181f;
  --c-muted: #62677a;
  --c-muted-light: #a5a9b8;
  --c-border: #e3e7ef;
  --font: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Mrs Saint Delafield", "Brush Script MT", cursive;
  --radius: 4px;
  --shadow: 0 14px 40px rgba(22, 24, 31, 0.08);
  --shadow-hover: 0 22px 50px rgba(22, 24, 31, 0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1170px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-muted);
  background: var(--c-white);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--c-text);
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

button {
  font: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--c-teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--c-blue);
  color: var(--c-white);
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 32px);
  margin: 0 auto;
  padding: 0 16px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--c-blue);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.eyebrow--light::before {
  background: var(--c-teal);
}

.section-title {
  font-size: clamp(28px, 4.2vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.section-title--light {
  color: var(--c-white);
}

.section-title--center {
  text-align: center;
}

.section-head {
  margin-bottom: 40px;
}

.section-head--center {
  text-align: center;
}

.section-head--split {
  display: grid;
  gap: 16px;
}

.section-head__text {
  max-width: 460px;
}

.link {
  color: var(--c-blue);
  font-weight: 600;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat;
  transition: background-size 0.3s var(--ease);
}

.link:hover {
  background-size: 100% 2px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border: 0;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.button:hover::before {
  transform: scale(1);
  opacity: 1;
}

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

.button--primary {
  background: var(--c-blue);
  color: var(--c-white);
  box-shadow: 0 10px 24px rgba(31, 134, 245, 0.35);
}

.button--primary::before {
  background: var(--c-blue-deep);
}

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

.button--dark::before {
  background: var(--c-blue);
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dots__item {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease);
}

.dots__item.is-active {
  background: var(--c-white);
  transform: scale(1.25);
}

.dots--dark .dots__item {
  background: #c9d6ea;
}

.dots--dark .dots__item.is-active {
  background: var(--c-blue);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
}

.header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 18px;
  transform: translateY(100%);
  background: linear-gradient(rgba(22, 24, 31, 0.1), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}

.header.is-scrolled::after {
  opacity: 1;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-blue);
}

.logo__mark {
  width: 32px;
  height: 32px;
}

.logo__text {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--c-text);
}

.logo--light .logo__text {
  color: var(--c-white);
}

.nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 16px 32px;
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0s 0.3s;
}

.nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.nav__list {
  display: grid;
}

.nav__link {
  position: relative;
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
}

.nav__link.is-current {
  color: var(--c-blue);
}

.nav__phone {
  display: inline-block;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-blue);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-call {
  display: none;
  align-items: center;
  gap: 12px;
  color: var(--c-text);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
}

.header-call__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-blue-soft);
  color: var(--c-blue);
}

.header-call__icon svg,
.icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-call__text small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--c-text);
  transition: color 0.2s, transform 0.3s var(--ease);
}

.icon-button:hover {
  color: var(--c-blue);
  transform: translateY(-2px);
}

.burger {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--c-blue);
}

.burger__line {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.burger__line:nth-child(1) {
  top: 15px;
}

.burger__line:nth-child(2) {
  top: 21px;
}

.burger__line:nth-child(3) {
  top: 27px;
}

.burger[aria-expanded="true"] .burger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger[aria-expanded="true"] .burger__line:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] .burger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--c-dark);
  color: var(--c-white);
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 40%, rgba(22, 24, 31, 0.35), rgba(22, 24, 31, 0.8) 70%),
    linear-gradient(180deg, rgba(22, 24, 31, 0.55), rgba(22, 24, 31, 0.9));
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken-burns 24s var(--ease) infinite alternate;
}

.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
}

.hero__glow--one {
  width: 380px;
  height: 380px;
  left: -120px;
  bottom: -160px;
  background: var(--c-blue);
  animation: drift 14s ease-in-out infinite alternate;
}

.hero__glow--two {
  width: 300px;
  height: 300px;
  right: -80px;
  top: 10%;
  background: var(--c-teal);
  opacity: 0.22;
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.hero__inner {
  padding-top: 96px;
  padding-bottom: 120px;
}

.hero__slides {
  display: grid;
  text-align: center;
}

.hero__slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.js .hero__slide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), visibility 0s 0.6s;
}

.js .hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.6s var(--ease) 0.1s, transform 0.6s var(--ease) 0.1s;
}

:root:not(.js) .hero__slide:not(.is-active) {
  visibility: hidden;
}

.hero__kicker {
  font-size: clamp(34px, 8vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero__title {
  margin-top: 6px;
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-white);
}

.hero__underline {
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 55%, #bfe0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__underline::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 4px;
  border-radius: 2px;
  background: var(--c-white);
}

.hero__lead {
  max-width: 520px;
  margin: 22px auto 32px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--c-white);
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.hero__arrow svg,
.round-button svg,
.sector__label svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__arrow:hover {
  border-color: var(--c-white);
  transform: scale(1.08);
}

.hero__arrow--prev {
  left: 32px;
}

.hero__arrow--next {
  right: 32px;
}

.hero__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
}

.intro {
  position: relative;
  background: var(--c-light);
}

.intro__band {
  padding: 80px 0 150px;
  background:
    radial-gradient(ellipse 50% 80% at 90% 0%, rgba(63, 217, 181, 0.22), transparent 60%),
    linear-gradient(135deg, #1f86f5, #1575e3);
}

.intro__head {
  display: grid;
  gap: 20px;
}

.intro__text {
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
}

.pillars {
  display: grid;
  gap: 24px;
  margin-top: -100px;
}

.pillar {
  background: var(--c-white);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pillar__media {
  overflow: hidden;
  border-bottom: 4px solid var(--c-blue);
  aspect-ratio: 3 / 2;
  background: var(--c-dark);
}

.pillar__media img,
.product__media img,
.insight__media img,
.member__media img,
.sector__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.pillar:hover .pillar__media img,
.product:hover .product__media img,
.insight:hover .insight__media img,
.member:hover .member__media img,
.sector:hover .sector__image {
  transform: scale(1.06);
}

.pillar__body {
  padding: 24px 26px 30px;
}

.pillar__title {
  font-size: 19px;
  margin-bottom: 10px;
}

.pillar__text {
  font-size: 15px;
}

.intro__note {
  padding: 36px 0 72px;
  text-align: center;
  font-size: 15px;
}

.about {
  padding: 100px 0;
  background: var(--c-white);
}

.about__grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.about__media {
  position: relative;
  max-width: 480px;
  margin-right: 28px;
}

.about__frame {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--c-dark);
}

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

.about__bar {
  position: absolute;
  top: 0;
  right: -22px;
  width: 8px;
  height: 58%;
  background: linear-gradient(180deg, var(--c-teal), rgba(63, 217, 181, 0.2));
}

.about__badge {
  position: absolute;
  right: -28px;
  bottom: -28px;
  display: grid;
  gap: 10px;
  width: 170px;
  padding: 22px 20px;
  background: var(--c-white);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--c-text);
}

.about__badge svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--c-blue);
  stroke-width: 2;
  stroke-linejoin: round;
}

.about__rule {
  display: block;
  width: 60px;
  height: 3px;
  margin: 22px 0;
  background: var(--c-teal);
}

.about__text {
  max-width: 540px;
}

.about__card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
}

.about__card img {
  width: 132px;
  height: 64px;
  object-fit: cover;
  flex-shrink: 0;
}

.about__card p {
  font-size: 14px;
  line-height: 1.4;
}

.about__card strong {
  display: block;
  color: var(--c-text);
  font-size: 15px;
}

.about__card em {
  font-style: normal;
  font-weight: 700;
  color: var(--c-blue);
}

.about__sign {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.about__signature {
  font-family: var(--font-script);
  font-size: 44px;
  line-height: 1;
  color: var(--c-blue);
}

.about__sign-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
}

.focus {
  position: relative;
  background: linear-gradient(180deg, var(--c-dark) 0, var(--c-dark) 72%, var(--c-white) 72%);
}

.focus__band {
  padding: 88px 0 70px;
  background:
    radial-gradient(ellipse 40% 60% at 50% 0%, rgba(31, 134, 245, 0.25), transparent 70%);
}

.focus__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  max-width: 560px;
}

.focus__icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: var(--c-teal);
  color: var(--c-dark);
  box-shadow: 0 0 0 10px rgba(63, 217, 181, 0.15);
  animation: pulse 3s ease-in-out infinite;
}

.focus__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.focus__row {
  display: grid;
  background: var(--c-white);
  box-shadow: var(--shadow);
}

.focus__lead {
  padding: 32px 28px;
  background: linear-gradient(180deg, var(--c-blue) 0 68%, var(--c-dark-2) 68%);
}

.focus__lead h3 {
  max-width: 180px;
  color: var(--c-white);
  font-size: 20px;
}

.feature {
  padding: 32px 28px;
  border-top: 1px solid var(--c-border);
  transition: transform 0.4s var(--ease);
}

.feature:hover {
  transform: translateY(-4px);
}

.feature__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--c-blue-soft);
  color: var(--c-blue);
}

.feature__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature__title {
  margin-bottom: 8px;
  font-size: 17px;
}

.feature__text {
  font-size: 14px;
}

.sectors {
  padding: 96px 0 0;
}

.sectors__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.sectors__track::-webkit-scrollbar {
  display: none;
}

.sector {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-dark);
  scroll-snap-align: start;
}

.sector::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22, 24, 31, 0.55));
  pointer-events: none;
}

.sector__label {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  background: var(--c-white);
  color: var(--c-text);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.sector__label small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  transition: color 0.3s var(--ease);
}

.sector__label svg {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.sector--featured .sector__label,
.sector:hover .sector__label {
  background: var(--c-blue);
  color: var(--c-white);
}

.sector--featured .sector__label small,
.sector:hover .sector__label small {
  color: rgba(255, 255, 255, 0.8);
}

.sector:hover .sector__label svg {
  transform: translateX(4px);
}

.sectors .dots {
  margin-top: 28px;
}

.divider {
  margin: 72px 0 0;
  border: 0;
  border-top: 1px solid var(--c-border);
}

.pricing {
  padding: 96px 0;
  background: var(--c-white);
}

.catalog {
  display: grid;
  gap: 24px;
}

.product {
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product__media {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-bottom: 4px solid var(--c-blue);
  background: var(--c-light);
}

.product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 26px;
}

.product__title {
  margin-bottom: 8px;
  font-size: 19px;
}

.product__text {
  flex: 1;
  font-size: 15px;
}

.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
}

.product__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-blue);
  line-height: 1;
}

.product__price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
}

.product__link {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
  padding-bottom: 2px;
}

.product__link::after,
.insight__link::after,
.footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--c-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.product__link:hover::after,
.insight__link:hover::after,
.footer__links a:hover::after {
  transform: scaleX(1);
}

.formats {
  position: relative;
  overflow: hidden;
  padding: 96px 0 200px;
  background: var(--c-dark);
}

.formats__circuit {
  position: absolute;
  right: -60px;
  bottom: 60px;
  width: 640px;
  opacity: 0.35;
  fill: none;
  stroke: var(--c-blue);
  stroke-width: 1.5;
  pointer-events: none;
}

.formats__circuit circle {
  fill: var(--c-blue);
}

.formats__grid {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

.formats__text {
  margin: 20px 0 26px;
  max-width: 520px;
  color: var(--c-muted-light);
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--c-white);
  font-size: 15px;
  font-weight: 500;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--c-teal) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5l2.5 2.5L14 7.5' fill='none' stroke='%2316181f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% no-repeat;
}

.tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 14px;
  text-align: center;
  background: var(--c-dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
}

.tile:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 134, 245, 0.6);
  box-shadow: 0 0 0 1px rgba(31, 134, 245, 0.4), 0 18px 40px rgba(31, 134, 245, 0.2);
}

.tile__icon {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--c-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile__title {
  color: var(--c-white);
  font-size: 15px;
  font-weight: 600;
}

.tile__price {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-teal);
}

.team {
  position: relative;
  margin-top: -130px;
  padding-bottom: 96px;
}

.team__box {
  padding: 64px 20px 20px;
  background: var(--c-white);
}

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

.member {
  text-align: center;
}

.member__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin-bottom: 16px;
  background: var(--c-dark);
}

.member__hover {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  background: var(--c-dark);
  color: var(--c-white);
  font-size: 13px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.member:hover .member__hover {
  opacity: 1;
  transform: none;
}

.member__role {
  font-size: 16px;
}

.member__meta {
  font-size: 13px;
}

.process {
  display: grid;
  background: var(--c-light);
}

.process__media {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--c-dark);
}

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

.process__panel {
  padding: 64px 16px;
  background:
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(63, 217, 181, 0.25), transparent 70%),
    linear-gradient(135deg, #1f86f5, #1473df);
}

.process__content {
  max-width: 520px;
}

.process__text {
  margin: 18px 0 30px;
  color: rgba(255, 255, 255, 0.85);
}

.steps {
  display: grid;
  gap: 16px;
}

.step__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--c-white);
  font-size: 14px;
  font-weight: 600;
}

.step__bar {
  display: block;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.step__bar span {
  display: block;
  height: 100%;
  background: var(--c-teal);
  transform-origin: left;
  transform: scaleX(var(--p));
}

.js .step:not(.is-visible) .step__bar span {
  transform: scaleX(0);
}

.js .step .step__bar span {
  transition: transform 0.6s var(--ease) calc(var(--delay, 0ms) + 200ms);
}

.contact {
  position: relative;
  padding: 120px 0;
  background: var(--c-light);
  overflow: hidden;
}

.contact__map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, #cfd7e4 1.2px, transparent 1.4px) 0 0 / 18px 18px,
    linear-gradient(180deg, var(--c-light), #e9eef6);
}

.contact__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #b9c7dc;
  stroke-width: 2;
  stroke-dasharray: 6 8;
}

.contact__pin {
  position: absolute;
  top: 30%;
  right: 22%;
  width: 40px;
  height: 40px;
  color: var(--c-blue);
}

.contact__pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 40px;
  height: 12px;
  margin-left: -20px;
  border-radius: 50%;
  background: rgba(31, 134, 245, 0.35);
  animation: ping 2.4s ease-out infinite;
}

.contact__pin svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
  filter: drop-shadow(0 6px 10px rgba(31, 134, 245, 0.35));
}

.contact__card {
  position: relative;
  max-width: 520px;
  padding: 36px 28px;
  background: var(--c-white);
  box-shadow: var(--shadow);
}

.contact__title {
  font-size: clamp(24px, 3.4vw, 32px);
  margin-bottom: 12px;
}

.contact__text {
  margin-bottom: 22px;
}

.contact__list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--c-text);
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact__list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  fill: none;
  stroke: var(--c-blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insights {
  padding: 100px 0;
  background: var(--c-white);
}

.insights__grid {
  display: grid;
  gap: 40px;
}

.insights__text {
  margin: 18px 0 28px;
  max-width: 360px;
}

.insights__arrows {
  display: flex;
  gap: 12px;
}

.round-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid var(--c-blue);
  border-radius: 50%;
  background: transparent;
  color: var(--c-blue);
  transition: transform 0.3s var(--ease), background-color 0.3s, color 0.3s;
}

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

.round-button--filled,
.round-button:hover {
  background: var(--c-blue);
  color: var(--c-white);
}

.insights__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.insights__track::-webkit-scrollbar {
  display: none;
}

.insight {
  scroll-snap-align: start;
}

.insight__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  background: var(--c-dark);
}

.insight__badge {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  min-width: 58px;
  height: 52px;
  padding: 0 10px;
  background: var(--c-white);
  color: var(--c-text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.insight__meta {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-blue);
}

.insight__title {
  margin-bottom: 8px;
  font-size: 18px;
}

.insight__text {
  font-size: 14px;
  margin-bottom: 14px;
}

.insight__link {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 2px;
}

.cta {
  position: relative;
  background: linear-gradient(180deg, var(--c-white) 50%, var(--c-dark) 50%);
}

.cta__box {
  display: grid;
  gap: 24px;
  justify-items: start;
  padding: 44px 28px;
  background:
    radial-gradient(ellipse 50% 90% at 100% 0%, rgba(63, 217, 181, 0.55), transparent 70%),
    linear-gradient(120deg, var(--c-teal-deep), var(--c-teal-dark));
  box-shadow: 0 24px 60px rgba(44, 196, 161, 0.3);
}

.cta__title {
  max-width: 520px;
  font-size: clamp(24px, 3.6vw, 34px);
  color: var(--c-white);
}

.footer {
  padding: 72px 0 0;
  background: var(--c-dark);
  color: var(--c-muted-light);
  font-size: 15px;
}

.footer__grid {
  display: grid;
  gap: 40px;
  padding-bottom: 56px;
}

.footer__about p {
  margin-top: 20px;
  max-width: 320px;
}

.footer__title {
  margin-bottom: 18px;
  color: var(--c-white);
  font-size: 18px;
}

.footer__links {
  display: grid;
  gap: 8px;
}

.footer__links a {
  position: relative;
  display: inline-block;
  transition: color 0.2s;
}

.footer__links a::after {
  background: var(--c-teal);
  height: 1px;
}

.footer__links a:hover,
.footer__contacts a:hover,
.footer__bottom a:hover {
  color: var(--c-white);
}

.footer__contacts {
  display: grid;
  gap: 10px;
}

.footer__contacts a {
  color: var(--c-white);
  transition: color 0.2s;
}

.footer__contacts li:nth-child(2) a {
  color: var(--c-teal);
}

.footer__mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  padding: 6px 6px 6px 16px;
  background: var(--c-white);
  border-radius: var(--radius);
  color: var(--c-muted);
  font-size: 14px;
  overflow: hidden;
}

.footer__mail span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer__mail-button {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--c-blue);
  color: var(--c-white);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease);
}

.footer__mail:hover .footer__mail-button {
  transform: translateX(-2px) scale(1.04);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 20px;
  background: var(--c-dark-2);
  font-size: 13px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease) var(--delay, 0ms), transform 0.6s var(--ease) var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .pillar.reveal.is-visible:hover,
.js .product.reveal.is-visible:hover {
  transform: translateY(-6px);
  transition-delay: 0ms;
}

.js .tile.reveal.is-visible:hover {
  transform: translateY(-5px);
  transition-delay: 0ms;
}

.policy-hero {
  position: relative;
  padding: 80px 0 72px;
  background:
    radial-gradient(ellipse 50% 90% at 85% 0%, rgba(63, 217, 181, 0.25), transparent 60%),
    linear-gradient(135deg, #1f86f5, #1473df);
  color: rgba(255, 255, 255, 0.85);
}

.policy-hero h1 {
  color: var(--c-white);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 10px;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  height: 3px;
  background: var(--c-teal);
  transform-origin: left;
  transform: scaleX(0);
}

.policy {
  padding: 64px 0 96px;
}

.policy__grid {
  display: grid;
  gap: 40px;
}

.toc {
  align-self: start;
  padding: 24px;
  background: var(--c-light);
  border-left: 4px solid var(--c-blue);
}

.toc h2 {
  font-size: 17px;
  margin-bottom: 12px;
}

.toc ol {
  display: grid;
  gap: 6px;
  counter-reset: toc;
  font-size: 14px;
}

.toc li {
  counter-increment: toc;
}

.toc a {
  display: inline-block;
  color: var(--c-text);
  transition: color 0.2s;
}

.toc a::before {
  content: counter(toc) ". ";
  color: var(--c-blue);
  font-weight: 700;
}

.toc a:hover {
  color: var(--c-blue);
}

.policy__body {
  max-width: 760px;
  color: #454a5c;
}

.policy__body section + section {
  margin-top: 44px;
}

.policy__body h2 {
  font-size: 24px;
  margin-bottom: 14px;
}

.policy__body h3 {
  font-size: 17px;
  margin: 20px 0 8px;
}

.policy__body p + p,
.policy__body p + ul,
.policy__body ul + p {
  margin-top: 12px;
}

.policy__body ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.policy__body li {
  position: relative;
  padding-left: 22px;
}

.policy__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-blue);
}

.policy__body a {
  color: var(--c-blue);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.policy__table {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  font-size: 14px;
}

.policy__table th,
.policy__table td {
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  text-align: left;
  vertical-align: top;
}

.policy__table th {
  background: var(--c-light);
  color: var(--c-text);
}

.policy__table-wrap {
  overflow-x: auto;
}

@keyframes ken-burns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

@keyframes drift {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(60px, -40px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes ping {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (min-width: 600px) {
  .pillars,
  .catalog {
    grid-template-columns: repeat(2, 1fr);
  }

  .sectors__track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .insights__track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

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

  .feature {
    border-top: 0;
    border-left: 1px solid var(--c-border);
  }

  .feature:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--c-border);
  }

  .feature:nth-child(4) {
    border-top: 1px solid var(--c-border);
  }

  .team__box {
    padding: 64px 32px 32px;
  }

  .cta__box {
    padding: 48px 44px;
  }
}

@media (min-width: 768px) {
  .hero__inner {
    padding-top: 130px;
    padding-bottom: 150px;
  }

  .hero__arrow {
    display: grid;
  }

  .hero__slide {
    padding: 0 60px;
  }

  .intro__head,
  .section-head--split {
    grid-template-columns: 1.1fr 1fr;
    align-items: end;
    gap: 48px;
  }

  .team__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .cta__box {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

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

  .contact__card {
    padding: 44px 40px;
  }

  .policy__grid {
    grid-template-columns: 260px 1fr;
    gap: 56px;
  }

  .toc {
    position: sticky;
    top: calc(var(--header-h) + 24px);
  }
}

@media (min-width: 1024px) {
  :root {
    --header-h: 84px;
  }

  .burger,
  .nav__phone {
    display: none;
  }

  .nav {
    position: static;
    padding: 0;
    background: none;
    border: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: visible;
  }

  .nav__list {
    display: flex;
    gap: 34px;
  }

  .nav__link {
    padding: 8px 0;
    font-size: 15px;
    font-weight: 500;
    border: 0;
  }

  .nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--c-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }

  .nav__link:hover::after,
  .nav__link.is-current::after {
    transform: scaleX(1);
  }

  .header-call {
    display: flex;
  }

  .hero__inner {
    padding-top: 150px;
    padding-bottom: 170px;
  }

  .pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .catalog {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .about__grid {
    grid-template-columns: 0.95fr 1fr;
    gap: 90px;
  }

  .focus__row {
    grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr;
  }

  .focus__lead {
    padding: 36px 30px;
  }

  .feature,
  .feature:nth-child(3),
  .feature:nth-child(4) {
    border-top: 0;
    border-left: 1px solid var(--c-border);
    padding: 36px 30px;
  }

  .focus__lead + .feature {
    border-left: 0;
  }

  .sectors__track {
    grid-auto-columns: calc((100% - 60px) / 4);
  }

  .formats__grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
  }

  .tiles {
    gap: 18px;
  }

  .tile {
    padding: 34px 18px;
  }

  .team__box {
    padding: 72px 70px 40px;
  }

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

  .process__media {
    aspect-ratio: auto;
  }

  .process__panel {
    padding: 96px 64px;
  }

  .insights__grid {
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
  }

  .insights__track {
    grid-auto-columns: calc((100% - 48px) / 3);
  }

  .cta__box {
    padding: 56px 70px;
  }

  .footer__grid {
    grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr;
    gap: 48px;
  }
}

@media (min-width: 1280px) {
  .hero__arrow--prev {
    left: 48px;
  }

  .hero__arrow--next {
    right: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

  .hero__image,
  .hero__glow,
  .focus__icon,
  .contact__pin::before {
    animation: none;
  }
}
