* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: #121619;
  color: white;
}

*::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

br.mobile {
  display: none;
}

.main-wrapper {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
}

.video-section {
  background: #020c12;
  position: sticky;
  top: 0;
  z-index: 1;
}

.video-section>*:not(style) {
  transition: opacity 0.5s ease;
}

.video-section.section-hidden-bg>*:not(style) {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.video-section.section-hidden-bg {
  background: #121619;
}

.video-background {
  position: absolute;
  scale: 1.25;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 9999;
  width: 100%;
  max-width: 1130px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25.86px;
  /* isolation: isolate убрано — изолировало кнопку от общего stacking context */
}

.hero-ellipse {
  position: absolute;
  width: 628px;
  height: 430px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #121619;
  filter: blur(51.65px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-title-static {
  width: 100%;
  text-align: center;
  font-family: 'Geist', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(40px, 5.9vw, 78px);
  line-height: 1.11;
  letter-spacing: -0.621px;
  color: #FFFFFF;
}

.hero-cta-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 28px;
  width: 190px;
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #E6FEFD;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Geist', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #0F1D27;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.hero-cta-btn:hover {
  transform: scale(1.05);
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 12px;
  transition: transform 0.3s ease;
}

.header-container {
  width: 100%;
  max-width: 1352px;
}

.nav-inner {
  padding: 16px 0px;
  border-radius: 16px;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  gap: 155px;
}

.left-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  min-width: 0;
  position: relative;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  display: block;
}

.right-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.burger-wrap {
  position: relative;
  flex-shrink: 0;
}

.to-menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
      background: rgba(20, 45, 45, 0.6);
    border-radius: 999px;
    backdrop-filter: blur(11px);
  border: 0.4px solid rgba(255, 255, 255, 0.1);
  /* border-radius: 9999px; */
  cursor: pointer;
  transition: border-color 0.2s ease;
}



/* .to-menu-btn:hover {
  border-color: #ffffff;
} */

.burger-svg {
  display: block;
  width: 24px;
  height: 24px;
}

.nav-pill {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 25px;
  height: 56px;
    background: rgba(20, 45, 45,0.6);
    border-radius: 999px;
    backdrop-filter: blur(11px);
  white-space: nowrap;
  position: relative;
  flex-shrink: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  overflow: visible;
}

.nav-pill canvas.star-canvas {
  display: none;
}

.header-wrapper.scrolled .nav-pill {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-20%);
}

.menu-item {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #C9E1E0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  padding: 17px 0;
  transition: color 0.2s ease;
}

.menu-item.active-item {
  color: #ffffff;
}

.menu-item:hover {
  color: #ffffff;
}

.lang-selector {
  position: relative;
}

.lang-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  min-width: 107px;
  height: 56px;
      background: rgba(20, 45, 45, 0.6);
    border-radius: 999px;
    backdrop-filter: blur(11px);
  border: 0.4px solid rgba(255, 255, 255, 0.1);
  /* backdrop-filter: blur(32.65px);
  border-radius: 9999px; */
  transition: border 0.3s ease;
  cursor: pointer;
}

.lang-selector.open .lang-btn {
  border: 0.4px solid rgba(255, 255, 255, 1);
  background: #ffffff;
}

.lang-selector.open .lang-btn span {
  color: #0F1D27;
}

.lang-selector.open .chevron-icon path {
  stroke: #0F1D27;
}

.lang-btn:hover {
  border: 0.4px solid rgba(255, 255, 255, 1);
}

.lang-btn span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #C9E1E0;
}

.chevron-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.lang-selector.open .chevron-icon {
  transform: rotate(180deg);
}

.glitch-text {
  display: inline-block;
}

.glitch-animation {
  animation: textGlitch 0.55s cubic-bezier(0.25, 1.2, 0.5, 1) forwards;
}

@keyframes textGlitch {
  0% {
    opacity: 1;
    transform: skew(0deg);
  }

  10% {
    opacity: 0.7;
    transform: skew(3deg);
    text-shadow: -2px 0 #dae3e2, 2px 0 #dae3e2;
  }

  35% {
    opacity: 0.6;
    transform: skew(2deg);
    text-shadow: -1px 1px #dae3e2;
  }

  65% {
    opacity: 0.9;
    transform: skew(1deg);
    text-shadow: 0 0 3px #dae3e2;
  }

  100% {
    opacity: 1;
    transform: skew(0deg);
    text-shadow: none;
  }
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 167px;
  background: #ffffff;
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.7px);
  border-radius: 21px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(-6px);
  z-index: 110;
}

.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  color: rgba(38, 38, 38, 0.8);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  transition: background 0.15s;
}

.lang-item:hover {
  background: rgba(223, 231, 241, 0.3);
}

.lang-item.active-lang-item {
  color: #262626;
  background: #DFE7F1;
}

.lang-code {
  flex: 1;
}

.check-icon {
  flex-shrink: 0;
  opacity: 0.9;
  display: none;
}

.lang-item.active-lang-item .check-icon {
  display: block;
}

.flag-img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.auth-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 28px;
  min-width: 186px;
  height: 56px;
  /* background: rgba(0, 0, 0, 0.05); */
  border: 0.5px solid rgba(255, 255, 255, 0.1);
      background: rgba(20, 45, 45, 0.6);
    border-radius: 999px;
    backdrop-filter: blur(11px);
  cursor: pointer;
  transition: background 0.25s ease;
}

.auth-btn span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #C9E1E0;
  transition: color 0.25s ease;
}

.auth-btn:hover {
  background: #ffffff;
}

.auth-btn:hover span {
  color: #0F1D27;
}

.bottom-blur-bar {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

#dividerDot {
  transform-origin: 34.65px 343.5px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cards-section {
  background: linear-gradient(279.76deg, #142D2D 0%, #121619 100%);
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;
  transform-origin: center center;
  will-change: transform, opacity;
}

.cards-section.zoom-forward {
  animation: cardsSectionZoomForward 0.75s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.cards-section.zoom-back {
  animation: cardsSectionZoomBack 0.6s cubic-bezier(0.2, 0, 0.4, 1) forwards;
}

@keyframes cardsSectionZoomForward {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  60% {
    transform: scale(1.18);
    opacity: 0.6;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@keyframes cardsSectionZoomBack {
  0% {
    transform: scale(2.2);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.glow {
  position: absolute;
  width: 700px;
  height: 700px;
  left: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  background: #00D2A0;
  filter: blur(140px);
  opacity: 0.07;
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
}

.card_side {
  width: calc(50% - 35px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.card_container {
  perspective: 1200px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  position: relative;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 35px;
  transform-style: preserve-3d;
  transform: rotateX(28deg) rotateY(-18deg) rotateZ(28deg) translateZ(20px);
  transition: transform 0.30s cubic-bezier(0.2, 0.9, 0.4, 1.05);
  will-change: transform;
  position: relative;
}

.card {
  width: 290px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.02);
  transform: scale(0.8);
  display: block;
  pointer-events: none;
  background: transparent;
  transition: all 0.4s ease;
  opacity: 0.3;
  filter: blur(7px);
}

.card.active {
  opacity: 1 !important;
  transform: scale(1);
  filter: blur(0px) !important;
}

.last_card {
  position: relative;
}

.into_card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 24px;
  background: white;
  height: fit-content;
  width: 87%;
  padding: 16px;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translate(-50%, 0) scale(1);
  transition: all 0.3s ease;
}

.title_into_card {
  font-family: "Geist", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.27px;
  color: #171717;
}

.lenta_container {
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.lenta_container::-webkit-scrollbar {
  display: none;
}

.scroll_images_into_block {
  height: 100px;
  display: block;
  width: auto;
}

.last_card.active .into_card {
  transform: translate(-50%, 0) scale(1.4);
  transition: all 0.3s ease 0.5s;
}

.devider {
  width: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.devider svg {
  width: 70px;
  height: 100%;
}

.info_side {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  padding: 0 50px;
  z-index: 2;
}

.info_circles_absolute {
  position: absolute;
  right: 0;
}

.info_circles_absolute path {
  transition: fill 0.35s ease, fill-opacity 0.35s ease;
}

.info_circles_absolute path.dot-lit {
  fill: #7ABFB8 !important;
  fill-opacity: 0.5 !important;
}

.card_front {
  width: 100%;
}

.card_back {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: transform 0.3s ease 0.3s;
  transform-origin: left top;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0), 0 8px 20px rgba(0, 0, 0, 0);
  border-radius: 20px;
}

.two_cards.active .card_back {
  transform: rotate(-15deg);
  transform-origin: left top;
}

.two_cards .card_front {
  border-radius: 20px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card_circle {
  position: absolute;
  zoom: 0.6;
  left: 50%;
  top: 214px;
  transform: translate(-50%, 0px) rotate(0deg);
  transition: transform 0.3s ease 0.3s;
}

body:has(.header-wrapper.scrolled) .two_cards_first.active .card_circle {
  transform: translate(-50%, 0px) rotate(-360deg);
}

.vertical-slider {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 480px;
  overflow-y: clip;
  overflow-x: visible;
  background: transparent;
}

.bottom_green {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.slides-container {
  display: flex;
  flex-direction: column;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform;
}

.info-slide {
  width: 100%;
  height: 480px;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  flex-shrink: 0;
}

.slide-title {
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.3px;
  color: #F0F5FF;
  font-family: 'Geist', 'Inter', sans-serif;
}

.slide-desc {
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  max-width: 560px;
  font-family: 'Geist', 'Inter', sans-serif;
}

.slide-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 28px;
  width: 191px;
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #E6FEFD;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.slide-button span {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #0F1D27;
}

.slide-button:hover {
  transform: scale(1.05);
}

.slide-counter {
  font-size: 12px;
  color: rgba(230, 254, 253, 0.44);
  letter-spacing: -0.18px;
  margin-top: 14px;
  font-family: 'Geist', 'Inter', sans-serif;
}

.mobile-counter {
  display: none;
}

.mobile-divider {
  display: none;
}

.hero-float-card {
  position: absolute;
  z-index: 12;
  opacity: 0;
  pointer-events: none;
  transform-origin: center bottom;
}

.hero-float-sbp {
  left: 15%;
  top: calc(50% - 150px);
  transform-origin: center bottom;
}

.hero-float-netflix {
  right: 6%;
  top: calc(50% + 70px);
  transform-origin: center bottom;
}

.hero-float-tether {
  left: 5%;
  top: calc(50% + 120px);
}

.hero-float-applepay {
  right: 13%;
  top: calc(50% - 150px);
}

.hero-float-card__origin {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D2A0;
  box-shadow: 0 0 0 0 rgba(0, 210, 160, 0.5);
  z-index: 1;
}

.hero-float-card__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  min-width: 280px;
  background: linear-gradient(317.2deg, rgba(17, 45, 44, 0.85) 32.57%, rgba(56, 147, 144, 0.75) 132.07%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  border: 1px solid rgba(0, 210, 160, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  position: relative;
  z-index: 2;
}

.hero-float-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-float-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-float-card__icon--netflix {
  background: #000;
}

.hero-float-card__icon--netflix img {
  width: 32px;
  height: 32px;
}

.hero-float-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.hero-float-card__title {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #FFFFFF;
  white-space: nowrap;
}

.hero-float-card__status {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.16px;
  color: #DCFCE7;
}

.hero-float-card__amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.hero-float-card__main {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #FFFFFF;
  white-space: nowrap;
}

.hero-float-card__sub {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.16px;
  color: #C9E1E0;
  white-space: nowrap;
}

@keyframes floatCardAppear {
  0% {
    opacity: 0;
    transform: scaleX(0.2) scaleY(0.05) translateY(20px);
    transform-origin: center bottom;
  }

  35% {
    opacity: 1;
    transform: scaleX(1.04) scaleY(1.04) translateY(-4px);
    transform-origin: center bottom;
  }

  55% {
    transform: scaleX(0.98) scaleY(0.98) translateY(0px);
    transform-origin: center bottom;
  }

  70% {
    transform: scaleX(1.01) scaleY(1.01) translateY(-2px);
    transform-origin: center bottom;
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    transform-origin: center bottom;
  }
}

@keyframes floatCardDisappear {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
    transform-origin: center bottom;
  }

  100% {
    opacity: 0;
    transform: scaleX(0.1) scaleY(0.04) translateY(18px);
    transform-origin: center bottom;
  }
}

@keyframes floatCardIdle {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes floatOriginPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 210, 160, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 210, 160, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 210, 160, 0);
  }
}

.hero-float-card.is-visible .hero-float-card__origin {
  animation: floatOriginPulse 1.6s ease-out infinite;
}

.hero-float-card.is-appearing {
  opacity: 1;
  animation: floatCardAppear 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-float-card.is-visible {
  opacity: 1;
  animation: floatCardIdle 3.5s ease-in-out infinite;
}

.hero-float-card.is-disappearing {
  animation: floatCardDisappear 0.45s cubic-bezier(0.4, 0, 0.8, 1) forwards;
}


/* ── Shared overlay zoom keyframes (used by all overlay sections) ── */
@keyframes overlayZoomAppear {
  0% { transform: scale(0.75); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes overlayZoomDisappear {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}


/* ── Shared base for ALL overlay pipeline sections ── */
.usecases-section,
#start,
.features-section,
.start-guide-section {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  overflow: hidden;
  scroll-snap-align: none !important;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  transition: none;
}
.usecases-section.usecases-visible,
#start.start-visible,
.features-section.features-visible,
.start-guide-section.start-guide-visible {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.usecases-section.zoom-appear,
#start.zoom-appear,
.features-section.zoom-appear,
.start-guide-section.zoom-appear {
  animation: overlayZoomAppear 0.6s cubic-bezier(0.2, 0.9, 0.4, 1) forwards;
}
.usecases-section.zoom-disappear,
#start.zoom-disappear,
.features-section.zoom-disappear,
.start-guide-section.zoom-disappear {
  animation: overlayZoomDisappear 0.55s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

.usecases-section {
  background: linear-gradient(279.76deg, #142D2D 0%, #121619 100%);
  z-index: 120;
}

/* merged into shared rule */









.uc-glow {
  position: absolute;
  width: 843px;
  height: 843px;
  left: 47px;
  bottom: -420px;
  background: #00D2A0;
  filter: blur(92px);
  opacity: 0.18;
  border-radius: 50%;
  transform: rotate(-45deg);
  pointer-events: none;
  z-index: 0;
}

.uc-dots-area {
  position: absolute;
  left: -212px;
  top: 261px;
  width: 852.56px;
  height: 484.71px;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 0;
}

.uc-dots-svg {
  width: 100%;
  height: 100%;
}

.uc-dots-group circle {
  transition: fill 0.35s ease, fill-opacity 0.35s ease;
}

.uc-dots-group circle.dot-lit {
  fill: #7ABFB8 !important;
  fill-opacity: 0.6 !important;
}

.uc-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 0 0 120px;
  gap: 80px;
  z-index: 1;
}

.uc-left {
  flex: 0 0 52%;
  width: 520px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.uc-title {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 64px;
  letter-spacing: -0.4px;
  color: #FFFFFF;
  margin: 0;
}

.uc-subtitle {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #E6FEFD;
  margin: 0;
  max-width: 520px;
}

.uc-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.uc-slider-viewport {
  position: relative;
  overflow: hidden;
  height: 440px;
  width: 100%;
}

.uc-slider-track {
  display: flex;
  flex-direction: row;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.05);
  will-change: transform;
  height: 100%;
  align-items: center;
}

.uc-card {
  flex: 0 0 330px;
  width: 330px;
  height: 100%;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 20px;
  gap: 0px;
  position: relative;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.4, 1), opacity 0.45s ease;
}

.uc-card:not(.uc-card-active) {
  transform: scale(0.96);
  opacity: 0.6;
}

.uc-card.uc-card-active {
  transform: scale(1);
  opacity: 1;
}

.uc-card-1 {
  background: #F0F5FF;
}

.uc-card-2 {
  background: #004040;
}

.uc-card-3 {
  background: linear-gradient(293.44deg, #121619 32.34%, #57575C 105.67%);
}

.uc-card-4 {
  background: #FFFFFF;
}

.uc-card-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  max-height: 295px;
}

.uc-card-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.uc-card-content {
  width: 100%;
  display: flex;
  padding: 0 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.uc-card-title-row {
  width: 100%;
}

.uc-card-title {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.2px;
}

.uc-card-desc {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.15px;
  margin: 0;
  width: 100%;
}

.uc-card-1 .uc-card-title,
.uc-card-1 .uc-card-desc {
  color: #262626;
}

.uc-card-2 .uc-card-title,
.uc-card-2 .uc-card-desc {
  color: #FFFFFF;
}

.uc-card-3 .uc-card-title,
.uc-card-3 .uc-card-desc {
  color: #FFFFFF;
}

.uc-card-4 .uc-card-title,
.uc-card-4 .uc-card-desc {
  color: #0F1D27;
}


.uc-dots-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  height: 16px;
}

.uc-dot {
  height: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: width 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.05), background-color 0.4s ease;
  width: 16px;
  background: rgba(217, 217, 217, 0.2);
  flex-shrink: 0;
}

.uc-dot.active {
  width: 65px;
  background: #E6FEFD;
}

.uc-bottom-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.uc-bottom-blur {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.uc-bottom-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.start-section {
  --desktop-ref-w: 1739px;
  --desktop-ref-h: 897px;
  --desktop-zoom: 1.18;
  --desktop-scale-x: calc(100vw / var(--desktop-ref-w));
  --desktop-scale-y: calc(100vh / var(--desktop-ref-h));
  --desktop-base-scale: min(var(--desktop-scale-x), var(--desktop-scale-y));
  --desktop-scale: calc(var(--desktop-base-scale) * var(--desktop-zoom));
  --landing-phone-screen-radius: 22px;
  --start-section-edge: clamp(24px, 8.333vw, 120px);
  --start-section-scale: var(--desktop-scale);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 115;
  overflow: hidden;
  scroll-snap-align: none !important;
  background: linear-gradient(160deg, #121619 0%, #0d1f1e 60%, #121619 100%);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  transition: none;
}

.start-dots-area {
  position: absolute;
  left: -212px;
  top: 50%;
  margin-top: calc(-484.71px / 2);
  width: 852.56px;
  height: 484.71px;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 0;
}

.start-dots-svg {
  width: 100%;
  height: 100%;
}

.start-dots-group circle {
  transition: fill 0.35s ease, fill-opacity 0.35s ease;
}

.start-dots-group circle.dot-lit {
  fill: #7ABFB8 !important;
  fill-opacity: 0.6 !important;
}

.start-bottom-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.start-bottom-blur {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.start-bottom-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* .start-section.start-visible merged into shared */









.start-section__scene {
  position: relative;
  width: 100%;
  height: 100%;
}

.start-section__heading {
  position: absolute;
  top: 50%;
  left: var(--start-section-edge);
  z-index: 2;
  width: calc(434px * var(--start-section-scale));
  transform: translateY(-50%);
  pointer-events: none;
}

.start-section__title {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
}

.start-section__phone {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: calc(280px * var(--start-section-scale));
  height: calc(590px * var(--start-section-scale));
  transform: translate(-50%, -50%);
  isolation: isolate;
  pointer-events: none;
}

.start-section__phone-clip {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 24px;
  background: #121619;
  clip-path: inset(0 round 24px);
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1.5px rgba(255, 255, 255, 0.08);
}

.start-section__phone-track {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.start-section__phone-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.05);
  transform: translateY(0);
  z-index: 1;
}

.start-section__phone-screen[data-screen="1"] {
  transform: translateY(0);
  z-index: 1;
}

.start-section__phone-screen[data-screen="2"] {
  transform: translateY(100%);
  z-index: 2;
}

.start-section__phone-screen[data-screen="3"] {
  transform: translateY(100%);
  z-index: 3;
}

.start-section__phone-screen[data-screen="2"].ss-active {
  transform: translateY(0);
}

.start-section__phone-screen[data-screen="3"].ss-active {
  transform: translateY(0);
}

.start-section__phone-screen-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: top;
  user-select: none;
  -webkit-user-drag: none;
}

.start-section__phone-screen-dim {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
}

.start-section__panels {
  position: absolute;
  top: 50%;
  right: var(--start-section-edge);
  z-index: 2;
  width: calc(335px * var(--start-section-scale));
  transform: translateY(-50%);
  display: grid;
  pointer-events: none;
}

.start-section__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(20px * var(--start-section-scale));
  align-items: flex-start;
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(calc(28px * var(--start-section-scale)));
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.start-section__panel.ss-active {
  opacity: 1;
  transform: translateY(0);
}

.start-section__panel-number {
  margin: 0;
  color: rgba(226, 226, 226, 0.3);
  font-size: calc(48px * var(--start-section-scale));
  font-weight: 500;
  line-height: calc(56px * var(--start-section-scale));
  letter-spacing: -0.4px;
}

.start-section__panel-text {
  display: flex;
  flex-direction: column;
  gap: calc(8px * var(--start-section-scale));
  width: 100%;
}

.start-section__panel-title {
  margin: 0;
  color: #fff;
  font-size: calc(32px * var(--start-section-scale));
  font-weight: 600;
  line-height: calc(38px * var(--start-section-scale));
  letter-spacing: -0.2px;
  white-space: pre-line;
}

.start-section__panel-description {
  margin: 0;
  color: #e0f8f4;
  font-size: calc(18px * var(--start-section-scale));
  font-weight: 400;
  line-height: calc(28px * var(--start-section-scale));
}

.start-section__panel-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: calc(14px * var(--start-section-scale));
  font-weight: 400;
  line-height: calc(20px * var(--start-section-scale));
}

.start-section__panel-counter {
  margin: calc(12px * var(--start-section-scale)) 0 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: calc(14px * var(--start-section-scale));
  font-weight: 400;
  line-height: calc(20px * var(--start-section-scale));
  letter-spacing: 0.04em;
}

.features-section {
  background: linear-gradient(279.76deg, #142D2D 0%, #121619 100%);
  z-index: 105;
}

/* merged into shared rule */









.features-dots-area {
  position: absolute;
  left: -212px;
  top: 50%;
  margin-top: calc(-484.71px / 2);
  width: 852.56px;
  height: 484.71px;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 0;
}

.features-dots-svg {
  width: 100%;
  height: 100%;
}

.features-dots-group circle {
  transition: fill 0.35s ease, fill-opacity 0.35s ease;
}

.features-dots-group circle.dot-lit {
  fill: #7ABFB8 !important;
  fill-opacity: 0.6 !important;
}

.features-content {
  position: absolute;
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 0 80px;
  z-index: 1;
}

.features-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  pointer-events: auto;
}

.features-main-title {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.4px;
  color: #FFFFFF;
  text-align: center;
  margin: 0;
  max-width: 1200px;
}

.features-start-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 28px;
  width: 172px;
  height: 56px;
  background: #FFFFFF;
  border: 1px solid #E6FEFD;
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #0F1D27;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto;
}

.features-start-btn:hover {
  transform: scale(1.03);
}

.features-glow {
  position: absolute;
  width: 843px;
  height: 843px;
  left: 47px;
  bottom: -420px;
  background: #00D2A0;
  filter: blur(92px);
  opacity: 0.18;
  pointer-events: none;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.features-bottom-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.features-bottom-blur {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 150px;
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.features-bottom-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.features-mobile-counter {
  display: none;
}

.security-section {
  position: relative;
  padding: 72px 0 72px;
  background: #ffffff;
  height: auto;
  min-height: 100vh;
  scroll-snap-align: start;
  z-index: 10;
}

.security-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.security-section__title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.025em;
  color: #0d1a1a;
  margin-bottom: 52px;
}

.security-section__title span {
  display: block;
}

.security-section__graphic {
  position: relative;
  height: 651px;
}

.security-section__visual {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1200px;
  height: 651px;
  transform: translate(-50%) scale(0.88);
  transform-origin: top center;
  pointer-events: none;
  user-select: none;
}

.security-section__overlay {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1200px;
  height: 651px;
  transform: translate(-50%) scale(0.88);
  transform-origin: top center;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  place-items: start;
}

.security-section__glow-shell {
  position: absolute;
  left: 293px;
  top: 64px;
  width: 765.055px;
  height: 576.515px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-section__glow-frame {
  position: relative;
  width: 679.59px;
  height: 402.335px;
  transform: rotate(-16.26deg);
}

.security-section__glow {
  position: absolute;
  left: -299.98px;
  top: -300px;
  width: 1279.59px;
  height: 1002.33px;
  max-width: none;
}

.security-section__ring-orbit {
  position: absolute;
  transform-origin: center;
}

.security-section__ring-orbit--outer {
  left: 249px;
  top: -23.79px;
  width: 700.996px;
  height: 699.503px;
}

.security-section__ring-orbit--inner {
  left: 306.77px;
  top: 34.36px;
  width: 583.618px;
  height: 583.259px;
}

.security-section__ring {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  opacity: 1;
  transform: scale(1);
  animation: security-ring-cw 22s linear infinite;
}

.security-section__ring--inner {
  animation: security-ring-ccw 32s linear infinite;
}

@keyframes security-ring-cw {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes security-ring-ccw {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

.security-section__core {
  position: absolute;
  left: 361.49px;
  top: 92.81px;
  width: 470.528px;
  height: 470.528px;
  border-radius: 50%;
  background: linear-gradient(55.46deg, rgba(120, 227, 207, 0.2), rgba(20, 45, 45, 0.2));
  overflow: visible;
  opacity: 1;
  transform: scale(1);
}

.security-section__core-ellipse {
  position: absolute;
  left: 61.73px;
  top: 61.73px;
  width: 347.066px;
  height: 347.066px;
  max-width: none;
  z-index: 1;
}

.security-section__core-badge {
  position: absolute;
  left: 140.42px;
  top: 140.42px;
  width: 188.287px;
  height: 188.287px;
  border-radius: 50%;
  background: linear-gradient(55.46deg, #78e3cf, #142d2d);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.security-section__shield-icon {
  position: absolute;
  left: 184.18px;
  top: 177.21px;
  width: 102.154px;
  height: 116.113px;
  opacity: 0.22;
  mix-blend-mode: screen;
  z-index: 3;
}

.security-section__shield-shell {
  position: absolute;
  left: 37.51px;
  top: 50.19px;
  width: 393.877px;
  height: 393.877px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.security-section__shield-rotator {
  
  position: relative;
  width: 354.261px;
  height: 354.261px;
  transform: rotate(6.83deg);
  transition: transform 0.64s cubic-bezier(0.37, 0, 0.63, 1);
  animation: loaderPulseSelfShield 6s ease infinite;
}

.security-section__shield {
  width: 100%;
  height: 100%;
}

.security-section__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 26px;
  background: #FAFCFF;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  pointer-events: auto;
}

.security-section__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(96, 96, 96, 0.16);
}

.security-section__badge--law {
  left: -53px;
  top: 168px;
}

.security-section__badge--control {
  left: 770px;
  top: 142px;
}

.security-section__badge--encryption {
  left: 20px;
  top: 375px;
}

.security-section__badge--kyc {
  left: 737px;
  top: 444px;
}

.security-section__badge-icon {
  flex-shrink: 0;
}

.security-section__badge-icon--law,
.security-section__badge-icon--encryption {
  width: 32px;
  height: 32px;
}

.security-section__badge-icon--control {
  width: 31px;
  height: 35px;
}

.security-section__badge-icon--kyc {
  width: 42px;
  height: 42px;
}

.security-section__badge-copy {
  margin: 0;
  color: #2f2f34;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.security-section__badge-copy span {
  display: block;
}

.service-stats {
  padding: 92px 0;
  background: #f4f7f7;
  height: auto;
  min-height: 100vh;
  scroll-snap-align: start;
  position: relative;
  z-index: 10;
}

.service-stats__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.service-stats__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  letter-spacing: -0.025em;
  text-align: center;
  color: #0d1a1a;
}

.service-stats__grid {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.service-stats__item {
  position: relative;
  width: 310px;
  height: 266px;
  flex: 0 0 310px;
  padding: 24px;
  border-radius: 20px;
  background-color: #121619;
  background-image: linear-gradient(-54.3deg, #121619 30%, #57575c 87%);
  
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.42s ease;
}



.service-stats__value {
  background: linear-gradient(156deg, #d5e0f5, #ccdae4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 64px;
  font-weight: 500;
  line-height: 56px;
  letter-spacing: -0.02em;
}

.service-stats__item-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 8px;
}

.service-stats__item-description {
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.7);
}

.service-stats__pagination {
  display: none;
}

.service-stats__item {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --gradient-x: 0px;
  --gradient-y: 0px;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
}

.service-stats__item::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y),
      rgba(2, 209, 159, 0.55) 0%,
      rgba(56, 147, 144, 0.32) 35%,
      rgba(56, 147, 144, 0.12) 60%,
      transparent 80%);
  filter: blur(28px) saturate(1.3) brightness(1.05);
  opacity: 0;
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate3d(var(--gradient-x), var(--gradient-y), 0) scale(1.08);
}

.service-stats__item::after {
  content: "";
  position: absolute;
  inset: auto -60% -60% auto;
  width: 130%;
  height: 130%;
  z-index: 1;
  background: radial-gradient(ellipse at var(--mouse-x) var(--mouse-y),
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.15) 25%,
      rgba(255, 255, 255, 0.04) 45%,
      transparent 65%);
  filter: blur(18px);
  opacity: 0;
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  mix-blend-mode: overlay;
  transform: translate3d(var(--gradient-x), var(--gradient-y), 0);
}

.service-stats__item:hover::before,
.service-stats__item:hover::after {
  opacity: 1;
}

.service-stats__item>* {
  position: relative;
  z-index: 2;
}

.partners-section {
  padding: 92px 0;
  overflow: hidden;
  height: auto;
  min-height: 100vh;
  scroll-snap-align: start;
  background: #ffffff;
  position: relative;
  z-index: 10;
}

.partners-section__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.partners-section__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  text-align: center;
  color: #262626;
}

.partners-section__logo-grid--desktop {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.partners-section__row--desktop-marquee {
  display: flex;
  width: max-content;
  animation: marquee-left 28s linear infinite;
  will-change: transform;
}

.partners-section__row--desktop-marquee:hover {
  animation-play-state: paused;
}

.partners-section__row--reverse {
  animation-name: marquee-right;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-20%); }
}

@keyframes marquee-right {
  0%   { transform: translateX(-20%); }
  100% { transform: translateX(0); }
}

.partners-section__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
  padding: 0 35px;
  position: relative;
}

.partners-section__brand-logo {
  height: 36px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partners-section__brand-logo--color {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partners-section__brand:hover .partners-section__brand-logo--mono {
  opacity: 0;
}

.partners-section__brand:hover .partners-section__brand-logo--color {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.press-section {
  padding: 92px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  position: relative;
  height: auto;
  min-height: 100vh;
  scroll-snap-align: start;
  background: #f4f7f7;
  z-index: 10;
}

.press-section__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: -0.4px;
  text-align: center;
  color: #0d1a1a;
}

.press-grid {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 16px;
}

.press-card {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.press-card--featured {
  width: 608px;
  height: 576px;
  flex-shrink: 0;
}

.press-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-card__shade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: url(/img/shade.png);
  z-index: 16;
}

.press-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  height: 100%;
  z-index: 2;
}

.press-cards-small .press-card__content {
  padding: 20px;
}

.press-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.press-card__logo {
  width: auto;
}

.press-card__title {
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.press-card--featured .press-card__title {
  font-size: 40px;
  line-height: 1.2;
  max-width: 552px;
}

.press-cards-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.press-card--small {
  height: 280px;
  border-radius: 28px;
}

.press-card--small .press-card__title {
  font-size: 20px;
  line-height: 1.3;
}

.press-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  height: 56px;
  background: var(--brand-green-700);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.18px;
  color: #fff;
  transition: opacity 0.2s;
}

.press-btn:hover {
  opacity: 0.85;
}

.faq-section {
  padding: 112px 120px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  height: auto;
  min-height: 100vh;
  scroll-snap-align: start;
  background: #ffffff;
  z-index: 10;
}

.faq-section__copy-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-section-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  height: 56px;
  background: #004040;
  border-radius: 999px;
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  width: fit-content;
  text-decoration: none;
  transition: opacity 0.2s;
}

.landing-section-button:hover {
  opacity: 0.85;
}

.faq-section__copy {
  flex: 0 0 409px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.faq-section__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: -0.4px;
  color: #0d1a1a;
}

.faq-section__description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #444F4F;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  height: 56px;
  background: #004040;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  width: fit-content;
  transition: opacity 0.2s;
}

.faq-btn:hover {
  opacity: 0.85;
}

/* ===== FAQ LIST ===== */
.faq-section__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Legacy alias so old .faq-list still works */
.faq-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* ===== FAQ ITEM ===== */
.faq-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13, 26, 26, 0.06);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 24px rgba(13, 26, 26, 0.1);
}

.faq-item[data-faq-expanded="true"],
.faq-item[data-open="true"] {
  box-shadow: 0 6px 32px rgba(0, 64, 64, 0.12);
}

/* ===== FAQ TRIGGER ===== */
.faq-item__heading {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}



.faq-item[data-faq-expanded="true"] .faq-item__trigger,
.faq-item[data-open="true"] .faq-item__trigger {
  padding-bottom: 16px;
}

/* ===== FAQ QUESTION TEXT ===== */
.faq-item__question {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.18px;
  color: #0d1a1a;
  transition: color 0.2s ease;
}


/* ===== FAQ ICON (new markup: icon-shell > icon-circle > img) ===== */
.faq-item__icon-shell {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item__icon-circle {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #F5F5F5;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
  overflow: hidden;
}

/* .faq-item[data-faq-expanded="true"] .faq-item__icon-circle,
.faq-item[data-open="true"] .faq-item__icon-circle {
  background: #e6f0ef;
} */

.faq-item__icon {
  width: 23px;
  height: 23px;
  display: block;
  transition: transform 0.35s cubic-bezier(0.37, 0, 0.63, 1);
}

.faq-item[data-faq-expanded="true"] .faq-item__icon,
.faq-item[data-open="true"] .faq-item__icon {
  transform: rotate(180deg);
}

/* Legacy icon (direct svg inside .faq-item__icon) */
.faq-item__icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.35s cubic-bezier(0.37, 0, 0.63, 1);
}

.faq-item[data-faq-expanded="true"] .faq-item__icon svg,
.faq-item[data-open="true"] .faq-item__icon svg {
  transform: rotate(180deg);
}

/* ===== FAQ ANSWER (new markup: answer-shell > answer-inner > p.faq-item__answer) ===== */
.faq-item__answer-shell {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.faq-item[data-faq-expanded="true"] .faq-item__answer-shell,
.faq-item[data-open="true"] .faq-item__answer-shell {
  grid-template-rows: 1fr;
}

.faq-item__answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-item__answer {
  padding: 0 24px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.18px;
  color: #444F4F;
  margin: 0;
}

/* Legacy flat answer (no shell/inner wrapper) */
.faq-item>.faq-item__answer,
.faq-item>div>.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, padding 0.3s ease;
  opacity: 0;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.18px;
  color: #444F4F;
}

.faq-item[data-open="true"]>.faq-item__answer,
.faq-item[data-open="true"]>div>.faq-item__answer {
  max-height: 400px;
  opacity: 1;
  padding: 0 24px 24px;
}

.articles-section {
  padding: 0 120px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  height: auto;
  min-height: 100vh;
  scroll-snap-align: start;
  background: #f4f7f7;
  position: relative;
  z-index: 10;
}

.articles-section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.articles-section__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.21;
  letter-spacing: -0.4px;
  color: #0d1a1a;
}

.articles-section__desc {
  font-size: 20px;
  color: #444F4F;
  line-height: 1.2;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1200px;
}

.article-card {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  cursor: pointer;
}

.article-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .article-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #183840 0%, rgba(24,56,64,0.4) 50%, transparent 100%);
} */

.article-card__timer {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.article-card__timer svg {
  width: 24px;
  height: 24px;
}

.article-card__timer span {
  font-size: 16px;
  color: #fff;
  line-height: 1.25;
}

.article-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-card__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.15px;
  color: #fff;
}

.article-card__desc {
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}

.article-card__tags {
  font-size: 16px;
  color: #ACC5C3;
  letter-spacing: -0.18px;
  line-height: 1.38;
}

.articles-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  height: 56px;
  background: #004040;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: opacity 0.2s;
}

.articles-btn:hover {
  opacity: 0.85;
}

.landing-footer {
  background: #00100F;
  padding: 44px 44px 24px;
  height: auto;
  scroll-snap-align: start;
}

.landing-footer__inner {
  display: grid;
  grid-template-columns: 324px 1fr 324px;
  gap: 16px;
  row-gap: 35px;
  max-width: 1352px;
  margin: 0 auto;
}

.landing-footer__card {
  min-width: 0;
  border-radius: 12px;
  background: rgba(87, 87, 92, 0.19);
  padding: 18px;
  box-sizing: border-box;
}

.landing-footer__card-title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.18px;
}

.landing-footer__brand-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 112px;
  text-decoration: none;
}

.landing-footer__brand-logo {
  display: block;
  position: relative;
  width: 100px;
}

.landing-footer__brand-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}

.landing-footer__brand-copy {
  color: #d4d4d4;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.18px;
  transition: color 0.3s ease;
}

.landing-footer__brand-copy:hover {
  color: #fff;
}

.landing-footer__support-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 288px;
}

.landing-footer__support-stack {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
}

.landing-footer__support-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}

.landing-footer__support-item:last-child {
  margin-top: 25px;
}

.landing-footer__support-label {
  margin: 0;
  color: #d4d4d4;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.18px;
}

.landing-footer__support-value {
  color: #d4d4d4;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: -0.18px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.landing-footer__support-value:hover {
  color: #fff;
}

.landing-footer__support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 13px 24px;
  box-sizing: border-box;
  border-radius: 999px;
  background: #fff;
  color: #0F1D27;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.18px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.landing-footer__support-button--disabled {
  cursor: cursor;

}

.landing-footer__nav-card,
.landing-footer__documents-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 284px;
}

.landing-footer__accordion {
  width: 100%;
  display: block;
}

.landing-footer__accordion[open] .landing-footer__accordion-summary {
  margin-bottom: 16px;
}

.landing-footer__accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
}

.landing-footer__accordion-summary::-webkit-details-marker {
  display: none;
}

.landing-footer__accordion-chevron {
  display: none;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: #fff;
  transition: transform 0.18s ease;
}

.landing-footer__accordion-chevron svg {
  display: block;
  width: 24px;
  height: 24px;
}

.landing-footer__accordion:not([open]) .landing-footer__accordion-chevron {
  transform: rotate(180deg);
}

.landing-footer__link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-footer__link-list li {
  line-height: 0;
}

.call_us {
  width: 100%;
}

.call_us:hover .landing-footer__support-button {
  background: #C9E1E0;
}

.landing-footer__text-link {
  display: inline-flex;
  color: #d4d4d4;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.landing-footer__text-link:hover {
  color: #fff;
}

.landing-footer__link-list--bright {
  color: #fff;
}

.landing-footer__link-list--muted {
  color: #d4d4d4;
}

.landing-footer__notes-card {
  flex: 1 0 0;
  grid-column: 1 / 4;
  padding: 0;
  background: transparent;
  min-height: 112px;
  gap: 8px;
  color: #a3a3a3;
}

.landing-footer__notes-list {
  margin: 0;
  padding-left: 21px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.18px;
}

.landing-footer__notes-list--mobile {
  display: none;
}

.landing-footer__socials-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 412px;
}

.landing-footer__socials-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landing-footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #f5f5f5;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.18px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.landing-footer__social-link:hover .landing-footer__social-label{
  color: #fff;
}

.landing-footer__social-icon {
  display: block;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: #d4d4d4;
}

.landing-footer__social-label {
  display: inline-block;
  align-items: flex-start;
  gap: 2px;
  color: #d4d4d4;
}

.landing-footer__social-note {
  color: #a3a3a3;
  font-size: 12px;
  font-weight: 400;
  line-height: 12px;
  vertical-align: top;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-panel.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-panel .mobile-nav-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
}

.mobile-nav-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.mobile-nav-panel.active .mobile-nav-container {
  transform: translateX(0);
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 16px;
  padding-top: 100px;
  gap: 2px;
  width: 100%;
}

.mobile-nav-item {
  font-family: 'Geist', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.18px;
  padding: 7px 0px;
  color: #C9E1E0;
  width: 100%;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  font-family: 'Geist', 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: #ffffff;
  border-radius: 8px;
  background: #59595914;

}

.mobile-nav-panel.active .mobile-nav-item {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(2) {
  transition-delay: 0.10s;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(4) {
  transition-delay: 0.20s;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(5) {
  transition-delay: 0.25s;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(6) {
  transition-delay: 0.30s;
}

.mobile-nav-panel.active .mobile-nav-item:nth-child(7) {
  transition-delay: 0.35s;
}

.mobile-nav-item:hover {
  color: #FFFFFF;
}

.mobile-nav-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 20px;
  width: 100%;
  border-radius: 16px;
  margin-top: auto;
}

.mobile-nav-social-title {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.18px;
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-panel.active .mobile-nav-social-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.mobile-nav-social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 288px;
  height: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-panel.active .mobile-nav-social-icons {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.30s;
}

.mobile-social-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-social-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.mobile-nav-auth {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;
  width: 100%;
  border-radius: 16px;
}

.mobile-nav-auth-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 17px 24px;
  width: 100%;
  height: 56px;
  background: #FFFFFF;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav-panel.active .mobile-nav-auth-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

.mobile-nav-auth-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 210, 160, 0.3);
}

.mobile-nav-auth-btn span {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.18px;
  color: #004040;
}

.mobile_burger {
  display: none;
}

.hero-title-wrap {
  z-index: 2;
}






/* Дополнительные секции — скролл-снап */
.security-section,
.service-stats,
.partners-section,
.press-section,
.faq-section,
.articles-section {
  height: auto;
  min-height: 100vh;
  scroll-snap-align: start;
  position: relative;
  z-index: 10;
  background: linear-gradient(100.1858448761136deg, #f0f5ff 22.941%, #ccdae4 93.12%), #fff !important;
}

@media (max-width: 767px) {
  br.mobile {
    display: block;
  }

  br.desktop {
    display: none;
  }


  .burger_desktop {
    display: none;
  }

  .mobile_burger {
    display: block;
  }

  .header-wrapper {
    padding: 0px;
  }

  .video-background {
    scale: 1;
    top: 40%;
  }

  .nav-inner {
    padding: 16px;
  }

  .header-row {
    gap: 0;
    height: 48px;

    background: rgba(20, 45, 45, 0.6);
        /* border-radius: 999px; */
        backdrop-filter: blur(11px);
  }



  .two_cards .card_front,
  .two_cards.active .card_back {
    border-radius: 10px;
  }

  .left-group {
    gap: 8px;
    flex: 1;
    min-width: 0;
  }

  .nav-pill {
    display: none !important;
  }

  .to-menu-btn {
    width: 44px;
    height: 44px;
  }

  .right-group {
    gap: 8px;
    margin-right: 5px;
  }

  .lang-btn {
    min-width: 80px;
    height: 44px;
    padding: 8px 12px;
    gap: 6px;
  }

  .lang-btn span {
    font-size: 14px;
  }

  .auth-btn {
    display: none;
  }

  .lang-dropdown {
    right: -10px;
    left: auto;
    width: 150px;
    background: #ffffff;
  }

  .hero-content {
    top: 150px;
    transform: translate(-50%, 0);
    padding: 0 16px;
    gap: 24px;
  }

  .hero-title-static {
    font-size: 32px;
    line-height: 1.15;
  }

  .hero-ellipse {
    display: none;
  }

  .hero-title-wrap {
    min-height: auto;
  }

  .hero-cta-btn {
    width: fit-content;
    height: fit-content;
    padding: 12px 24px;
    font-size: 16px;
  }

  .scroll-hint {
    bottom: 20px;
  }

  .hero-float-card {
    display: none;
  }

  .cards-section {
    flex-direction: column;
    height: 100dvh;
    min-height: 600px;
  }

  .card_side {
    width: 100%;
    height: 48%;
    order: 2;
    align-items: flex-start;
  }

  .card_container {
    padding-left: 20px;
    zoom: 1.2;
  }

  .cards {
    gap: 20px;
    transform: rotateX(20deg) rotateY(-10deg) rotateZ(15deg) translateZ(10px);
  }

  .card {
    width: 160px;
  }

  .devider {
    display: none;
  }

  .info_side {
    flex: 0 0 auto;
    width: 100%;
    order: 1;
    padding: 0;
    align-items: flex-start;
    overflow: hidden;
    padding-top: 75px;
  }

  .vertical-slider {
    height: 220px;
    width: 100%;
  }

  .info-slide {
    height: 300px;
    padding: 56px 20px 0;
    gap: 14px;
    justify-content: flex-start;
  }

  .slide-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    letter-spacing: -0.24px;
  }

  .slide-desc {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.2px;
  }

  .slide-button {
    padding: 13px 24px;
    font-size: 16px;
    width: fit-content;
    height: fit-content;
    margin-top: 4px;
  }

  .slide-button span {
    font-size: 14px;
  }

  .mobile-divider {
    display: flex !important;
    order: 3;
    width: 100%;
    height: 24px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
    margin-bottom: 2px;
  }

  .mobile-counter {
    display: block !important;
    order: 4;
    font-size: 12px;
    color: rgba(230, 254, 253, 0.44);
    letter-spacing: -0.18px;
    line-height: 40px;
    padding: 0 0 0 20px;
    flex-shrink: 0;
  }

  .into_card {
    zoom: 0.55;
  }

  .card_circle {
    zoom: 0.33;
  }

  .uc-inner {
    padding: 0 0 0 20px;
    gap: 30px;
  }

  .uc-left {
    flex: 0 0 40%;
  }

  .uc-title {
    font-size: 32px;
    line-height: 42px;
  }

  .uc-subtitle {
    font-size: 16px;
    line-height: 22px;
  }

  .uc-right {
    gap: 24px;
  }

  .uc-card {
    flex: 0 0 260px;
    width: 260px;
  }

  .uc-card-title {
    font-size: 18px;
  }

  .uc-card-desc {
    font-size: 16px;
  }

  .service-stats__grid {
    flex-direction: row;
    overflow-x: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 8px 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .service-stats__grid::-webkit-scrollbar {
    display: none;
  }

  .service-stats__item {
    min-height: 220px;
    scroll-snap-align: start;
  }

  .service-stats__value {
    font-size: 48px;
  }

  .service-stats__pagination {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
  }

  .pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #acc5c3;
    transition: all 0.24s;
  }

  .pagination-dot.active {
    width: 40px;
    background: #02cc96;
  }

  .security-section__visual,
  .security-section__overlay {
    display: none;
  }

  .security-section__overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    height: auto;
    transform: none;
  }

  .security-section__badge {
    position: relative;
    left: auto;
    top: auto;
    border-radius: 999px;
    padding: 14px 18px;
  }

  .press-section {
    padding: 56px 16px;
  }

  .press-grid {
    flex-direction: column;
  }

  .press-card--featured {
    width: 100%;
    height: 340px;
  }

  .press-card--featured .press-card__title {
    font-size: 20px;
  }

  .press-cards-small {
    grid-template-columns: 1fr 1fr;
  }

  .press-card--small {
    height: 240px;
  }

  .faq-section {
    padding: 56px 16px;
    flex-direction: column;
    gap: 40px;
  }

  .faq-section__copy {
    flex: none;
    width: 100%;
    align-items: center;
  }

  .faq-section__title {
    font-size: 32px;
    text-align: left;
  }

  .faq-section__description {
    font-size: 16px;
    text-align: left !important;
  }

  .faq-item__question {
    font-size: 18px;
  }

  .faq-item__icon-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .faq-item__icon {
    width: 16px;
    height: 16px;
  }

  .faq-item__icon svg {
    width: 16px;
    height: 16px;
  }

  .articles-section {
    padding: 0 16px 56px;
  }

  .articles-section__title {
    font-size: 32px;
  }

  .articles-section .title_button {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .articles-section__desc {
    font-size: 16px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    overflow-x: auto;
    display: flex;
    scrollbar-width: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .articles-grid::-webkit-scrollbar {
    display: none;
  }

  .article-card {
    flex: 0 0 240px;
    height: 331px;
    border-radius: 20px;
  }

  .article-card__title {
    font-size: 20px;
    line-height: 1.3;
  }

  .landing-footer {
    padding: 16px;
  }

  .landing-footer__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .footer-accordion-chevron {
    display: flex;
  }

  .footer-accordion:not([open]) .footer-link-list {
    display: none;
  }

  .footer-accordion:not([open]) .footer-notes-list {
    display: none;
  }

  .footer-accordion:not([open]) .footer-socials-list {
    display: none;
  }
}








/* ===== СВЕТЛАЯ ТЕМА ХЕДЕРА ===== */
.header-wrapper.header-light {
  background: transparent;
}


.header-wrapper.header-light .to-menu-btn {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.header-wrapper.header-light .to-menu-btn .burger-svg rect {
  stroke: #0F1D27;
}

/* .header-wrapper.header-light .nav-pill {
  background: rgba(89, 89, 89, 0.06);
  backdrop-filter: blur(32.65px);
} */

.header-wrapper.header-light .menu-item {
  color: #404040;
}

.header-wrapper.header-light .menu-item.active-item,
.header-wrapper.header-light .menu-item:hover {
  color: #0F1D27;
}

.header-wrapper.header-light .lang-btn {
  background: rgba(89, 89, 89, 0);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

.header-wrapper.header-light .lang-selector.open .lang-btn {
  border: 0.4px solid #C9E1E0;
}

.header-wrapper.header-light .lang-btn span {
  color: #0F1D27;
}


.header-wrapper.header-light svg path {
  stroke: #262626;
}

.header-wrapper.header-light .chevron-icon path {
  stroke: #0F1D27;
}

.header-wrapper.header-light .lang-dropdown {
  /* border: 0.5px solid rgba(0, 0, 0, 0.2); */
  backdrop-filter: blur(13.7px);
}

.header-wrapper.header-light .lang-item {
  color: #0F1D27;
}

.header-wrapper.header-light .lang-item:hover {
  /* background: rgba(0, 0, 0, 0.05); */
}

.header-wrapper.header-light .auth-btn {
  background: rgba(89, 89, 89, 0.03);
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
}

.header-wrapper.header-light .auth-btn span {
  color: #0F1D27;
}

.header-wrapper.header-light .auth-btn:hover {
  background: #004040;
}

.header-wrapper.header-light .auth-btn:hover span {
  color: #FFFFFF;
}

.header-wrapper.header-light .logo img {
  filter: brightness(0) saturate(100%) invert(9%) sepia(26%) saturate(1716%) hue-rotate(158deg) brightness(94%) contrast(99%);
}

/* ============================================================
   MILLPAY — МОБИЛЬНЫЙ АДАПТИВ + ИСПРАВЛЕНИЕ FOOTER
   ============================================================ */

/* ── iOS touch scroll ─────────────────────────────────────── */
.main-wrapper {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

/* ── Секции внутри footer не должны быть 100vh ────────────── */
.landing-footer section,
footer section,
.landing-footer__support-card,
.landing-footer__documents-card,
.landing-footer__notes-card,
.landing-footer__socials-card {
  height: auto !important;
  min-height: unset !important;
  overflow: visible !important;
  scroll-snap-align: none !important;
}

/* ── Footer основные правила ──────────────────────────────── */
.landing-footer {
  display: block !important;
  height: auto !important;
  min-height: unset !important;
  overflow: visible !important;
  scroll-snap-align: start;
  position: relative;
  z-index: 10;
}

/* ── Колонки footer — десктоп ─────────────────────────────── */
.landing-footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.landing-footer__column--left {
  flex: 0 0 324px;
}

.landing-footer__column--middle {
  flex: 1 1 auto;
  min-width: 0;
}

.landing-footer__top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 100%;
}

/* ── Мобиле ≤ 767px ───────────────────────────────────────── */
@media (max-width: 767px) {

  .logo {
    padding-left: 18px;
  }


  .header-wrapper.header-light .lang-btn {
    background: rgba(89, 89, 89, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }





  .header-wrapper.header-light .lang-selector.open .lang-btn {
    border: 0.4px solid transparent;
  }

  .header-wrapper.header-light .to-menu-btn {
    background: rgba(0, 0, 0, 0);
    border: 1px solid rgba(0, 0, 0, 0);
  }

  .main-wrapper {
    height: 100dvh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  /* snap-sections на мобиле — dvh а не vh */
  .video-section,
  .cards-section,
  .usecases-section,
  #start,
  .features-section {
    height: 100dvh;
    min-height: 100dvh;
  }

  /* sections с auto height на мобиле */
  .security-section,
  .service-stats,
  .partners-section,
  .press-section,
  .faq-section {
    height: auto !important;
    min-height: 100dvh !important;
  }

  .articles-section {
    height: auto !important;
    min-height: unset !important;
    padding-bottom: 56px;
  }

  /* ── Footer на мобиле — одна колонка ─────────────────────── */
  .landing-footer {
    padding: 24px 16px;
  }

  .landing-footer__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px;
    grid-template-columns: unset !important;
  }

  .landing-footer__column,
  .landing-footer__column--left,
  .landing-footer__column--middle {
    width: 100%;
    flex: none !important;
  }

  .landing-footer__top-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .landing-footer__card {
    padding: 16px;
    border-radius: 16px;
  }

  .landing-footer__notes-card {
    padding: 0;
  }

  .landing-footer__accordion-chevron {
    display: flex !important;
  }

  /* Убираем min-height у nav-card и documents-card на мобиле, чтобы блок мог схлопнуться */
  .landing-footer__nav-card,
  .landing-footer__documents-card {
    min-height: unset !important;
  }

  .landing-footer__support-value {
    font-size: 18px;
    white-space: normal;
  }

  .landing-footer__notes-list--mobile {
    display: flex !important;
  }


  /* ── Touch scroll для горизонтальных скролл-зон ──────────── */
  .uc-slider-viewport,
  .articles-grid,
  .service-stats__grid,
  .press-grid {
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  /* Security section — убираем absolute overlay, делаем колонку */
  .security-section__visual {
    display: none !important;
  }

  .security-section__overlay {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
  }

  .security-section__badge {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    border-radius: 16px !important;
    padding: 14px 18px !important;
    width: 100% !important;
  }

  .security-section__graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

}

/* ── Планшет 768–1023px ───────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  .landing-footer__inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }

  .landing-footer__column--left {
    flex: none;
    grid-column: 1 / -1;
  }

  .landing-footer__top-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================================================
   CONTENT ZONE — единый прокручиваемый блок (security → footer)
   ============================================================ */

/* Убираем snap у всех отдельных секций внутри content-zone */
.content-zone section:not(.features-section),
.content-zone .security-section,
.content-zone .service-stats,
.content-zone .partners-section,
.content-zone .press-section,
.content-zone .faq-section,
.content-zone .articles-section,
.content-zone .landing-footer {
  scroll-snap-align: none !important;
  height: auto !important;
  min-height: unset !important;
  overflow: visible !important;
}

/* content-zone сам по себе — snap-target, внутри свободный скролл */
.content-zone {
  /* Snap-align как единый блок */
  scroll-snap-align: start;
  /* Высота — по содержимому */
  height: auto;
  /* Overflow visible чтобы mainWrapper мог его прокрутить */
  overflow: visible;
  position: relative;
  z-index: 10;
  /* Фон секций внутри */
  background: transparent;
}


.content-zone .content_full_bottom {
  background: linear-gradient(120.84deg, #f0f5ff 22.94%, #ccdae4 93.12%);
  border-radius: 32px 32px 0 0;
  margin-top: -32px !important;
  position: relative;
}



/* security и остальные светлые секции — auto height, без min-height 100vh на десктопе */
.content-zone .security-section {
  min-height: 100vh;
}

.content-zone .service-stats {
  min-height: auto;
  padding: 56px 0;
}

.content-zone .partners-section {
  min-height: auto;
}

.content-zone .press-section {
  min-height: auto;
}

.content-zone .faq-section {
  min-height: auto;
}

.content-zone .articles-section {
  min-height: auto;
}

/* Footer внутри content-zone */
.content-zone .landing-footer {
  background: #00100F;
  height: auto !important;
  scroll-snap-align: none !important;
}

/* Убираем фоновый override на эти секции когда они внутри content-zone */
.content-zone .security-section,
.content-zone .service-stats,
.content-zone .partners-section,
.content-zone .press-section,
.content-zone .faq-section,
.content-zone .articles-section {
  background: transparent !important;
}

/* @media mobile */
@media (max-width: 767px) {
  .content-zone .security-section {
    min-height: unset;
    padding: 56px 0;
  }
}





/* ============================================================
   CONTENT ZONE — финальные переопределения
   ============================================================ */

/* contentZone — единственный snap-target для всего блока security→footer */
#contentZone {
  scroll-snap-align: start;
  height: auto !important;
  overflow: visible !important;
  position: relative;
  z-index: 10;
  /* Единый фон для всех светлых секций */
  background: linear-gradient(120.84deg, #f0f5ff 22.94%, #ccdae4 93.12%);
}

/* Все секции внутри contentZone — НЕ snap-targets */
#contentZone>section:not(.features-section),
#contentZone>.security-section,
#contentZone>.service-stats,
#contentZone>.partners-section,
#contentZone>.press-section,
#contentZone>.faq-section,
#contentZone>.articles-section,
#contentZone>footer,
#contentZone>.landing-footer {
  scroll-snap-align: none !important;
  height: auto !important;
  min-height: unset !important;
  overflow: visible !important;
  background: transparent !important;
}

/* Security section нужна min-height для нормального вида */
#contentZone .security-section {
  min-height: 100vh !important;
}

/* Footer — черный фон поверх gradient contentZone */
#contentZone .landing-footer {
  background: #00100F !important;
  position: relative;
}

/* Убираем !important из общего правила для светлых секций 
   (оно конфликтовало с contentZone background) */
.security-section,
.service-stats,
.partners-section,
.press-section,
.faq-section,
.articles-section {
  background: linear-gradient(100.18deg, #f0f5ff 22.941%, #ccdae4 93.12%), #fff;
}

#contentZone .security-section,
#contentZone .service-stats,
#contentZone .partners-section,
#contentZone .press-section,
#contentZone .faq-section,
#contentZone .articles-section {
  background: transparent !important;
}
















/* ============================================================
   CORRECT Z-INDEX LAYERING
   ============================================================ */

/* Базовые слои */
.video-section {
  z-index: 1;
}

.cards-section {
  z-index: 2;
}

/* Overlay секции - при активации поднимаются выше */
.usecases-section {
  z-index: 100;
}

#start {
  z-index: 110;
}

.features-section {
  z-index: 120;
}

/* Content zone - самый высокий слой */
#contentZone {
  position: relative;
  z-index: 200;
  background: linear-gradient(120.84deg, #f0f5ff 22.94%, #ccdae4 93.12%);
}

.title_button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

/* Все секции внутри contentZone */
#contentZone .security-section,
#contentZone .service-stats,
#contentZone .partners-section,
#contentZone .press-section,
#contentZone .faq-section,
#contentZone .articles-section {
  position: relative;
  z-index: auto;
  background: transparent;
}



/* ============================================================
   FIX: Декоративные элементы НЕ перекрывают контент
   ============================================================ */

/* Все декоративные сетки точек - только фон, не перекрывают */
.uc-dots-area,
.start-dots-area,
.features-dots-area,
.info_circles_absolute,
.uc-glow,
.features-glow,
.glow {
  pointer-events: none !important;
  z-index: 0 !important;
}

.uc-dots-area svg,
.start-dots-area svg,
.features-dots-area svg,
.info_circles_absolute svg {
  pointer-events: none !important;
}

/* ============================================================
   FIX: Все интерактивные элементы должны быть выше декора
   ============================================================ */

/* Контентные блоки внутри секций */
.uc-inner,
.start-section__scene,
.features-content,
.security-section__inner,
.service-stats__inner,
.partners-section__inner,
.press-section,
.faq-section,
.articles-section {
  position: relative;
  z-index: 5;
}

/* Карточки и кликабельные элементы */
.uc-card,
.uc-dot,
.service-stats__item,
.partners-section__brand,
.press-card,
.article-card,
.faq-item {
  position: relative;
  z-index: 10;
}

/* Кнопки и ссылки */
button,
a,
.slide-button,
.hero-cta-btn,
.auth-btn,
.lang-btn,
.to-menu-btn,
.features-start-btn,
.press-btn,
.articles-btn,
.landing-section-button {
  position: relative;
  z-index: 15;
  cursor: pointer;
  text-decoration: none;
}

/* ============================================================
   FIX: FAQ аккордеон - полная кликабельность
   ============================================================ */

.faq-item {
  position: relative;
  z-index: 10;
  background: #fff;
  border-radius: 20px;
}

.faq-item__heading {
  margin: 0;
  padding: 0;
  position: relative;
}

.faq-item__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 20;
}

.faq-item__trigger:hover {
  border-radius: 20px;
}

.faq-item__question {
  font-size: 20px;
  font-weight: 600;
  color: #0d1a1a;
  position: relative;
  z-index: 20;
}

.faq-item__icon-shell {
  position: relative;
  z-index: 20;
  flex-shrink: 0;
}

.faq-item__icon-circle {
  width: 44px;
  height: 44px;
  background: #EFF6FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item__answer-shell {
  position: relative;
  z-index: 10;
}

/* ============================================================
   FIX: Service stats карточки - свечение не перекрывает
   ============================================================ */

.service-stats__item {
  position: relative;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
}

/* Свечение внутри карточки - не выходит за пределы */
.service-stats__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(2, 209, 159, 0.55) 0%,
      rgba(56, 147, 144, 0.32) 35%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.38s ease;
  pointer-events: none;
}

.service-stats__item:hover::before {
  opacity: 1;
}

/* Весь контент внутри карточки - поверх свечения */
.service-stats__item>* {
  position: relative;
  z-index: 5;
}

/* ============================================================
   FIX: Карточки партнёров
   ============================================================ */

.partners-section__brand {
  position: relative;
  z-index: 10;
  cursor: pointer;
}


/* ============================================================
   FIX: Пресс-карточки и статьи
   ============================================================ */

.press-card,
.article-card {
  position: relative;
  z-index: 10;
  cursor: pointer;
  overflow: hidden;
  border-radius: 28px;
  transition: transform 0.3s ease;
}

.press-card:hover,
.article-card:hover {
  transform: scale(1.02);
}

.press-card__content,
.article-card__content {
  position: relative;
  z-index: 17;
}

.press-card__shade,
.article-card__shade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: url(/img/shade.png);
  z-index: 16;
}

/* ============================================================
   FIX: Активная секция должна быть выше предыдущих
   ============================================================ */

.usecases-section.usecases-visible,
#start.start-visible,
.features-section.features-visible {
  z-index: 150;
}

/* Когда contentZone активна/видима */
#contentZone:target,
section:has(~ #contentZone) {
  /* ничего особенного */
}

/* ============================================================
   FIX: Хедер всегда сверху
   ============================================================ */

.header-wrapper {
  position: fixed;
  z-index: 1000 !important;
}

.mobile-nav-panel {
  z-index: 1001 !important;
}

/* ============================================================
   FIX: Убираем конфликты между секциями
   ============================================================ */

/* Каждая секция создаёт свой контекст наложения */
.security-section,
.service-stats,
.partners-section,
.press-section,
.faq-section,
.articles-section {
  isolation: isolate;
}

/* Никакие элементы из других секций не должны перекрывать текущую */
body:has(.usecases-section.usecases-visible) .features-section,
body:has(#start.start-visible) .usecases-section,
body:has(.features-section.features-visible) #start {
  z-index: 100;
}

/* ============================================================
   FIX: Content zone - чистое наложение
   ============================================================ */

#contentZone * {
  pointer-events: auto;
}

/* Декоративные элементы внутри contentZone не мешают */
#contentZone .info_circles_absolute,
#contentZone .glow {
  display: none !important;
}

/* Все SVG внутри контента - только декор, не перекрывают */
#contentZone svg:not(.burger-svg):not(.chevron-icon):not(.check-icon):not(.faq-item__icon) {
  pointer-events: none;
}

/* ============================================================
   FIX: Мобильная версия
   ============================================================ */

@media (max-width: 767px) {
  .faq-item__trigger {
    padding: 16px 20px;
  }

  .faq-item__question {
    font-size: 16px;
  }

  .faq-item__icon-circle {
    width: 36px;
    height: 36px;
  }


  .press-card--featured {
    height: 340px;
  }

  .press-card--small {
    height: 240px;
  }
}

/* ============================================================
   FIX: Все кликабельные элементы имеют cursor: pointer
   ============================================================ */

button,
a,
.faq-item__trigger,
.press-card,
.article-card,
.service-stats__item,
.partners-section__brand,
.uc-card,
.uc-dot,
.pagination-dot,
.slide-button,
.hero-cta-btn,
.auth-btn,
.lang-btn,
.to-menu-btn,
.features-start-btn,
.press-btn,
.articles-btn,
.landing-section-button {
  cursor: pointer;
}

/* ============================================================
   FIX: Убираем лишние pointer-events
   ============================================================ */

/* Только абсолютно позиционированные декоративные элементы */
.uc-dots-area,
.start-dots-area,
.features-dots-area,
.uc-glow,
.features-glow,
.glow,
.info_circles_absolute {
  pointer-events: none;
}

/* НЕ используем глобальный pointer-events:auto — он отменяет pointer-events:none на декоративных элементах.
   Вместо этого точечно разрешаем клики только на кнопках (см. блок в конце файла). */


.articles-section__description {
  display: none;
}


























.blur_mobile_screens {
  display: none;
}




/* ============================================================
   МОБИЛЬНАЯ ВЕРСИЯ — ИСПРАВЛЕННАЯ
   ============================================================ */

@media (max-width: 767px) {

  body {
    overflow-x: hidden;
  }

  br.mobile {
    display: block;
  }

  br.desktop {
    display: none;
  }

  /* Хедер — всегда поверх всего */
  .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999 !important;
    padding: 0;
    background: transparent;
  }

  .burger_desktop {
    display: none;
  }

  .mobile_burger {
    display: block;
  }

  .nav-inner {
    padding: 0px;
  }

  .header-row {
    padding: 12px 0px;
    margin:16px;
    border-radius: 999px;
    gap: 0;
    height: 65px;
    padding-right: 10px;
  }

  .left-group {
    gap: 8px;
    flex: 1;
  }

  .nav-pill {
    display: none !important;
  }

  .to-menu-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0);
  }

  .right-group {
    gap: 8px;
  }

  .lang-btn {
    min-width: 80px;
    height: 48px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0);
    border: 0.4px solid rgba(255, 255, 255, 0);
    backdrop-filter: none;
  }

  .lang-btn span,
  body:has(.mobile-nav-panel.active) .lang-btn span {
    color: #fff;
  }

  .chevron-icon path,
  body:has(.mobile-nav-panel.active) .chevron-icon path {
    stroke: #fff;
  }

  .lang-btn:hover {
    border: 0.4px solid rgba(255, 255, 255, 0);
  }

  body:has(.mobile-nav-panel.active) .header-wrapper.header-light .logo img {
    filter: none;
  }


  body:has(.mobile-nav-panel.active) .to-menu-btn {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
  }

  .lang-btn span {
    font-size: 14px;
  }

  .auth-btn {
    display: none;
  }

  .hero-content {
    top: 125px;
    transform: translate(-50%, 0);
    padding: 0 16px;
    gap: 30px;
  }

  .hero-title-static {
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -0.53px;
  }

  .hero-ellipse {
    display: none;
  }

  .hero-cta-btn {
    width: 245px;
        height: 64px;
    font-size: 19px;
  }


/* Для мобильных устройств — вся бегущая строка не кликабельна */

    .two_marquee,
    .two_marquee * {
        pointer-events: none !important;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }


  .scroll-hint {
    bottom: 20px;
  }

  .hero-float-card {
    display: none;
  }

  /* Cards секция — ОРИГИНАЛЬНЫЕ СТИЛИ */
  .cards-section {
    flex-direction: column;
    height: 100dvh;
    min-height: 600px;
  }

  .card_side {
    width: 100%;
    height: 48%;
    order: 2;
    align-items: flex-start;
  }

  .card_container {
    padding-left: 20px;
  }

  .cards {
    gap: 20px;
    transform: rotateX(20deg) rotateY(-10deg) rotateZ(15deg) translateZ(10px);
  }

  .card {
    width: 160px;

  }

  .card.active {
    transform: scale(1.2);
  }

  .devider {
    display: none;
  }

  .info_side {
    flex: 0 0 auto;
    width: 100%;
    order: 1;
    padding: 0;
    align-items: flex-start;
    overflow: hidden;
    padding-top: 0px;
  }

  .vertical-slider {
    height: 370px;
    width: 100%;
  }

  .info-slide {
    height: 370px;
    padding: 100px 20px 0;
    gap: 16px;
    justify-content: flex-start;
  }

  .slide-title {
    font-size: 32px;
    color: #fff;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.24px;
  }

  .slide-desc {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.2px;
  }

  .slide-button {
    padding: 13px 24px;
    font-size: 16px;
    width: fit-content;
    height: fit-content;
    margin-top: 4px;
  }

  .slide-button span {
    font-size: 14px;
  }

  .mobile-divider {
    display: flex !important;
    order: 3;
    width: 100%;
    height: 24px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-top: -4px;
    margin-bottom: 2px;
  }

  .mobile-counter {
    display: block !important;
    order: 4;
    font-size: 12px;
    color: rgba(230, 254, 253, 0.44);
    letter-spacing: -0.18px;
    line-height: 40px;
    padding: 0 0 0 20px;
    flex-shrink: 0;
  }

  .into_card {
    zoom: 0.55;
  }

  .card_circle {
    zoom: 0.33;
  }

  .bottom_green {
    /* display: none; */
  }

  .uc-bottom-img {
    display: none;
  }


  .info_circles_absolute {
    bottom:0;
    right: 50%;
    transform: translate(50%, 50%);
  }

  /* Usecases секция — с учётом фиксированной шапки */
  .uc-inner {
    padding: 0 16px;
    padding-right: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 50px;
    padding-top: 70px;
  }

  .uc-slider-track {
    gap: 16px;
  }

  .uc-left {
    flex: none;
    width: 100%;
    text-align: left;
    gap: 16px;
    align-items: flex-start;
    padding-right: 16px;
  }

  .uc-title {
    font-size: 32px;
    line-height: 34px;
    text-align: left;
    color: #E6FEFD;
  }

  .uc-title br {
    display: none;
  }

  .uc-subtitle {
    font-size: 16px !important;
    line-height: 21px !important;
    text-align: left !important;
    color: #ffffff;
  }

  .uc-right {
    width: 100%;
    flex: 0;
  }

  .uc-slider-viewport {
    height: fit-content;
  }

  .uc-card {
    flex: 0 0 260px;
    width: 260px;
    height: 339px;
  }

  .uc-card:last-of-type .uc-card-image img {
    width:90%;
  }

  .uc-card-content {
    padding: 0 16px;
  }

  .uc-card:not(.uc-card-active) {
    transform: scale(1);
    opacity: 0.6;
  }

  .uc-card-image {
    max-height: 190px;
  }

  .uc-card-image img {
    zoom: 1.27;
  }

  .uc-card-title {
    font-size: 20px;
    line-height: 26px;
  }

  .uc-card-desc {
    font-size: 14px;
    line-height: 18px;
  }

  /* .uc-dots-nav {
    justify-content: center;
  } */

  .uc-dot {
    width: 12px;
    height: 12px;
  }

  .uc-dot.active {
    width: 49px;
  }

  /* Start секция — экраны чуть меньше высотой */
  .start-section {
    --start-section-edge: 16px;
    --start-section-scale: 0.7;
    padding: 0 16px;
  }

  .start-section__heading {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    text-align: left;
    padding-top: 100px;
    margin-bottom: 16px;
  }

  .start-section__title {
    font-size: 32px;
    line-height: 34px;
  }

  .start-section__scene {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
  }

  .start-section__phone {
    position: absolute;
    left: auto;
    top: auto;
    bottom: -10px;
    transform: none;
    bottom: -70px;
    width: 300px;
    height: 555px;
    margin: 0 auto;
    margin-bottom: -20px;
    order: 2;
  }

  .start-section__panels {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
  }

  .start-section__panel-counter {
    display: none;
  }

  .start-section__phone-clip {
    border-radius: 24px;
    clip-path: inset(0 round 24px);
  }

  .start-section__phone-screen {
    border-radius: 24px;
  }

  .start-section__panel-text {
    gap: 20px;
  }

  .start-section__panel {
    justify-content: flex-start;
    gap: 12px;
  }

  .start-section__panel-description {
    font-size: 16px !important;
    line-height: 20px;
    text-align: left;
  }

  .start-section__panel-note {
    font-size: 14px !important;
    text-align: left;
  }

  /* Features секция */
  .features-main-title {
    font-size: 32px;
    line-height: 34px;
  }

  .features-start-btn {
    width: 164px;
    height: 48px;
  }

  .features-mobile-counter {
    display: block;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: rgba(230, 254, 253, 0.44);
  }

  /* Security секция */
  .security-section {
    padding: 56px 0;
  }

  .security-section__inner {
    padding: 0 16px;
  }

  .security-section__title {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 48px;
  }

  .security-section__graphic {
    height: auto;
  }

  .security-section__visual {
    display: none;
  }

  .security-section__overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    height: auto;
    transform: none;
    left: auto;
    top: auto;
  }

  .security-section__badge {
    position: relative;
    left: auto;
    top: auto;
    padding: 14px 18px;
    border-radius: 20px;
    width: 100%;
  }

  .security-section__badge-copy {
    font-size: 16px;
  }

  /* Service stats секция — исправлен порядок карточек */
  .service-stats {
    padding: 56px 0;
  }

  .service-stats__inner {
    padding: 0 16px;
    gap: 32px;
  }

  .service-stats__title {
    font-size: 32px;
    line-height: 34px;
    text-align: left;
  }

  .service-stats__grid {
    width: 100%;
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-stats__grid::-webkit-scrollbar {
    display: none;
  }

  .service-stats__item {
    width: 100%;
    min-height: 220px;
    height: 250px;
    scroll-snap-align: start;
  }

  .service-stats__value {
    font-size: 42px;
    line-height: 38px;
  }

  .service-stats__item-title {
    font-size: 20px;
    line-height: 24px;
  }

  .service-stats__item-description {
    font-size: 13px;
    line-height: 18px;
  }

  .service-stats__pagination {
    display: none;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
  }

  .pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .pagination-dot.active {
    width: 49px;
    background: #02D19F;
  }




  #contentZone .security-section {
    border-radius: 16px 16px 0 0;
    margin-top: -16px !important;
  }

  #contentZone .security-section {
    min-height: fit-content !important;
  }


  .content-zone .content_full_bottom {
    border-radius: 16px 16px 0 0;
    margin-top: -16px !important;
  }

  /* Partners секция */
  .partners-section {
    padding: 56px 0;
  }

  .partners-section__inner {
    padding: 0 16px;
  }

  .partners-section__title {
    font-size: 32px;
    line-height: 34px;
    text-align: left;
  }

  /* Press секция — одинаковые карточки квадратиком */
  .press-section {
    padding: 56px 16px;
    gap: 32px;
  }

  .press-section__title {
    font-size: 32px;
    text-align: center;
  }

  .press-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -16px;
    padding: 0 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .press-grid::-webkit-scrollbar {
    display: none;
  }

  .press-card {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  .press-card--featured {
    width: 260px;
    height: 260px;
  }

  .press-card--featured .press-card__title {
    font-size: 16px;
    line-height: 20px;
  }

  .press-cards-small {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-shrink: 0;
  }

  .press-card--small {
    width: 260px;
    height: 260px;
  }

  .press-card--small .press-card__title {
    font-size: 14px;
    line-height: 18px;
  }

  .press-btn {
    height: 48px;
    font-size: 16px;
    padding: 10px 24px;
    width: fit-content;
    margin: 0 auto;
  }

  /* FAQ секция */
  .faq-section {
    padding: 56px 16px;
    flex-direction: column;
    gap: 32px;
  }

  .faq-section__copy {
    flex: none;
    width: 100%;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }

  .faq-section__copy-stack {
    align-items: flex-start;
  }

  .faq-section__title {
    font-size: 32px;
    line-height: 34px;
  }

  .faq-section__description,
  .articles-section__description {
    font-size: 16px;
    line-height: 20px;
    color: #444F4F;
    text-align: center;
  }

  .press-card__content {
    padding:20px;
  }

  .press-card.press-card--small:nth-of-type(1) .press-card__logo {
    max-height: 24px;
  }
  
  .press-card.press-card--small:nth-of-type(2) .press-card__logo {
    max-height: 24px;
  }
  
  .press-card.press-card--small:nth-of-type(3) .press-card__logo {
    max-height: 19px;
  }
  
  .press-card.press-card--small:nth-of-type(4) .press-card__logo {
    max-height: 30px;
  }

  .press-card.press-card--small:nth-of-type(5) .press-card__logo {
    max-height: 30px;
  }

  .articles-section__description {
    display: block;
  }

  .faq-section__button {
    height: 48px;
    font-size: 16px;
    padding: 10px 24px;
  }

  .faq-section__list {
    width: 100%;
    gap: 16px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item__trigger {
    padding: 16px;
  }

  .faq-item__question {
    font-size: 20px;
    line-height: 24px;
  }


  .blur_mobile_screens {
    position: absolute; 
    display: block !important; 
    left: 0; 
    bottom: 0; 
    width:100%; 
    z-index:99;
  }

  .faq-item__icon-circle {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .faq-item__icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
  }

  .faq-item__answer {
    font-size: 17px;
    line-height: 22px;
    padding: 0 16px 16px;
  }

  .faq-item[data-faq-expanded="true"] .faq-item__icon,
  .faq-item[data-open="true"] .faq-item__icon {
    transform: rotate(180deg);
  }

  /* Articles секция */
  .articles-section {
    padding: 56px 16px;
    gap: 32px;
  }

  .articles-section__head {
    padding: 0;
  }

  .articles-section__title {
    font-size: 32px;
    line-height: 34px;
  }

  .articles-section__desc {
    font-size: 16px;
    line-height: 20px;
  }

  .articles-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -16px;
    /* padding: 0 16px; */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .articles-grid::-webkit-scrollbar {
    display: none;
  }

  .article-card {
    flex: 0 0 240px;
    height: 331px;
    scroll-snap-align: start;
    border-radius: 20px;
  }

  .article-card__title {
    font-size: 20px;
    line-height: 24px;
  }

  .article-card__desc {
    font-size: 12px;
    line-height: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .article-card__tags {
    font-size: 12px;
  }

  .articles-btn {
    height: 48px;
    font-size: 16px;
    padding: 10px 24px;
    width: fit-content;
    margin: 0 auto;
  }

  .articles-btn.mobile {
    display: flex;
  }

  /* Footer */
  .landing-footer__accordion {
    display: block;
    transition: all 0.3s ease;
  }

  /* Стили для summary, чтобы скрыть стандартный маркер и сделать его кликабельным */
  .landing-footer__accordion-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
  }


  .landing-footer__accordion[open] .landing-footer__accordion-summary {
    margin-bottom: 0;
  }

  .landing-footer__support-card,
  .landing-footer__brand-card {
    gap: 16px;
  }

  .landing-footer__accordion-summary::-webkit-details-marker {
    display: none;
  }

  /* Анимация стрелки */
  .landing-footer__accordion-chevron {
    display: flex !important;
    transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  }

  .landing-footer__accordion[open] .landing-footer__accordion-chevron {
    transform: rotate(180deg);
  }

  .landing-footer__accordion[data-closing] .landing-footer__accordion-chevron {
    transform: rotate(0deg);
  }

  /* Плавное открытие/закрытие панели через max-height */
  .landing-footer__accordion-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease,
                opacity 0.35s ease,
                padding-top 0.4s ease;
    padding-top: 0;
  }

  .landing-footer__accordion:not([open]) .landing-footer__accordion-panel {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
  }

  /* Состояние закрытия — open ещё стоит, но анимация уже идёт */
  .landing-footer__accordion[data-closing] .landing-footer__accordion-panel {
    max-height: 0 !important;
    opacity: 0 !important;
    padding-top: 0 !important;
  }

  .landing-footer__accordion[open]:not([data-closing]):not([data-opening]) .landing-footer__accordion-panel {
    max-height: 600px;
    opacity: 1;
    padding-top: 16px;
  }

  .landing-footer__social-icon {
    width: 28px;
    height: 28px;
  }

  /* Общие исправления */
  .uc-glow,
  .features-glow,
  .glow {
    /* display: none; */
  }



  .features-glow {
    position: absolute;
    width: 100%;
    height: 250px;
    left: 0;
    bottom: -170px;
    background: #00D2A0;
    filter: blur(92px);
    opacity: 0.5;
    pointer-events: none;
    border-radius: 50%;
    transform: rotate(-45deg);
  }

  .uc-dots-area,
  .start-dots-area,
  .features-dots-area,
  .info_circles_absolute {
    /* display: none; */
    zoom:0.7;
  }

  .start-dots-area {
    zoom:0.7;
  }

  /* Мобильная навигация поверх всего */
  .mobile-nav-panel {
    z-index: 1001 !important;
  }

  .mobile-nav-panel.active {
    visibility: visible;
    opacity: 1;
  }

  .mobile-nav-container {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    padding-bottom: 50px;
  }

  /* Убираем лишние отступы у usecases */
  .usecases-section .uc-inner {
    padding-top: 100px;
  }
}


@media (max-width: 767px) and (max-height:670px) {
  .mobile-nav-container {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    padding-bottom: 150px;
  }
}



@media (min-width: 768px) {

  .logo {
    padding: 14px 20px;

    background: rgba(20, 45, 45,0.6);
    border-radius: 999px;
    backdrop-filter: blur(11px);
  }

  .header-wrapper.header-light .to-menu-btn {
    background: rgba(0, 0, 0, 0);
    border: 1px solid #E5E5E5;
  }


  .security-section {
    border-radius: 32px 32px 0 0;
  }


  .header-wrapper.header-light .logo {
    padding: 14px 20px;
    background: rgba(89, 89, 89, 0.03);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    border-radius: 999px;
  }


  .header-wrapper.header-light .lang-btn {
    background: rgba(89, 89, 89, 0.03);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
  }

  .header-wrapper.header-light .lang-dropdown {
    backdrop-filter: blur(13.7px);
    background: transparent;
  }


  .header-wrapper.header-light .lang-selector.open .lang-btn {
    background: rgba(89, 89, 89, 0);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
  }


  .landing-footer__accordion {
    display: block;
  }

  .landing-footer__accordion[open] .landing-footer__accordion-chevron {
    transform: none;
  }

  .landing-footer__accordion:not([open]) .landing-footer__accordion-panel {
    max-height: 600px !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .landing-footer__accordion:not([open]) .landing-footer__link-list,
  .landing-footer__accordion:not([open]) .landing-footer__socials-list {
    transform: none !important;
    opacity: 1 !important;
  }

  .landing-footer__accordion-chevron {
    display: none !important;
  }
}

/* ============================================================
   FEATURES SECTION — INSIDE contentZone (normal flow, not fixed)
   ============================================================ */

@keyframes featuresFadeIn {
  0%   { opacity: 0; transform: scale(0.94) translateY(28px); }
  50%  { opacity: 0.85; }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

#contentZone .features-section {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 100vh;
  opacity: 0;
  pointer-events: auto !important;
  transform: scale(0.97);
  transition: none !important;
  animation: none;
  scroll-snap-align: none !important;
  overflow: hidden !important;
  z-index: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Анимация появления при входе в зону видимости */
#contentZone .features-section.features-in-view {
  animation: featuresFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  pointer-events: auto;
}

/* Уже показана — держим видимой, без сдвигов */
#contentZone .features-section.features-shown {
  opacity: 1 !important;
  transform: scale(1) !important;
  animation: none !important;
}

/* Remove the fixed bottom bar inside contentZone */
#contentZone .features-bottom-bar,
#contentZone .features-bottom-blur,
#contentZone .features-bottom-img,
#contentZone .features-mobile-counter {
  display: none !important;
}

/* Leftover overlay classes — нейтрализуем */
#contentZone .features-section.features-visible,
#contentZone .features-section.zoom-appear,
#contentZone .features-section.zoom-disappear {
  opacity: 1 !important;
  transform: scale(1) !important;
  pointer-events: auto !important;
  animation: none !important;
}

/* Content positioning inside the section */
#contentZone .features-content {
  position: relative;
  transform: none;
  left: auto;
  top: auto;
  padding: 80px 40px;
}

/* ============================================================
   SECTIONS 3+ TYPOGRAPHY & SPACING — match mockup
   ============================================================ */

/* ── Use Cases Section (section 3) ───────────────────────── */
.usecases-section {
  background: linear-gradient(279.76deg, #142D2D 0%, #121619 100%);
}


.uc-subtitle {
  font-weight: 400;
  line-height: 1.55;
  color: rgba(201, 225, 224, 0.7);
  max-width: 360px;
}



/* ── Start Section (section 4) ────────────────────────────── */

.start-section__panel-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 400;
  line-height: 1.55;
  color: #e0f8f4;
}

.start-section__panel-note {
  font-size: clamp(13px, 1vw, 14px);
  color: rgba(255, 255, 255, 0.45);
}

/* ── Features Section typography ─────────────────────────── */
.features-main-title {
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: #FFFFFF;
  text-align: center;
}

/* ── Security Section ─────────────────────────────────────── */


/* ── Service Stats ────────────────────────────────────────── */


.service-stats__value {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 500;
  background: linear-gradient(156deg, #d5e0f5, #ccdae4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.service-stats__item-title {
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #fff;
}

.service-stats__item-description {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}



/* ── Press Section ────────────────────────────────────────── */
.press-section__title {
  text-align: center;
  color: #262626;
}

.press-card--featured .press-card__title {
  font-size: clamp(22px, 2.8vw, 40px);
}

.press-card--small .press-card__title {
  font-size: clamp(14px, 1.5vw, 20px);
}

/* ── FAQ Section ──────────────────────────────────────────── */




.faq-item__question {
  font-weight: 600;
  line-height: 1.35;
  color: #0d1a1a;
}

.faq-item__answer {
  color: #444F4F;
}

/* ── Articles Section ─────────────────────────────────────── */

.article-card__title {
  font-weight: 600;
  line-height: 1.25;
}

/* ── Content Zone padding adjustments ────────────────────── */
.content-zone .service-stats__inner {
  padding: 0 clamp(16px, 7vw, 100px);
  gap: 56px;
}

.content-zone .partners-section__inner {
  padding: 0 16px;
  gap: 56px;
  margin: 0;
  align-items: center;
}


.content-zone .security-section {
  padding: 92px 0;
  padding-bottom: 0;
}

.content-zone .service-stats {
  padding: 92px 0;
}

.content-zone .partners-section {
  padding: 92px 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.content-zone .press-section {
  padding: 72px clamp(16px, 8vw, 120px);
  gap: 56px;
}

.content-zone .faq-section {
  padding: 80px clamp(16px, 8vw, 120px);
  gap: 60px;
  max-width: 1440px;
  margin: 0 auto;
}

.content-zone .articles-section {
  padding: 72px clamp(16px, 8vw, 120px) 56px;
  gap: 56px;
}



/* ============================================================
   START GUIDE SECTION - "Как начать пользоваться Millpay"
   ============================================================ */
/* ============================================================
   START GUIDE SECTION - стилизована как features-section
   ============================================================ */

.start-guide-section {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    overflow: hidden;
    scroll-snap-align: none !important;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.85);
    transition: none;
    background: linear-gradient(279.76deg, #142D2D 0%, #121619 100%);
    z-index: 125;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.start-guide-section.start-guide-visible {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.start-guide-section.zoom-appear {
    animation: overlayZoomAppear 0.6s cubic-bezier(0.2, 0.9, 0.4, 1) forwards;
}

.start-guide-section.zoom-disappear {
    animation: overlayZoomDisappear 0.55s cubic-bezier(0.4, 0, 0.6, 1) forwards;
}

/* Glow эффект как у features-section */
.start-guide-glow {
    position: absolute;
    width: 843px;
    height: 843px;
    left: 47px;
    bottom: -420px;
    background: #00D2A0;
    filter: blur(92px);
    opacity: 0.18;
    pointer-events: none;
    border-radius: 50%;
    transform: rotate(-45deg);
    z-index: 0;
}

/* Dots фон как у features-section */
.start-guide-dots-area {
    position: absolute;
    left: -212px;
    top: 50%;
    margin-top: calc(-484.71px / 2);
    width: 852.56px;
    height: 484.71px;
    transform: scaleX(-1);
    pointer-events: none;
    z-index: 0;
}

.start-guide-dots-svg {
    width: 100%;
    height: 100%;
}

.start-guide-dots-group circle {
    transition: fill 0.35s ease, fill-opacity 0.35s ease;
}

.start-guide-dots-group circle.dot-lit {
    fill: #7ABFB8 !important;
    fill-opacity: 0.6 !important;
}

/* Контентный блок как у features-section */
.start-guide-content {
    position: absolute;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 0 80px;
    z-index: 1;
}

.start-guide-text-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    pointer-events: auto;
}

.start-guide-title {
    font-family: 'Geist', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 64px;
    line-height: 72px;
    letter-spacing: -0.4px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    max-width: 1200px;
}

.start-guide-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 28px;
    width: 200px;
    height: 56px;
    background: #FFFFFF;
    border: 1px solid #E6FEFD;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Geist', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.18px;
    color: #0F1D27;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    pointer-events: auto;
}

.start-guide-btn:hover {
    transform: scale(1.03);
}

/* Bottom bar (такой же как у usecases/features) */
.start-guide-bottom-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.02);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.start-guide-bottom-blur {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
    z-index: 10;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.02);
    mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.start-guide-bottom-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Мобильная адаптация */
@media (max-width: 767px) {
    .start-guide-content {
        padding: 0 20px;
        gap: 24px;
    }
    
    .start-guide-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .start-guide-title br {
        display: block;
    }
    
    .start-guide-btn {
        width: 180px;
        height: 48px;
        font-size: 15px;
    }
    
    .start-guide-glow {
        width: 100%;
        height: 250px;
        left: 0;
        bottom: -170px;
        background: #00D2A0;
        filter: blur(92px);
        opacity: 0.5;
        pointer-events: none;
        border-radius: 50%;
        transform: rotate(-45deg);
    }
    
    .start-guide-dots-area {
        zoom: 0.7;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .start-guide-title {
        font-size: 48px;
        line-height: 56px;
    }
}

.step-number {
    font-family: 'Geist', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1;
    background: linear-gradient(135deg, #00D2A0, #0D8B6F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.step-title {
    font-family: 'Geist', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #0d1a1a;
    margin-bottom: 12px;
}

.step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #444F4F;
}

.step-note {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(68, 79, 79, 0.6);
    margin-top: 12px;
}







.mobile {
  display: none;
}

/* ============================================================
   MOBILE — Features section inside contentZone
   ============================================================ */
@media (max-width: 767px) {

  .title_button .articles-btn {
    display: none;
  }

  .mobile {
    display: block;
  }

  #contentZone .features-section {
    min-height: 100dvh;
    padding: 0;
  }

  #contentZone .features-content {
    padding: 60px 24px;
  }

  .features-main-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .features-start-btn {
    font-size: 15px;
    height: 48px;
    padding: 10px 24px;
  }

  /* Sections 3+ mobile spacing */
  .content-zone .service-stats {
    padding: 54px 0;
  }

  .content-zone .partners-section {
    padding: 56px 0;
    gap: 35px;
  }

  .content-zone .security-section {
    padding: 56px 0;
  }

  .content-zone .press-section {
    padding: 56px 16px;
    gap: 48px;
  }

  .content-zone .faq-section {
    padding: 56px 16px;
    gap: 32px;
  }

  .content-zone .articles-section {
    padding: 56px 16px 40px;
    gap: 40px;
  }

  /* Stats mobile padding */
  .content-zone .service-stats__inner {
    padding: 0 16px;
    padding-right:0px;
    gap: 0px;
    align-items: flex-start;
  }

  .partners-section__inner {
    padding: 0 16px;
    gap: 32px;
    align-items: flex-start;
  }

  .security-section__inner {
    padding: 0 16px;
  }

  /* Press grid mobile */
  .press-grid {
    flex-direction: column;
    gap: 12px;
  }

  .press-cards-small {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Articles head */
  .articles-section__head {
    gap: 10px;
  }




    .start-guide-inner {
        padding: 0 16px;
    }
    
    .start-guide-title {
        font-size: 34px;
        margin-bottom: 32px;
        line-height: 1.4;
    }
    
    .start-guide-steps {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .start-guide-step {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 24px 20px;
    }
    
    .step-number {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-desc {
        font-size: 14px;
    }

      .content-zone .partners-section__inner {
    align-items: flex-start;
  }



}

/* ── Tablet 768–1023px ────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {
  #contentZone .features-section {
    min-height: 100vh;
  }

  #contentZone .features-content {
    padding: 80px 40px;
  }

  .features-main-title {
    font-size: 48px;
  }

  .content-zone .service-stats__inner,
  .content-zone .partners-section__inner,
  .content-zone .security-section__inner {
    padding: 0 40px;
  }



  .content-zone .press-section,
  .content-zone .faq-section,
  .content-zone .articles-section {
    padding-left: 40px;
    padding-right: 40px;
  }

  .press-card--featured {
    width: 360px;
    height: 400px;
  }

  .press-cards-small {
    grid-template-columns: 1fr 1fr;
  }

  .press-card--small {
    height: 190px;
  }

  .service-stats__grid {
    gap: 16px;
  }

  .service-stats__item {
    width: 240px;
    flex: 0 0 240px;
    height: 220px;
  }

  .faq-section {
    flex-direction: column;
    gap: 40px;
  }

  .faq-section__copy {
    flex: none;
    width: 100%;
  }
}
/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE ENHANCEMENTS v2
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {

  /* ── 1. SECURITY BADGES — make overlay visible & set initial state ─────── */
  .security-section__visual {
    display: none !important;
  }

  .security-section__overlay {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .security-section__graphic {
    height: auto !important;
  }

  /* Badges start invisible, animate in via JS */
  .security-section__badge {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    border-radius: 20px !important;
    padding: 18px 18px !important;
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .security-section__badge.badge-visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
  }

  /* ── 2. SERVICE STATS — touch-intercept card layering on mobile ──────── */

  /* Outer wrapper — просто обёртка */
  .stats-stack-outer {
    position: relative;
    width: 100%;
  }

  /* Sticky-контейнер: центрирует контент */
  .stats-stack-sticky {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 16px 56px;
    pointer-events: none;
    z-index: 1;
    min-height: 100dvh;
    justify-content: center;
  }

  .stats-stack-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: -0.24px;
    color: #262626;
    text-align: center;
    margin: 0 auto 48px auto;
    font-family: 'Geist', sans-serif;
    width: 100%;
    max-width: 340px;
    flex-shrink: 0;
  }

  /* Контейнер карточек — клипует выезжающие карточки */
  .stats-stack-cards {
    position: relative;
    width: 260px;
    max-width: 260px;
    height: 240px;
    /* overflow: hidden — карточки въезжают снизу, нужно обрезать */
    overflow: hidden;
    border-radius: 20px;
    flex-shrink: 0;
  }

  /* Отдельная карточка — абсолютная, стартует за нижним краем */
  .stats-stack-card {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background-color: #121619;
    background-image: linear-gradient(-54.3deg, #121619 30%, #57575c 87%);
    box-shadow: 7px 8px 23px rgba(0,255,167,0.1), 28px 32px 42px rgba(0,255,167,0.09);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    will-change: transform, opacity;
    pointer-events: auto;
    /* JS управляет transform и transition */
  }

  .stats-stack-card .stats-value {
    background: linear-gradient(156deg, #d5e0f5, #ccdae4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: 'Geist', sans-serif;
  }

  .stats-stack-card .stats-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 4px;
    font-family: 'Geist', sans-serif;
  }

  .stats-stack-card .stats-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.65);
    font-family: 'Geist', sans-serif;
  }

  /* Hint под карточками — подсказка "свайпните вверх" */
  .stats-swipe-hint {
    margin-top: 24px;
    font-size: 12px;
    color: rgba(38, 38, 38, 0.4);
    letter-spacing: 0.02em;
    font-family: 'Geist', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .stats-swipe-hint.hidden {
    opacity: 0;
  }

  /* Dot-индикаторы карточек */
  .stats-stack-dots {
    display: flex;
    gap: 6px;
    margin-top: 20px;
    pointer-events: none;
  }

  .stats-stack-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(38,38,38,0.2);
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
  }

  .stats-stack-dot.active {
    background: #02D19F;
    transform: scale(1.3);
  }

  .start-bottom-blur {
    display: none;
  }

  .start-bottom-bar {
    z-index: 4;
  }

  /* Spacer больше не нужен — но оставим на случай если createElement вызван */
  .stats-stack-spacer {
    display: none;
    pointer-events: none;
  }

  /* Скрыть оригинальный grid/pagination */
  .stats-stack-mode .service-stats__grid,
  .stats-stack-mode .service-stats__pagination,
  .stats-stack-mode .service-stats__inner {
    display: none !important;
  }

  .stats-stack-mode {
    overflow: visible !important;
    min-height: unset !important;
    height: auto !important;
    padding: 0 !important;
  }

  /* ── 3. PRESS SECTION — articles-style scroll on mobile ──────────────── */
  .press-grid-mobile {
    display: block;
    width:100%;
  }

  .press-swipe-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .press-swipe-row::-webkit-scrollbar {
    display: none;
  }

  .press-swipe-row .press-card {
    flex: 0 0 240px;
    width: 240px;
    height: 240px;
    border-radius: 20px;
  }

  .press-swipe-row .press-card__title {
    font-size: 20px;
    line-height: 1.3;
  }

  /* Hide desktop press grid on mobile */
  .press-grid--desktop {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .press-grid-mobile {
    display: none !important;
  }
}

/* Fix press section padding on mobile (remove side padding so swipe row reaches edges) */
@media (max-width: 767px) {
  .content-zone .press-section,
  .press-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .press-section .title_button {
    padding-left: 16px;
    padding-right: 16px;
    justify-content: space-between;
    align-items: center;
  }
}






.content-zone .full_bottom_shadow {
  display:block;
  position: absolute;
  top: 0;
  left: 50%;
  height: 150px;
  border-radius:32px 32px 0 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.05), opacity 0.4s ease;
  opacity: 0;
}

.content-zone .full_bottom_shadow.active {
  opacity: 1;
}

.content-zone .full_bottom_shadow1 {
  width: 95%;
  background: rgba(248, 251, 255, 0.4);
  transform:translate(-50%,0px);
}

.content-zone .full_bottom_shadow2 {
  width: 90%;
  background: rgba(248, 251, 255, 0.15);
  transform:translate(-50%,0px);
}

.content-zone .full_bottom_shadow1.active {
  transform:translate(-50%,-23px);
}

.content-zone .full_bottom_shadow2.active {
  transform:translate(-50%,-46px);
}



@media (max-width: 767px) {
  .content-zone .full_bottom_shadow {
    border-radius: 16px 16px 0 0;
  }


  .content-zone .full_bottom_shadow1 {
    width: 90%;
  }

  .content-zone .full_bottom_shadow2 {
    width: 80%;
  }

  .content-zone .full_bottom_shadow1.active {
    transform:translate(-50%,-10px);
  }

  .content-zone .full_bottom_shadow2.active {
    transform:translate(-50%,-20px);
  }

  .bottom-blur-bar {
    display: none;
  }

  .title_button img {
    display: block;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   MOBILE: Экраны с малой высотой (max-height: 670px)
   Уменьшаем элементы которые заскакивают друг на друга
   ══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) and (max-height: 670px) {

  /* Hero floating cards */
  .hero-float-card { zoom: 0.78; }

  /* Cards section */
  /* .cards-section { zoom: 0.88; } */

  /* Security visual */
  .security-section__inner { padding: 32px 16px; }
  .security-section__title { font-size: 24px !important; margin-bottom: 20px !important; }
  .security-section__visual { zoom: 0.76; }
  .security-section__overlay { zoom: 0.82; }

  /* Stats stack */
  .stats-stack-sticky { padding: 36px 16px 36px; min-height: unset; }
  .stats-stack-title { font-size: 22px !important; line-height: 28px !important; margin-bottom: 24px !important; }
  .stats-stack-cards { height: 185px !important; }
  .stats-stack-card { padding: 16px 18px !important; }
  .stats-stack-card .stats-value { font-size: 36px !important; }
  .stats-stack-card .stats-title { font-size: 16px !important; }
  .stats-stack-card .stats-desc { font-size: 12px !important; }

  /* Start section phone */
  .start-section__phone { zoom: 0.80; }
  .start-section__title { font-size: 24px !important; }
  .start-section__panel-description { font-size: 14px !important; }

  /* How-to-start guide */
  .start-guide-inner { padding: 32px 16px 20px; }
  .start-guide-title { font-size: 24px !important; }

  /* Features */
  .features-main-title { font-size: 22px !important; }
  .features-content { padding: 40px 16px; }

  /* Partners */
  .partners-section__title { font-size: 24px !important; }
  .partners-section__inner { padding-top: 28px; padding-bottom: 16px; }

  /* FAQ */
  .faq-section__title { font-size: 24px !important; }
}



@media (max-width: 767px) {
  html, body { overflow-x: hidden; }

  /* Prevent horizontal scroll in contentZone and all its children */
  #contentZone,
  .content-zone {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  #contentZone > *,
  .content-zone > * {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Clamp all sections and their contents */
  .features-section,
  .security-section,
  .service-stats,
  .partners-section,
  .press-section,
  .faq-section,
  .articles-section,
  .landing-footer,
  .start-section,
  .stats-stack-outer,
  .stats-stack-sticky {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Prevent any absolutely/fixed positioned wide elements from causing scroll */
  .main-wrapper {
    overflow-x: hidden;
  }
}

/* ─── OVERLAY BACKDROP TRANSITION ─── */
#overlayBackdrop {
  /* Slow fade-out so there's no flash between start-section and features */
  transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ─── MARQUEE SEAMLESS FIX ─── */
/* Ensure the marquee track never shows a gap — use translate3d for GPU acceleration */
.partners-section__row--desktop-marquee {
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.marquee-group {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* ============================================================
   STATS SLIDER — MOBILE (финальный override)
   ============================================================ */
@media (max-width: 767px) {
  /* Контейнер — обрезаем overflow, убираем горизонтальный скролл */
  .service-stats__grid {
    overflow: hidden !important;
    overflow-x: hidden !important;
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
    position: relative !important;
    touch-action: pan-y !important;
  }

  /* Трек — flex-строка, сдвигается через JS translateX */
  .stats-slide-track {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    will-change: transform;
  }

  /* Каждая карточка — ровно 100% ширины контейнера */
  .stats-slide-track .service-stats__item {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    scroll-snap-align: none !important;
    margin: 0 !important;
    border-radius: 20px !important;
    min-height: 230px !important;
    height: auto !important;
  }

  /* Пагинация */
  .service-stats__pagination {
    display: flex !important;
    gap: 8px !important;
    justify-content: center !important;
    margin-top: 20px !important;
  }

  .pagination-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 10px !important;
    background: rgba(0, 64, 64, 0.18) !important;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease !important;
    cursor: pointer !important;
  }

  .pagination-dot.active {
    width: 44px !important;
    background: #02D19F !important;
  }
}
/* ============================================================
   STATS SLIDER — MOBILE v2 (карточки 260×240, отступ 16px)
   ============================================================ */
@media (max-width: 767px) {
  .service-stats__grid {
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
    position: relative !important;
    touch-action: pan-y !important;
    min-height: 240px !important;
    margin-top: 48px !important;
  }

  /* Трек — flex-строка с gap 16px, сдвигается через JS translateX */
  .stats-slide-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    will-change: transform;
    width: auto !important;
  }

  /* Каждая карточка — 260×240 */
  .stats-slide-track .service-stats__item {
    flex: 0 0 260px !important;
    width: 260px !important;
    min-width: 260px !important;
    height: 240px !important;
    min-height: 240px !important;
    scroll-snap-align: none !important;
    margin: 0 !important;
    border-radius: 20px !important;
  }

  /* Пагинация */
  .service-stats__pagination {
    display: flex !important;
    gap: 8px !important;
    justify-content: center !important;
    margin-top: 20px !important;
  }

  .service-stats__pagination,
  .service-stats__pagination * {
    pointer-events: none !important;
  }

  .pagination-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 10px !important;
    background: rgba(0, 64, 64, 0.18) !important;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease !important;
    cursor: pointer !important;
  }

  .pagination-dot.active {
    width: 49px !important;
    background: #11514D !important;
  }
}

