/* ========================================
   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: 1376px;
  --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-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: "Druk Wide Cyr";
  src: url("../assets/fonts/DrukWideCyr-Bold.woff2") format("woff2");
  font-weight: 700;
  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;
}

html {
  overflow-x: hidden;
}

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;
}

/* 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;
}

.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 {
  background: var(--color-text-white);
  color: var(--color-text-dark);
  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;
}

/* ========================================
   Buttons
   ======================================== */
.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 {
  background: var(--color-text-white);
  color: var(--color-text-dark);
}

.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: 292px;
  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 {
  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: 12px;
  height: 68px;
  width: 260px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.16px;
  color: #fff;
}

.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;
  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);
  border: 1px solid #58ff88;
  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-border {
  display: 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);
  box-shadow: 0 0 40px var(--color-accent-light);
}

.btn__text {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  font-family: "SB Sans 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 {
  background: rgba(110, 115, 113, 0.5);
  color: var(--color-text-white);
}

.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: 272px;
  overflow: hidden;
  background: var(--color-bg-dark);
}

/* Video Background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;

  width: 4325px;
  height: 3727.001px;
  mix-blend-mode: lighten;
  filter: blur(50.900001525878906px);
}

.hero__video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;

  top: -3100px;
  left: -1443px;
}

/* Blur/Glow Effects */
.hero__glow {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__glow--green {
  width: 1459px;
  height: 668px;
  top: -122px;
  left: -200px;
  transform: rotate(7.334deg);
  border-radius: 1459px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #22fb60 100%);
  filter: blur(81.6500015258789px);
}

.hero__glow--blue {
  width: 1310px;
  height: 676px;
  top: -252.9997px;
  left: 312px;
  transform: rotate(-14.382deg);
  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: "Druk Wide Cyr";
  font-style: normal;
}

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

.hero__subtitle {
  color: #fff;
  text-align: center;
  font-family: "SB Sans Display";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 33px;
  letter-spacing: 0.32px;
  max-width: 964px;
  margin: 45px 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;
  width: 252.57px;
  height: 58px;
  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: "SB Sans 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);

  overflow: hidden;
}

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

.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: 160px;
  margin-right: 400px;
  text-align: right;
}

.features-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 838px;
}

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

.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 {
  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 {
  position: absolute;
  top: 72px;
  left: -267px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 326px;
  height: 201px;
  padding: 28px 40px 40px 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  border-radius: 22px;
  border: 1px solid #ff3c8a;
  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 {
  position: absolute;
  top: -15px;
  right: -70px;
  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 {
  position: absolute;
  bottom: -136px;
  right: -70px;
  display: flex;
  gap: 16px;
  width: 582px;
  height: 272px;
  padding: 21px 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__title {
  color: #fff;
  font-family: "SB Sans 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: "SB Sans Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.176px;
}

.feature-semicard__title {
  align-self: stretch;
  color: #fff;
  font-family: "SB Sans Text";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 26.4px */
  letter-spacing: -0.242px;
}

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

.feature-semicard__percent {
  font-family: "SB Sans 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 {
  font-family: "SB Sans 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: "SB Sans 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;
  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 Section
   ======================================== */
.section--ai-assistant-features {
  background: var(--color-bg-dark);
  overflow: hidden;
}

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

.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;
}

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

.ai-assistant-features-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1215px;
}

.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;
  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);
  display: none;
}

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

.ai-assistant-features-semicard__title {
  color: #fff;
  font-family: "SB Sans Text";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 26.4px */
  letter-spacing: -0.242px;
}

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

.ai-assistant-features-semicard__percent-green {
  font-family: "SB Sans 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;
}

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

.ai-assistant-features-semicard {
  position: absolute;
  display: flex;
  top: 145px;
  right: 0px;
  width: 364px;
  height: 339px;
  padding: 40px 20px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;

  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);
}

.ai-assistant-features-buttons {
  width: 100%;
  display: flex;
  gap: 35px;
  margin-top: 10px;
  max-width: 1144px;
  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;
  margin-right: 226px;
  text-align: right;
}

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

.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%;
  padding: 0 116px;
  margin: 45px 0 0;
}

.scalability__content-mobile {
  display: none;
}

.scalability__glow {
  position: absolute;
  top: 260px;
  left: 32px;
  width: 443px;
  height: 80px;
  border-radius: 443px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #ff9935 100%);
  filter: blur(82px);
}

.scalability__green-glow {
  position: absolute;
  top: -125px;
  left: 434px;
  width: 100%;
  height: 158px;
  border-radius: 893px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #44d370 100%);
  filter: blur(81.6500015258789px);
}

.scalability__card-1 {
  max-width: 328px;
  padding: 27px 0 28px;
  margin: 0 21px 0 0;
}

.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 {
  border: 2px solid #58ff88;
  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: "SB Sans Text";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.11px;

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

.scalability__card-1 > p:first-child,
.scalability__card-2 > p:first-child {
  color: #fff;
  font-family: "SB Sans 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: "SB Sans 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: "SB Sans 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: "SB Sans 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: 1144px;
  max-width: 100%;
  height: auto;
  min-height: 387px;
  padding: 29px 40px;
  align-items: center;
  gap: 38px;

  border-radius: 22px;
  border: 2px solid rgba(114, 182, 135, 0.17);
  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: "SB Sans Text";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 192%;
  letter-spacing: -0.176px;
}

.security-img {
  position: absolute;
  top: 170px;
  right: 91px;
  display: flex;
  width: 749px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

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

.container-path {
  max-width: 1440px;
}

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

.path__glow-green {
  position: absolute;
  top: -40px;
  left: 32px;
  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);
}

.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;
}

.path-steps__row--bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  padding-left: 282px;
  padding-right: 213px;
}

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

.path-steps__line-img {
  width: 100%;
  max-width: 1376px;
  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: 351px;
  width: 100%;
  margin-left: 56px;
  padding-right: 12px;
}
.step-3 {
  max-width: 289px;
  width: 100%;
  margin: 0 101px 0 113px;
}
.step-5 {
  max-width: 518px;
}

.step-2 {
  max-width: 341px;
  width: 100%;
}
.step-4 {
  max-width: 451px;
  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: "SB Sans 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);
  overflow: hidden;
}

.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;
}

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

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

.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: 1144px;
  max-width: 100%;
  margin: 0 auto;
  min-height: 369px;
}

.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: 682px;
}

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

.case-main-card__text strong {
  font-weight: 700;
}

/* Stats overlay card on case */
.case-stats-card {
  position: absolute;
  top: -77px;
  right: 146px;
  width: 364px;
  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);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 311px;
}

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

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

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

.case-company-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: 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-crt {
  filter: invert(100%) grayscale(100%) brightness(120%);
  transition: filter 0.3s ease;
}

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

.case-company-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(24px);
  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 {
  backdrop-filter: blur(11.676px);
  -webkit-backdrop-filter: blur(11.676px);
  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(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);
}

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

.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: 21px 39px 48px 29px;

  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: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

/* .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, 444px);
  gap: 22px;
  margin-top: 45px;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.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;
  overflow: hidden;
  height: 737px;
  padding: 0 0 32px;
}

.tariff-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  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--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;
}

.tariff-card__size {
  width: 38px;
  color: #fff;
  font-family: "SB Sans 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: "SB Sans 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: "SB Sans 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__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-green {
  position: absolute;
  top: 0px;
  left: 380px;
  width: 798px;
  height: 300px;
  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: 100px;
  right: 0px;
  width: 798px;
  height: 100px;
  border-radius: 798px;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #9747ff 100%);
  filter: blur(81.6500015258789px);
}

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

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

.about__glow-green {
  position: absolute;
  top: 30%;
  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-card__top {
  display: flex;
  gap: 20px;
  padding: 30px;
}

.about-card__text {
  flex: 1;
  max-width: 530px;
}

.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: "SB Sans 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;
}

/* 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;
}

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

.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;
  overflow: hidden;
  width: 100%;
  position: relative;
  max-width: var(--container-width);
  margin: 0 auto;
}

.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: fit-content;
}

.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;
  overflow: hidden;
  padding: 30px 0 0;
}

.lead-form__glow-green {
  z-index: 0;
  position: absolute;
  top: 8480px;
  left: 0;
  width: 100%;
  max-width: 1675px;
  height: 359px;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #44d370 100%);
  filter: blur(81.6500015258789px);
}

.lead-form__glow-purple {
  position: absolute;
  top: 9240px;
  width: 100%;
  height: 300px;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(0, 78, 24, 0) 50.05%, #9747ff 100%);
  filter: blur(81.6500015258789px);
}

.lead-form {
  width: 628px;
  max-width: 100%;
  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);
  backdrop-filter: blur(var(--blur-card));
  -webkit-backdrop-filter: blur(var(--blur-card));
  border-radius: var(--radius-xl);
  padding: 61px 204px;
}

.lead-form__text {
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
  font-family: "SB Sans Display";
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 112%;
  letter-spacing: -0.22px;
}

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

  color: #fff;
  text-align: center;
  font-family: "SB Sans Display";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.28px;
}

.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;
  gap: 22px;
  margin-top: 5px;
  margin-bottom: 24px;
}

.form__checkbox-input {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: var(--radius-xs);
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  position: relative;
}

.form__checkbox-input:checked {
  background: var(--color-accent);
}

.form__checkbox-input:checked::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12l5 5L19 7' stroke='%23111317' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/16px no-repeat;
}

.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);
}

.form__checkbox-label a {
  color: var(--color-text-secondary);
  text-decoration: underline;
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 67px;
}

.footer::before {
  display: none;
}

.footer__top {
  display: grid;
  grid-template-columns: 326px 443px 559px;
  gap: 24px;
  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) {
  .features-note {
    margin: 9px 0 0;
    text-align: center;
  }

  :root {
    --section-padding: 60px;
    --container-padding: 24px;
  }

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

  .header .container,
  .footer .container {
    padding: 0;
  }

  .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;
  }

  .hero__glow--green {
    width: 900px;
    height: 400px;
    max-width: 120vw;
  }

  .hero__glow--blue {
    width: 800px;
    height: 400px;
    max-width: 110vw;
  }

  /* Glow containment for tablet */
  .scalability__glow,
  .scalability__green-glow,
  .path__glow-green,
  .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;
    max-width: 563px;
    margin-left: auto;
    margin-right: auto;
  }

  .path-steps {
    display: none;
  }

  .path-steps-mobile {
    display: flex;
    justify-content: center;
  }

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

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

  .path-step-card {
    margin: 0;
    max-width: 400px;
    width: 100%;
  }

  .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;
  }

  /* Cases layout responsive */
  .case-stats-card {
    position: static;
    width: 100%;
    margin-top: 24px;
  }

  .cases-selector {
    flex-wrap: nowrap;
    width: 100%;
    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 {
    grid-template-columns: 1fr;
  }

  .tariff-card {
    height: auto;
  }

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

  .lead-form {
    width: 100%;
    padding: 40px 32px;
  }

  /* About section responsive */
  .about-card__top {
    flex-direction: column;
  }

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

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

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

  .about-badge {
    height: auto;
  }

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

  .features-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .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: -200px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: 451px;
    max-height: 264px;
    padding: 10px 40px;
  }

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

  .ai-assistant-features-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .scalability__content-mobile {
    display: none;
  }

  /* Security section */
  .security__card {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .security-img {
    position: static;
    width: 100%;
    margin-top: 24px;
  }

  .security__title {
    font-size: 32px;
  }

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

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

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

  .nav {
    padding: 12px 16px;
  }

  .logo__img {
    height: 32px;
  }

  .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 {
    left: -260px;
    top: 300px;
    width: 500px;
    height: 300px;
    max-width: 140vw;
  }

  .hero__glow--blue {
    top: 300px;
    left: unset;
    right: -160px;
    width: 450px;
    height: 280px;
    max-width: 130vw;
  }

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

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

  /* Glow containment for mobile */
  .scalability__glow,
  .scalability__green-glow,
  .path__glow-green,
  .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: "SB Sans Display";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    letter-spacing: 0.16px;
  }

  .hero__preview {
    margin-top: 32px;
  }

  .hero__btn {
    margin-top: 128px;

    color: #fff;
    text-align: center;
    font-family: "SB Sans Display";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 112%; /* 20.16px */
    letter-spacing: -0.18px;
  }

  .section__main_title {
    color: #fff;
    text-align: center;
    font-family: "SB Sans 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: nowrap;
    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 20px;
  }

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

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

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

  .footer {
    padding: 36px 32px;
  }

  .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-cards {
    display: none;
  }
  .features-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

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

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

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

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

  .feature-semicard__title {
    color: #fff;
    font-family: "SB Sans 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: "SB Sans 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: "SB Sans Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.154px;
  }

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

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

  .feature-semicard__percent,
  .feature-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-reverse;
    gap: 38px;
  }

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

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

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

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

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

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

  .ai-assistant-features-semicard__title {
    color: #fff;
    font-family: "SB Sans Text";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.198px;
  }
  .ai-assistant-features-semicard__title > br {
    display: none;
  }

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

  .ai-assistant-features-buttons {
    gap: 14px;
    margin-top: 18px;
  }

  .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;
  }

  .scalability__card-1 {
    padding: 41px 0 44px;
    margin: 0;
  }

  .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__card {
    flex-direction: column;
    padding: 28px 13px;
    max-width: 257px;
    height: 307px;
  }

  .security__list-item {
    color: #fff;
    font-family: "SB Sans Text";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 142%;
    letter-spacing: -0.154px;
  }

  .security-img {
    position: static;
    width: 100%;
    margin: 0;
    margin-top: -110px;
  }

  /* PATH STEPS */

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

  .path-steps {
    display: none;
  }

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

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

  .path-step-card {
    margin: 0;
    width: 237px;
    padding: 19px;
  }

  .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: "SB Sans 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: "SB Sans 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;
  }

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

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

  .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: "SB Sans 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: "SB Sans 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: "SB Sans 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;
  }

  .ai-assistant-features-note {
    text-align: center;
    margin: 9px 0 0;
    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;
  }

  .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__top {
    padding: 30px 15px 30px 28px;
  }

  .about-card__text {
    color: #fff;
    font-family: "SB Sans 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;
  }
}

/* ========================================
   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 {
  border-color: #ff3c8a;
  box-shadow: 0 0 0 3px rgba(255, 60, 138, 0.2);
}

.form__checkbox.error .form__checkbox-input {
  border-color: #ff3c8a;
}

/* 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%;
  text-align: center;
  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 */
html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

::-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 */
