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

* {
  margin: 0
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}

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

input,
button,
textarea,
select {
  font: inherit
}

button {
  border: none;
  background: none;
  cursor: pointer
}

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

#root,
#__next {
  isolation: isolate
}

:root {
  --bg: #05070b;
  --text: #f3f5f7;
  --muted: #97a0ad;
  --lime: #d9ff00;
  --border: rgba(255, 255, 255, .08);
  --font-ui: "Inter", sans-serif;
  --font-display: "Tektur", sans-serif;
  --title-big: clamp(44px, 6.2vw, 108px);
  --title-medium: clamp(28px, 3.6vw, 62px)
}

html {
  font-size: 16px
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden
}

@media(prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }
}

::selection {
  background: var(--lime);
  color: #000
}

.container {
  width: min(1740px, 100% - 80px);
  margin: 0 auto
}

@media screen and (max-width:768px) {
  .container {
    width: calc(100% - 20px)
  }
}

.mobile-menu__burger {
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: #ffffff08;
  cursor: pointer;
  backdrop-filter: blur(10px)
}

.mobile-menu__burger span {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform .3s ease
}

.mobile-menu__burger span:nth-child(1) {
  top: 20px;
  transform: translate(-50%)
}

.mobile-menu__burger span:nth-child(2) {
  top: 28px;
  transform: translate(-50%)
}

.mobile-menu__burger.active span:nth-child(1) {
  top: 24px;
  transform: translate(-50%) rotate(45deg)
}

.mobile-menu__burger.active span:nth-child(2) {
  top: 24px;
  transform: translate(-50%) rotate(-45deg)
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 110;
  background: #05070bb8;
  backdrop-filter: blur(8px)
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 120;
  overflow-y: auto;
  background: #05070b
}

.mobile-menu__container {
  width: min(1740px, 100% - 80px);
  min-height: 100dvh;
  margin: 0 auto;
  padding: 40px 0 80px
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px
}

.mobile-menu__logo {
  color: #f3f5f7;
  font-family: Tektur, sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.04em
}

.mobile-menu__logo span {
  color: #d9ff00
}

.mobile-menu__close {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: #ffffff08;
  color: #fff;
  cursor: pointer
}

.mobile-menu__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column
}

.mobile-menu__nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  text-decoration: none
}

.mobile-menu__nav a .num {
  color: #d9ff00b3;
  font-size: 14px;
  font-weight: 700
}

.mobile-menu__nav a .text {
  color: #f3f5f7;
  font-family: Tektur, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  transition: color .25s ease
}

.mobile-menu__nav a:hover .text {
  color: #d9ff00
}

.mobile-menu__side {
  padding-top: 12px
}

.mobile-widget {
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  background: #ffffff06
}

.mobile-widget__label {
  display: block;
  margin-bottom: 16px;
  color: #ffffff6b;
  font-size: 11px;
  text-transform: uppercase
}

.mobile-widget__value {
  display: block;
  margin-bottom: 10px;
  color: #d9ff00;
  font-family: Tektur, sans-serif;
  font-size: 68px;
  line-height: .9
}

.mobile-widget__meta {
  color: #ffffff85;
  font-size: 14px
}

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

.mobile-contact__item {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.mobile-contact__item .label {
  color: #fff6;
  font-size: 11px;
  text-transform: uppercase
}

.mobile-contact__item a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease
}

.mobile-contact__item a:hover {
  color: #d9ff00
}

.overlay-enter-active,
.overlay-leave-active {
  transition: opacity .3s ease
}

.overlay-enter-from,
.overlay-leave-to {
  opacity: 0
}

.menu-enter-active,
.menu-leave-active {
  transition: opacity .3s ease, transform .3s ease
}

.menu-enter-from,
.menu-leave-to {
  opacity: 0;
  transform: translateY(-20px)
}

@media(max-width:1100px) {
  .mobile-menu__grid {
    grid-template-columns: 1fr;
    gap: 60px
  }
}

@media(max-width:768px) {
  .mobile-menu__container {
    width: calc(100% - 32px)
  }

  .mobile-menu__logo {
    font-size: 24px
  }

  .mobile-menu__top {
    margin-bottom: 50px
  }

  .mobile-menu__nav a {
    gap: 18px
  }

  .mobile-menu__nav a .text {
    font-size: 28px
  }

  .mobile-widget__value {
    font-size: 52px
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 100;

  pointer-events: none;
}

.header .container {
  width: min(1740px, 100% - 64px);
  margin: 0 auto;
}

.header__wrapper {
  pointer-events: auto;

  position: relative;

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

  height: 72px;
  margin-top: 18px;
  padding: 0 18px;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;

  background: rgba(7, 10, 14, 0.56);
  backdrop-filter: blur(22px);

  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.035),
    0 10px 34px rgba(0, 0, 0, 0.22);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.header__logo {
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;

  color: #f5f7fa;

  font-family: Tektur, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;

  text-decoration: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.header__logo span {
  color: #d9ff00;
}

.header__logo:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* NAV */

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  min-width: 0;
}

.header__nav-link {
  height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  padding: 0 14px;

  border: 1px solid transparent;
  border-radius: 13px;

  background: transparent;
  color: rgba(255, 255, 255, 0.68);

  font-family: inherit;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.01em;

  text-decoration: none;

  cursor: pointer;

  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.header__nav-link:hover,
.header__nav-link:focus-visible {
  color: #ffffff;

  border-color: rgba(217, 255, 0, 0.18);
  background: rgba(217, 255, 0, 0.055);

  transform: translateY(-1px);
}

.header__nav-link:focus-visible {
  outline: none;
}

/* DROPDOWN */

.header__dropdown {
  position: relative;

  display: inline-flex;
  align-items: center;
}

.header__dropdown-toggle {
  appearance: none;

  border: 1px solid transparent;
}

.header__dropdown-toggle span {
  display: inline-block;

  color: rgba(217, 255, 0, 0.9);

  font-size: 10px;
  line-height: 1;

  transform: translateY(1px);

  transition: transform 0.22s ease;
}

.header__dropdown:hover .header__dropdown-toggle span,
.header__dropdown:focus-within .header__dropdown-toggle span {
  transform: translateY(1px) rotate(180deg);
}

.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;

  width: 330px;
  padding: 10px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;

  background: rgba(5, 7, 11, 0.94);
  backdrop-filter: blur(24px);

  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.04);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateX(-50%) translateY(8px);

  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.header__dropdown-menu::before {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  top: -18px;

  height: 18px;
}

.header__dropdown:hover .header__dropdown-menu,
.header__dropdown:focus-within .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateX(-50%) translateY(0);
}

.header__dropdown-item {
  display: block;

  padding: 17px 18px;

  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.018)
    );

  color: #ffffff;

  text-decoration: none;

  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.header__dropdown-item:hover {
  border-color: rgba(217, 255, 0, 0.26);
  background: rgba(217, 255, 0, 0.07);

  transform: translateY(-1px);
}

.header__dropdown-item strong {
  display: block;

  margin-bottom: 7px;

  color: #d9ff00;

  font-size: 15px;
  line-height: 1.1;
  font-weight: 900;
}

.header__dropdown-item span {
  display: block;

  color: rgba(255, 255, 255, 0.58);

  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}

/* ACTIONS */

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header__telegram {
  height: 46px;

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

  padding: 0 18px;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.72);

  font-size: 13px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;

  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.header__telegram:hover {
  color: #ffffff;

  border-color: rgba(217, 255, 0, 0.18);
  background: rgba(217, 255, 0, 0.04);

  transform: translateY(-1px);
}

.header__button {
  position: relative;

  overflow: hidden;

  height: 46px;

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

  padding: 0 20px;

  border: none;
  border-radius: 14px;

  background: #d9ff00;
  color: #05070b;

  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;

  cursor: pointer;

  box-shadow: 0 0 28px rgba(217, 255, 0, 0.14);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.header__button::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent
    );

  transform: translateX(-120%);

  transition: transform 0.7s ease;
}

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

  box-shadow: 0 0 40px rgba(217, 255, 0, 0.22);

  filter: saturate(1.05);
}

.header__button:hover::before {
  transform: translateX(120%);
}

.header__button:active {
  transform: translateY(0);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .header__wrapper {
    grid-template-columns: auto auto;
  }

  .header__nav {
    display: none;
  }

  .header__actions {
    justify-self: end;
  }
}

@media (max-width: 768px) {
  .header .container {
    width: calc(100% - 20px);
  }

  .header__wrapper {
    height: 62px;

    margin-top: 12px;
    padding: 0 14px;

    border-radius: 16px;

    backdrop-filter: blur(18px);
  }

  .header__logo {
    font-size: 22px;
  }

  .header__telegram {
    display: none;
  }

  .header__button {
    height: 42px;

    padding: 0 16px;

    border-radius: 12px;

    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .header__wrapper {
    gap: 12px;
  }

  .header__logo {
    font-size: 20px;
  }

  .header__button {
    max-width: 170px;

    padding: 0 14px;

    font-size: 11px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  background: #010208
}

@media screen and (min-width:1000px) {
  .hero {
    min-height: 100vh
  }
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 1
}

.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right
}

@media(max-width:1200px) {
  .hero__background img {
    object-position: 62% center
  }
}

@media(max-width:768px) {
  .hero__background img {
    object-position: 68% top;
    transform: scale(1.08);
    opacity: .38
  }
}

.hero__background:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 68% 38%, rgba(217, 255, 0, .18) 0%, rgba(217, 255, 0, .08) 24%, transparent 52%), radial-gradient(circle at 82% 26%, rgba(217, 255, 0, .08) 0%, transparent 34%)
}

.hero__background:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, #01020800, #0102089c, #01020824 36%, #01020800 58% 100%)
}

.hero__floaters {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, .12) 72%, rgba(0, 0, 0, .34) 100%)
}

.hero__noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: .02;
  background-image: radial-gradient(rgba(255, 255, 255, .38) 1px, transparent 1px);
  background-size: 4px 4px
}

.hero__floor {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -220px;
  z-index: 1;
  height: 460px;
  opacity: .16;
  transform: perspective(1200px) rotateX(78deg);
  background: linear-gradient(90deg, rgba(255, 255, 255, .06) 0, rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 42px), linear-gradient(180deg, rgba(255, 255, 255, .06) 0, rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 42px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to top, rgb(0, 0, 0), transparent)
}

.hero .container {
  position: relative;
  z-index: 10;
  width: min(1740px, 100% - 72px);
  margin: 0 auto
}

@media(max-width:768px) {
  .hero .container {
    width: calc(100% - 28px)
  }
}

.hero__layout {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 140px 0 90px
}

@media(max-width:1100px) {
  .hero__layout {
    min-height: auto;
    padding: 140px 0 80px
  }
}

@media(max-width:768px) {
  .hero__layout {
    padding: 140px 0 60px
  }
}

.hero__content {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 640px
}

.hero__badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 18px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: #ffffff08;
  backdrop-filter: blur(12px);
  color: #ffffffd1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase
}

.hero__badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9ff00;
  box-shadow: 0 0 14px #d9ff00cc
}

.hero__title {
  margin: 0 0 18px;
  color: #f4f6f8;
  font-family: var(--font-display);
  font-size: var(--title-big);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.05em;
  text-transform: uppercase;
  text-shadow: 0 18px 50px rgba(0, 0, 0, .42)
}

@media(max-width:768px) {
  .hero__title {
    line-height: .9
  }
}

.hero__subtitle {
  margin-bottom: 22px;
  color: #d9ff00;
  font-family: var(--font-display);
  font-size: var(--title-medium);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  text-shadow: 0 0 30px rgba(217, 255, 0, .18)
}

.hero__description {
  max-width: 470px;
  margin-bottom: 38px;
  color: #ffffffad;
  font-size: 17px;
  line-height: 1.7
}

@media(max-width:768px) {
  .hero__description {
    font-size: 15px;
    line-height: 1.65
  }
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px
}

@media(max-width:480px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch
  }
}

.hero__button {
  position: relative;
  overflow: hidden;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 18px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  font-size: 15px;
  font-weight: 700
}

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

.hero__button:active {
  transform: translateY(0)
}

.hero__button:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .14) 50%, transparent 100%);
  transform: translate(-120%);
  transition: transform .8s ease
}

.hero__button:hover:after {
  transform: translate(120%)
}

.hero__button--primary {
  background: #d9ff00;
  color: #05070b;
  box-shadow: 0 0 42px #d9ff0024
}

.hero__button--secondary {
  border: 1px solid rgba(255, 255, 255, .08);
  background: #ffffff08;
  backdrop-filter: blur(10px);
  color: #fff
}

@media(max-width:480px) {
  .hero__button {
    width: 100%
  }
}

.hero-float {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, #0c1016b8, #07090e8a);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px #ffffff0a, 0 24px 70px #00000057;
  transform: translateZ(0) rotate(var(--rotate));
  animation: heroFloat 10s ease-in-out infinite;
  transition: transform .35s ease, border-color .35s ease, opacity .35s ease;
  will-change: transform
}

.hero-float__label {
  color: #ffffff6b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase
}

.hero-float__value {
  color: #d9ff00;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  text-shadow: 0 0 24px rgba(217, 255, 0, .16)
}

.hero-float__meta {
  color: #ffffffa8;
  font-size: 12px;
  line-height: 1.5
}

.hero-float__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.hero-float__chips span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #ffffff0a;
  color: #ffffffd1;
  font-size: 10px;
  font-weight: 600
}

.hero-float__lines {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.hero-float__lines span {
  color: #ffffffd1;
  font-size: 12px;
  line-height: 1.3
}

.hero-float--score {
  top: 23%;
  right: 9%;
  width: 180px;
  opacity: 1;
  --rotate: -5deg;
  animation-delay: .3s;
  border: 1px solid #d9ff00
}

.hero-float--speed {
  top: 54%;
  right: 7%;
  width: 210px;
  opacity: 1;
  --rotate: 2deg;
  animation-delay: 1.6s;
  border: 1px solid #d9ff00
}

.hero:hover .hero-float {
  transform: translate3d(0, -4px, 0) rotate(var(--rotate));
  border-color: #d9ff001f
}

@keyframes heroFloat {

  0%,
  to {
    transform: translateZ(0) rotate(var(--rotate))
  }

  50% {
    transform: translate3d(0, -8px, 0) rotate(var(--rotate))
  }
}

@media(max-width:1100px) {
  .hero__floaters {
    display: none
  }
}

.process {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: #05070b
}

.process__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(217, 255, 0, .14), transparent 34%);
  pointer-events: none
}

.process__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 1200px;
  height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 255, 0, .12), transparent 62%);
  filter: blur(60px);
  opacity: .7;
  pointer-events: none
}

.process__noise {
  position: absolute;
  inset: 0;
  opacity: .03;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .4) 1px, transparent 1px);
  background-size: 4px 4px
}

.process .container {
  position: relative;
  z-index: 5;
  width: min(1740px, 100% - 80px);
  margin: 0 auto
}

.process__top {
  margin-bottom: 70px
}

.process__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: #ffffff05;
  color: #ffffffc7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  backdrop-filter: blur(12px)
}

.process__badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9ff00;
  box-shadow: 0 0 18px #d9ff00e6
}

.process__head {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(0, 480px);
  justify-content: space-between;
  gap: 40px;
  align-items: center
}

.process__title {
  color: #f3f5f7;
  font-family: var(--font-display);
  font-size: var(--title-big);
  line-height: .92;
  font-weight: 700;
  letter-spacing: -.04em
}

.process__description {
  max-width: 520px;
  color: #ffffff94;
  font-size: 24px;
  line-height: 1.7
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px
}

.process__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 40px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 32px;
  background: linear-gradient(180deg, #0a0e14d1, #070a0eb8);
  backdrop-filter: blur(20px);
  box-shadow: inset 0 1px #ffffff08, 0 20px 60px #0000003d
}

.process__bottom-content {
  display: flex;
  align-items: center;
  gap: 44px
}

.process__bottom-title {
  flex-shrink: 0;
  color: #f3f5f7;
  font-family: var(--font-display);
  font-size: var(--title-medium);
  font-weight: 700;
  letter-spacing: -.04em
}

.process__bottom-text {
  max-width: 760px;
  color: #ffffff94;
  font-size: 20px;
  line-height: 1.7
}

.process__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: 280px;
  height: 60px;
  padding: 0 36px;
  border-radius: 18px;
  background: #d9ff00;
  color: #05070b;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px #d9ff002e
}

.process__button svg {
  width: 24px;
  height: 24px
}

.process__button:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px #d9ff0042
}

.process__button:active {
  transform: translateY(0)
}

.process__button:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #fff0, #ffffff2e, #fff0);
  transform: translate(-120%);
  transition: transform .7s ease
}

.process__button:hover:after {
  transform: translate(120%)
}

.process-card {
  position: relative;
  min-height: 360px;
  padding: 34px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 30px;
  background: linear-gradient(180deg, #0a0e14c2, #070a0ea8);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px #ffffff08, 0 16px 40px #0000003d;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
  will-change: transform
}

.process-card:before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
  background: radial-gradient(circle at top left, rgba(217, 255, 0, .14), transparent 46%)
}

.process-card:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, transparent 40%);
  transition: opacity .35s ease
}

.process-card:hover {
  transform: translateY(-8px);
  border-color: #d9ff0029;
  box-shadow: 0 24px 60px #00000057
}

.process-card:hover:before {
  opacity: 1
}

.process-card:hover:after {
  opacity: 1
}

.process-card:hover .process-card__number {
  color: #d9ff00;
  text-shadow: 0 0 24px rgba(217, 255, 0, .4)
}

.process-card__number {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
  color: #d9ff00;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.06em;
  transition: color .35s ease, text-shadow .35s ease
}

.process-card__title {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  color: #f3f5f7;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.04em
}

.process-card__text {
  position: relative;
  z-index: 2;
  color: #ffffff94;
  font-size: 18px;
  line-height: 1.7
}

@media(max-width:1400px) {
  .process {
    padding: 120px 0
  }

  .process__head {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .process__description {
    max-width: 720px;
    font-size: 20px
  }

  .process__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  .process__bottom {
    flex-direction: column;
    align-items: stretch
  }

  .process__bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px
  }

  .process__button {
    width: 100%;
    min-width: unset
  }

  .process-card {
    min-height: 300px
  }

  .process-card__number {
    margin-bottom: 36px;
    font-size: 60px
  }

  .process-card__title {
    font-size: var(--title-medium)
  }

  .process-card__text {
    font-size: 16px
  }
}

@media(max-width:1024px) {
  .process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .process__title {
    font-size: var(--title-big)
  }
}

@media(max-width:768px) {
  .process {
    padding: 80px 0 90px
  }

  .process__glow,
  .process__noise {
    display: none
  }

  .process .container {
    width: calc(100% - 24px)
  }

  .process__top {
    margin-bottom: 34px
  }

  .process__badge {
    margin-bottom: 24px;
    padding: 8px 12px;
    font-size: 10px;
    gap: 10px
  }

  .process__badge span {
    width: 8px;
    height: 8px
  }

  .process__title {
    margin-bottom: 18px;
    font-size: var(--title-big)
  }

  .process__description {
    font-size: 15px;
    line-height: 1.6
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px
  }

  .process__bottom {
    gap: 24px;
    padding: 22px 18px;
    border-radius: 24px
  }

  .process__bottom-title {
    font-size: var(--title-medium)
  }

  .process__bottom-text {
    font-size: 14px;
    line-height: 1.6
  }

  .process__button {
    width: 100%;
    height: 60px;
    border-radius: 18px;
    font-size: 16px
  }

  .process__button svg {
    width: 20px;
    height: 20px
  }

  .process-card {
    min-height: unset;
    padding: 22px 20px;
    border-radius: 22px
  }

  .process-card:hover {
    transform: none
  }

  .process-card__number {
    margin-bottom: 24px;
    font-size: 42px
  }

  .process-card__title {
    margin-bottom: 12px;
    font-size: var(--title-medium)
  }

  .process-card__text {
    font-size: 14px;
    line-height: 1.6
  }
}

.tabs {
  position: relative;
  overflow: hidden;
  padding: 48px 0 120px;
  background: radial-gradient(circle at top center, rgba(217, 255, 0, .05), transparent 34%), #040507
}

.tabs__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .015), transparent);
  pointer-events: none
}

.tabs__wrap {
  position: relative;
  z-index: 2;
  width: min(1740px, 100% - 80px);
  margin: 0 auto
}

.tabs__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px
}

.tabs__badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #ffffff05;
  color: #ffffffc7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase
}

.tabs__badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9ff00;
  box-shadow: 0 0 18px #d9ff00e6
}

.tabs__title {
  max-width: 980px;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--title-big);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.04em;
  text-transform: uppercase
}

.tabs__title span {
  color: #d9ff00;
  text-shadow: 0 0 24px rgba(217, 255, 0, .16)
}

.tabs__counter {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(180deg, #ffffff08, #ffffff03);
  overflow: hidden
}

.tabs__counter:after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 30%, rgba(217, 255, 0, .18), transparent 60%);
  opacity: .7;
  filter: blur(12px);
  animation: tabsPulse 4.6s ease-in-out infinite
}

.tabs__counter small {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: #ffffff80;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .16em;
  text-transform: uppercase
}

.tabs__counter strong {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #d9ff00;
  font-family: var(--font-display);
  font-size: 88px;
  line-height: .9;
  font-weight: 900;
  text-shadow: 0 0 26px rgba(217, 255, 0, .18)
}

.tabs__counter strong span {
  animation: tabsCounter 4s ease-in-out infinite
}

.tabs__counter strong span:last-child {
  animation-delay: .15s
}

.tabs__counter p {
  position: relative;
  z-index: 2;
  color: #fff9;
  font-size: 13px
}

.tabs__counter-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(217, 255, 0, .08);
  animation: tabsRotate 18s linear infinite
}

.tabs__counter-ring:before,
.tabs__counter-ring:after {
  content: "";
  position: absolute;
  border-radius: 50%
}

.tabs__counter-ring:before {
  inset: 24px;
  border: 1px solid rgba(217, 255, 0, .06)
}

.tabs__counter-ring:after {
  inset: 56px;
  border: 1px solid rgba(217, 255, 0, .04)
}

.tabs__cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.tabs-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/.75;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: #0a0f16;
  box-shadow: 0 16px 40px #0000003d;
  text-decoration: none;
  transition: transform .45s ease, border-color .3s ease, box-shadow .3s ease
}

.tabs-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: radial-gradient(circle at 20% 0%, rgba(217, 255, 0, .08), transparent 48%);
  transition: opacity .35s ease
}

.tabs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px #00000057
}

.tabs-card:hover .tabs-card__image {
  transform: scale(1.05)
}

.tabs-card:hover .tabs-card__title {
  transform: translateY(-4px)
}

.tabs-card:hover:after {
  opacity: 1
}

.tabs-card:focus-visible {
  outline: none;
  border-color: #d9ff0047;
  box-shadow: 0 0 0 2px #d9ff002e, 0 24px 60px #00000057
}

.tabs-card--cyan {
  border-color: #00c3ff57;
  box-shadow: 0 0 40px #00c3ff0d
}

.tabs-card--orange {
  border-color: #ffa6003d;
  box-shadow: 0 0 40px #ffa6000a
}

.tabs-card--lime {
  border-color: #d9ff002e;
  box-shadow: 0 0 40px #d9ff0008
}

.tabs-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform .8s ease
}

.tabs-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #05070b14, #05070b6b 60%, #05070bf2), linear-gradient(90deg, #05070bd6, #05070b57 54%, #05070b0f)
}

.tabs-card__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px
}

.tabs-card__top {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.tabs-card__id {
  color: #d9ff00;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: .9;
  font-weight: 900
}

.tabs-card__domain {
  margin-bottom: 6px;
  color: #fff;
  font-size: 20px;
  font-weight: 800
}

.tabs-card__type {
  color: #ffffff75;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase
}

.tabs-card__bottom {
  max-width: 420px
}

.tabs-card__title {
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--title-medium);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.05em;
  text-transform: uppercase;
  transition: transform .35s ease
}

.tabs-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px
}

.tabs-card__tags span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: #ffffff0d;
  color: #fff;
  font-size: 12px;
  font-weight: 500
}

@keyframes tabsRotate {
  0% {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes tabsCounter {

  0%,
  to {
    transform: translateY(0) scale(1);
    opacity: 1
  }

  50% {
    transform: translateY(-4px) scale(1.06);
    opacity: .92
  }
}

@media(max-width:1400px) {
  .tabs__header {
    flex-direction: column;
    gap: 28px
  }

  .tabs__counter {
    width: 180px;
    height: 180px
  }

  .tabs__counter strong {
    font-size: 72px
  }

  .tabs__cases {
    grid-template-columns: 1fr
  }

  .tabs-card {
    aspect-ratio: 16/9
  }
}

@media(max-width:768px) {
  .tabs {
    padding: 42px 0 80px
  }

  .tabs__wrap {
    width: calc(100% - 24px)
  }

  .tabs__title {
    font-size: var(--title-big)
  }

  .tabs__cases {
    gap: 18px
  }

  .tabs__counter {
    width: 150px;
    height: 150px;
    border-radius: 28px
  }

  .tabs__counter strong {
    font-size: 56px
  }

  .tabs-card {
    border-radius: 26px;
    aspect-ratio: auto;
    min-height: 340px
  }

  .tabs-card__content {
    padding: 18px
  }

  .tabs-card__id {
    font-size: 34px
  }

  .tabs-card__domain {
    font-size: 16px
  }

  .tabs-card__title {
    font-size: var(--title-medium)
  }
}

@keyframes tabsPulse {

  0%,
  to {
    opacity: .6;
    transform: scale(1)
  }

  50% {
    opacity: .9;
    transform: scale(1.03)
  }
}

.showcase {
  --accent: #d0ff00;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 140px 0;
  background: radial-gradient(circle at top center, color-mix(in srgb, var(--accent) 8%, transparent), transparent 35%), #030303
}

.showcase * {
  min-width: 0;
  box-sizing: border-box
}

.showcase .container {
  width: min(1740px, 100% - 40px);
  margin: 0 auto
}

html,
body {
  overflow-x: hidden
}

.showcase__grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 36px;
  align-items: start
}

.showcase__left {
  position: sticky;
  top: 120px;
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(180deg, #0f0f0ff0, #030303f5);
  border: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden
}

.showcase__left:before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 14%, transparent), transparent 35%);
  pointer-events: none
}

.showcase__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .06);
  background: #ffffff05;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff
}

.showcase__label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px color-mix(in srgb, var(--accent) 80%, transparent)
}

.showcase__title {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: var(--title-big);
  line-height: .92;
  letter-spacing: -.04em;
  font-weight: 900;
  color: #fff
}

.showcase__price {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: var(--title-medium);
  line-height: 1;
  font-weight: 900;
  color: var(--accent)
}

.showcase__description {
  position: relative;
  z-index: 2;
  max-width: 440px;
  margin-bottom: 34px;
  font-size: 22px;
  line-height: 1.7;
  color: #ffffffb8
}

.showcase__includes {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 46px
}

.showcase__include {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff
}

.showcase__include span {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px color-mix(in srgb, var(--accent) 80%, transparent)
}

.showcase__footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 26px
}

.showcase__duration {
  font-size: 18px;
  color: #ffffff9e
}

.showcase__duration strong {
  color: #fff;
  font-weight: 800
}

.showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 18px;
  background: var(--accent);
  color: #000;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden
}

.showcase__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px color-mix(in srgb, var(--accent) 25%, transparent)
}

.showcase__button:active {
  transform: translateY(0)
}

.showcase__button:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #fff0, #ffffff2e, #fff0);
  transform: translate(-120%);
  transition: transform .7s ease
}

.showcase__button:hover:after {
  transform: translate(120%)
}

.showcase__right {
  min-width: 0
}

.showcase__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 26px
}

.showcase__tab {
  position: relative;
  width: 100%;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-bottom: none;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, #ffffff0f, #ffffff05);
  color: #ffffffb3;
  font-size: 17px;
  font-weight: 700;
  transition: .25s ease;
  cursor: pointer
}

.showcase__tab:hover {
  color: #fff
}

.showcase__tab:focus-visible {
  outline: none;
  border-color: #ffffff38;
  color: #fff
}

.showcase__tab.active {
  color: #fff;
  background: linear-gradient(180deg, #ffffff1f, #ffffff08);
  border-color: #ffffff24;
  box-shadow: 0 -10px 30px #ffffff0a, inset 0 1px #ffffff14
}

.showcase__tab.active:before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent)
}

.showcase__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 38px;
  overflow: hidden;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, .06);
  cursor: pointer;
  box-shadow: 0 18px 50px #00000047
}

.showcase__preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center
}

.showcase__preview-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px
}

.showcase__arrow {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #141414d1;
  backdrop-filter: blur(16px);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: .25s ease
}

.showcase__arrow:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent)
}

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

.showcase__style-tab {
  height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #141414d1;
  backdrop-filter: blur(16px);
  color: #ffffffb8;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: .25s ease
}

.showcase__style-tab:hover {
  color: #fff
}

.showcase__style-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--accent) 35%, transparent)
}

.showcase__mobile-tabs {
  display: none
}

.showcase-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #000000e0;
  backdrop-filter: blur(12px);
  transition: opacity .25s ease, transform .25s ease
}

.showcase-popup img {
  width: auto;
  max-width: 92vw;
  max-height: 90vh;
  border-radius: 24px;
  transition: transform .3s ease
}

.showcase-popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: none;
  background: #ffffff14;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: .25s ease
}

.showcase-popup__close:hover {
  background: #ffffff24;
  transform: scale(1.03)
}

.popup-enter-active,
.popup-leave-active {
  transition: .25s ease
}

.popup-enter-from,
.popup-leave-to {
  opacity: 0;
  transform: scale(.98)
}

@media(max-width:1400px) {
  .showcase__grid {
    grid-template-columns: 460px 1fr
  }

  .showcase__left {
    padding: 34px
  }

  .showcase__title {
    font-size: var(--title-big)
  }

  .showcase__style-tab {
    padding: 0 22px;
    font-size: 15px
  }
}

@media(max-width:1100px) {
  .showcase {
    padding: 100px 0
  }

  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .showcase__left {
    position: relative;
    top: auto
  }
}

@media(max-width:900px) {
  .showcase {
    padding: 70px 0
  }

  .showcase .container {
    width: calc(100% - 20px)
  }

  .showcase__left {
    padding: 28px;
    border-radius: 28px
  }

  .showcase__title {
    font-size: var(--title-big)
  }

  .showcase__price {
    font-size: var(--title-medium)
  }

  .showcase__description {
    font-size: 18px
  }

  .showcase__include {
    font-size: 17px
  }

  .showcase__button {
    height: 60px;
    font-size: 16px
  }

  .showcase__preview {
    border-radius: 28px
  }

  .showcase__preview-overlay {
    display: none
  }

  .showcase__mobile-tabs {
    display: flex;
    gap: 10px;
    margin-top: 16px
  }

  .showcase__style-tab {
    flex: 1;
    height: 48px;
    padding: 0 10px;
    font-size: 13px
  }
}

@media(max-width:640px) {
  .showcase {
    padding: 40px 0
  }

  .showcase__grid {
    gap: 24px
  }

  .showcase__left {
    padding: 22px;
    border-radius: 24px
  }

  .showcase__label {
    margin-bottom: 18px;
    font-size: 11px
  }

  .showcase__title {
    font-size: var(--title-big);
    margin-bottom: 12px
  }

  .showcase__price {
    margin-bottom: 20px;
    font-size: var(--title-medium)
  }

  .showcase__description {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.6
  }

  .showcase__includes {
    gap: 14px;
    margin-bottom: 28px
  }

  .showcase__include {
    font-size: 16px
  }

  .showcase__footer {
    gap: 18px
  }

  .showcase__button {
    height: 60px;
    border-radius: 18px;
    font-size: 16px
  }

  .showcase__tabs {
    gap: 8px
  }

  .showcase__tab {
    height: 54px;
    font-size: 13px;
    border-radius: 18px 18px 0 0
  }

  .showcase__preview {
    border-radius: 22px
  }

  .showcase-popup {
    padding: 16px
  }
}

.footer-cta {
  position: relative;
  overflow: hidden
}

@media screen and (min-width:1000px) {
  .footer-cta {
    padding: 180px 0 34px
  }
}

.footer-cta {
  background: #05070b
}

.footer-cta__noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .018;
  background-image: radial-gradient(rgba(255, 255, 255, .24) 1px, transparent 1px);
  background-size: 4px 4px
}

.footer-cta .container {
  position: relative;
  z-index: 5;
  width: min(1740px, 100% - 72px);
  margin: 0 auto
}

@media(max-width:768px) {
  .footer-cta .container {
    width: calc(100% - 24px)
  }
}

.footer-cta__panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  min-height: 620px;
  overflow: hidden;
  padding: 54px 60px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 36px;
  background: linear-gradient(180deg, #080b12d1, #05070bf5);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px #ffffff08, 0 20px 80px #00000057
}

@media(max-width:1100px) {
  .footer-cta__panel {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 42px;
    padding: 38px 30px
  }
}

@media(max-width:768px) {
  .footer-cta__panel {
    padding: 28px 20px;
    border-radius: 24px
  }
}

.footer-cta__mascot {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 1
}

.footer-cta__mascot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02)
}

.footer-cta__mascot:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #05070be0, #05070b6b 34%, #05070b0f 52%, #05070b6b 74%, #05070be0), linear-gradient(180deg, #05070b0a, #05070b61)
}

@media(max-width:900px) {
  .footer-cta__mascot {
    display: none
  }
}

.footer-cta__left,
.footer-cta__right {
  position: relative;
  z-index: 5
}

.footer-cta__left {
  max-width: 440px;
  align-self: start
}

.footer-cta__right {
  max-width: 360px;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.footer-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ffffffc7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase
}

.footer-cta__label:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9ff00;
  box-shadow: 0 0 10px #d9ff00cc
}

.footer-cta__title {
  margin-bottom: 20px;
  color: #f3f5f7;
  font-family: var(--font-display);
  font-size: var(--title-big);
  font-weight: 800;
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase
}

@media(max-width:768px) {
  .footer-cta__title {
    font-size: 42px
  }
}

@media(max-width:480px) {
  .footer-cta__title {
    font-size: 34px
  }
}

.footer-cta__description {
  max-width: 380px;
  margin-bottom: 30px;
  color: #ffffff8f;
  font-size: 15px;
  line-height: 1.7
}

@media(max-width:768px) {
  .footer-cta__description {
    font-size: 14px
  }
}

.footer-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

@media(max-width:480px) {
  .footer-cta__actions {
    width: 100%;
    flex-direction: column
  }
}

.footer-cta__button {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 700;
  transition: .25s ease
}

.footer-cta__button:hover {
  transform: translateY(-2px)
}

.footer-cta__button:active {
  transform: translateY(0)
}

.footer-cta__button--primary {
  background: #d9ff00;
  color: #05070b;
  box-shadow: 0 0 30px #d9ff0029
}

.footer-cta__button--secondary {
  border: 1px solid rgba(255, 255, 255, .06);
  background: #ffffff08;
  color: #fff
}

@media(max-width:480px) {
  .footer-cta__button {
    width: 100%
  }
}

.footer-cta__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px
}

.footer-cta__contacts a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  transition: .25s ease
}

.footer-cta__contacts a:hover {
  color: #d9ff00
}

@media(max-width:768px) {
  .footer-cta__contacts a {
    font-size: 18px
  }
}

.footer-cta__socials {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap
}

.footer-cta__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%
}

@media(max-width:480px) {
  .footer-cta__stats {
    grid-template-columns: 1fr
  }
}

.footer-cta__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 0 6px;
  color: #ffffff47;
  font-size: 11px
}

.footer-cta__bottom a,
.footer-cta__bottom button {
  color: #ffffff47;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: .25s ease
}

.footer-cta__bottom a:hover,
.footer-cta__bottom button:hover {
  color: #d9ff00
}

@media(max-width:768px) {
  .footer-cta__bottom {
    flex-direction: column;
    text-align: center
  }
}

.footer-social {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  background: #ffffff08;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: .25s ease
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: #d9ff0029;
  background: #d9ff0014;
  color: #d9ff00
}

.footer-mini {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 18px;
  background: #ffffff05;
  backdrop-filter: blur(8px)
}

.footer-mini strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1
}

.footer-mini span {
  color: #ffffff75;
  font-size: 12px;
  line-height: 1.6
}

.footer-cta__right {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  justify-self: end;
  position: relative;
  z-index: 5;
  justify-content: center
}

@media(max-width:1100px) {
  .footer-cta__right {
    justify-self: start;
    max-width: 100%
  }
}

.footer-cta__group,
.footer-cta__links {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer-cta__caption {
  color: #ffffff57;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase
}

.footer-cta__contact {
  width: fit-content;
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  transition: .25s ease
}

.footer-cta__contact:hover {
  color: #d9ff00
}

@media(max-width:768px) {
  .footer-cta__contact {
    font-size: 22px
  }
}

@media(max-width:480px) {
  .footer-cta__contact {
    font-size: 18px
  }
}

.footer-cta__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.footer-cta__nav a {
  position: relative;
  width: fit-content;
  color: #ffffffb8;
  font-size: 15px;
  font-weight: 500;
  transition: color .25s ease, transform .25s ease
}

.footer-cta__nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #d9ff00;
  transition: width .25s ease
}

.footer-cta__nav a:hover {
  color: #d9ff00;
  transform: translate(2px)
}

.footer-cta__nav a:hover:after {
  width: 100%
}

@media(max-width:480px) {
  .footer-cta__nav a {
    font-size: 14px
  }
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #05070bbd;
  backdrop-filter: blur(14px)
}

.lead-popup__window {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 34px 34px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 28px;
  background: linear-gradient(180deg, #090c12f5, #05070bfa);
  box-shadow: 0 30px 80px #00000073;
  transition: transform .25s ease
}

@media(max-width:768px) {
  .lead-popup__window {
    padding: 26px 20px 22px;
    border-radius: 22px
  }
}

.lead-popup__window:before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(rgba(217, 255, 0, .12), transparent 70%);
  pointer-events: none
}

.lead-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  background: #ffffff08;
  color: #ffffffb8;
  font-size: 22px;
  cursor: pointer;
  transition: .25s ease
}

.lead-popup__close:hover {
  color: #d9ff00;
  border-color: #d9ff002e;
  background: #d9ff000f
}

.lead-popup__top {
  margin-bottom: 26px
}

.lead-popup__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #d9ff00;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase
}

.lead-popup__label:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d9ff00;
  box-shadow: 0 0 10px #d9ff00cc
}

.lead-popup__title {
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--title-medium);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase
}

.lead-popup__description {
  max-width: 360px;
  color: #ffffff8f;
  font-size: 14px;
  line-height: 1.7
}

.lead-popup__form {
  display: flex;
  flex-direction: column;
  gap: 18px
}

.lead-popup__field {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.lead-popup__field label {
  color: #ffffff6b;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.lead-popup__field input,
.lead-popup__field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  background: #ffffff08;
  color: #fff;
  padding: 16px 18px;
  font-size: 14px;
  outline: none;
  resize: none;
  transition: border-color .25s ease, background .25s ease
}

.lead-popup__field input::placeholder,
.lead-popup__field textarea::placeholder {
  color: #ffffff47
}

.lead-popup__field input:focus,
.lead-popup__field textarea:focus {
  border-color: #d9ff003d;
  background: #ffffff0a
}

.lead-popup__field textarea {
  min-height: 120px
}

.lead-popup__submit {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 16px;
  background: #d9ff00;
  color: #05070b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 30px #d9ff0024;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease
}

.lead-popup__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px #d9ff0038
}

.lead-popup__submit:disabled {
  opacity: .6;
  cursor: default
}

.lead-popup__success {
  padding: 14px 16px;
  border: 1px solid rgba(217, 255, 0, .14);
  border-radius: 14px;
  background: #d9ff000f;
  color: #d9ff00;
  font-size: 13px;
  line-height: 1.6
}

.popup-fade-enter-active,
.popup-fade-leave-active {
  transition: opacity .25s ease
}

.popup-fade-enter-from,
.popup-fade-leave-to {
  opacity: 0
}

.popup-fade-enter-from .lead-popup__window,
.popup-fade-leave-to .lead-popup__window {
  transform: translateY(8px) scale(.985)
}

.floating-contact[data-v-7df3e540] {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px
}

.floating-contact--active .floating-contact__toggle[data-v-7df3e540] {
  background: #d9ff00;
  color: #05070b;
  box-shadow: 0 20px 60px #d9ff003d
}

.floating-contact__menu[data-v-7df3e540] {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.floating-contact__item[data-v-7df3e540] {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: #070a0ed1;
  backdrop-filter: blur(18px);
  color: #f3f5f7;
  text-decoration: none;
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease, background .3s ease
}

.floating-contact__item[data-v-7df3e540]:hover {
  transform: translateY(-4px);
  border-color: #d9ff0033;
  background: #0c1016eb
}

.floating-contact__item:hover .floating-contact__icon[data-v-7df3e540] {
  color: #d9ff00
}

.floating-contact__icon[data-v-7df3e540] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #ffffff0a;
  color: #ffffffc7;
  transition: color .3s ease
}

.floating-contact__icon svg[data-v-7df3e540] {
  width: 20px;
  height: 20px
}

.floating-contact__text[data-v-7df3e540] {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.02em
}

.floating-contact__toggle[data-v-7df3e540] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  background: #070a0ee0;
  backdrop-filter: blur(18px);
  color: #f3f5f7;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease, color .3s ease, box-shadow .3s ease;
  box-shadow: 0 20px 60px #00000047
}

.floating-contact__toggle[data-v-7df3e540]:hover {
  transform: translateY(-4px);
  border-color: #d9ff0029
}

.floating-contact__toggle svg[data-v-7df3e540] {
  width: 28px;
  height: 28px
}

.floating-menu-enter-active[data-v-7df3e540],
.floating-menu-leave-active[data-v-7df3e540] {
  transition: opacity .3s ease, transform .3s ease
}

.floating-menu-enter-from[data-v-7df3e540],
.floating-menu-leave-to[data-v-7df3e540] {
  opacity: 0;
  transform: translateY(12px) scale(.96)
}

@media(max-width:768px) {
  .floating-contact[data-v-7df3e540] {
    right: 16px;
    bottom: 16px
  }

  .floating-contact__item[data-v-7df3e540] {
    min-width: 180px;
    padding: 14px 16px
  }

  .floating-contact__toggle[data-v-7df3e540] {
    width: 62px;
    height: 62px
  }

  .floating-contact__toggle svg[data-v-7df3e540] {
    width: 24px;
    height: 24px
  }
}

.cookie-banner[data-v-c1d2f51a] {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none
}

.cookie-banner__window[data-v-c1d2f51a] {
  position: relative;
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 28px;
  background: #070a0eeb;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px #00000073;
  pointer-events: auto
}

.cookie-banner__glow[data-v-c1d2f51a] {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(rgba(217, 255, 0, .16), transparent 70%)
}

.cookie-banner__content[data-v-c1d2f51a] {
  position: relative;
  z-index: 2;
  padding: 28px 28px 26px
}

.cookie-banner__label[data-v-c1d2f51a] {
  margin-bottom: 18px;
  color: #d9ff00;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase
}

.cookie-banner__title[data-v-c1d2f51a] {
  margin-bottom: 16px;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--title-medium);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase
}

.cookie-banner__text[data-v-c1d2f51a] {
  margin-bottom: 26px;
  color: #ffffff94;
  font-size: 14px;
  line-height: 1.7
}

.cookie-banner__actions[data-v-c1d2f51a] {
  display: flex;
  gap: 12px
}

@media(max-width:640px) {
  .cookie-banner__actions[data-v-c1d2f51a] {
    flex-direction: column
  }
}

.cookie-banner__accept[data-v-c1d2f51a],
.cookie-banner__policy[data-v-c1d2f51a] {
  height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s ease
}

.cookie-banner__accept[data-v-c1d2f51a] {
  border: none;
  background: #d9ff00;
  color: #000
}

.cookie-banner__accept[data-v-c1d2f51a]:hover {
  transform: translateY(-2px)
}

.cookie-banner__policy[data-v-c1d2f51a] {
  border: 1px solid rgba(255, 255, 255, .06);
  background: #ffffff08;
  color: #fff
}

.cookie-banner__policy[data-v-c1d2f51a]:hover {
  border-color: #d9ff0029;
  color: #d9ff00
}

.policy-modal[data-v-c1d2f51a] {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #05070bd1;
  backdrop-filter: blur(14px)
}

.policy-modal__window[data-v-c1d2f51a] {
  position: relative;
  width: 100%;
  max-width: 860px;
  max-height: 86vh;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 30px;
  background: linear-gradient(180deg, #090c12fa, #05070bfa)
}

.policy-modal__scroll[data-v-c1d2f51a] {
  max-height: 86vh;
  overflow-y: auto;
  padding: 46px 42px
}

@media(max-width:768px) {
  .policy-modal__scroll[data-v-c1d2f51a] {
    padding: 34px 22px
  }
}

.policy-modal__close[data-v-c1d2f51a] {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: #ffffff0a;
  color: #fff;
  font-size: 24px;
  cursor: pointer
}

.policy-modal__label[data-v-c1d2f51a] {
  margin-bottom: 18px;
  color: #d9ff00;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase
}

.policy-modal__title[data-v-c1d2f51a] {
  margin-bottom: 34px;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--title-medium);
  line-height: .92;
  letter-spacing: -.05em;
  text-transform: uppercase
}

.policy-modal__content[data-v-c1d2f51a] {
  color: #ffffffb8;
  font-size: 15px;
  line-height: 1.9
}

.policy-modal__content h3[data-v-c1d2f51a] {
  margin: 34px 0 16px;
  color: #fff;
  font-size: 18px
}

.policy-modal__content p[data-v-c1d2f51a] {
  margin-bottom: 16px
}

.policy-modal__content ul[data-v-c1d2f51a] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
  margin-bottom: 20px
}

.cookie-fade-enter-active[data-v-c1d2f51a],
.cookie-fade-leave-active[data-v-c1d2f51a] {
  transition: opacity .25s ease, transform .25s ease
}

.cookie-fade-enter-from[data-v-c1d2f51a],
.cookie-fade-leave-to[data-v-c1d2f51a] {
  opacity: 0;
  transform: translateY(10px)
} 


/* Lead popup consent */
.lead-popup__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
}

.lead-popup__consent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: #c6ff00;
}

.lead-popup__consent a {
  color: #c6ff00;
  text-decoration: none;
}

.lead-popup__consent a:hover {
  text-decoration: underline;
}
/* ================================
   Inner pages
================================ */

.inner-page {
  position: relative;
  padding: 172px 0 120px;
  color: #ffffff;
}

.inner-page__container {
  position: relative;
  z-index: 1;
}

.inner-page__head {
  max-width: 1180px;
  margin-bottom: 56px;
}

.inner-page__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;

  margin-bottom: 22px;
  padding: 8px 14px;

  border: 1px solid rgba(198, 255, 0, 0.28);
  border-radius: 999px;

  background: rgba(198, 255, 0, 0.055);

  color: #c6ff00;

  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inner-page__title {
  max-width: 1120px;

  margin: 0;

  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: clamp(48px, 5.4vw, 106px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.inner-page__content {
  width: 100%;

  padding: 56px 64px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);

  color: rgba(255, 255, 255, 0.76);

  font-size: 17px;
  line-height: 1.76;
  font-weight: 500;
}

.inner-page__content > *:first-child {
  margin-top: 0;
}

.inner-page__content > *:last-child {
  margin-bottom: 0;
}

.inner-page__content h1,
.inner-page__content h2,
.inner-page__content h3,
.inner-page__content h4 {
  margin: 44px 0 18px;

  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.inner-page__content h1 {
  font-size: clamp(34px, 3.5vw, 56px);
}

.inner-page__content h2 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.inner-page__content h3 {
  font-size: clamp(22px, 2vw, 28px);
}

.inner-page__content h4 {
  font-size: 20px;
}

.inner-page__content p {
  margin: 0 0 18px;
}

.inner-page__content ul,
.inner-page__content ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.inner-page__content li {
  margin-bottom: 10px;
}

.inner-page__content strong {
  color: #ffffff;
  font-weight: 800;
}

.inner-page__content a {
  color: #c6ff00;
  text-decoration: none;
  border-bottom: 1px solid rgba(198, 255, 0, 0.35);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.inner-page__content a:hover {
  border-bottom-color: #c6ff00;
  opacity: 0.88;
}

.inner-page__content hr {
  margin: 42px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.inner-page__content blockquote {
  margin: 32px 0;
  padding: 22px 26px;

  border-left: 3px solid #c6ff00;
  border-radius: 18px;

  background: rgba(198, 255, 0, 0.06);

  color: rgba(255, 255, 255, 0.88);
}

.inner-page__content code {
  padding: 2px 7px;

  border-radius: 7px;

  background: rgba(255, 255, 255, 0.08);

  color: #c6ff00;

  font-size: 0.92em;
}

/* ================================
   Legal page
================================ */

.inner-page--legal {
  padding-top: 156px;
}

.inner-page--legal .inner-page__head {
  max-width: 1180px;
  margin-bottom: 48px;
}

.inner-page--legal .inner-page__title {
  max-width: 1120px;

  font-size: clamp(42px, 4.4vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.inner-page--legal .inner-page__content {
  width: 100%;

  padding: 52px 64px;

  font-size: 16px;
  line-height: 1.78;
}

.inner-page--legal .inner-page__content h2 {
  margin-top: 46px;
  margin-bottom: 18px;

  font-size: clamp(24px, 2.4vw, 34px);
}

.inner-page--legal .inner-page__content p {
  margin-bottom: 16px;
}

/* ================================
   Tablet
================================ */

@media (max-width: 1024px) {
  .inner-page {
    padding: 144px 0 88px;
  }

  .inner-page__head {
    margin-bottom: 42px;
  }

  .inner-page__title {
    max-width: 920px;
    font-size: clamp(42px, 8vw, 78px);
  }

  .inner-page__content {
    width: 100%;
    padding: 42px 38px;
    border-radius: 26px;

    font-size: 16px;
  }

  .inner-page--legal {
    padding-top: 136px;
  }

  .inner-page--legal .inner-page__content {
    padding: 42px 38px;
  }
}

/* ================================
   Mobile
================================ */

@media (max-width: 768px) {
  .inner-page {
    padding: 118px 0 64px;
  }

  .inner-page__head {
    margin-bottom: 32px;
  }

  .inner-page__badge {
    margin-bottom: 16px;
    padding: 7px 12px;

    font-size: 10px;
  }

  .inner-page__title {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .inner-page__content {
    padding: 28px 22px;

    border-radius: 22px;

    font-size: 15px;
    line-height: 1.68;
  }

  .inner-page__content h1,
  .inner-page__content h2,
  .inner-page__content h3,
  .inner-page__content h4 {
    margin: 34px 0 14px;
  }

  .inner-page__content h2 {
    font-size: 25px;
  }

  .inner-page__content h3 {
    font-size: 21px;
  }

  .inner-page__content ul,
  .inner-page__content ol {
    padding-left: 20px;
  }

  .inner-page--legal {
    padding-top: 112px;
  }

  .inner-page--legal .inner-page__head {
    margin-bottom: 30px;
  }

  .inner-page--legal .inner-page__title {
    font-size: clamp(30px, 10.5vw, 46px);
    line-height: 1;
  }

  .inner-page--legal .inner-page__content {
    padding: 26px 20px;

    font-size: 14px;
    line-height: 1.66;
  }
}

/* ================================
   Small mobile
================================ */

@media (max-width: 420px) {
  .inner-page__content {
    padding: 24px 18px;
  }

  .inner-page__title {
    font-size: clamp(30px, 11vw, 42px);
  }

  .inner-page--legal .inner-page__title {
    font-size: clamp(28px, 10vw, 40px);
  }
}
/* ================================
   Micro footer
================================ */

.micro-footer {
  position: relative;
  padding: 34px 0 28px;

  background: #05070b;
  color: #ffffff;

  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.micro-footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 32px;
}

.micro-footer__brand {
  display: flex;
  align-items: center;

  gap: 18px;
}

.micro-footer__logo {
  display: inline-flex;
  align-items: center;

  color: #ffffff;

  font-family: "Tektur", "Inter", Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-decoration: none;
}

.micro-footer__logo span {
  color: #c6ff00;
}

.micro-footer__text {
  max-width: 260px;

  color: rgba(255, 255, 255, 0.52);

  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.micro-footer__nav,
.micro-footer__contacts {
  display: flex;
  align-items: center;

  gap: 10px;
}

.micro-footer__nav a,
.micro-footer__contacts a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 16px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.025);

  color: rgba(255, 255, 255, 0.64);

  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  text-transform: lowercase;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.micro-footer__nav a:hover,
.micro-footer__contacts a:hover {
  color: #ffffff;

  border-color: rgba(198, 255, 0, 0.42);
  background: rgba(198, 255, 0, 0.06);

  transform: translateY(-1px);
}

.micro-footer__contacts a:first-child {
  color: #c6ff00;
}

.micro-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  margin-top: 26px;
  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  color: rgba(255, 255, 255, 0.38);

  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .micro-footer__container {
    align-items: flex-start;
    flex-direction: column;
  }

  .micro-footer__nav,
  .micro-footer__contacts {
    flex-wrap: wrap;
  }

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

    gap: 8px;
  }
}

@media (max-width: 640px) {
  .micro-footer {
    padding: 28px 0 24px;
  }

  .micro-footer__brand {
    align-items: flex-start;
    flex-direction: column;

    gap: 10px;
  }

  .micro-footer__logo {
    font-size: 20px;
  }

  .micro-footer__nav,
  .micro-footer__contacts {
    width: 100%;
  }

  .micro-footer__nav a,
  .micro-footer__contacts a {
    min-height: 40px;
    padding: 0 13px;

    font-size: 12px;
  }
}

/* MOBILE HEADER PATCH */

.mobile-menu__burger {
  display: none;
  flex-shrink: 0;
}

.header__button-text--mobile {
  display: none;
}

.mobile-menu[hidden],
.mobile-menu__overlay[hidden] {
  display: none;
}

.mobile-menu__overlay,
.mobile-menu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open,
.mobile-menu__overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu {
  transform: translateY(-14px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

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

.mobile-menu__overlay {
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.mobile-contact__button {
  width: 100%;
  min-height: 52px;

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

  padding: 0 18px;

  border: none;
  border-radius: 14px;

  background: #d9ff00;
  color: #05070b;

  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;
}

body.is-mobile-menu-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .header__wrapper {
    grid-template-columns: auto 1fr auto;
  }

  .header__actions {
    justify-self: end;
  }

  .mobile-menu__burger {
    display: block;
  }
}

@media (max-width: 768px) {
  .header__wrapper {
    grid-template-columns: auto 1fr auto;
  }

  .header__actions {
    display: flex;
  }

  .header__button {
    height: 42px;
    min-width: 92px;
    padding: 0 14px;
  }

  .header__button-text--desktop {
    display: none;
  }

  .header__button-text--mobile {
    display: inline;
  }

  .mobile-menu__burger {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .mobile-menu__burger span:nth-child(1) {
    top: 16px;
  }

  .mobile-menu__burger span:nth-child(2) {
    top: 24px;
  }

  .mobile-menu__burger.active span:nth-child(1),
  .mobile-menu__burger.active span:nth-child(2) {
    top: 20px;
  }

  .mobile-menu__container {
    padding-top: 24px;
    padding-bottom: 60px;
  }

  .mobile-menu__top {
    margin-bottom: 42px;
  }
}

@media (max-width: 380px) {
  .header__logo {
    font-size: 18px;
  }

  .header__button {
    min-width: 82px;
    padding: 0 12px;
    font-size: 10px;
  }

  .mobile-menu__burger {
    width: 40px;
    height: 40px;
  }
}

/* FIX: floating contact не перекрывает контент */
.studio-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: auto;
  height: auto;
  pointer-events: none;
}

.studio-contact * {
  box-sizing: border-box;
}

.studio-contact__toggle,
.studio-contact__panel,
.studio-contact__item,
.studio-contact__form {
  pointer-events: auto;
}

.studio-contact__panel {
  max-width: 280px;
}

@media (max-width: 768px) {
  .studio-contact {
    right: 16px;
    bottom: 16px;
  }

  .studio-contact__panel {
    max-width: min(280px, calc(100vw - 32px));
  }
}

/* PATCH: compact desktop layout for 1280x720 / low-height screens */
@media (min-width: 1024px) and (max-height: 760px) {

  /* HERO */
  .hero {
    min-height: 720px;
  }

  .hero__layout {
    min-height: 720px;
    padding-top: 92px;
    padding-bottom: 44px;
  }

  .hero__title {
    font-size: clamp(54px, 7vw, 92px);
    line-height: 0.88;
  }

  .hero__subtitle {
    margin-top: 8px;
    font-size: clamp(24px, 2.4vw, 36px);
  }

  .hero__description {
    max-width: 560px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero-float {
    transform: scale(0.9);
  }

  .hero-float--score {
    top: 108px;
  }

  .hero-float--speed {
    bottom: 44px;
  }


  /* SERVICES / CALCULATOR */
  .showcase {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .showcase__grid {
    gap: 32px;
    align-items: center;
  }

  .showcase__left {
    padding: 28px;
  }

  .showcase__title {
    font-size: clamp(42px, 4.5vw, 64px);
    line-height: 0.9;
  }

  .showcase__price {
    margin-top: 8px;
    font-size: clamp(24px, 2.3vw, 34px);
  }

  .showcase__description {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
  }

  .showcase__includes {
    margin-top: 18px;
    gap: 8px;
  }

  .showcase__footer {
    margin-top: 18px;
  }


  /* PROJECTS */
  .tabs {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .tabs__header {
    margin-bottom: 42px;
  }

  .tabs__title {
    font-size: clamp(52px, 6vw, 86px);
    line-height: 0.86;
  }

  .tabs__counter {
    transform: scale(0.88);
    transform-origin: right center;
  }

  .tabs__cases {
    gap: 18px;
  }

  .tabs-card {
    min-height: 360px;
  }

  .tabs-card__content {
    padding: 26px;
  }

  .tabs-card__title {
    font-size: clamp(32px, 3.2vw, 48px);
    line-height: 0.9;
  }


  /* PROCESS */
  .process {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .process__top {
    margin-bottom: 38px;
  }

  .process__title {
    font-size: clamp(44px, 5vw, 72px);
    line-height: 0.92;
  }

  .process__grid {
    gap: 16px;
  }

  .process-card {
    padding: 26px;
    min-height: 210px;
  }

  .process__bottom {
    margin-top: 24px;
    padding: 28px;
  }


  /* FOOTER CTA */
  .footer-cta {
    padding-top: 82px;
    padding-bottom: 52px;
  }

  .footer-cta__panel {
    min-height: 420px;
    padding: 36px;
  }

  .footer-cta__title {
    font-size: clamp(46px, 5vw, 78px);
    line-height: 0.88;
  }
}


/* extra compact if browser height is even smaller */
@media (min-width: 1024px) and (max-height: 680px) {

  .hero,
  .hero__layout {
    min-height: 660px;
  }

  .hero__title {
    font-size: clamp(48px, 6.4vw, 82px);
  }

  .tabs-card {
    min-height: 320px;
  }

  .showcase,
  .tabs,
  .process,
  .footer-cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

