.about {
  padding: 100px 0;
}

.about__wrp {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.about__top {
  display: flex;
  align-items: flex-start;
  gap: 100px;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  min-width: 0;
}

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

.about__title {
  font-family: var(--font-base);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}

.about__title--red  { color: var(--color-red); }
.about__title--dark { color: #3a3837; }

.about__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: #3a3837;
  line-height: var(--lh-base);
}

.about__text strong {
  font-weight: var(--fw-bold);
}

.about__media {
  position: relative;
  flex-shrink: 0;
  width: 479px;
  align-self: stretch;
}

.about__img {
  width: 100%;
  height: 469px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.25);
}

.about__flag {
  position: absolute;
  bottom: 9px;
  right: 9px;
  width: 50px;
  height: 45px;
  object-fit: contain;
}

.about__stats {
  display: flex;
  gap: 60px;
}

.partnership {
  position: relative;
  background-color: #040404;
  overflow: hidden;
}

.partnership::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -220px;
  height: 333px;
  background-image: url('../../img/home/partnership-ellipse.svg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.partnership__wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  padding: 140px 0;
}

.partnership__title {
  font-family: var(--font-base);
  font-size: 42px;
  font-weight: var(--fw-medium);
  color: var(--color-white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}

.partnership__text {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  max-width: 1090px;
}

.partnership__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--lh-loose);
}

.hero {
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.00) 70%, rgba(0, 0, 0, 0.40) 100%),
    url('../../img/hero-bg.webp');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  min-height: calc(100svh - var(--top-bar-height) - var(--header-height));
  display: flex;
  align-items: flex-start;
}

.hero__wrp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 40px 0 414px;
}

.hero__badge-wrp {
  padding: 10px 24px;
}

.hero__badge {
  font-family: var(--font-base);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-red-dark);
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero__title {
  font-family: var(--font-base);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-medium);
  color: var(--color-dark);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__desc {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-dark);
  line-height: var(--lh-base);
  max-width: 620px;
}

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


@media (max-width: 1024px) {
  .partnership__wrp {
    padding: 80px 0;
  }

  .partnership__title {
    font-size: var(--fs-2xl);
  }

  .partnership__text {
    gap: 32px;
  }
}

@media (max-width: 767px) {
  .partnership__wrp {
    padding: 60px 0;
  }

  .partnership__title {
    font-size: var(--fs-xl);
  }

  .partnership__text {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .about {
    padding: 60px 0;
  }

  .about__wrp {
    gap: 40px;
  }

  .about__top {
    flex-direction: column;
    gap: 40px;
  }

  .about__media {
    width: 100%;
    align-self: auto;
  }

  .about__img {
    height: 340px;
  }

  .about__stats {
    gap: 20px;
  }

  .stat-card {
    height: 260px;
  }

  .stat-card__number {
    font-size: var(--fs-4xl);
  }

  .hero__title {
    font-size: var(--fs-3xl);
  }
}

@media (max-width: 767px) {
  .about {
    padding: 40px 0;
  }

  .about__title {
    font-size: var(--fs-2xl);
  }

  .about__wrp {
    gap: 28px;
  }

  .about__stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-card {
    flex: 1 1 calc(50% - 8px);
    height: 200px;
  }

  .stat-card__number {
    font-size: var(--fs-3xl);
  }

  .hero {
    align-items: flex-start;
  }

  .hero__wrp {
    padding: 40px 0 360px;
  }

  .hero__title {
    font-size: var(--fs-2xl);
  }

  .hero__badge {
    font-size: var(--fs-base);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    height: 48px;
    padding: 10px 16px;
    font-size: var(--fs-base);
  }
}

/* ─── Solutions ──────────────────────────────────────────── */

.solutions {
  background-color: var(--color-bg-light);
  padding: 100px 0;
}

.solutions__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 50px;
}

.solutions__title {
  font-family: var(--font-base);
  font-size: 42px;
  font-weight: var(--fw-medium);
  color: var(--color-dark);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}

.solutions__subtitle {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-gray);
  line-height: var(--lh-base);
}

.solutions__tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.solutions__tabs .tab-card {
  flex: 1;
}

.solutions__panel {
  display: none;
}

.solutions__panel.active {
  display: block;
}

.solutions__content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.solutions__left {
  flex: 0 0 626px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.solutions__photo {
  flex: 1;
  min-width: 0;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  align-self: stretch;
  min-height: 480px;
  background-color: var(--color-bg-fill);
}

.solutions__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.solutions__panel-title {
  font-family: var(--font-base);
  font-size: 0;
  line-height: 0;
}

.solutions__panel-title--bold {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  line-height: var(--lh-base);
}

.solutions__panel-title--light {
  font-size: var(--fs-xl);
  font-weight: var(--fw-light);
  color: var(--color-dark);
  line-height: var(--lh-base);
}

.solutions__panel-title--accent {
  font-size: var(--fs-xl);
  font-weight: var(--fw-regular);
  color: var(--color-red);
  line-height: var(--lh-base);
}

.solutions__panel-title--lines .solutions__panel-title--bold,
.solutions__panel-title--lines .solutions__panel-title--accent {
  display: block;
}

.solutions__features-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solutions__features-heading {
  font-family: var(--font-base);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  line-height: normal;
}

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

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

.solutions__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background-color: var(--color-red-light);
  border-radius: var(--radius-md);
}

.solutions__feature-icon--lg {
  background-color: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
}

.solutions__feature-icon--lg img {
  width: 40px;
  height: 40px;
}

.solutions__feature-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.solutions__feature-title {
  font-family: var(--font-base);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--color-black);
  line-height: normal;
}

.solutions__feature-text {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-ultralight);
  color: var(--color-dark);
  line-height: var(--lh-base);
}

.solutions__divider {
  height: 1px;
  background-color: var(--color-border);
  width: 100%;
}

.solutions__callout {
  background-color: var(--color-bg-fill);
  border-left: 2px solid var(--color-red-dark);
  border-radius: var(--radius-lg);
  padding: 16px;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-ultralight);
  color: var(--color-dark);
  line-height: var(--lh-base);
}

.solutions__callout strong {
  font-weight: var(--fw-medium);
}

/* Responsive */

@media (max-width: 1024px) {
  .solutions {
    padding: 60px 0;
  }

  .solutions__title {
    font-size: var(--fs-2xl);
  }

  .solutions__tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 12px;
    margin-bottom: 40px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .solutions__tabs::-webkit-scrollbar {
    display: none;
  }

  .solutions__tabs .tab-card {
    flex: 0 0 340px;
    min-width: 340px;
  }

  .solutions__left {
    flex: 0 0 auto;
    width: 100%;
  }

  .solutions__content {
    flex-direction: column;
    gap: 32px;
  }

  .solutions__photo {
    width: 100%;
    align-self: auto;
    min-height: 360px;
  }
}

@media (max-width: 767px) {
  .solutions {
    padding: 40px 0;
  }

  .solutions__title {
    font-size: var(--fs-xl);
  }

  .solutions__tabs {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .solutions__tabs::-webkit-scrollbar {
    display: none;
  }

  .solutions__tabs .tab-card {
    flex: 0 0 325px;
    min-width: 325px;
  }

  .solutions__tabs .tab-card__text {
    display: none;
  }

  .solutions__content {
    flex-direction: column;
    gap: 24px;
  }

  .solutions__left {
    flex: none;
    width: 100%;
  }

  .solutions__photo {
    min-height: 240px;
    order: -1;
  }
}

/* ─── Benefits ──────────────────────────────────────────────── */

.benefits {
  padding: 100px 0;
}

.benefits__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 50px;
}

.benefits__title {
  font-family: var(--font-base);
  font-size: 42px;
  font-weight: var(--fw-medium);
  color: var(--color-dark);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}

.benefits__title--accent {
  color: var(--color-red);
}

.benefits__grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefits__row {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

/* ── Cards ── */

.benefit-card {
  display: flex;
  align-items: center;
  flex: 0 0 420px;
  padding: 30px;
  background-color: var(--color-bg-fill);
  border-radius: var(--radius-xl);
}

.benefit-card--red {
  flex: 1;
  background-color: var(--color-red-dark);
  gap: 70px;
  justify-content: space-between;
}

.benefits__row--3 .benefit-card {
  flex: 1;
}

.benefit-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

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

.benefit-card__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.benefit-card__title {
  font-family: var(--font-base);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--color-black);
  line-height: var(--lh-tight);
}

.benefit-card--red .benefit-card__title {
  color: var(--color-white);
}

.benefit-card__text {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-ultralight);
  color: var(--color-black);
  line-height: var(--lh-base);
}

.benefit-card--red .benefit-card__text {
  color: var(--color-white);
}

.benefit-card__illus {
  flex-shrink: 0;
}

/* ── Actions ── */

.benefits__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .benefits {
    padding: 60px 0;
  }

  .benefits__title {
    font-size: var(--fs-2xl);
  }

  .benefits__row {
    flex-wrap: wrap;
  }

  .benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 260px;
  }

  .benefit-card--red {
    flex: 1 1 100%;
    gap: 40px;
  }

  .benefits__row--3 .benefit-card {
    flex: 1 1 calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .benefits {
    padding: 40px 0;
  }

  .benefits__title {
    font-size: var(--fs-xl);
  }

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

  .benefit-card,
  .benefit-card--red,
  .benefits__row--3 .benefit-card {
    flex: 1 1 100%;
    min-width: 0;
  }

  .benefit-card--red {
    gap: 24px;
  }

  .benefit-card__illus {
    align-self: flex-end;
  }

  .benefits__actions {
    flex-direction: column;
    margin-top: 32px;
  }

  .benefits__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Video section ─────────────────────────────────────────── */

.video-section {
  position: relative;
  height: 612px;
  overflow: hidden;
}

.video-section__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

.video-section__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .video-section {
    height: 320px;
  }
}

/* ─── Products ──────────────────────────────────────────────── */

.products {
  position: relative;
  padding: 120px 0;
  background-color: var(--color-bg-light);
  background-image: url('../../img/home/products_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.products__head-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.products__title {
  font-family: var(--font-base);
  font-size: 42px;
  font-weight: var(--fw-medium);
  color: var(--color-dark);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}

.products__subtitle {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-gray);
  line-height: var(--lh-base);
  white-space: nowrap;
}

/* ── Slider ── */

.products__slider-wrap {
  position: relative;
}

.products__arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
}

.products__arrow--prev {
  left: -52px;
  transform: translateY(-50%) rotate(180deg);
}

.products__arrow--next {
  right: -52px;
  transform: translateY(-50%);
}

.products__slider {
  width: 100%;
}

/* Slick gap via slide padding */
.products__slide {
  padding: 0 10px;
  box-sizing: border-box;
}

.products__slide .product-card {
  height: 100%;
}

/* ── Responsive ── */

/* Стрілки абсолютні — звужуємо контейнер слайдера щоб вони не виходили за viewport */
@media (min-width: 1025px) and (max-width: 1440px) {
  .products .container {
    padding-inline: 72px; /* 52px під стрілку + 20px відступ */
  }
}

@media (max-width: 1024px) {
  .products {
    padding: 80px 0;
  }

  .products__title {
    font-size: var(--fs-2xl);
  }

  /* Стрілки повертаються у flow */
  .products__slider-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .products__arrow {
    position: static;
    transform: none;
    flex-shrink: 0;
  }

  .products__arrow--prev {
    transform: rotate(180deg);
  }

  .products__slider {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
}

/* ─── Features ──────────────────────────────────────────────── */

.features {
  padding: 100px 0;
}

.features__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 50px;
}

.features__title {
  font-family: var(--font-base);
  font-size: 42px;
  font-weight: var(--fw-medium);
  color: var(--color-dark);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}

.features__subtitle {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-gray);
  line-height: var(--lh-base);
}

.features__lead {
  font-family: var(--font-base);
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  line-height: var(--lh-base);
  text-align: center;
  margin-bottom: 50px;
}

/* ── Feature cards ── */

.features__grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.features__row {
  display: flex;
  gap: 30px;
  align-items: stretch;
}

.feature-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px;
  background-color: var(--color-bg-fill);
  border-radius: var(--radius-xl);
}

.feature-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-card__icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background-color: var(--color-red-light);
  border-radius: var(--radius-md);
}

.feature-card--white-icon .feature-card__icon-wrap {
  background-color: var(--color-white);
}

.feature-card__title {
  font-family: var(--font-base);
  font-size: var(--fs-lg);
  font-weight: var(--fw-regular);
  color: var(--color-black);
  line-height: var(--lh-tight);
}

.feature-card__text {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-ultralight);
  color: var(--color-black);
  line-height: var(--lh-base);
}

.feature-card__text strong {
  font-weight: var(--fw-regular);
}

/* ── Protection dark block ── */

.features__protection {
  display: flex;
  gap: 60px;
  align-items: stretch;
  padding: 50px;
  background-color: var(--color-dark-1);
  border-radius: 20px;
  margin-bottom: 50px;
}

.features__protection-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.features__protection-title {
  font-family: var(--font-base);
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-base);
}

.features__protection-subtitle {
  font-family: var(--font-base);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--color-gray);
  line-height: normal;
}

.features__protection-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features__protection-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  line-height: var(--lh-base);
}

.features__protection-item img {
  flex-shrink: 0;
}

.features__protection-note {
  font-weight: var(--fw-light);
}

.features__bms {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background-color: #232326;
  border: 1px solid #343437;
  border-radius: var(--radius-xl);
}

.features__bms-title {
  font-family: var(--font-base);
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: var(--lh-base);
}

.features__bms-text {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-gray);
  line-height: var(--lh-loose);
}

/* ── Bottom: cards + photo ── */

.features__bottom {
  display: flex;
  gap: 100px;
  align-items: center;
  margin-bottom: 50px;
}

.features__bottom-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features__photo {
  flex-shrink: 0;
  width: 424px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
}

.features__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Closing quote ── */

.features__quote {
  font-family: var(--font-base);
  font-size: 26px;
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  line-height: var(--lh-base);
  text-align: center;
}

.features__quote--accent {
  color: var(--color-red);
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .features {
    padding: 60px 0;
  }

  .features__title {
    font-size: var(--fs-2xl);
  }

  .features__lead,
  .features__protection-title,
  .features__bms-title,
  .features__quote {
    font-size: var(--fs-xl);
  }

  .features__protection {
    gap: 32px;
    padding: 40px;
  }

  .features__bottom {
    gap: 40px;
  }

  .features__photo {
    width: 320px;
  }
}

@media (max-width: 767px) {
  .features {
    padding: 40px 0;
  }

  .features__title {
    font-size: var(--fs-xl);
  }

  .features__lead,
  .features__protection-title,
  .features__bms-title,
  .features__quote {
    font-size: var(--fs-lg);
  }

  .features__grid {
    gap: 16px;
    margin-bottom: 32px;
  }

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

  .features__protection {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
  }

  .features__bottom {
    flex-direction: column-reverse;
    gap: 24px;
    margin-bottom: 32px;
  }

  .features__photo {
    width: 100%;
  }
}

/* ─── Cooperation ───────────────────────────────────────────── */

.cooperation {
  padding: 100px 0;
  background-color: var(--color-bg-light);
}

.cooperation__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 50px;
}

.cooperation__title {
  font-family: var(--font-base);
  font-size: 42px;
  font-weight: var(--fw-medium);
  color: var(--color-dark);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}

.cooperation__subtitle {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-gray);
  line-height: var(--lh-base);
}

.cooperation__steps {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE */
}

.cooperation__steps::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* step width override для контексту секції */
.cooperation__steps .step {
  flex: 0 0 330px;
  width: 330px;
  min-width: 260px;
}

@media (max-width: 1024px) {
  .cooperation {
    padding: 60px 0;
  }

  .cooperation__title {
    font-size: var(--fs-2xl);
  }
}

@media (max-width: 767px) {
  .cooperation {
    padding: 40px 0;
  }

  .cooperation__title {
    font-size: var(--fs-xl);
  }

  .cooperation__steps .step {
    flex: 0 0 280px;
    width: 280px;
  }
}

/* ─── CTA ───────────────────────────────────────────────────── */

.cta {
  position: relative;
  padding: 140px 0;
  background-image: url('../../img/home/cta-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-dark-1);
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.cta .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

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

.cta__title {
  font-family: var(--font-base);
  font-size: 42px;
  font-weight: var(--fw-medium);
  color: var(--color-white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}

.cta__text {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  line-height: var(--lh-base);
}

.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .cta {
    padding: 100px 0;
  }

  .cta__title {
    font-size: var(--fs-2xl);
  }
}

@media (max-width: 767px) {
  .cta {
    padding: 60px 0;
  }

  .cta__title {
    font-size: var(--fs-xl);
  }

  .cta__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Products responsive (continued) ── */

@media (max-width: 767px) {
  .products {
    padding: 40px 0;
  }

  .products__title {
    font-size: var(--fs-xl);
  }

  .products__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  .products__subtitle {
    white-space: normal;
  }

  .products__slide {
    padding: 0;
  }
}
