/* ========================================
   GigaChat Business Landing Page Styles
   ======================================== */

/* CSS Variables - Pixel Perfect from Figma */
:root {
  /* Colors - Exact Figma Values */
  --color-bg-dark: #111317;
  --color-bg-darker: #060607;
  --color-bg-card: rgba(41, 44, 51, 0.5);
  --color-bg-card-solid: #292c33;
  --color-bg-card-light: #323232;
  --color-bg-footer: rgba(68, 211, 112, 0.05);
  --color-bg-glass:
    linear-gradient(0deg, rgba(68, 211, 112, 0.05), rgba(68, 211, 112, 0.05)),
    rgba(41, 44, 51, 0.5);

  --color-accent: #44d370;
  --color-accent-hover: #3bc063;
  --color-accent-light: rgba(68, 211, 112, 0.2);
  --color-accent-05: rgba(68, 211, 112, 0.05);

  --color-yellow: #c6ef5f;
  --color-orange: #fbf558;
  --color-pink: #ff3c8a;

  /* Text Colors - Exact Figma Values */
  --color-text-white: #ffffff;
  --color-text-primary: rgba(255, 255, 255, 0.96);
  --color-text-secondary: rgba(255, 255, 255, 0.56);
  --color-text-tertiary: rgba(255, 255, 255, 0.28);
  --color-text-70: rgba(255, 255, 255, 0.7);
  --color-text-white-80: rgba(255, 255, 255, 0.8);
  --color-text-white-60: rgba(255, 255, 255, 0.6);
  --color-text-dark: #111111;
  --color-text-gray: #6d7370;

  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-05: rgba(255, 255, 255, 0.05);
  --color-border-light: #e3e3e3;

  /* Gradients - Figma */
  --gradient-green: linear-gradient(180deg, #44d370 0%, #c6ef5f 100%);
  --gradient-glow-green: linear-gradient(
    180deg,
    rgba(0, 78, 24, 0) 50.05%,
    #44d370 100%
  );
  --gradient-glow-yellow: linear-gradient(
    180deg,
    rgba(0, 78, 24, 0) 50.05%,
    #c6ef5f 100%
  );

  /* Typography */
  --font-display:
    "SB Sans Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-text:
    "SB Sans Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-hero: "Druk Wide Cyr", "SB Sans Display", sans-serif;

  /* Letter Spacing - Figma */
  --ls-display: -0.01em;
  --ls-text: -0.011em;

  /* Spacing */
  --container-width: 1279px;
  --container-padding: 32px;
  --radius-xs: 5px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  /* Shadows - Figma */
  --shadow-card: 0px 12px 31px rgba(0, 0, 0, 0.1);
  --shadow-card-heavy: 0px 12px 31px rgba(0, 0, 0, 0.3);
  --shadow-inset: inset 0px -2px 0px rgba(0, 0, 0, 0.1);

  /* Blur - Figma */
  --blur-card: 24px;
  --blur-glow: 81.65px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Font Face - SB Sans */
@font-face {
  font-family: "SB Sans Display";
  src: url("../assets/fonts/SBSansDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SB Sans Display";
  src: url("../assets/fonts/SBSansDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SB Sans Display";
  src: url("../assets/fonts/SBSansDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SB Sans Display";
  src: url("../assets/fonts/SBSansDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SB Sans Text";
  src: url("../assets/fonts/SBSansText-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SB Sans Text";
  src: url("../assets/fonts/SBSansText-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SB Sans Text";
  src: url("../assets/fonts/SBSansText-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SB Sans Text";
  src: url("../assets/fonts/SBSansText-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SB Sans Text";
  src: url("../assets/fonts/SBSansText-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Druk Wide Cyr";
  src: url("../assets/fonts/DrukWideCyr-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SB Sans Text Mono";
  src: url("../assets/fonts/SBSansTextMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield; /* Standard property for newer browsers */
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 0 0 16px 16px;
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(36px);
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  height: 40px;
  width: auto;
  margin-left: 15%;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-accent);
}

/* .nav__link--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

.nav__link--dark:hover {
  background: var(--color-bg-darker);
} */

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 32px;
  height: 24px;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-white);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.nav__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav__burger.active span:nth-child(2) {
  opacity: 0;
}

.nav__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   Mobile Menu
   ======================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  /* left: 50%; */
  /* transform: translate(-50%); */
  /* width: calc(100% - 64px); */
  /* height: calc(100vh - 58px); */
  width: 100%;
  height: 100vh;
  margin: 0 auto;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);

  border-radius: 0 0 16px 16px;
  background: rgba(50, 50, 50, 0.4);
  backdrop-filter: blur(36px);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  justify-content: space-between;
}

.mobile-menu__header .logo__img {
  height: 40px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.mobile-menu__link {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: var(--ls-display);
  color: var(--color-text-white);
  padding: 12px 24px;
  transition: all var(--transition-fast);
  text-align: center;
}

.mobile-menu__link:hover {
  color: var(--color-accent);
}

.mobile-menu__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-bottom: 32px;
}

.btn--white,
.btn--light {
  background: var(--color-text-white);
  color: var(--color-text-dark);
}

.btn--white {
  border-radius: var(--radius-md);
  padding: 12px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-text-white);
  color: var(--color-text-white);
}

.btn--outline:hover {
  background: var(--color-text-white);
  color: var(--color-text-dark);
}

/* Body lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ========================================
   Cookie Banner
   ======================================== */

/* Фиксированный контейнер внизу */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 20px; /* защитный отступ для маленьких экранов */
  pointer-events: none; /* чтобы клик проходил сквозь фон, если нужно */
  z-index: 1000;
}


.banner-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;

  width: 1050px;
  max-width: calc(100vw - 40px);
  height: auto;
  min-height: 87px;

  background: rgba(45, 45, 45, 0.5);
  backdrop-filter: blur(13.3px);
  -webkit-backdrop-filter: blur(13.3px); /* для Safari */
  border-radius: 18px;

  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: auto;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  gap: 35px;
}

.cookie-banner.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.banner-text {
  max-width: 100%;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.12;      /* 112% */
  letter-spacing: -0.01em;
  color: var(--color-text-secondary);
}

.banner-text a {
  color: rgb(255 255 255 / 90%);
  text-decoration: underline;
}

.banner-button {
  height: 46px;
  background: #FFFFFF;
}

.banner-button span {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #060607;

  /* центрирование текста внутри кнопки */
  display: flex;
  align-items: center;
  text-align: center;
  white-space: nowrap;
}

/* Эффект при наведении */
.banner-button:hover {
  /* background-color: #f0f0f0; */
  background: var(--color-accent)
}


/* ========================================
   Buttons
   ======================================== */
.neon-border {
    position: relative;
    display: inline-block;
}

.neon-border::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none; 

    background: transparent;
    border: 2px solid #58FF88; 
    border-radius: 18px;

    mask-mode: luminance;
    mask-image: linear-gradient(130deg, white, white, black, black, black, black, black,  black,  black, white, white);
    -webkit-mask-image: linear-gradient(130deg, white, white, black, black, black, black, black,  black,  black, white, white);
}

.neon-border::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    border: 2px solid #72b68733;
    border-radius: 18px;
}


.neon-border-reversed {
  position: relative;
}

.neon-border-reversed::before {
  border-radius: var(--radius-lg);
  mask-image: linear-gradient(50deg, white, white, black, black, black, black, black,  black,  black, white, white);
  -webkit-mask-image: linear-gradient(50deg, white, white, black, black, black, black, black,  black,  black, white, white);
}

.neon-border-reversed::after {
  border-radius: var(--radius-lg);
}

.neon-border-pink {
  position: relative;
}

.neon-border-pink::before {
  border: 2px solid #FF3C8A;
  border-radius: var(--radius-lg);
  mask-image: linear-gradient(50deg, white, white, black, black, black, black, black,  black,  black, white, white);
  -webkit-mask-image: linear-gradient(50deg, white, white, black, black, black, black, black,  black,  black, white, white);
}

.neon-border-pink::after {
  border: 2px solid #FF993533;
  border-radius: var(--radius-lg);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  cursor: pointer;
  white-space: nowrap;
}

.btn--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
}

.btn--dark:hover {
  background: var(--color-bg-darker);
}

.btn--light:hover {
  background: #f5f5f5;
}

/* Green solid button (Figma: кнопка зеленая) */
.btn--green-solid {
  background: #44d370;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 112%;
  letter-spacing: -0.2px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  height: 45px;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.btn--green-solid:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--color-accent-light);
}

/* Submit button (inactive state per Figma) */
.btn--submit {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 112%;
  letter-spacing: -0.2px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  height: 45px;
  width: 292px;
  margin: 0 auto;
  display: flex;
}

.btn--submit:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Role selector buttons (Figma: кейсы) */
.btn--role {
  background:
    linear-gradient(
      90deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    linear-gradient(90deg, rgba(41, 44, 51, 0.5) 0%, rgba(41, 44, 51, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
  border-radius: 12px;
  height: 68px;
  width: 300px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.16px;
  color: #fff;
  white-space: unset;
}

.btn--role:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--role-active {
  background: #f5f5f5;
  color: #000;
}

.btn--role-active:hover {
  background: #e8e8e8;
  color: #000;
}

/* Neon button (Figma: Кнопка неон) */
.btn--neon {
  position: relative;
  width: 252.57px;
  height: 58px;
  background:
    linear-gradient(
      90deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    linear-gradient(
      90deg,
      rgba(110, 115, 113, 0.25) 0%,
      rgba(110, 115, 113, 0.25) 100%
    );
  backdrop-filter: blur(25.53px);
  -webkit-backdrop-filter: blur(25.53px);
  color: var(--color-text-white);
  padding: 25px 27px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 112%;
  letter-spacing: var(--ls-display);
  border-radius: 18px;
  overflow: visible;
}

.btn__neon-outer {
  position: absolute;
  inset: -22px -5px;
  background: rgba(110, 115, 113, 0.01);
  border: 8.88px solid rgba(110, 115, 113, 0.01);
  filter: blur(30px);
  backdrop-filter: blur(37px);
  border-radius: 18px;
  pointer-events: none;
}


.btn__neon-glow {
  position: absolute;
  inset: 0;
  border: 13px solid #58ff88;
  border-radius: 18px;
  filter: blur(5.4px);
  mix-blend-mode: lighten;
  pointer-events: none;
}

.btn--neon:hover {
  color: var(--color-text-white);
  background:
    linear-gradient(
      90deg,
      rgba(68, 211, 112, 0.18) 0%,
      rgba(68, 211, 112, 0.18) 100%
    ),
    linear-gradient(
      90deg,
      rgba(110, 115, 113, 0.35) 0%,
      rgba(110, 115, 113, 0.35) 100%
    );
  box-shadow: 0 0 32px rgba(68, 211, 112, 0.35), 0 0 8px rgba(68, 211, 112, 0.2);
  transform: translateY(-1px);
  transition: all 0.2s ease;
}

.btn--neon {
  transition: all 0.2s ease;
}

.btn__text {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 112%;
  letter-spacing: -0.2px;
}

.btn--full {
  width: 292px;
  max-width: 100%;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* ========================================
   Tags
   ======================================== */
.tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  line-height: 112%;
  text-align: center;
  letter-spacing: var(--ls-display);
  padding: 6px 18px;
  border-radius: var(--radius-sm);
  background: rgba(110, 115, 113, 0.5);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(var(--blur-card));
  -webkit-backdrop-filter: blur(var(--blur-card));
  color: var(--color-text-white);
}

.tag--dark,
.tag--light {
  background: rgba(110, 115, 113, 0.5);
  color: var(--color-text-white);
}

.tag--green {
  background: var(--color-accent);
  color: var(--color-text-dark);
  border-color: var(--color-accent);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: clamp(100px, 10vw, 200px);
  background: var(--color-bg-dark);
}

/* Blur/Glow Effects — нижний слой */
.hero__glow {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

/* Video — зафиксирован поверх градиентов, под кнопкой */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  isolation: isolate;
  mix-blend-mode: lighten;
  filter: blur(50.900001525878906px);
}

.hero__video {
  position: absolute;
  top: 500px;
  left: 50vw;
  transform: translate(-50%, -90%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
}

/* Размеры в vw/vh, чтобы градиенты не «ездили» при изменении высоты экрана
   (раньше 57%/82% считались от .hero с min-height: 100vh) */
.hero__glow--green {
  width: 57vw;
  height: 676px;
  top: 170px;
  left: 70%;
  transform: translate(-100%, -50%) rotate(15.0deg);
  border-radius: 1459px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #22fb60 100%);
  filter: blur(81.6500015258789px);
}

.hero__glow--blue {
  width: 57vw;
  height: 676px;
  top: 170px;
  left: 30%;
  transform: translate(0, -50%) rotate(-15.0deg);
  border-radius: 1310px;
  background: linear-gradient(
    180deg,
    rgba(84, 167, 226, 0.05) 50.05%,
    #54a7e2 100%
  );
  filter: blur(81.6500015258789px);
}

.hero__content {
  position: relative;
  z-index: 2; /* поверх видео, кнопка кликабельна */
  width: 100%;
  text-align: center;
}

.hero__text {
  max-width: 100%;
  margin: 0 auto;
}

.hero__title-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.hero__title {
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: var(--color-text-white);
  text-align: center;
  font-family: var(--font-hero);
  font-style: normal;
  width: 90%;
}

.hero__title-highlight {
  margin: 27px 0 0;
}

.hero__subtitle {
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.32px;
  max-width: 964px;
  margin: 90px auto 0;
}

.hero__subtitle-mobile {
  display: none;
}

/* Product Preview */
.hero__preview {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.hero__preview-img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.hero__btn {
  display: flex;
  padding: 25.03px 27.179px;
  justify-content: center;
  align-items: center;
  gap: 21.743px;
  margin: 80px auto 0;
}

/* ========================================
   Sections
   ======================================== */
.section {
  position: relative;
  margin-bottom: 160px;
}

.section--dark {
  background: var(--color-bg-dark);
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  color: var(--color-text-white);
  text-align: center;
  font-style: normal;
  line-height: 100%;
  letter-spacing: -0.42px;
}

.section__main_title {
  color: #fff;
  text-align: center;
  font-family: var(--font-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.242px;
}

.section__title--dark {
  color: var(--color-text-dark);
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 112%;
  letter-spacing: var(--ls-display);
  color: var(--color-text-secondary);
  margin-bottom: 48px;
}

.section__text {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 110%;
  letter-spacing: var(--ls-text);
}

.section__text--dark {
  color: var(--color-text-gray);
}

/* ========================================
   Features Section
   ======================================== */
.section--features {
  background: var(--color-bg-dark);
  margin-top: 5%
}

.features-flex,
.ai-assistant-features-flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ai-assistant-features-flex {
  position: relative;
}

.features-note {
  width: 100%;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 10px;
  line-height: 110%;
  text-align: center;
  letter-spacing: var(--ls-text);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  text-align: right;
}

.features-note--mobile {
  display: none;
}

.features-cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  max-width: 100%;
}

.features-cards__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 40%;
}

.features-cards__left .feature-semicard {
  flex: 0 0 164px;
}

.features-cards__left .feature-semicard-3 {
  flex: 1 1 0;
}

.features-cards .feature-card {

}

.features-cards .feature-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-assistant-features-cards {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  gap: 24px;
}

.ai-assistant-features-cards__left {
  display: flex;
}

.ai-assistant-features-cards__left .ai-assistant-features-semicard {
  height: 100%;
}

.ai-assistant-features-cards .ai-assistant-features-card {
  padding: 0;
  aspect-ratio: auto;
}

.ai-assistant-features-cards .ai-assistant-features-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-cards-mobile {
  display: none;
}

.features-info,
.ai-assistant-features-info {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}

.features-info .tag,
.ai-assistant-features-info .tag {
  margin-bottom: 24px;
}

.feature-card {
  display: flex;
  width: 838px;
  max-width: 100%;
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 75px;
}

.feature-semicard {
  display: flex;
  gap: 15px;
  padding: 28px 40px 40px 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 22px;
  background:
    linear-gradient(
      0deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    rgba(41, 44, 51, 0.5);
  box-shadow: 0 12px 31px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
}

.feature-semicard-2 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 349px;
  height: 175px;
  padding: 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  border-radius: 22px;
  border: 2px solid #58ff88;
  background:
    linear-gradient(
      0deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    rgba(41, 44, 51, 0.5);
  box-shadow: 0 12px 31px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
}

.feature-semicard-3 {
  display: flex;
  gap: 16px;
  padding: 21px 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      0deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    rgba(41, 44, 51, 0.5);
  box-shadow: 0 12px 31px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
}

.feature-semicard-3__title {
  color: #fff;
  font-family: var(--font-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 22px */
  letter-spacing: -0.242px;
}

.feature-semicard-3__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 0 20px;
}

.feature-semicard-3__list-item {
  color: #fff;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.176px;
}

.feature-semicard__title,
.ai-assistant-features-semicard__title {
  color: #fff;
  font-family: var(--font-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 26.4px */
  letter-spacing: -0.242px;
}

.feature-semicard__title {
  align-self: stretch;
}

.feature-semicard__description-row {
  display: flex;
  flex-direction: row;
  gap: 70px;
}

.feature-semicard__description-block {
  display: flex;
  gap: 7px;
}

.feature-semicard__percent {
  font-family: var(--font-display);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 37.8px */
  letter-spacing: -0.42px;

  background: linear-gradient(180deg, #ff3c8a 0%, #ff9935 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-semicard__percent-green,
.ai-assistant-features-semicard__percent-green {
  font-family: var(--font-display);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 90%; /* 37.8px */
  letter-spacing: -0.42px;

  background: linear-gradient(180deg, #44d370 0%, #c6ef5f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-semicard-description {
  flex: 1 0 0;
  color: #fff;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 17.6px */
  letter-spacing: -0.176px;
}

.feature-card__img {
  width: 1120px;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 12px 31px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
}

/* ========================================
   AI Assistant Features Section
   ======================================== */
.section--ai-assistant-features {
  background: var(--color-bg-dark);
}

.ai-assistant-features-card {
  display: flex;
  width: 1215px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 119/62;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 22px;
  padding: 16px 40px 19px 31px;
}

.ai-assistant-features-card__img {
  width: 1215px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 119/62;

  border-radius: 10px;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.9) 6.82%,
    #2b6533 59.9%,
    rgba(98, 143, 90, 0.8) 98.83%
  );
  box-shadow: 0 12px 31px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
}

.ai-assistant-features-card__video {
  width: 1215px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 119/62;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 31px 0 rgba(0, 0, 0, 0.1);
  display: none;
}

.ai-assistant-features-card__video--active {
  display: block;
}

.ai-assistant-features-semicard__description-block {
  display: flex;
  gap: 7px;
}

.ai-assistant-features-semicard-description {
  height: 48px;
  flex: 1 0 0;
  color: #fff;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 17.6px */
  letter-spacing: -0.176px;
}

.ai-assistant-features-semicard__description-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}

.ai-assistant-features-semicard {
  display: flex;
  padding: 40px 20px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;

  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      0deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    rgba(41, 44, 51, 0.5);
  box-shadow: 0 12px 31px 0 rgba(0, 0, 0, 0.1);
}

.ai-assistant-features-buttons {
  width: 100%;
  display: flex;
  gap: 59px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}

.ai-assistant-features-note {
  width: 100%;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 10px;
  line-height: 110%;
  text-align: center;
  letter-spacing: var(--ls-text);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  text-align: right;
}

.ai-assistant-features-note--mobile {
  display: none;
}

/* ========================================
   Scalability Section
   ======================================== */
.section--scalability {
  background: var(--color-bg-dark);
  position: relative;
}

.scalability {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
}

.scalability__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.scalability__content {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 45px 0 0;
  gap: 50px;
}

.scalability__content-mobile {
  display: none;
}

.scalability__glow {
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 443px;
  height: 80px;
  border-radius: 443px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #ff9935 100%);
  filter: blur(82px);
  pointer-events: none;
}

.scalability__green-glow {
  position: absolute;
  top: 50%;
  left: 27%;
  transform: translate(70%, -90%);
  width: 600px;
  height: 150px;
  border-radius: 893px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #44d370 100%);
  filter: blur(81.6500015258789px);
  pointer-events: none;
}

.scalability__card-1 {
  background: linear-gradient(0deg, rgba(68, 211, 112, 0.05) 0%, rgba(68, 211, 112, 0.05) 100%), rgba(41, 44, 51, 0.5);
  max-width: 332px;
  padding: 29px 25px 28px;
  margin: 0 21px 0 0;
  border-radius: var(--radius-lg);
}

.scalability__card-2,
.scalability__card-3 {
  background:
    linear-gradient(
      0deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    rgba(41, 44, 51, 0.5);
  border: 1px solid var(--color-border-05);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(var(--blur-card));
  -webkit-backdrop-filter: blur(var(--blur-card));
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.scalability__card-2 {
  margin: 0 27px 0 0;
  max-width: 326px;
  width: 100%;
  padding: 30px 16px 28px 19px;
}

.scalability__card-3 {
  width: 100%;
  padding: 26px 24px 39px;
  gap: 34px;
}

.scalability__footnote {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-text);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.11px;

  text-align: right;
  margin-top: 19px;
  width: 100%;
}

.scalability__card-1 > p:first-child,
.scalability__card-2 > p:first-child {
  color: #fff;
  font-family: var(--font-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.242px;
  color: var(--color-text-white);
}

.scalability__card-1 > p:first-child {
  margin: 0 0 34px;
}

.scalability__card-1 > div p:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 90%;
  letter-spacing: -0.42px;
  background: linear-gradient(180deg, #ff3c8a 0%, #ff9935 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 7px;
}

.scalability__card-1 > div p:last-child {
  font-family: var(--font-text);
  line-height: 110%;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.176px;
}

.scalability__card-2 ul {
  display: flex;
  flex-direction: column;
  padding: 0 0 0 20px;
  flex: 1;
  gap: 16px;
}

.scalability__card-2 ul li {
  color: #fff;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.176px;
}

.scalability__card-2 > a {
  margin-top: 17px;
}

.scalability__card-3 > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 0 7px;
}

.scalability__card-3 > div p:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 90%;
  letter-spacing: -0.42px;
  background: linear-gradient(180deg, #44d370 0%, #c6ef5f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scalability__card-3 > div p:nth-child(2) {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  color: var(--color-text-white);
}

.scalability__card-3 > div p:last-child {
  color: #fff;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.176px;
}

/* ========================================
   Security Section
   ======================================== */

.security__title {
  color: #fff;
  text-align: center;
  font-family: var(--font-text);
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 42px */
  letter-spacing: -0.462px;
}

.security {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  position: relative;
}

.security__card {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 387px;
  padding: 29px 40px;
  align-items: center;
  gap: 38px;

  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      0deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    rgba(41, 44, 51, 0.5);
}

.security__list {
  padding: 0 0 0 20px;
}

.security__list-item {
  color: #fff;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 192%;
  letter-spacing: -0.176px;
}

.security-img-block {
  position: absolute;
  top: 153px;
  right: 28px;
  width: 50%;
  height: 65%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* ========================================
   Path Section (Пошаговая стратегия)
   ======================================== */

.container-path {
  max-width: var(--container-width);
}

.section--path {
  background: var(--color-bg-dark);
  position: relative;
}

.path__glow-green {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1376px;
  height: 320px;
  border-radius: 100%;
  background: linear-gradient(
    180deg,
    rgba(68, 211, 112, 0) 50.05%,
    rgba(68, 211, 112, 0.3) 100%
  );
  filter: blur(81.6500015258789px);
  pointer-events: none;
}

.path-header {
  text-align: center;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.path-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.path-steps-mobile {
  display: none;
}

.path-steps__row {
  display: flex;
}

.path-steps__row--top {
  margin-bottom: 0;
  justify-content: space-between;
  gap: 24px;
}

.path-steps__row--bottom {
  display: grid;
  gap: 50px;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.path-steps__line {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 19px 0 6px;
}

.path-steps__line-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.path-step-card {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background:
    linear-gradient(
      90deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    linear-gradient(90deg, rgba(41, 44, 51, 0.5) 0%, rgba(41, 44, 51, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 19px;
  flex: 1;
  max-width: 351px;
  height: 100%;
}

.step-1 {
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  padding-right: 0;
}
.step-3 {
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.step-5 {
  max-width: 100%;
}

.path-steps__row--bottom .step-2 {
  grid-column: 2;
  max-width: 70%;
  width: 100%;
}
.path-steps__row--bottom .step-4 {
  grid-column: 3;
  max-width: 75%;
  width: 100%;
}

.path-step-card__title {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.176px;
  color: #fff;
  margin-bottom: 10px;
}

.path-step-card__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 20px;
}

.path-step-card__list li {
  color: #fff;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%;
  letter-spacing: -0.336px;
}

/* ========================================
   Cases Section (Кейсы внедрения)
   ======================================== */
.section--cases {
  background: var(--color-bg-dark);
}

.cases-header {
  text-align: center;
  margin-bottom: 115px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.cases-layout {
  position: relative;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-slide {
  display: none;
  position: relative;
}

.case-slide--active {
  display: flex;
}

.case-main-card__logos {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 16px;
}

.case-main-card {
  background: #f5f5f5;
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 1249px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.case-main-card__logo {
  margin-bottom: 16px;
}

.case-main-card__logo img {
  height: 26px;
  width: auto;
}

.case-main-card__text {
  color: #000;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.176px;
  max-width: 63%;
}

.case-main-card__text p {
  margin-bottom: 16px;
}

.case-main-card__text strong {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 4px;
}

.case-main-card__company-name {
  font-weight: 600;
}

/* Stats overlay card on case */
.case-stats-card {
  position: absolute;
  top: 60px;
  right: 32px;
  width: 380px;
  padding: 36px 28px 14px 40px;
  border-radius: var(--radius-lg);
  border: 2px solid #58ff88;
  background: linear-gradient(90deg, rgba(68, 211, 112, 0.05) 0%, rgba(68, 211, 112, 0.05) 100%), linear-gradient(90deg, rgba(41, 44, 51, 0.5) 0%, rgba(41, 44, 51, 0.5) 100%);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  min-height: 330px;
}

.case-stats-card__metrics {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.case-stats-card__metric {
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

.case-stats-card__space-around {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

/* Cases company selector */
.cases-selector {
  display: flex;
  gap: 21px;
  align-items: stretch;
  width: 1249px;
  max-width: 100%;
  margin: 0 auto;
}

.case-company-card {
  background:
    linear-gradient(
      90deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    linear-gradient(90deg, rgba(41, 44, 51, 0.5) 0%, rgba(41, 44, 51, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 17px 16px;
  width: 212px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.case-company-card:hover {
  transform: translateY(-4px);
}

.case-company-card--active {
  background: #f5f5f5;
}

.case-company-card__logo {
  height: 26px;
}

.case-company-card__logo img {
  height: 26px;
  width: auto;
}

/* CRT logo: invert when card is NOT active, original when active */
.case-logo {
  filter: invert(100%) grayscale(100%) brightness(120%);
  transition: filter 0.3s ease;
}

.case-company-card--active .case-logo {
  filter: none;
}

.case-company-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(110, 115, 113, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 6px 18px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  letter-spacing: -0.16px;
  color: #fff;
  width: fit-content;
}

.case-company-card__tag--dark {
  background: rgba(227, 227, 227, 0.5);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #000;
}

.cases-all-btn {
  background:
    linear-gradient(
      90deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    linear-gradient(
      90deg,
      rgba(110, 115, 113, 0.5) 0%,
      rgba(110, 115, 113, 0.5) 100%
    );
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 17px 18px;
  width: 211px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 112%;
  letter-spacing: -0.2px;
  color: #fff;
  transition: all var(--transition-normal);
}

.cases-all-btn:hover {
  box-shadow: 0 0 30px var(--color-accent-light);
}

.cases-features-note {
  width: 95%;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 10px;
  line-height: 110%;
  text-align: center;
  letter-spacing: var(--ls-text);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  text-align: right;
}

.cases-features-note--mobile {
  display: none;
}

/* ========================================
   Data Security Section (Комплексная защита)
   ======================================== */
.section--data-security {
  background: var(--color-bg-dark);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 45px;
}

.security-item {
  -webkit-backdrop-filter: blur(var(--blur-card));
  padding: 24px;

  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(
      0deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    rgba(41, 44, 51, 0.5);
  box-shadow: 0 12px 31px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(24px);
}

.security-item__title {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: var(--ls-text);
  color: var(--color-text-white);
  margin-bottom: 26px;
}

.security-item__text {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: var(--ls-text);
  color: var(--color-text-white);
}

.security-item > ul {
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ========================================
   Tariffs Section
   ======================================== */
.section--tariffs {
  background: var(--color-bg-dark);
  position: relative;
}

/* .section--tariffs::before {
  content: "";
  position: absolute;
  width: 798px;
  height: 550px;
  left: calc(50% - 798px / 2 - 311px);
  top: 94px;
  background: var(--gradient-glow-green);
  filter: blur(81.65px);
  transform: rotate(-180deg);
  pointer-events: none;
}

.section--tariffs::after {
  content: "";
  position: absolute;
  width: 798px;
  height: 550px;
  right: calc(50% - 798px / 2 - 249px);
  top: 94px;
  background: var(--gradient-glow-yellow);
  filter: blur(81.65px);
  transform: rotate(-180deg);
  pointer-events: none;
} */

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 45px auto 0;
  position: relative;
  z-index: 1;
  max-width: 1376px;
}

.tariff-card {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-05);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(var(--blur-card));
  -webkit-backdrop-filter: blur(var(--blur-card));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 19px;
  min-height: 737px;
  padding: 0 0 32px;
}

.tariff-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  min-height: 68px;
  flex-shrink: 0;
  padding: 6px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 112%;
  letter-spacing: -0.32px;
  color: #fff;
  text-align: center;
  border-radius: 22px 22px 0 0;
  backdrop-filter: blur(24px);
  box-shadow: 0 10px 31px rgba(0, 0, 0, 0.15);
}

.tariff-card__header--green {
  background: linear-gradient(
    270deg,
    rgba(35, 109, 58, 0) 6.16%,
    rgba(68, 211, 112, 0.2) 48.69%,
    rgba(35, 109, 58, 0) 116.4%
  );
}

.tariff-card__header--blue {
  background: linear-gradient(
    270deg,
    rgba(35, 109, 58, 0) 6.16%,
    rgba(9, 153, 255, 0.2) 48.69%,
    rgba(35, 109, 58, 0) 116.4%
  );
}

.tariff-card__header--purple {
  background: linear-gradient(
    90deg,
    rgba(91, 43, 153, 0) 2.76%,
    rgba(121, 57, 204, 0.2) 50.45%,
    rgba(91, 43, 153, 0) 100%
  );
}

.tariff-card__body {
  padding: 0 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.tariff-card__size {
  width: 38px;
  color: #fff;
  font-family: var(--font-text);
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: -0.352px;
}

.tariff-card__price {
  display: flex;
  gap: 40px;
  margin: 0 0 30px;
}

.strong_amount {
  font-weight: 700;
}

.tariff-card__amount-block {
  display: flex;
  flex-direction: column;
}

.tariff-card__amount {
  color: #fff;
  font-family: var(--font-text);
  font-size: 32px;
  font-style: normal;
  font-weight: 250;
  line-height: 100%; /* 32px */
  letter-spacing: -0.352px;
  position: relative;
}

.tariff-card__amount--big {
  margin-bottom: 9px;
}

.tariff-card__period {
  color: #fff;
  font-family: var(--font-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 250;
  line-height: 110%; /* 24.2px */
  letter-spacing: -0.242px;
  position: absolute;
  margin-top: -6px;
  margin-left: 2px;
  width: 100%;
}

.tariff-card__from-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
}

.tariff-card__from-price-label {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 18px;
  color: var(--color-text-70);
  white-space: nowrap;
}

.tariff-card__from-price-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: #fff;
}

.tariff-card__from-price-value sup {
  font-size: 14px;
  font-weight: 400;
  vertical-align: super;
  opacity: 0.7;
}

.tariff-card__desc {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: var(--ls-text);
  color: var(--color-text-70);
  margin-bottom: 0;
}

.tariff-card__features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex-grow: 1;
  padding: 0 6px;
}

.tariff-card__features-title {
  display: none;
}

.tariff-card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tariff-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 15px 0;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: var(--ls-text);
  color: var(--color-text-white);
  border-bottom: 1px solid var(--color-border);
}

.tariff-card__list li:first-child {
  border-top: 1px solid var(--color-border);
}

.tariff-card__list li:last-child {
  border-bottom: 1px solid var(--color-border);
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.check-icon::before {
  content: "";
  position: absolute;
  width: 14.67px;
  height: 9.81px;
  background: var(--gradient-green);
  mask: url("data:image/svg+xml,%3Csvg width='15' height='10' viewBox='0 0 15 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L5.5 9L14 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='15' height='10' viewBox='0 0 15 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4.5L5.5 9L14 1' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.tariff-card__note {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: var(--ls-text);
  color: var(--color-text-primary);
  margin: 0;
}

/* Обёртка по ширине контейнера — градиенты остаются над шапками тарифов при ресайзе */
.tariffs-glow-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-width);
  top: 0;
  height: 200px;
  pointer-events: none;
}

.tariffs-glow-green {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  border-radius: 798px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #44d370 100%);
  filter: blur(81.6500015258789px);
}

.tariffs-glow-purple {
  position: absolute;
  top: 0;
  left: 83.333%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  border-radius: 798px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #9747ff 100%);
  filter: blur(81.6500015258789px);
}

.tariffs-glow-blue {
  position: absolute;
  top: 0;
  left: 16.666%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  border-radius: 798px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #0999ff  100%);
  filter: blur(81.6500015258789px);
}

/* ========================================
   About Section (О компании)
   ======================================== */
.section--about {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  position: relative;
}

.section--about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__glow-green {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1301px;
  max-width: 100%;
  height: 184px;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #44d370 100%);
  filter: blur(81.6500015258789px);
  pointer-events: none;
}
.about__glow-blue {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translateX(-50%);
  width: 1301px;
  max-width: 100%;
  height: 129px;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #56abe0 100%);
  filter: blur(81.6500015258789px);
  pointer-events: none;
}

.section--about .section__title {
  color: var(--color-text-white);
  text-align: center;
  margin-bottom: 20px;
}

/* Main about card with glass bg */
.about-card {
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      90deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    linear-gradient(90deg, rgba(41, 44, 51, 0.5) 0%, rgba(41, 44, 51, 0.5) 100%);
}

.about-cards {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 19px;
  max-width: 1148px;
}

.about-card__top {
  display: flex;
  gap: 20px;
  padding: 30px;
}

.about-card__text {
  display: flex;
  flex-direction: row;
}

.about-card__text p {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.176px;
  color: #fff;
  margin-bottom: 16px;
}

.about-card__stats {
  display: flex;
  gap: 8px;
  flex: 1;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 182px;
}

.about-stat__icon {
  width: 50px;
  height: 46px;
}

.about-stat__text {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.176px;
  color: #fff;
}

/* Licenses block */
.about-card__licenses {
  padding: 30px;
}

.about-card__licenses-title {
  color: #fff;
  font-family: var(--font-text);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 17.6px */
  letter-spacing: -0.176px;
  margin-bottom: 20px;
}

.about-card__licenses-title-last {
  margin-bottom: 39px;
}

.about-card__licenses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39px;
}

.about-card__license-description {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.176px;
  color: #fff;
}

.about-card__license strong {
  font-weight: 700;
}

/* Two-column layout */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  z-index: 1;
}

.about-left {
  display: flex;
  flex-direction: column;
}

.about-left .about-card {
  height: 100%;
  box-sizing: border-box;
}

.about-right {
  display: flex;
  flex-direction: column;
}

.about-right .about-contacts {
  height: 100%;
}

/* Bullet list */
.about-list {
  list-style: none;
  padding: 0 30px 30px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  position: relative;
  padding-left: 20px;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* Contacts block */
.about-contacts {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 30px;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-contacts__title {
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.about-contacts__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-contacts__list li {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.about-contacts__list a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.about-contacts__list a:hover {
  color: var(--color-accent-hover);
}

/* Map container */
.about-map {
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  min-height: 360px;
}

.about-map iframe,
.about-map > div {
  border-radius: 12px;
}

/* Badge cards */
.about-badges {
  z-index: 1;
  display: flex;
  gap: 19px;
  width: 100%;
}

.about-badge {
  flex: 1;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background:
    linear-gradient(
      90deg,
      rgba(68, 211, 112, 0.05) 0%,
      rgba(68, 211, 112, 0.05) 100%
    ),
    linear-gradient(90deg, rgba(41, 44, 51, 0.5) 0%, rgba(41, 44, 51, 0.5) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 29px 19px;
  display: flex;
  gap: 16px;
  align-items: center;
  height: 112px;
}

.about-badge__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.about-badge__text {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.176px;
  color: #fff;
}

/* ========================================
   GigaCowork Promo Banner
   ======================================== */
.section--cowork-promo {
  background: var(--color-bg-dark);
  padding: 0 0 80px;
}

.cowork-promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cowork-promo__img {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
}

/* ========================================
   Partners Section
   ======================================== */
.section--partners {
  background: var(--color-bg-dark);
  padding: 0;
}

.partners__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 90%;
  text-align: center;
  letter-spacing: var(--ls-display);
  color: var(--color-text-white);
  margin-bottom: 45px;
}

.partners-slider {
  display: block;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.partners-slider-mobile {
  display: none;
}

.partners-slider::before,
.partners-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.partners-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-bg-dark), transparent);
}

.partners-slider::after {
  right: 0;
  background: linear-gradient(-90deg, var(--color-bg-dark), transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 53px;
  animation: scroll-partners 30s linear infinite;
  width: max-content;
  will-change: transform;
}

.partners-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-img {
  height: 30px;
  width: auto;
  flex-shrink: 0;
  opacity: 1;
  transition: all var(--transition-normal);
}

.partners-img:hover {
  opacity: 0.8;
}

/* ========================================
   Lead Form Section
   ======================================== */
.section--lead-form {
  background: var(--color-bg-dark);
  position: relative;
  padding: 30px 0 0;
}


.lead-form__glow-green {
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: 200%;
  max-width: 1675px;
  height: 259px;
  border-radius: 100%;
  background: linear-gradient(0deg, rgba(0, 78, 24, 0) 50.05%, #44d370 100%);
  filter: blur(81.6500015258789px);
  pointer-events: none;
}

.lead-form__glow-green-bottom {
  z-index: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  top: 70%;
  transform: translateX(-50%);
  width: 150%;
  max-width: 1675px;
  height: 210px;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 70.05%, #44d370 100%);
  filter: blur(81.6500015258789px);
  pointer-events: none;
}

.lead-form {
  max-width: 1148px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border-05);
  box-shadow: var(--shadow-card-heavy), var(--shadow-inset);
  border-radius: var(--radius-xl);
  padding: 61px 204px;
}

.lead-form__text {
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 112%;
  letter-spacing: -0.22px;
  margin-bottom: 50px;
}

.lead-form__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;

  color: var(--color-text-secondary);
  text-align: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.28px;
}
.lead-form__contacts:hover {
  color: var(--color-text-white);
}

.lead-form__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 90%;
  text-align: center;
  letter-spacing: var(--ls-display);
  color: var(--color-text-white);
  margin-bottom: 20px;
}

.lead-form__subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 112%;
  text-align: center;
  letter-spacing: var(--ls-display);
  color: var(--color-text-secondary);
  margin-bottom: 68px;
}

.form {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__group {
  position: relative;
  margin-bottom: 0;
}

.form__input {
  width: 100%;
  height: 60px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: var(--radius-md);
  color: var(--color-text-white);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 110%;
  letter-spacing: var(--ls-text);
  transition: all var(--transition-fast);
}

.form__input:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 0;
}

.form__input::placeholder {
  color: transparent;
}

.form__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 112%;
  letter-spacing: var(--ls-display);
  color: var(--color-text-secondary);
  margin-bottom: 15px;
}

.form__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.form__checkbox.text-balance {
  padding-left: 10%;
  gap: 16px;
}

.form__checkbox.text-balance .form__checkbox-label {
  text-wrap: balance;
  justify-content: flex-start;
  text-align: left;
}

.morph {
  --s: 20px;
  width: calc(var(--s) * 1.4);
  height: calc(var(--s) * 1.4);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
.morph input {
  display: none;
}
.morph .tile {
  width: calc(var(--s) * 1);
  height: calc(var(--s) * 1);
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: all 0.22s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.morph .tick {
  width: 16px;
  height: 16px;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.28s, opacity 0.2s;
}
.morph input:checked + .tile {
  border-color: rgba(52, 211, 153, 0.95);
  background: linear-gradient(
    180deg,
    rgba(52, 211, 153, 0.12),
    rgba(52, 211, 153, 0.06)
  );
  transform: scale(1.04);
}
.morph input:checked + .tile .tick {
  opacity: 1;
  transform: scale(1);
}

.form__checkbox-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 112%;
  letter-spacing: var(--ls-display);
  color: var(--color-text-secondary);
  text-align: center;
}

.form__checkbox-label a {
  color: rgb(255 255 255 / 70%);
  text-decoration: none;
}

.form__checkbox-label a:hover {
  text-decoration: underline;
}

.form__label a:hover {
  color: var(--color-text-white);
}

/* Контейнер выпадающего списка */
#company-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #ffffff;
  border: 1px solid #4a4a4a;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
  box-sizing: border-box;
  margin-top: 4px;
}

/* Стилизация скроллбара дропдауна */
#company-dropdown::-webkit-scrollbar {
  width: 6px;
}
#company-dropdown::-webkit-scrollbar-thumb {
  background: #dbdbdb;
  border-radius: 4px;
}

/* Элемент списка (компания) */
.dd-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.dd-item:last-child {
  border-bottom: none;
}

/* Ховер-эффект с использованием бирюзового акцента кнопки */
.dd-item:hover {
  background-color: rgba(46, 204, 153, 0.08);
}

/* Главный текст (Название) */
.dd-title {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Второстепенный текст (ИНН, Город) */
.dd-subtitle {
  font-size: 13px;
  color: #666666;
}

/* Состояние "Ничего не найдено" */
.dd-empty {
  padding: 16px;
  font-size: 14px;
  color: #999999;
  text-align: center;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 36px max(32px, env(safe-area-inset-right, 32px));
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 67px;
}

.footer::before {
  display: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1.4fr 2fr;
  gap: 10px;
  margin: 67px 0 67px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__heading {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: var(--ls-display);
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__list li {
  margin-bottom: 0;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: var(--ls-display);
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-text-white);
}

.footer__icon {
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__icon--mail {
  background-color: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22,6 12,13 2,6'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.footer__icon--telegram {
  background-color: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19-.14.75-.42 1-.68 1.03-.58.05-1.02-.38-1.58-.75-.88-.58-1.38-.94-2.23-1.5-.99-.65-.35-1.01.22-1.59.15-.15 2.71-2.48 2.76-2.69a.2.2 0 00-.05-.18c-.06-.05-.14-.03-.21-.02-.09.02-1.49.95-4.22 2.79-.4.27-.76.41-1.08.4-.36-.01-1.04-.2-1.55-.37-.63-.2-1.12-.31-1.08-.66.02-.18.27-.36.74-.55 2.92-1.27 4.86-2.11 5.83-2.51 2.78-1.16 3.35-1.36 3.73-1.36.08 0 .27.02.39.12.1.08.13.19.14.27-.01.06.01.24 0 .38z'/%3E%3C/svg%3E")
    center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19-.14.75-.42 1-.68 1.03-.58.05-1.02-.38-1.58-.75-.88-.58-1.38-.94-2.23-1.5-.99-.65-.35-1.01.22-1.59.15-.15 2.71-2.48 2.76-2.69a.2.2 0 00-.05-.18c-.06-.05-.14-.03-.21-.02-.09.02-1.49.95-4.22 2.79-.4.27-.76.41-1.08.4-.36-.01-1.04-.2-1.55-.37-.63-.2-1.12-.31-1.08-.66.02-.18.27-.36.74-.55 2.92-1.27 4.86-2.11 5.83-2.51 2.78-1.16 3.35-1.36 3.73-1.36.08 0 .27.02.39.12.1.08.13.19.14.27-.01.06.01.24 0 .38z'/%3E%3C/svg%3E")
    center/contain no-repeat;
}

.footer__divider {
  height: 1px;
  background: var(--color-text-tertiary);
  margin: 0;
  transform: rotate(180deg);
}

.footer__bottom {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 676px;
}

.footer__copyright {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text-secondary);
  max-width: 676px;
}

.footer__logo {
}

.footer__logo img {
  height: 42px;
  width: auto;
}

/* ========================================
   Responsive Styles
   ======================================== */

/* Desktop Large (1920px+) */
@media (min-width: 1920px) {
  :root {
    --container-width: 1376px;
  }
}

/* Tablet (768px - 1279px) */
@media (max-width: 1279px) {
  :root {
    --section-padding: 60px;
    --container-padding: 24px;
  }

  .container {
    padding: 0 var(--container-padding);
    box-sizing: border-box;
  }

  .container > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .header .container,
  .footer .container {
    padding: 0 var(--container-padding);
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg-card-light);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
  }

  .nav__menu.active {
    display: flex;
  }

  .nav__burger {
    display: flex;
  }

  .hero {
    padding-top: 120px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__subtitle-mobile {
    display: none;
  }

  .features-cards-mobile {
    display: none;
  }


  /* Glow containment for tablet */
  .scalability__glow,
  .scalability__green-glow,
  .path__glow-green,
  .tariffs-glow-wrap,
  .tariffs-glow-blue,
  .tariffs-glow-green,
  .tariffs-glow-purple,
  .about__glow-green,
  .about__glow-blue,
  .lead-form__glow-green,
  .lead-form__glow-purple {
    max-width: 100vw;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__preview {
    margin-top: 40px;
  }

  .section__title {
    font-size: 32px;
  }

  .tariffs-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: min(563px, 100%);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .path-steps {
    display: none;
  }

  .path-steps-mobile {
    display: flex;
    justify-content: center;
    max-width: 100%;
  }

  .path-steps__row {
    max-width: 100%;
  }

  .path-steps__line {
    display: flex;
    width: 70px;
  }

  .path-steps__row {
    flex-direction: column;
    gap: 16px;
  }

  .path-step-card {
    margin: 0;
    max-width: min(400px, 100%);
    width: 100%;
    box-sizing: border-box;
  }

  .path-steps__row--bottom {
    padding-left: 0;
    padding-right: 0;
  }

  /* .path-step-card {
    max-width: 100%;
  } */

  .ai-assistant-features-cards {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 263px;
    max-width: 100%;
  }

  .ai-assistant-features-cards__left {
    height: auto;
  }

  .ai-assistant-features-cards .ai-assistant-features-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 16px 24px 19px 24px;
    aspect-ratio: 119/62;
    box-sizing: border-box;
  }

  .ai-assistant-features-cards .ai-assistant-features-card__video {
    width: 100%;
    height: 100%;
    margin-top: 40px;
  }

  /* Cases layout responsive */
  .case-main-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 500px;
  }

  .case-stats-card {
    position: absolute;
    width: 30%;
    max-width: 100%;
    margin-top: 0px;
    box-sizing: border-box;
  }

  .cases-selector {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
  }

  .cases-selector::-webkit-scrollbar {
    display: none;
  }

  .case-company-card {
    width: 219px;
    min-width: 219px;
    flex-shrink: 0;
  }

  .cases-all-btn {
    width: 219px;
    min-width: 219px;
    flex-shrink: 0;
  }

  .security-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tariff-card {
    height: auto;
    min-width: 0;
    max-width: 100%;
  }

  .section--tariffs .tariffs-note {
    text-align: center;
  }

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

  .footer__links {
    width: 100%;
    max-width: 100%;
  }

  .footer__copyright {
    max-width: 100%;
  }

  .lead-form {
    width: 100%;
    max-width: 100%;
    padding: 40px 32px;
    box-sizing: border-box;
  }

  /* About section responsive */
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-card,
  .about-cards {
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-card__top {
    flex-direction: column;
  }

  .about-card__stats {
    justify-content: center;
  }

  .about-card__licenses-grid {
    gap: 15px;
    font-size: 14px;
  }

  .about-badges {
    flex-direction: column;
  }

  .about-badge {
    height: auto;
  }

  .about-map {
    min-height: 280px;
  }

  /* Features section - convert absolute cards to flow */
  .section--features {
    padding: 0 0 60px;
  }

  .features-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }

  .feature-semicard__description-row {
    gap: 30px;
    flex-wrap: wrap;
}

  .feature-semicard {
    justify-content: center;
  }

  .features-cards__left {
    height: auto;
    flex-direction: row;
  }

  .features-cards__left .feature-semicard,
  .features-cards__left .feature-semicard-3 {
    flex: none;
    height: auto;
    width: 123%;
  }

  .feature-card {
    width: 100%;
    height: auto;
  }

  .feature-card__img {
    width: 100%;
    height: auto;
  }

  .feature-semicard,
  .feature-semicard-2,
  .feature-semicard-3 {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  /* AI Assistant section - convert absolute cards to flow */
  .section--ai-assistant-features {
    padding: 0 0 60px;
  }

  .ai-assistant-features-card {
    width: 100%;
    height: auto;
  }

  .ai-assistant-features-card__img {
    width: 100%;
    height: auto;
  }

  .ai-assistant-features-semicard {
    position: absolute;
    top: -295px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: min(451px, calc(100vw - 48px));
    max-height: 310px;
    padding: 10px 24px;
    box-sizing: border-box;
  }

  .ai-assistant-features-semicard > p > br {
    display: none;
  }

  .ai-assistant-features-buttons {
    justify-content: center;
    gap: 25px;
  }

  /* Scalability section */
  .scalability__content {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .scalability__card-1,
  .scalability__card-2,
  .scalability__card-3 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .scalability__content-mobile {
    display: none;
  }

  /* Security section */
  .security__card {
    width: 100%;
    max-width: 100%;
    height: 700px;
    min-height: auto;
    box-sizing: border-box;
  }

  .security-item {
    width: 50%;
  }

  .security-img-block {
    position: absolute;
    width: 60%;
    height: 75%;
    top: 18%;
    border-radius: 10px;
    overflow: hidden;
  }

  .security__list {
    width: 30%;
  }

  .security__title {
    font-size: 32px;
  }

  .partners-slider-mobile {
    display: none;
  }
}

/* Mobile (360px - 767px) */
@media (max-width: 767px) {
  :root {
    --section-padding: 48px;
    --container-padding: 16px;
  }

  .container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    box-sizing: border-box;
  }

  .container > *,
  .section .container > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  .header {
    top: 0;
    padding: 0;
  }

  .nav {
    padding: 12px 16px;
  }

  .logo__img {
    height: 32px;
  }

  .banner-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    width: 100%;
  }

  .banner-text {
    width: 100%;
    font-size: 14px;
  }

  .banner-button {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 154px;
    padding-bottom: 158px;
    min-height: 100vh;
  }

  .hero__title {
    font-size: 32px;
    text-align: center;
    line-height: 110%;
    letter-spacing: 0.32px;
  }

  .hero__glow--green {
    top: 40%;
    left: 50%;
    transform: translate(-100%, -50%) rotate(7.334deg);
    width: 500px;
    height: 300px;
    max-width: min(500px, 100vw);
  }

  .hero__glow--blue {
    top: 40%;
    left: 50%;
    right: unset;
    transform: translate(0, -50%) rotate(-14.382deg);
    width: 450px;
    height: 280px;
    max-width: min(450px, 100vw);
  }

  .hero__title-block {
    flex-direction: column;
    gap: 0;
  }

  .hero__title-highlight {
    margin: 8px 0 0;
    width: 193px;
  }

  .scalability__green-glow {
    top: 85%;
    left: -73%;
  }

  .scalability__glow {
    top: 53%;
    left: 30%;
  }

  /* Glow containment for mobile */
  .scalability__glow,
  .scalability__green-glow,
  .path__glow-green,
  .tariffs-glow-wrap,
  .tariffs-glow-blue,
  .tariffs-glow-green,
  .tariffs-glow-purple,
  .about__glow-green,
  .about__glow-blue,
  .lead-form__glow-green,
  .lead-form__glow-purple {
    max-width: 100vw;
  }

  .hero__subtitle {
    display: none;
  }

  .hero__subtitle-mobile {
    display: block;
    max-width: 304px;
    margin: 45px auto 0;
    color: #fff;
    text-align: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    letter-spacing: 0.16px;
  }

  .hero__content,
  .hero__text {
    max-width: 100%;
  }

  .hero__preview {
    margin-top: 32px;
  }

  .hero__btn {
    margin-top: 128px;

    color: #fff;
    text-align: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 112%; /* 20.16px */
    letter-spacing: -0.18px;
  }

  .features-note {
    display: none;
  }

  .features-note--mobile {
    display: block;
    margin-top: -20px;
    position: static;
    text-align: center;
  }

  .section__main_title {
    color: #fff;
    text-align: center;
    font-family: var(--font-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.176px;
  }

  .section__title {
    font-size: 28px;
  }

  .section__subtitle {
    font-size: 16px;
  }

  .security-grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .cases-selector {
    flex-direction: row;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
  }

  .cases-selector::-webkit-scrollbar {
    display: none;
  }

  .case-company-card {
    width: 185px;
    min-width: 185px;
    flex-shrink: 0;
  }

  .cases-all-btn {
    width: 185px;
    min-width: 185px;
    flex-shrink: 0;
  }

  .about-card__stats {
    flex-direction: column;
    align-items: center;
  }

  .lead-form {
    padding: 32px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .lead-form__title {
    font-size: 22px;
  }

  .lead-form__subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .lead-form .form,
  .lead-form .form__group,
  .lead-form .form__input {
    max-width: 100%;
    box-sizing: border-box;
  }

  .footer__col:first-child {
    padding-bottom: 67px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .footer {
    padding: 36px 16px;
  }

  .footer__logo {
    position: static;
    margin-bottom: 24px;
  }

  .partners__title {
    font-size: 28px;
  }

  .partners-track {
    gap: 24px;
  }

  .tag {
    font-size: 20px;
    padding: 4px 12px;
  }

  .tariff-card__amount {
    font-size: 24px;
  }

  .tariff-card__period {
    font-size: 18px;
  }

  .btn--neon {
    padding: 18px 24px;
    font-size: 18px;
  }

  .btn--full {
    width: 100%;
  }

  /* Features section mobile */
  .section--features {
    padding: 0 0 39px;
    margin-bottom: 32px;
  }

  .features-flex,
  .ai-assistant-features-flex,
  .scalability,
  .security,
  .path-header {
    max-width: 100%;
  }

  .features-cards {
    display: none;
  }
  .features-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 100%;
  }

  .features-info {
    margin-bottom: 47px;
  }

  .feature-semicard,
  .feature-semicard-2,
  .feature-semicard-3 {
    max-width: 100%;
    box-sizing: border-box;
  }

  .feature-semicard {
    padding: 20px 24px;
  }

  .feature-semicard-2 {
    padding: 24px;
    gap: 18px;
  }

  .feature-semicard-3 {
    padding: 24px;
  }

  .feature-semicard__title,
  .ai-assistant-features-semicard__title {
    color: #fff;
    font-family: var(--font-text);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.198px;
  }

  .feature-semicard-3__title {
    color: #fff;
    font-family: var(--font-text);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 18px */
    letter-spacing: -0.198px;
  }

  .feature-semicard-3__list-item {
    color: #fff;
    font-family: var(--font-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.154px;
  }

  .feature-semicard-description {
    height: auto;
  }

  .feature-semicard__description-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

  .feature-card__img {
    border-radius: 22px;
  }

  .feature-semicard__percent,
  .feature-semicard__percent-green,
  .ai-assistant-features-semicard__percent-green {
    font-size: 32px;
  }

  /* AI Assistant section mobile */
  .section--ai-assistant-features {
    padding: 51px 0 0;
    margin-bottom: 90px;
  }

  .ai-assistant-features-cards {
    margin-top: 24px;
    flex-direction: column;
    gap: 15px;
  }

  .ai-assistant-features-info {
    margin-bottom: 42px;
  }

  .ai-assistant-features-semicard {
    position: relative;
    padding: 20px 16px;
    display: flex;
    top: unset;
    max-height: 365px;
    height: 100%;
    max-width: 100%;
  }

  .ai-assistant-features-semicard__content {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ai-assistant-features-semicard__description-row {
    flex-direction: column;
  }


  .ai-assistant-features-semicard__description-block {
    flex-direction: column;
  }

  .ai-assistant-features-semicard-description {
    color: #fff;
    font-family: var(--font-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 15.4px */
    letter-spacing: -0.154px;
  }

  .ai-assistant-features-cards .ai-assistant-features-card {
    padding: 0;
  }

  .ai-assistant-features-semicard__title > br {
    display: none;
  }

  .ai-assistant-features-buttons {
    gap: 14px;
    margin-top: 50px;
    flex-wrap: wrap;
  }

  .ai-assistant-features-buttons .btn {
    font-size: 14px;
    padding: 10px 16px;
    white-space: normal;
  }

  /* Scalability mobile */
  .section--scalability {
    margin-bottom: 90px;
  }

  .scalability__info > h2 > br {
    display: none;
  }
  .scalability__content {
    display: none;
  }

  .scalability__content-mobile {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
    gap: 20px;
  }

  .scalability__card-1 {
    margin: 0;
  }

  .scalability__card-1,
  .scalability__card-2,
  .scalability__card-3 {
    box-sizing: border-box;
  }

  .scalability__card-2 {
    max-width: 100%;
    margin-right: 0;
  }

  .scalability__card-2 > p {
    font-size: 18px;
  }

  .scalability__card-1 > p:first-child,
  .scalability__card-3 > p:first-child {
    font-size: 18px;
  }

  .scalability__card-1 > div > p:first-child,
  .scalability__card-3 > div > p:first-child {
    font-size: 28px;
  }

  .scalability__card-1 > div > p:last-child,
  .scalability__card-3 > div > p:last-child {
    font-size: 14px;
  }

  .scalability__card-3 > div p:nth-child(2) {
    font-size: 16px;
    font-weight: 600;
  }

  .scalability__footnote {
    margin-top: 12px;
    text-align: center;
  }

  /* Security mobile */
  .section--security {
    margin-bottom: 90px;
  }

  .security__title {
    font-size: 28px;
  }

  .security__list {
    width: unset;
  }

  .security__card {
    flex-direction: column;
    padding: 28px 13px;
    width: 100%;
    max-width: 257px;
    height: 307px;
    box-sizing: border-box;
    z-index: -1;
  }

  .security-item {
    width: 100%;
  }

  .security__list-item {
    color: #fff;
    font-family: var(--font-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
    letter-spacing: -0.154px;
  }

  .security-img-block {
    position: static;
    width: 100%;
    margin: 0;
    margin-top: -110px;
    border-radius: 10px;
    overflow: hidden;
  }

  /* PATH STEPS */

  .section--path {
    margin-bottom: 90px;
  }

  .path-steps {
    display: none;
  }

  .path-steps-mobile {
    display: flex;
  }

  .path-steps-mobile {
    max-width: 100%;
  }

  .path-steps__row {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 100%;
  }

  .path-step-card {
    margin: 0;
    width: 100%;
    max-width: 237px;
    padding: 19px;
    box-sizing: border-box;
  }

  .path-steps__line {
    display: flex;
    width: 62px;
    margin: 0;
  }
  .path-steps__line-img {
    width: 100%;
  }

  .path-step-card__list {
    gap: 0;
  }

  .path-step-card__list > li {
    color: #fff;
    font-family: var(--font-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 15.4px */
    letter-spacing: -0.294px;
  }

  .path-step-card__title {
    color: #fff;
    font-family: var(--font-text);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 16px */
    letter-spacing: -0.176px;
  }
  /* Button mobile overrides */
  .btn--submit {
    width: 100%;
  }

  .btn--green-solid {
    width: 100%;
  }

  /* Role buttons mobile */
  .btn--role {
    width: auto;
    flex: 1;
    min-width: 120px;
    height: 50px;
    font-size: 14px;
  }

  /* Tariff card mobile */
  .tariff-card {
    height: auto;
  }

  /* CASE Section MOBILE */

  .section--cases {
    margin-bottom: 90px;
  }

  .cases-header {
    margin-bottom: 47px;
  }

  .cases-features-note {
    display: none;
  }

  .case-main-card__text {
    max-width: 100%;
  }

  .cases-features-note--mobile {
    display: block;
    margin-top: 8px;
    text-align: center;
    position: static;
  }

  .case-slide--active {
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
  }

  .case-stats-card,
  .case-main-card {
    max-width: 100%;
    box-sizing: border-box;
    width: unset;
    height: unset;
  }

  .case-stats-card {
    padding: 20px 29px 20px 22px;
    min-height: 238px;
    position: static;
  }

  .case-stats-card__metric > .feature-semicard__percent-green {
    min-width: 63px;
    font-size: 28px;
  }

  .case-stats-card__metric > .feature-semicard-description {
    color: #fff;
    font-family: var(--font-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.154px;
  }

  .case-company-card__tag {
    padding: 6px 18px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 112%;
    letter-spacing: -0.14px;
  }

  .case-stats-card > a {
    margin-top: auto;
  }

  [data-case="sibur"] {
    .case-stats-card__metric {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .case-main-card__logo {
      margin-bottom: 65px;
    }
  }

  [data-case="crt"] {
    .case-main-card__logos {
      margin-bottom: 53px;
    }

    .case-stats-card__metrics {
      gap: 20px;
    }

    .case-main-card__logos > img:first-child {
      display: none;
    }
  }

  [data-case="domclick"] {
    .case-stats-card__metrics {
      gap: 20px;
    }

    .case-main-card__logo {
      margin-bottom: 53px;
    }
  }

  [data-case="fosagro"] {
    .case-stats-card__metrics {
      gap: 20px;
    }

    .case-main-card__logos > img:first-child {
      display: none;
    }

    .case-main-card__logos {
      margin-bottom: 53px;
    }
  }

  /* SECURITY */

  .section--data-security {
    margin-bottom: 90px;
  }

  .security-item {
    padding: 21px 26px 32px 19px;
  }

  .security-item__title {
    margin-bottom: 26px;

    color: #fff;
    font-family: var(--font-text);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 18px */
    letter-spacing: -0.198px;
  }

  .security-item__text {
    color: #fff;
    font-family: var(--font-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 15.4px */
    letter-spacing: -0.154px;
  }

  /* Tariffs Section */
  .section--tariffs {
    margin-bottom: 90px;
  }

  .tariffs-grid {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .tariff-card {
    min-width: 0;
  }

  .ai-assistant-features-note {
    display: none;
  }

  .ai-assistant-features-note--mobile {
    display: block;
    margin-top: -8px;
    text-align: center;
    position: static;
  }

  .section--tariffs > div > .tariffs-note {
    text-align: center;

    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.132px;
    margin-top: 9px;
  }

  /* Partners Section */

  .section--partners {
    margin-bottom: 90px;
  }

  .partners-slider {
    display: none;
  }
  .partners-slider-mobile {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 53px;
  }

  /* ABOUT SECTION */

  .section--about {
    margin-bottom: 90px;
  }

  .about-card,
  .about-cards {
    max-width: 100%;
    box-sizing: border-box;
  }

  .about-card__top {
    padding: 30px 15px 30px 28px;
  }

  .about-card__text {
    color: #fff;
    font-family: var(--font-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 15.4px */
    letter-spacing: -0.154px;
  }

  .about-card__stats {
    align-items: flex-start;
  }

  .about-stat {
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .about-stat__text {
    text-align: start;
  }
  .about-card__licenses-title {
    margin-bottom: 10px;
  }

  .about-card__licenses {
    padding: 15px 30px 30px;
  }
}

/* Very Small Mobile (< 360px) */
@media (max-width: 359px) {
  .hero__title {
    font-size: 24px;
  }

  .section__title {
    font-size: 22px;
  }

  .about-card__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .about-card__text p {
    width: 100%;
  }

  .about-card__licenses-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ========================================
   Additional Enhancements
   ======================================== */

/* Glow effects */
.glow-green {
  box-shadow: 0 0 60px rgba(68, 211, 112, 0.3);
}

.glow-yellow {
  box-shadow: 0 0 60px rgba(198, 239, 95, 0.3);
}

/* Form error states */
.form__group.error .form__input,
.form__input.error {
  border-color: #EA4C4C !important;
  box-shadow: 0 0 0 3px rgba(234, 76, 76, 0.2) !important;
}


/* Image placeholder for missing images */
.img-placeholder {
  background: linear-gradient(
    135deg,
    var(--color-bg-card) 0%,
    var(--color-bg-darker) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white-60);
}

/* Tariffs CTA */
.tariffs-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* Tariffs note */
.tariffs-note {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 10px;
  line-height: 110%;
  letter-spacing: var(--ls-text);
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
  margin-right: 0;
  text-align: right;
}

/* Hide scrollbar but keep scrolling */
::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Selection color */
::selection {
  background: var(--color-accent);
  color: var(--color-bg-dark);
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Loading state for buttons */
.btn--loading {
  position: relative;
  pointer-events: none;
}

.btn--loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Animate on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive font sizes for large screens */

.banner--new {
  display: inline-block;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  height: 125px;
  width: 100vw;
  z-index: 1001;
  cursor: pointer;
}

.banner--new_container {
  max-width: 1440px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
}

.banner--new_content {
  max-width: calc(100% - 298px);
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left center;
  background-image: url('../assets/images/banner-background-crop.jpg');
  display: flex;
  margin: 0 auto;
}

.banner--new_content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.banner--new_content-right {
  display: flex;
  align-items: center;
  width: 250px;
  min-width: 250px;
}

.banner--new_content .banner--new-title {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  color: #0b0b0b;
  margin-bottom: 16px;
  text-shadow: 
    7px 0px 18.3px #FFFFFF,
    6px 2px 5.8px #FFFFFF;
}

.banner--new_content .banner--new-text {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1%;
  color: #0b0b0b;
  text-shadow: 0px 0px 17.4px #FFFFFF;
}

body[data-banner="true"] {
  .banner--new {
    display: inline-block;
  }

  .header {
    top: 125px;
  }

  .hero {
    padding-top: clamp(280px, 10vw, 350px);
  }
}

body[data-banner="false"] {
  .banner--new {
    display: none;
  }
}

.banner--new_button {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: fit-content;
  height: 48px;
  border-radius: 100px;
  padding: 12px 35px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #9be6cf 0%, #3EE5B4 100%);
  box-shadow: 0px 4px 21.7px 13px rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #272828;
  cursor: pointer;
  transition: all 0.18s;
}

.banner--new_button:hover {
  box-shadow: 0px 4px 55px 15px rgba(255, 255, 255, 0.98);
}

@media (max-width: 1279px) {
  .banner--new {
    height: 160px;
  }

  .banner--new_content {
    max-width: calc(100% - 16px);
  }

  .banner--new_content .banner--new-title {
    font-family: var(--font-hero);
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #0b0b0b;
    margin-bottom: 12px;
    text-shadow: 
      7px 0px 18.3px #FFFFFF,
      6px 2px 5.8px #FFFFFF;
  }

  .banner--new_content .banner--new-text {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1%;
    color: #0b0b0b;
    text-shadow: 0px 0px 17.4px #FFFFFF;
  }

  body[data-banner="true"] {
    .banner--new {
      display: block;
    }

    .header {
      top: 160px;
    }

    .hero {
      padding-top: clamp(315px, 10vw, 365x);
    }
  }
}

@media (max-width: 559px) {
  .banner--new {
    height: 90px;
    overflow: hidden;
  }

  .banner--new_content {
    max-width: 100%;
    padding: 8px;
    justify-content: space-between;
    align-items: center;
    background-size: 200%;
  }

  .banner--new_content-left {
    flex: 1;
    margin-bottom: 0;
  }

  .banner--new_content .banner--new-title {
    font-size: 12px !important;
    line-height: 1.3 !important;
  }

  .banner--new_content .banner--new-text {
    display: none;
  }

  .banner--new_content-right {
    display: flex;
    align-items: center;
    width: 180px;
    min-width: 180px;
    max-width: 180px;
  }

  .banner--new_button {
    height: 30px;
    border-radius: 30px;
    padding: 4px 12px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #9be6cf 0%, #3EE5B4 100%);
    box-shadow: 0px 4px 7px 4px rgba(255, 255, 255, 0.92);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #272828;
    cursor: pointer;
    transition: all 0.18s;
  }

  .banner--new_button:hover {
    box-shadow: 0px 4px 7px 4px rgba(255, 255, 255, 0.92);
  }

  body[data-banner="true"] {
    .banner--new {
      display: block;
    }

    .header {
      top: 90px;
    }

    .hero {
      padding-top: clamp(256px, 10vw, 365px);
    }
  }
}

/* ========================================
   Banner Cowork
   ======================================== */
.banner-cowork {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  z-index: 1001;
  background: linear-gradient(90deg, #0c1410 0%, #111317 35%, #111317 65%, #0c1410 100%);
  border-bottom: 1px solid rgba(68, 211, 112, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.banner-cowork:hover {
  background: linear-gradient(90deg, #0f1c14 0%, #141f16 35%, #141f16 65%, #0f1c14 100%);
  border-bottom-color: rgba(68, 211, 112, 0.32);
}

.banner-cowork__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  width: 100%;
  padding: 0 32px;
}

.banner-cowork__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  background: rgba(68, 211, 112, 0.1);
  border: 1px solid rgba(68, 211, 112, 0.25);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.banner-cowork:hover .banner-cowork__badge {
  background: rgba(68, 211, 112, 0.16);
  border-color: rgba(68, 211, 112, 0.42);
}

.banner-cowork__text {
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.6);
  flex: 1;
  transition: color 0.25s ease;
}

.banner-cowork:hover .banner-cowork__text {
  color: rgba(255, 255, 255, 0.85);
}

.banner-cowork__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.banner-cowork__arrow {
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  fill: none;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.banner-cowork:hover .banner-cowork__arrow {
  transform: translateX(4px);
}

body.has-cowork-banner .header {
  top: 52px;
}

body.has-cowork-banner .hero {
  padding-top: clamp(152px, calc(10vw + 52px), 252px);
}

@media (max-width: 768px) {
  .banner-cowork__text {
    display: none;
  }
}
