* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.u-nowrap {
  white-space: nowrap;
}

.page-shell {
  width: 100%;
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  background: var(--bg);
}

.page-shell::before,
.page-shell::after {
  content: none;
}

.page-shell > * {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 80;
  transition: background-color 0.45s var(--ease);
  background: transparent;
}

.site-header.is-scrolled,
.site-header.mega-open {
  background: var(--bg);
}

.site-header__inner {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.site-header__inner .site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  transition: none;
}

.brand__logo {
  display: block;
  width: clamp(132px, 12.5vw, 184px);
  height: auto;
  object-fit: contain;
  filter: grayscale(1) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
  transform-origin: left center;
  transition: none;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s var(--ease),
    opacity 0.2s var(--ease);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.site-nav__chevron {
  display: inline-flex;
  align-items: center;
  opacity: 0.72;
  transition:
    transform 0.3s var(--ease),
    opacity 0.2s var(--ease);
  flex-shrink: 0;
}

.site-nav__chevron svg {
  display: block;
  width: 10px;
  height: 6px;
}

.site-nav__link:hover .site-nav__chevron {
  opacity: 1;
}

.mega-wrap {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 199;
  pointer-events: none;
}

.mega-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: auto;
}

.mega {
  --mega-motion-duration: 1.25s;
  --mega-switch-duration: 1.25s;
  --mega-content-duration: var(--mega-motion-duration);
  --mega-motion-ease: cubic-bezier(0.18, 0.92, 0.16, 1);
  --mega-panel-radius: 8px;
  --mega-inner-radius: 6px;
  position: absolute;
  top: 20px;
  left: 50%;
  width: var(--mega-w, 860px);
  max-width: calc(100vw - 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, -8px, 0);
  transform-origin: top center;
  transition:
    opacity 0.56s ease,
    transform var(--mega-motion-duration) var(--mega-motion-ease),
    visibility 0s linear var(--mega-motion-duration);
  will-change: opacity, transform;
}

.mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
  transition-delay: 0s;
}

.mega__arrow {
  position: absolute;
  top: -7px;
  left: var(--arrow-left, 40px);
  width: 16px;
  height: 8px;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, -4px, 0);
  transition:
    opacity 0.48s ease,
    transform 0.54s var(--mega-motion-ease);
}

.mega.is-open .mega__arrow {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mega__arrow::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  top: 4px;
  left: 2px;
  transform: rotate(45deg);
}

.mega__panel {
  background: var(--bg);
  border-radius: var(--mega-panel-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75);
  padding: 46px 52px 46px;
  overflow: hidden;
  opacity: 0;
  clip-path: inset(0 0 100% 0 round var(--mega-panel-radius));
  transform: translate3d(0, -6px, 0);
  transform-origin: top center;
  transition:
    opacity 0.58s ease,
    clip-path var(--mega-motion-duration) var(--mega-motion-ease),
    transform var(--mega-motion-duration) var(--mega-motion-ease);
  will-change: opacity, clip-path, transform;
}

.mega.is-open .mega__panel {
  opacity: 1;
  clip-path: inset(0 0 0 0 round var(--mega-panel-radius));
  transform: translate3d(0, 0, 0);
}

.mega.is-switching {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform var(--mega-switch-duration) var(--mega-motion-ease),
    opacity 0s linear,
    visibility 0s linear;
}

.mega.is-switch-source {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: none;
  transition: none;
}

.mega.is-switching .mega__arrow {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.mega.is-switching .mega__panel {
  opacity: 1;
  clip-path: inset(0 0 0 0 round var(--mega-panel-radius));
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0s linear,
    clip-path 0s linear,
    transform 0s linear;
}

.mega__services,
.mega__insight {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
  transition:
    opacity var(--mega-content-duration) var(--mega-motion-ease),
    transform var(--mega-content-duration) var(--mega-motion-ease);
  will-change: opacity, transform;
}

.mega.is-open .mega__services,
.mega.is-open .mega__insight {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.12s;
}

.mega.is-open .mega__insight {
  transition-delay: 0.18s;
}

.mega__grid {
  display: grid;
  gap: 0 52px;
  align-items: start;
}

.mega--solutions,
.mega--marketplace {
  --mega-w: 1120px;
  --mega-panel-y: 34px;
  --mega-panel-x: 40px;
  --mega-grid-gap: 28px;
  --mega-services-separator-right: 104px;
  --mega-insight-offset-x: -120px;
  --mega-separator-offset-x: -132px;
  --mega-visual-margin-y: 10px;
  --mega-insight-text-w: 380px;
  --mega-tag-bg: rgba(255, 255, 255, 0.05);
  --mega-preview-ease: cubic-bezier(0.22, 0.72, 0.18, 1);
}

.mega--marketplace {
  --mega-w: 1080px;
  --mega-panel-y: 32px;
  --mega-panel-x: 38px;
}

.mega--solutions .mega__panel,
.mega--marketplace .mega__panel {
  padding: var(--mega-panel-y) var(--mega-panel-x);
}

.mega--solutions .mega__grid,
.mega--marketplace .mega__grid {
  grid-template-columns: minmax(270px, 0.95fr) 1px minmax(
      235px,
      0.78fr
    ) 1px minmax(280px, 0.9fr);
  gap: 0 var(--mega-grid-gap);
  align-items: center;
}

.mega__services {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 18px;
}

.mega--solutions .mega__services,
.mega--marketplace .mega__services {
  position: relative;
}

.mega--solutions .mega__services::after,
.mega--marketplace .mega__services::after {
  content: "";
  position: absolute;
  top: 0;
  right: var(--mega-services-separator-right);
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.18) 18%,
    rgba(255, 255, 255, 0.18) 82%,
    transparent
  );
}

.mega__service-group {
  min-width: 0;
}

.mega__service-group .mega__col-label {
  margin-bottom: 8px;
}

.mega__service-link {
  border-radius: var(--mega-inner-radius);
  color: rgba(255, 255, 255, 0.58);
}

.mega__service-link.is-active,
.mega__service-link:hover,
.mega__service-link:focus-visible {
  color: #fff;
}

.mega__separator {
  align-self: center;
  width: 1px;
  height: min(78%, 360px);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.18) 18%,
    rgba(255, 255, 255, 0.18) 82%,
    transparent
  );
}

.mega--solutions .mega__separator,
.mega--marketplace .mega__separator {
  background: none;
}

.mega--solutions .mega__services + .mega__separator,
.mega--marketplace .mega__services + .mega__separator {
  transform: translateX(var(--mega-separator-offset-x));
}

.mega__insight {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
}

.mega--solutions .mega__insight,
.mega--marketplace .mega__insight {
  align-self: stretch;
  --mega-insight-enter-x: calc(var(--mega-insight-offset-x) - 18px);
  transform: translate3d(var(--mega-insight-enter-x), 0, 0);
}

.mega.is-open.mega--solutions .mega__insight,
.mega.is-open.mega--marketplace .mega__insight {
  transform: translate3d(var(--mega-insight-offset-x), 0, 0);
}

.mega__insight-title {
  margin: 28px 0 13px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.12rem, 1.28vw, 1.38rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.mega__insight-text {
  width: var(--mega-insight-text-w);
  max-width: var(--mega-insight-text-w);
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.9rem;
  line-height: 1.48;
}

.mega__insight-tags {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-self: start;
  margin-top: auto;
  padding-top: 22px;
  gap: 12px 14px;
}

.mega__insight-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--mega-tag-bg);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.mega__insight-link {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.mega__insight-link::after {
  content: "→";
  transform: translateX(0);
  transition: transform 0.18s ease;
}

.mega__insight-link:hover::after {
  transform: translateX(4px);
}

.mega__visual {
  position: relative;
  height: min(360px, calc(100svh - var(--header-h) - 190px));
  min-height: 300px;
  border-radius: var(--mega-inner-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  align-self: center;
  opacity: 0;
  transform: translate3d(-20px, 0, 0) scale(0.988);
  transition:
    opacity var(--mega-content-duration) var(--mega-motion-ease),
    transform var(--mega-content-duration) var(--mega-motion-ease);
  will-change: opacity, transform;
}

.mega--solutions .mega__visual,
.mega--marketplace .mega__visual {
  align-self: stretch;
  height: auto;
  min-height: 0;
  aspect-ratio: 1600 / 1064;
  margin-block: var(--mega-visual-margin-y);
}

.mega.is-open .mega__visual {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0.26s;
}

.mega__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  filter: brightness(0.9);
  transform: translate3d(-24px, 0, 0) scale(1.03);
  transition:
    opacity var(--mega-content-duration) var(--mega-motion-ease),
    transform var(--mega-content-duration) var(--mega-motion-ease),
    filter 0.52s var(--mega-preview-ease);
  will-change: opacity, transform;
}

.mega.is-open .mega__visual img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1.01);
  transition-delay: 0.34s;
}

.mega__visual > img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mega__col-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 18px;
}

.mega--solutions .mega__col-label,
.mega--marketplace .mega__col-label {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.mega__col-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mega__link {
  display: block;
  padding: 9px 0;
  font-size: 0.96rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  transition:
    color 0.28s var(--mega-preview-ease),
    opacity 0.28s var(--mega-preview-ease);
  white-space: nowrap;
}

.mega--solutions .mega__link,
.mega--marketplace .mega__link {
  padding: 5px 0;
  font-size: 0.91rem;
  line-height: 1.18;
}

.mega__link:hover {
  color: #fff;
}

.mega__featured-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 16px;
}

.login-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 1.05rem;
  color: #050505;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0;
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  transition:
    color 0.22s var(--ease),
    background-color 0.22s var(--ease),
    border-color 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.login-link:hover,
.login-link:focus-visible {
  color: #050505;
  background: #f5f5f5;
  border-color: #ffffff;
  transform: translateY(-1px);
}


.burger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.burger:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.burger__lines {
  position: relative;
  width: 20px;
  height: 14px;
}

.burger__lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease),
    top 0.3s var(--ease);
}

.burger__lines span:nth-child(1) {
  top: 0;
}

.burger__lines span:nth-child(2) {
  top: 6px;
}

.burger__lines span:nth-child(3) {
  top: 12px;
}

body.menu-open .burger__lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

body.menu-open .burger__lines span:nth-child(2) {
  opacity: 0;
}

body.menu-open .burger__lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.site-nav__link.is-active {
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.site-nav__link.is-active .site-nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.3s var(--ease),
    background-color 0.3s var(--ease),
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.1);
}

.btn--secondary {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.visual-card {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  border-radius: var(--card-radius);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: auto 18% 10% 18%;
  height: 24%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1),
    transparent 70%
  );
  filter: blur(24px);
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.85;
  pointer-events: none;
}

.orb--1 {
  width: 110px;
  height: 110px;
  top: 10%;
  right: 12%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 72%
  );
  animation: drift 10s ease-in-out infinite;
}

.orb--2 {
  width: 160px;
  height: 160px;
  bottom: 14%;
  left: 8%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.16),
    transparent 72%
  );
  animation: drift 12s ease-in-out infinite reverse;
}

.menu-panel {
  position: fixed;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: min(460px, calc(100vw - 24px));
  padding: 26px;
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    ),
    rgba(8, 8, 8, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  transform: translateX(calc(100% + 24px));
  transition: transform 0.5s var(--ease);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

body.menu-open .menu-panel {
  transform: translateX(0);
}

.menu-panel__top {
  display: grid;
  gap: 18px;
  margin-top: 64px;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  transition:
    color 0.3s var(--ease),
    transform 0.3s var(--ease);
}

.menu-link::after {
  content: "↗";
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transform: translateX(0);
  transition: transform 0.3s var(--ease);
}

.menu-link:hover {
  color: #fff;
  transform: translateX(4px);
}

.menu-link:hover::after {
  transform: translateX(6px);
}

.menu-panel__bottom {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.6;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
  z-index: 85;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.site-footer__col a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--footer-section-color);
  font-size: var(--menu-text-size);
  font-weight: var(--menu-text-weight);
  line-height: var(--menu-text-line-height);
  letter-spacing: var(--menu-text-tracking);
  text-align: left;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  transition:
    color 0.22s var(--ease),
    transform 0.22s var(--ease),
    opacity 0.22s var(--ease);
}

.site-footer__col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 0.78s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

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

.reveal.is-settled {
  will-change: auto;
}

.reveal-delay-1 {
  transition-delay: 0.09s;
}

.reveal-delay-2 {
  transition-delay: 0.12s;
}

.reveal-delay-3 {
  transition-delay: 0.27s;
}

.reveal-delay-4 {
  transition-delay: 0.36s;
}

.reveal-delay-5 {
  transition-delay: 0.45s;
}

.feat-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  grid-column: 2;
}

.feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ccc;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
}

.feat-dot--active {
  background: var(--bg);
  width: 24px;
}

.feat-navs {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  grid-column: 3;
}

.feat-nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: transparent;
  font-size: 1.1rem;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.feat-nav:hover {
  background: var(--bg);
  color: #fff;
  border-color: #111;
}

.site-footer__inner {
  display: flex;
  width: min(1440px, calc(100vw - 96px));
  max-width: none;
  min-height: 100%;
  flex: 1;
  margin: 0 auto;
  flex-direction: column;
  justify-content: space-between;
}

.site-footer {
  display: flex;
  width: 100%;
  min-height: var(--footer-screen-height);
  min-height: var(--footer-screen-height-dynamic);
  overflow: hidden;
  box-sizing: border-box;
  padding: clamp(76px, 7vw, 112px) 0 clamp(34px, 3.2vw, 48px);
  background: var(--bg);
  border-top: 1px solid var(--footer-separator-color);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.88fr);
  column-gap: clamp(72px, 8vw, 150px);
  row-gap: 64px;
  align-items: start;
  margin-bottom: clamp(56px, 5vw, 78px);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(22px, 2.2vw, 34px);
  min-width: 0;
  margin: 0;
  padding: 0;
  transform: none;
}

.site-footer__logo {
  display: block;
  width: clamp(188px, 13vw, 238px);
  max-width: 100%;
  margin: 0;
  overflow: visible;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left top;
  filter: grayscale(1) drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}


.site-footer__brand-text {
  max-width: 20rem;
  margin: 0;
  color: var(--footer-section-color);
  font-size: var(--menu-text-size);
  font-weight: var(--menu-text-weight);
  line-height: 1.48;
  letter-spacing: var(--menu-text-tracking);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(128px, 1fr));
  column-gap: clamp(34px, 4.2vw, 76px);
  row-gap: clamp(38px, 3.8vw, 58px);
  align-items: start;
  min-width: 0;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
  padding: 0;
}

.site-footer__heading {
  display: block;
  min-height: 17px;
  margin: 0 0 10px;
  color: var(--footer-heading-color);
  font-size: var(--menu-text-size);
  font-weight: var(--menu-text-weight);
  line-height: var(--menu-text-line-height);
  letter-spacing: var(--menu-text-tracking);
  text-transform: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
}

.site-footer__cookie {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--footer-section-color);
  font-size: var(--menu-text-size);
  font-weight: var(--menu-text-weight);
  line-height: var(--menu-text-line-height);
  letter-spacing: var(--menu-text-tracking);
  text-align: left;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  transition:
    color 0.22s var(--ease),
    transform 0.22s var(--ease),
    opacity 0.22s var(--ease);
}

.site-footer__cookie:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: clamp(24px, 2.4vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--footer-section-color);
  font-size: var(--menu-text-size);
  font-weight: var(--menu-text-weight);
  line-height: var(--menu-text-line-height);
  letter-spacing: var(--menu-text-tracking);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 1600px) {
  .site-header__inner {
    max-width: var(--layout-shell-max);
    margin: 0 auto;
    padding-inline: 36px;
  }

  .site-footer__inner {
    width: min(var(--layout-wide-max), calc(100vw - (var(--section-x) * 2)));
  }

  .mega {
    max-width: min(1080px, calc(100vw - 64px));
  }
}

.feat-track {
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

#inclus {
  --seo-align-width: min(1280px, calc(100vw - (clamp(24px, 5vw, 80px) * 2)));
}

.anchor-target {
  display: block;
  position: relative;
  top: calc(var(--header-h) * -1 - 16px);
  visibility: hidden;
  pointer-events: none;
  height: 0;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(10px) scale(1.01);
  }

  50% {
    transform: translateY(-8px) scale(1.035);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -16px, 0);
  }
}

@keyframes serviceFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes servicePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes serviceMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes serviceBar {
  from {
    filter: saturate(0.9) brightness(0.95);
  }

  to {
    filter: saturate(1.2) brightness(1.06);
  }
}

@keyframes seoHeroBreath {
  0% {
    transform: scale(1.025);
  }

  100% {
    transform: scale(1.07);
  }
}

@keyframes pp-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 861px) {
  .site-header {
    height: var(--header-h);
  }

  .site-header__inner {
    padding: 0 42px;
  }

  .site-header__inner .site-nav {
    left: 50%;
    transform: translateX(-50%);
  }

  .site-nav {
    gap: 28px;
  }

  .site-nav__link {
    min-height: var(--header-h);
    padding: 0;
    color: var(--menu-text-color);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: var(--nav-text-size);
    font-weight: var(--menu-text-weight);
    line-height: var(--menu-text-line-height);
    letter-spacing: var(--menu-text-tracking);
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
  }

  .login-link {
    min-height: 2.55rem;
    padding: 0 1.05rem;
    color: #050505;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0.01em;
  }

  .site-nav__link:hover,
  .site-nav__link:focus-visible,
  .site-nav__link.is-active {
    color: #ffffff;
    background: transparent;
    box-shadow: none;
  }

  .site-nav__chevron svg {
    width: 10px;
    height: 6px;
  }
}


@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .mega-wrap {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  #inclus {
    --seo-align-width: calc(100vw - (clamp(24px, 5vw, 80px) * 2));
  }
}


@media (max-width: 760px) {
  :root {
    --header-h: 92px;
    --header-h-scrolled: 72px;
    --section-x: 24px;
    --section-y: 62px;
    --section-y-compact: 52px;
    --card-radius: 8px;
  }

  .site-header__inner {
    width: 100%;
    padding: 0 18px;
  }

  .site-actions {
    gap: 18px;
  }
  .login-link {
    min-height: 2.55rem;
    padding: 0 1.05rem;
    color: #050505;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 0;
    font-size: 0.84rem;
    font-weight: 760;
    line-height: 1;
  }

  .feat-dots {
    grid-column: 1;
    justify-content: center;
  }

  .feat-navs {
    grid-column: 1;
    justify-content: center;
  }

  .site-footer {
    padding: var(--section-y) 0 34px;
  }

  .site-footer__inner {
    width: calc(100vw - 42px);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-bottom: 40px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer__brand {
    gap: 20px;
  }

  .site-footer__logo {
    width: 210px;
  }

  .site-footer__col {
    gap: 14px;
  }

  .site-footer__heading {
    margin-bottom: 8px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1180px) {
  .site-footer__inner {
    width: min(1040px, calc(100vw - 64px));
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .site-footer__brand {
    max-width: 34rem;
  }

  .site-footer__nav {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    column-gap: clamp(34px, 6vw, 78px);
  }
}

@media (max-width: 920px) {
  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.001ms;
  }

  .reveal {
    transition-duration: 0.001ms;
    animation-duration: 0.001ms;
  }
}

