@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400;500;600;700&family=Manrope:wght@300;600&display=swap');

:root {
  --font-main: 'Golos Text', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-logo: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --color-yellow: #F9E000;
  --color-yellow-hover: #FFEA4C;
  --color-blue: #235FAD;
  --color-blue-light: #648CC1;
  --color-text-main: #051C29;
  --color-text-secondary: #9FA5AA;
  --color-white: #FFFFFF;
  --color-bg-light: #F5F7F8;
  --color-bg-dark: #1E2830;
  --color-dark-block: #1E2830;
  --color-border-input: #C3C8D1;
  --color-border-input-hover: #8C94A1;
  --color-border-light: #DDE0E2;

  --radius-btn: 12px;
  --radius-card: 16px;

  --fs-h1: 72px;
  --lh-h1: 0.9;
  --ls-h1: -0.05em;
  --fw-h1: 500;

  --fs-h2: 60px;
  --lh-h2: 1.0;
  --ls-h2: -0.05em;

  --fs-h3: 36px;
  --lh-h3: 1.0;
  --ls-h3: -0.03em;

  --fs-h4: 32px;
  --lh-h4: 1.1;
  --ls-h4: -0.04em;

  --fs-h5: 28px;
  --lh-h5: 1.1;
  --ls-h5: -0.03em;

  --fs-h6: 26px;
  --lh-h6: 1.1;
  --ls-h6: -0.03em;

  --fs-sub-lg: 26px;
  --lh-sub-lg: 1.1;
  --ls-sub-lg: -0.04em;

  --fs-sub-reg: 24px;
  --lh-sub-reg: 1.1;
  --ls-sub-reg: -0.03em;

  --fs-body-lg-accent: 22px;
  --lh-body-lg-accent: 1.1;
  --ls-body-lg-accent: -0.04em;
  --fw-body-lg-accent: 500;

  --fs-body-lg: 22px;
  --lh-body-lg: 1.1;
  --ls-body-lg: -0.04em;

  --fs-body-reg: 20px;
  --lh-body-reg: 1.1;
  --ls-body-reg: -0.03em;

  --fs-body-sm: 18px;
  --lh-body-sm: 1.1;
  --ls-body-sm: -0.04em;

  --fs-nav: 18px;
  --lh-nav: 1.0;
  --ls-nav: -0.03em;
  --fw-nav: 500;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  width: 100%;
  overflow-x: hidden;
}

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

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

.site-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
  background-color: var(--color-white);
}

.hero {
  position: relative;
  width: 100%;
  height: 900px;
  background-color: #051C29;
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero__bg-slide.active {
  opacity: 1;
}

.hero__bg-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 28, 41, 0.4) 0%, rgba(5, 28, 41, 0.75) 100%);
}

.header {
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.header__nav-bar {
  display: flex;
  align-items: center;
  height: 60px;
  background: rgba(11, 33, 51, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-btn);
  padding: 0 32px 0 20px;
  gap: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header__logo img {
  height: 38px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  font-size: var(--fs-nav);
  font-weight: var(--fw-nav);
  line-height: var(--lh-nav);
  letter-spacing: var(--ls-nav);
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  transition: color 0.2s ease;
  cursor: pointer;
}

.header__nav-link:hover {
  color: var(--color-yellow);
}

.header__nav-link svg {
  width: 12px;
  height: 7px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.2s ease;
}

.header__nav-item:hover .header__nav-link svg {
  transform: rotate(180deg);
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: rgba(11, 33, 51, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-btn);
  padding: 12px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header__nav-item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown-item a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--color-white);
  transition: background 0.2s, color 0.2s;
}

.header__dropdown-item a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-yellow);
}

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

.header__contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 227px;
  background: rgba(11, 33, 51, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-btn);
  gap: 2px;
}

.header__phone {
  font-size: var(--fs-nav);
  font-weight: var(--fw-nav);
  line-height: var(--lh-nav);
  letter-spacing: var(--ls-nav);
  color: var(--color-white);
  transition: color 0.2s;
}

.header__phone:hover {
  color: var(--color-yellow);
}

.header__email {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  color: var(--color-text-secondary);
  transition: color 0.2s;
}

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

.btn-primary {
  height: 60px;
  padding: 0 40px;
  background-color: var(--color-yellow);
  color: var(--color-text-main);
  border-radius: var(--radius-btn);
  font-size: var(--fs-nav);
  font-weight: var(--fw-nav);
  letter-spacing: var(--ls-nav);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background-color: var(--color-yellow-hover);
}

.btn-secondary {
  height: 60px;
  padding: 0 48px;
  background-color: rgba(6, 6, 6, 0.34);
  color: var(--color-white);
  border-radius: var(--radius-btn);
  font-size: var(--fs-nav);
  font-weight: var(--fw-nav);
  letter-spacing: var(--ls-nav);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.hero__content {
  position: absolute;
  top: 136px;
  left: 40px;
  max-width: 1035px;
  z-index: 2;
}

.hero__title {
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  letter-spacing: var(--ls-h1);
  font-weight: var(--fw-h1);
  color: var(--color-white);
  margin-bottom: 32px;
}

.hero__subtitle {
  font-size: var(--fs-sub-lg);
  line-height: var(--lh-sub-lg);
  letter-spacing: var(--ls-sub-lg);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 40px;
  max-width: 950px;
}

.hero__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__slider-nav {
  position: absolute;
  bottom: 42px;
  left: 40px;
  width: 1300px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  z-index: 3;
}

.hero__slider-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  user-select: none;
}

.hero__slider-label {
  font-size: var(--fs-nav);
  line-height: var(--lh-nav);
  letter-spacing: var(--ls-nav);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  white-space: nowrap;
  transition: color 0.3s ease;
  font-weight: 400;
}

.hero__slider-item:hover .hero__slider-label,
.hero__slider-item.active .hero__slider-label {
  color: var(--color-white);
  font-weight: 500;
}

.hero__slider-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.hero__slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--color-white);
  border-radius: 1px;
}

.hero__slider-item.active .hero__slider-fill {
  width: 0%;
}

.hero__slider-item.active.animating .hero__slider-fill {
  animation: heroFill 5s linear forwards;
}

@keyframes heroFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.floating-phone {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 90;
}

.floating-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.floating-phone img {
  width: 30px;
  height: 30px;
  display: block;
}

.why-lightning {
  position: relative;
  padding: 140px 40px 0;
  background-color: var(--color-white);
}

.why-lightning__header {
  display: flex;
  margin-left: 50%;
  margin-bottom: 60px;
}

.why-lightning__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  font-weight: 400;
  color: var(--color-text-main);
  max-width: 508px;
}

.why-lightning__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.why-lightning__col {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0 24px 0 24px;
  border-left: 1px solid var(--color-border-input);
  min-height: 400px;
}

.why-lightning__col:last-child {
  border-right: 1px solid var(--color-border-input);
}

.why-lightning__number {
  font-size: var(--fs-body-reg);
  line-height: var(--lh-body-reg);
  letter-spacing: -0.6px;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.why-lightning__image-wrap {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.why-lightning__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.why-lightning__text {
  font-size: var(--fs-sub-lg);
  line-height: var(--lh-sub-lg);
  letter-spacing: -1.04px;
  color: var(--color-text-main);
  margin-top: auto;
}

.catalog-section {
  position: relative;
  padding: 140px 40px 0;
  background-color: var(--color-white);
}

.catalog-section__header {
  display: flex;
  flex-direction: column;
  margin-left: 50%;
  margin-bottom: 60px;
  gap: 24px;
}

.catalog-section__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  font-weight: 400;
  color: var(--color-text-main);
}

.catalog-section__subtitle {
  font-size: var(--fs-sub-lg);
  line-height: var(--lh-sub-lg);
  letter-spacing: var(--ls-sub-lg);
  font-weight: 400;
  color: var(--color-text-main);
}

.catalog-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 610px);
  gap: 10px;
  width: 1850px;
}

.category-card {
  display: flex;
  flex-direction: column;
  width: 610px;
  height: 615px;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  background-color: var(--color-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 27, 40, 0.08);
}

.category-card__image-wrap {
  position: relative;
  width: 610px;
  height: 480px;
  overflow: hidden;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.category-card:hover .category-card__image {
  transform: scale(1.02);
}

.category-card__image-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(93deg, rgba(40, 95, 169, 0.1) 2.7%, rgba(40, 94, 167, 0.1) 26.5%, rgba(15, 62, 125, 0.1) 91%);
  pointer-events: none;
}

.category-card__content {
  width: 610px;
  height: 135px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-top: none;
  border-bottom-left-radius: var(--radius-card);
  border-bottom-right-radius: var(--radius-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card__title {
  font-size: var(--fs-h6);
  font-weight: 500;
  line-height: var(--lh-h6);
  letter-spacing: -0.78px;
  color: var(--color-text-main);
}

.category-card__desc {
  font-size: var(--fs-body-sm);
  font-weight: 400;
  line-height: var(--lh-body-sm);
  letter-spacing: -0.72px;
  color: var(--color-text-secondary);
}

.benefits-section {
  position: relative;
  width: 100%;
  height: 878px;
  margin-top: 140px;
  background: linear-gradient(95deg, rgb(40, 95, 169) 2.7%, rgb(40, 94, 167) 26.5%, rgb(15, 62, 125) 91%);
  color: var(--color-white);
  padding: 80px 35px;
}

.benefits-section__header {
  display: flex;
  margin-left: calc(50% + 13px - 35px);
  margin-bottom: 68px;
}

.benefits-section__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  font-weight: 400;
  color: var(--color-white);
  max-width: 800px;
}

.benefits-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 610px);
  gap: 10px;
  width: 1850px;
}

.benefit-card {
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: background 0.25s ease, transform 0.25s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.benefit-card__icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon img {
  width: 70px;
  height: 70px;
  display: block;
}

.benefit-card__text {
  font-size: var(--fs-h5);
  font-weight: 400;
  line-height: var(--lh-h5);
  letter-spacing: -0.84px;
  color: var(--color-white);
  max-width: 560px;
}

.production-section {
  position: relative;
  width: 100%;
  height: 835px;
  background-color: var(--color-bg-light);
  display: flex;
  align-items: center;
  padding: 80px 52px 80px 52px;
}

.production-section__image-wrap {
  width: 900px;
  height: 675px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.production-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.production-section__content {
  position: relative;
  margin-left: 41px;
  height: 675px;
  display: flex;
  flex-direction: column;
}

.production-section__timeline-bar {
  position: absolute;
  left: -21px;
  top: 4px;
  bottom: 11px;
  width: 1px;
  background-color: var(--color-blue);
  z-index: 1;
}

.production-section__timeline-dot-top {
  position: absolute;
  left: -25px;
  top: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--color-blue);
  background-color: var(--color-bg-light);
  box-sizing: border-box;
  z-index: 2;
}

.production-section__title {
  font-size: var(--fs-h2);
  line-height: 1;
  letter-spacing: var(--ls-h2);
  font-weight: 400;
  color: var(--color-text-main);
  margin-bottom: 46px;
}

.production-section__desc {
  font-size: var(--fs-body-lg);
  line-height: 1.1;
  letter-spacing: -0.88px;
  font-weight: 400;
  color: var(--color-text-main);
  max-width: 811px;
  margin-bottom: 67px;
}

.production-section__timeline {
  display: flex;
  flex-direction: column;
  gap: 35px;
  position: relative;
  margin-bottom: 71px;
}

.production-step {
  display: flex;
  align-items: center;
  position: relative;
}

.production-step::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: repeating-linear-gradient(to right, var(--color-blue) 0, var(--color-blue) 2px, transparent 2px, transparent 4px);
  z-index: 1;
}

.production-step::after {
  content: '';
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--color-blue);
  background-color: var(--color-bg-light);
  box-sizing: border-box;
  z-index: 2;
}

.production-step__num {
  font-size: var(--fs-h3);
  line-height: 1;
  letter-spacing: -1.08px;
  color: var(--color-blue);
  font-weight: 400;
  width: 138px;
  flex-shrink: 0;
  padding-left: 48px;
  box-sizing: border-box;
}

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

.production-step__title {
  font-size: var(--fs-h6);
  font-weight: 500;
  line-height: var(--lh-h6);
  letter-spacing: -0.78px;
  color: var(--color-text-main);
}

.production-step__subtitle {
  font-size: var(--fs-sub-reg);
  font-weight: 400;
  line-height: var(--lh-sub-reg);
  letter-spacing: -0.72px;
  color: var(--color-text-secondary);
}

.production-section__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-body-reg);
  font-weight: 400;
  color: var(--color-text-main);
  letter-spacing: -0.6px;
  line-height: 1.1;
  height: 22px;
  transition: color 0.2s ease;
  margin-top: auto;
}

.production-section__link:hover {
  color: var(--color-blue);
}

.production-section__link img {
  width: 18px;
  height: 12px;
  display: block;
}

.production-section__timeline-dot-bottom {
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid var(--color-blue);
  background-color: var(--color-bg-light);
  box-sizing: border-box;
  z-index: 2;
}

.cta-banner {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(101deg, rgb(40, 95, 169) 2.7%, rgb(40, 94, 167) 26.5%, rgb(15, 62, 125) 91%);
  overflow: hidden;
  color: var(--color-white);
}

.cta-banner__pattern {
  position: absolute;
  top: -497px;
  left: 278px;
  width: 2127px;
  height: 1113px;
  pointer-events: none;
  opacity: 0.8;
}

.cta-banner__glow {
  position: absolute;
  left: 718px;
  top: 72px;
  width: 762px;
  height: 442px;
  background: radial-gradient(circle, rgba(100, 140, 193, 0.3) 0%, rgba(35, 95, 173, 0) 70%);
  pointer-events: none;
}

.cta-banner__title {
  position: absolute;
  left: 56px;
  top: 60px;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  font-weight: 400;
  color: var(--color-white);
  max-width: 800px;
  z-index: 2;
}

.cta-banner__content {
  position: absolute;
  left: 960px;
  top: 178px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 465px;
}

.cta-banner__subtitle {
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  letter-spacing: var(--ls-h4);
  font-weight: 400;
  color: var(--color-white);
}

.cta-banner__btn {
  width: 420px;
}

.knowledge-section {
  position: relative;
  padding: 140px 40px 0;
  background-color: var(--color-white);
}

.knowledge-section__header {
  display: flex;
  flex-direction: column;
  margin-left: 50%;
  margin-bottom: 60px;
  gap: 24px;
}

.knowledge-section__title {
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  font-weight: 400;
  color: var(--color-text-main);
}

.knowledge-section__all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-body-reg);
  font-weight: 400;
  color: var(--color-text-main);
  letter-spacing: -0.6px;
  transition: color 0.2s ease;
}

.knowledge-section__all-link:hover {
  color: var(--color-blue);
}

.knowledge-section__all-link img {
  width: 18px;
  height: 12px;
}

.knowledge-slider-wrap {
  position: relative;
  width: 1850px;
}

.knowledge-slider {
  display: grid;
  grid-template-columns: repeat(4, 456.5px);
  gap: 8px;
  width: 100%;
}

.article-card {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-btn);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 27, 40, 0.08);
}

.article-card__image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-btn);
  overflow: hidden;
}

.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-card__content {
  display: flex;
  flex-direction: column;
  height: 168px;
  justify-content: space-between;
}

.article-card__date {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}

.article-card__title {
  font-size: var(--fs-body-lg);
  font-weight: 500;
  line-height: var(--lh-body-lg);
  letter-spacing: -0.88px;
  color: var(--color-text-main);
}

.article-card__link {
  font-size: var(--fs-body-sm);
  line-height: var(--lh-body-sm);
  letter-spacing: -0.72px;
  color: var(--color-text-main);
  text-align: right;
  font-weight: 400;
}

.slider-arrow {
  position: absolute;
  top: calc(50% - 18px);
  width: 52px;
  height: 36px;
  border-radius: 18px;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.15s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
  transform: scale(1.05);
}

.slider-arrow--prev {
  left: 14px;
}

.slider-arrow--prev img {
  transform: rotate(180deg);
}

.slider-arrow--next {
  right: 14px;
}

.slider-arrow--next img {
  transform: none;
}

.slider-arrow img {
  width: 52px;
  height: 36px;
  display: block;
  pointer-events: none;
}

.feedback-section {
  position: relative;
  width: 100%;
  height: 651px;
  background-color: var(--color-blue);
  overflow: hidden;
  margin-top: 140px;
}

.feedback-section__bg {
  position: absolute;
  top: 0;
  left: -140px;
  width: 2127px;
  height: 651px;
  pointer-events: none;
}

.feedback-section__pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.feedback-section__inner {
  position: relative;
  width: 1920px;
  height: 100%;
  margin: 0 auto;
}

.feedback-section__title {
  position: absolute;
  left: 56px;
  top: 449px;
  width: 800px;
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: var(--ls-h2);
  font-weight: 400;
  color: var(--color-white);
}

.feedback-card {
  position: absolute;
  left: 960px;
  top: 60px;
  width: 920px;
  height: 517px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-btn);
  padding: 40px;
}

.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 839px;
}

.feedback-form__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.feedback-form__row {
  display: flex;
  gap: 10px;
  width: 100%;
}

.feedback-form__col {
  flex: 1;
}

.feedback-form__full {
  width: 100%;
}

.input-field {
  position: relative;
  width: 100%;
}

.input-field__input {
  width: 100%;
  height: 60px;
  border: none;
  border-bottom: 1px solid var(--color-border-input);
  background: transparent;
  padding: 18px 20px;
  font-family: inherit;
  font-size: var(--fs-body-sm);
  letter-spacing: -0.72px;
  color: var(--color-text-main);
  outline: none;
  transition: border-color 0.2s ease;
}

.input-field__input::placeholder {
  color: var(--color-text-secondary);
}

.input-field__input:hover {
  border-bottom-color: #8c94a1;
}

.input-field__input:focus {
  border-bottom-color: var(--color-blue);
}

.input-field__textarea {
  height: 109px;
  resize: none;
}

.feedback-form__consent {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.feedback-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.feedback-form__custom-checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-blue);
  background-color: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}

.feedback-form__checkbox:not(:checked) + .feedback-form__custom-checkbox {
  background-color: transparent;
  border-color: var(--color-border-input);
}

.feedback-form__checkbox:not(:checked) + .feedback-form__custom-checkbox svg {
  display: none;
}

.feedback-form__consent-text {
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.56px;
  color: #656565;
}

.feedback-form__submit {
  width: 325px;
  cursor: pointer;
  border: none;
}

.footer {
  position: relative;
  width: 100%;
  height: 486px;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  overflow: hidden;
}

.footer__brand {
  position: absolute;
  left: 40px;
  top: 80px;
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer__logo-icon {
  width: 50px;
  height: 78px;
  display: block;
}

.footer__brand-text {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 23.4px;
  line-height: 1.01;
  letter-spacing: 0.47px;
  color: var(--color-white);
  text-transform: uppercase;
  max-width: 263px;
  display: block;
}

.footer__col {
  position: absolute;
  top: 80px;
  display: flex;
  flex-direction: column;
}

.footer__col--about {
  left: 515px;
  gap: 42px;
}

.footer__col--info {
  left: 822px;
  gap: 42px;
}

.footer__col--nav {
  left: 1172px;
  top: 141px;
}

.footer__col-title {
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__link {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.footer__contacts {
  position: absolute;
  left: 1579px;
  top: 91px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 60px;
  width: 300px;
}

.footer__phones {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  width: 100%;
}

.footer__phone,
.footer__email {
  font-size: 36px;
  line-height: 1;
  letter-spacing: -1.08px;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__phone:hover,
.footer__email:hover {
  color: var(--color-yellow);
}

.footer__address {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.72px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
  position: absolute;
  left: 40px;
  width: 1840px;
  top: 428px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__bottom-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__bottom-link:hover {
  color: var(--color-white);
}

.header__logo-text {
  display: none;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-blue);
  z-index: 9999;
  flex-direction: column;
  overflow-y: auto;
  padding: 12px 16px 32px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 38px;
  width: 100%;
  margin-bottom: 44px;
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.mobile-menu__logo-icon {
  height: 32px;
  width: auto;
}

.mobile-menu__logo-text {
  font-family: var(--font-manrope);
  font-weight: 600;
  font-size: 11.76px;
  line-height: 1.01;
  letter-spacing: 0.24px;
  color: var(--color-white);
  text-transform: uppercase;
  max-width: 132px;
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu__body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mobile-menu__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.mobile-menu__link {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--color-white);
  text-decoration: none;
  display: block;
}

.mobile-menu__accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--color-white);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.mobile-menu__accordion-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  filter: brightness(0) invert(1);
}

.mobile-menu__accordion.is-open .mobile-menu__accordion-arrow {
  transform: rotate(180deg);
}

.mobile-menu__subnav {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  width: 100%;
}

.mobile-menu__accordion.is-open .mobile-menu__subnav {
  display: flex;
}

.mobile-menu__sublink {
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -0.54px;
  color: var(--color-white);
  opacity: 0.8;
  text-decoration: none;
  display: block;
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu__phone,
.mobile-menu__email {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--color-white);
  text-decoration: none;
}

.hero__mobile-slider {
  display: none;
}

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

.benefit-card__arrow {
  display: none;
}

.knowledge-slider-arrows {
  display: contents;
}

@media (max-width: 1024px) {
  .site-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
  }

  .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 62px;
    padding: 12px 16px;
    background-color: rgba(11, 33, 51, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 0;
    z-index: 10;
  }

  .header__nav-bar {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    height: auto;
    padding: 0;
    border-radius: 0;
    gap: 0;
    display: flex;
    align-items: center;
  }

  .header__nav-bar nav,
  .header__actions {
    display: none;
  }

  .header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .header__logo-img {
    height: 32px;
    width: auto;
  }

  .header__logo-text {
    display: block;
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 11.76px;
    line-height: 1.01;
    letter-spacing: 0.24px;
    color: var(--color-white);
    text-transform: uppercase;
    max-width: 132px;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 1px;
  }

  .hero {
    order: 1;
    height: 750px;
    background-position: 78% 25%;
    position: relative;
    overflow: hidden;
  }

  .hero__content {
    position: absolute;
    top: 94px;
    left: 16px;
    right: 16px;
    bottom: 20px;
    width: calc(100% - 32px);
    max-width: 328px;
    display: flex;
    flex-direction: column;
    z-index: 2;
  }

  .hero__title {
    font-size: 34px;
    line-height: 0.9;
    letter-spacing: -1.7px;
    font-weight: 500;
    margin-bottom: 16px;
    word-break: break-word;
    color: var(--color-white);
    max-width: 328px;
  }

  .hero__mobile-slider {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
  }

  .hero__mobile-slider-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 16px;
    cursor: pointer;
  }

  .hero__mobile-slider-indicator {
    width: 2px;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 1px;
    opacity: 0.45;
    flex-shrink: 0;
  }

  .hero__mobile-slider-item.active .hero__mobile-slider-indicator {
    height: 16px;
    border-radius: 0;
    opacity: 1;
  }

  .hero__mobile-slider-label {
    font-size: 12px;
    line-height: 16px;
    color: var(--color-white);
    opacity: 0.45;
    white-space: nowrap;
  }

  .hero__mobile-slider-item.active .hero__mobile-slider-label {
    opacity: 1;
  }

  .hero__subtitle {
    margin-top: auto;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.54px;
    color: var(--color-white);
    max-width: 260px;
  }

  .hero__buttons {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .hero__buttons .btn-primary {
    flex: 1;
    height: 52px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.48px;
    background-color: var(--color-yellow);
    color: var(--color-text-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    text-decoration: none;
  }

  .hero__buttons .btn-secondary {
    flex: 1;
    height: 52px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.48px;
    background-color: rgba(6, 6, 6, 0.34);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
  }

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

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

  .hero__slider-nav {
    display: none;
  }

  .floating-phone {
    position: absolute;
    right: 16px;
    bottom: 128px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .floating-phone img {
    width: 20px;
    height: 20px;
  }

  .catalog-section {
    order: 2;
    padding: 40px 16px 0;
    background-color: var(--color-white);
  }

  .catalog-section__header {
    margin-left: 0;
    margin-bottom: 32px;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }

  .catalog-section__title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.5px;
    font-weight: 400;
    color: var(--color-text-main);
  }

  .catalog-section__subtitle {
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.72px;
    font-weight: 400;
    color: var(--color-text-main);
  }

  .catalog-section__grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .category-card {
    width: 100%;
    height: 212px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .category-card__image-wrap {
    width: 100%;
    height: 150px;
  }

  .category-card__content {
    width: 100%;
    height: 62px;
    padding: 10px 10px 16px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border-input);
    border-top: none;
    border-radius: 0 0 12px 12px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .category-card__title {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.48px;
    font-weight: 500;
    color: var(--color-text-main);
    word-break: break-word;
  }

  .category-card__desc {
    display: none;
  }

  .why-lightning {
    order: 3;
    padding: 40px 16px 0;
    background-color: var(--color-white);
  }

  .why-lightning__header {
    margin-left: 0;
    margin-bottom: 32px;
  }

  .why-lightning__title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.5px;
    max-width: 100%;
    font-weight: 400;
    color: var(--color-text-main);
  }

  .why-lightning__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
  }

  .why-lightning__col {
    padding: 0 0 0 16px;
    border-left: 1px solid var(--color-border-input);
    border-right: none;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .why-lightning__col:last-child {
    border-right: none;
  }

  .why-lightning__number {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -0.6px;
    margin-bottom: 16px;
    color: var(--color-text-main);
  }

  .why-lightning__image-wrap {
    width: 250px;
    height: 165px;
    margin-bottom: 16px;
    justify-content: flex-start;
    display: flex;
    align-items: center;
  }

  .why-lightning__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .why-lightning__text {
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -0.48px;
    color: var(--color-text-main);
    margin-top: 0;
  }

  .benefits-section {
    order: 4;
    height: auto;
    margin-top: 40px;
    padding: 40px 16px;
    background-image: linear-gradient(90.77deg, rgb(40, 95, 169) 2.73%, rgb(40, 94, 167) 26.57%, rgb(15, 62, 125) 91.03%);
  }

  .benefits-section__header {
    margin-left: 0;
    margin-bottom: 32px;
  }

  .benefits-section__title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.5px;
    max-width: 285px;
    color: var(--color-white);
    font-weight: 400;
  }

  .benefits-section__grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benefit-card {
    height: auto;
    min-height: 132px;
    padding: 16px;
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .benefit-card:nth-child(5) {
    min-height: 172px;
  }

  .benefit-card:nth-child(6) {
    min-height: 152px;
  }

  .benefit-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
  }

  .benefit-card__icon img {
    width: 42px;
    height: 42px;
  }

  .benefit-card__text {
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.54px;
    max-width: calc(100% - 24px);
    color: var(--color-white);
    font-weight: 400;
    word-break: break-word;
  }

  .benefit-card__arrow {
    display: block;
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 11px;
    height: 11px;
  }

  .production-section {
    order: 5;
    height: auto;
    margin-top: 0;
    padding: 40px 16px;
    background-color: var(--color-bg-light);
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .production-section__image-wrap {
    width: 100%;
    height: 246px;
    border-radius: 12px;
    margin-bottom: 32px;
    overflow: hidden;
    position: static;
  }

  .production-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .production-section__content {
    margin-left: 0;
    height: auto;
    padding-left: 19px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .production-section__timeline-bar {
    left: 4px;
    width: 1px;
    background-color: var(--color-blue);
    top: 4px;
    bottom: 9px;
    z-index: 1;
  }

  .production-section__timeline-dot-top {
    left: 0;
    top: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1.5px solid var(--color-blue);
    background-color: var(--color-bg-light);
    box-sizing: border-box;
    z-index: 2;
  }

  .production-section__title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    font-weight: 400;
    color: var(--color-text-main);
  }

  .production-section__desc {
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.72px;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--color-text-main);
  }

  .production-section__timeline {
    gap: 24px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
  }

  .production-step {
    display: flex;
    align-items: center;
    position: relative;
  }

  .production-step::before {
    left: -10px;
    width: 24px;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--color-blue) 0, var(--color-blue) 2px, transparent 2px, transparent 4px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }

  .production-step::after {
    left: -19px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1.5px solid var(--color-blue);
    background-color: var(--color-bg-light);
    box-sizing: border-box;
    z-index: 2;
  }

  .production-step__num {
    font-size: 28px;
    line-height: 1;
    color: var(--color-blue);
    letter-spacing: -0.84px;
    padding-left: 17px;
    width: 58px;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .production-step__info {
    gap: 8px;
    display: flex;
    flex-direction: column;
  }

  .production-step__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.6px;
    color: var(--color-text-main);
  }

  .production-step__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.48px;
    color: var(--color-text-dim);
  }

  .production-section__link {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.48px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-text-main);
    text-decoration: none;
    margin-left: 6px;
    height: 18px;
    position: relative;
  }

  .production-section__timeline-dot-bottom {
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1.5px solid var(--color-blue);
    background-color: var(--color-bg-light);
    box-sizing: border-box;
    z-index: 2;
  }

  .cta-banner {
    order: 6;
    height: auto;
    min-height: 290px;
    padding: 40px 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-image: linear-gradient(92.87deg, rgb(40, 95, 169) 2.73%, rgb(40, 94, 167) 26.57%, rgb(15, 62, 125) 91.03%);
    position: relative;
    overflow: hidden;
  }

  .cta-banner__title {
    position: static;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.5px;
    max-width: 100%;
    color: var(--color-white);
    font-weight: 400;
  }

  .cta-banner__content {
    position: static;
    width: 100%;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }

  .cta-banner__subtitle {
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.54px;
    color: var(--color-white);
  }

  .cta-banner__btn {
    width: 100%;
    height: 52px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.48px;
    border-radius: 12px;
  }

  .knowledge-section {
    order: 7;
    padding: 40px 16px 0;
    background-color: var(--color-white);
  }

  .knowledge-section__header {
    margin-left: 0;
    margin-bottom: 24px;
    gap: 18px;
    display: flex;
    flex-direction: column;
  }

  .knowledge-section__title {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.5px;
    font-weight: 400;
    color: var(--color-text-main);
  }

  .knowledge-section__all-link {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.48px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-text-main);
    text-decoration: none;
  }

  .knowledge-slider-wrap {
    width: 100%;
    overflow: hidden;
  }

  .knowledge-slider {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .knowledge-slider::-webkit-scrollbar {
    display: none;
  }

  .article-card {
    flex: 0 0 310px;
    height: 380px;
    padding: 16px;
    background-color: var(--color-bg-light);
    border-radius: 10px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    text-decoration: none;
  }

  .article-card__image-wrap {
    width: 100%;
    aspect-ratio: 278 / 208;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 8px;
  }

  .article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .article-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .article-card__date {
    font-size: 14px;
    letter-spacing: -0.56px;
    color: var(--color-text-dim);
    margin-bottom: 4px;
    display: block;
  }

  .article-card__title {
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.54px;
    font-weight: 400;
    color: var(--color-text-main);
  }

  .article-card__link {
    font-size: 14px;
    letter-spacing: -0.56px;
    color: var(--color-text-main);
    text-align: right;
    align-self: flex-end;
  }

  .knowledge-slider-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
  }

  .knowledge-slider-arrows .slider-arrow {
    position: static;
    width: 52px;
    height: 36px;
    transform: none;
    border-radius: 18px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .knowledge-slider-arrows .slider-arrow img {
    width: 52px;
    height: 36px;
    display: block;
    pointer-events: none;
  }

  .knowledge-slider-arrows .slider-arrow--prev img {
    transform: rotate(180deg);
  }

  .knowledge-slider-arrows .slider-arrow--next img {
    transform: none;
  }

  .feedback-section {
    order: 8;
    height: auto;
    margin-top: 40px;
    padding: 40px 16px;
    background-color: var(--color-blue);
    position: relative;
    overflow: hidden;
  }

  .feedback-section__inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  .feedback-section__title {
    position: static;
    font-size: 30px;
    line-height: 1;
    letter-spacing: -1.5px;
    width: 100%;
    max-width: 315px;
    margin-bottom: 24px;
    color: var(--color-white);
    font-weight: 400;
  }

  .feedback-card {
    position: static;
    width: 100%;
    height: auto;
    padding: 12px;
    background-color: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-border-input);
  }

  .feedback-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .feedback-form__row {
    flex-direction: column;
    gap: 10px;
    display: flex;
  }

  .input-field {
    width: 100%;
  }

  .input-field__input {
    height: 52px;
    padding: 16px;
    font-size: 14px;
    letter-spacing: -0.56px;
    border: none;
    border-bottom: 1px solid #c3c8d1;
    border-radius: 0;
    background: transparent;
    width: 100%;
    color: var(--color-text-main);
  }

  .input-field__input::placeholder {
    color: var(--color-text-dim);
    font-size: 14px;
  }

  .feedback-form__consent {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .feedback-form__consent-text {
    font-size: 14px;
    line-height: 1.1;
    letter-spacing: -0.56px;
    color: #656565;
  }

  .feedback-form__submit {
    width: 100%;
    height: 52px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.48px;
    border-radius: 12px;
  }

  .footer {
    order: 9;
    height: auto;
    padding: 32px 16px 24px;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .footer__inner {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: static;
  }

  .footer__brand {
    position: static;
    order: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .footer__logo-icon {
    height: 38px;
    width: auto;
  }

  .footer__brand-text {
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 17.92px;
    line-height: 1.01;
    letter-spacing: 0.36px;
    color: var(--color-white);
    text-transform: uppercase;
    max-width: 202px;
  }

  .footer__contacts {
    position: static;
    align-items: flex-start;
    text-align: left;
    gap: 32px;
    width: 100%;
    order: 2;
    display: flex;
    flex-direction: column;
  }

  .footer__phones {
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .footer__phone,
  .footer__email {
    font-size: 28px;
    line-height: 1;
    letter-spacing: -0.84px;
    color: var(--color-white);
    display: block;
    text-decoration: none;
  }

  .footer__address {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.48px;
    color: #99a6b2;
  }

  .footer__col {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer__col-title {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.64px;
    color: var(--color-white);
    opacity: 0.5;
  }

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

  .footer__link {
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.54px;
    color: var(--color-white);
    text-decoration: none;
  }

  .footer__col--about {
    order: 3;
  }

  .footer__col--nav {
    order: 4;
    top: auto;
    left: auto;
    margin-top: 0;
  }

  .footer__col--info {
    order: 5;
    top: auto;
    left: auto;
  }

  .footer__bottom {
    position: static;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(153, 166, 178, 0.3);
    order: 6;
    display: flex;
  }

  .footer__copy {
    font-family: var(--font-inter);
    font-size: 14px;
    color: #99a6b2;
    order: 1;
  }

  .footer__bottom-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    order: 2;
    display: flex;
  }

  .footer__bottom-link {
    font-family: var(--font-inter);
    font-size: 14px;
    color: #99a6b2;
    text-decoration: none;
  }
}





