/* ===== МАКЕТ 1440×981, один в один ===== */

@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter";
  color: #ffffff;
}

/*
  clip по X на корне — без горизонтального скролла от декора/широких блоков (index + nkt).
  В отличие от overflow-x: hidden, не провоцирует лишний вертикальный скролл у вложенных блоков.
  vertical остаётся visible — sticky у header обычно сохраняется.
*/
html {
  overflow-x: clip;
  max-width: 100%;
}

/* Плавный скролл по якорям (header, footer и др.) */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.page-shell {
  overflow-x: clip;
  max-width: 100%;
}

body {
  /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
  color: #ffffff;
  /* background: #050508; */
  background: #111111;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-family: "Inter";
  font-size: 14px;
  font-style: normal;
  line-height: 20px; /* Reduced from 32px */
}

/* Button press animation */
button,
.work-horizontal-description,
.tarief-under-btn-description span {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

button:hover,
.work-horizontal-description:hover,
.tarief-under-btn-description span:hover {
  filter: brightness(1.04);
}

button:active,
.work-horizontal-description:active,
.tarief-under-btn-description span:active {
  transform: translateY(2px) scale(0.985);
  box-shadow: none;
}

ul {
  list-style: none;
}

/* Смещение якорной прокрутки для index: секции не прячутся под sticky header */
main [id] {
  scroll-margin-top: 96px;
}

/* ----- HEADER ----- */
.header {
  position: sticky;
  top: 10px;
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 1240px;
  height: 70px;
  margin-inline: auto;
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
}

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

.header__inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  font-family: "Inter";
  font-size: 14px;
}

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

.header__nav .nav__link {
  transition: color 0.2s ease;
}

.header__nav .nav__link:hover {
  color: #b3b3b3; /* заметнее темнее хедера */
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .hero__content {
    width: 600px;
  }
}

@media (max-width: 1185px) {
  .hero__content {
    width: 450px;
  }
  .hero_photo {
    width: 550px !important;
  }
}

@media (max-width: 1024px) {
  .header {
    height: 70px; /* Force height to prevent stretching */
  }
  .header__inner {
    padding: 0 20px;
  }
  .header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0px;
    z-index: 1002;
    /* Плавное открытие / закрытие (без display:none — его нельзя анимировать) */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 0.32s ease,
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.32s;
  }
  .header__nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      opacity 0.32s ease,
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0s;
  }
  .header__nav .nav__link {
    display: block;
    width: 100%;
    padding: 10px 12px;
    margin: 0;
    font-size: 18px;
    border-radius: 10px;
    transition:
      background-color 0.2s ease,
      transform 0.2s ease;
  }
  .header__nav .nav__link + .nav__link {
    margin-top: -4px;
  }
  .header__nav .nav__link:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateX(3px);
  }
  button.header__cta {
    display: none !important;
  }
  .burger {
    display: flex;
  }

  @media (prefers-reduced-motion: reduce) {
    .header__nav,
    .header__nav.active {
      transition-duration: 0.01ms !important;
    }
    .header__nav {
      transform: none;
    }
    .header__nav.active {
      transform: none;
    }
  }

  /* HERO ADAPTATION — горизонтальный скролл режет html { overflow-x: clip }, здесь visible для эллипсов */
  .hero__inner {
    flex-direction: column-reverse;
    margin-top: 40px;
    text-align: center;
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    min-width: 0; /* flex: иначе колонка не сжимается шире viewport */
    box-sizing: border-box;
    overflow-x: visible;
  }

  .hero__content {
    margin-right: 0;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: visible;
  }

  .hero__photo {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* только моб./планшет: без горизонтального вылета декора */
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1.25;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-title br,
  .hero-description br {
    display: none;
  }

  .hero-description {
    font-size: 15px;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.45;
  }

  .hero-buttons {
    margin-top: 24px;
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero__btn--primary,
  .btn--secondary {
    width: 100%;
    padding-inline: 0;
    display: flex;
    justify-content: center;
  }

  .hero-horizon-line {
    width: 100%;
    max-width: 400px;
    margin-block: 30px;
  }

  .hero__cta {
    max-width: 100%;
  }

  .hero_photo {
    max-width: 780px !important;
    height: auto !important;
    width: 100% !important;
  }

  /* Центр колонки + симметричный scale — радиальный градиент виден целиком, не «полумесяц» */
  .hero-elipse-left {
    position: absolute;
    left: 50%;
    right: auto;
    top: 38%;
    bottom: auto;
    width: 520px;
    height: 520px;
    max-width: 92vw;
    max-height: 92vw;
    transform: translate(-50%, -50%) scale(1);
    transform-origin: center center;
    opacity: 0.95;
  }

  /* PROBLEM SECTION ADAPTATION */
  .problem-section {
    margin-top: 100px;
    padding: 0 20px;
    overflow-x: clip;
  }

  .problem-section .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
    overflow-x: clip;
  }

  .problem-description {
    padding: 8px 40px;
  }

  .problem-description p {
    font-size: 15px;
  }

  .problem-title {
    font-size: 26px;
    text-align: center;
    margin-block: 25px;
    line-height: 1.25;
  }

  .problem-section .container .grid-layout,
  .problem-section .grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
    width: 100%;
  }

  .problem-section .vertical-container {
    width: 100%;
    max-width: none;
    min-height: 300px;
    height: auto;
    padding: 32px 24px 30px;
  }

  .problem-section .vertical-container h3 {
    margin-bottom: 16px;
    font-size: 17px;
  }

  .problem-section .vertical-container p {
    font-size: 14px;
    line-height: 1.45;
    flex-shrink: 0;
  }

  .problem-section .icon-wrapper {
    margin-bottom: 20px;
  }

  .problem-section .horizontal-container {
    padding: 28px 20px;
    height: auto;
    margin-top: 24px;
  }

  .horizontal-container ul {
    flex-direction: column;
    gap: 40px;
  }

  .horizontal-container ul li {
    font-size: 16px;
    gap: 12px;
  }

  .problem-elipse {
    display: none;
  }

  /* SOLUTION SECTION ADAPTATION */
  .solution-section {
    margin-top: 100px;
    padding: 0 16px;
  }

  .solution-title {
    font-size: 28px;
    margin-top: 16px;
    margin-bottom: 15px;
  }

  .solution-title br,
  .solution-first-left-title br,
  .solution-second-left-title br,
  .solution-third-left-title br,
  .solution-fourth-left-title br {
    display: none;
  }

  .solution-under-title-description {
    font-size: 16px;
  }

  .solutions-slider-container {
    padding-bottom: 10px;
    gap: 20px;
  }

  .solution-first-slider,
  .solution-second-slider,
  .solution-third-slider,
  .solution-fourth-slider {
    flex-direction: column !important;
    height: auto;
  }

  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding: 40px 24px;
    width: 100%;
  }

  .solution-first-left-title,
  .solution-second-left-title,
  .solution-third-left-title,
  .solution-fourth-left-title {
    font-size: 24px;
    margin-block: 16px;
  }

  .solution-first-right-slider img,
  .solution-second-right-slider img,
  .solution-third-right-slider img,
  .solution-fourth-right-slider img {
    width: 100%;
    height: auto;
    border-radius: 0 0 29px 29px !important;
    border: none !important;
    border-top: 1.24px solid rgba(255, 255, 255, 0.07) !important;
  }

  .solution-elipse {
    width: 100%;
    max-width: 500px;
  }

  /* WORK SECTION ADAPTATION */
  .work-section {
    margin-top: 70px;
    padding: 0 20px;
  }

  .work-section .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .work-description {
    padding: 6px 36px;
  }

  .work-description p {
    font-size: 16px;
  }

  .work-title {
    font-size: 30px;
    margin-top: 16px;
    margin-bottom: 10px;
  }

  .work-under-title-description {
    font-size: 17px;
  }

  .work-under-title-additional-description {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 12px 16px;
    text-align: center;
    margin-top: 16px;
  }

  .work-under-title-additional-description p,
  .work-under-title-additional-description span {
    font-size: 15px;
  }

  .work-section .container {
    margin-top: 28px;
  }

  .work-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .first-work-arrow,
  .second-work-arrow,
  .third-work-arrow {
    display: none;
  }

  .right-elipse {
    display: none;
  }

  .work-vertical-container {
    padding: 22px 18px 28px;
  }

  .work-vertical-container h3 {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .work-vertical-container h3 br {
    display: none;
  }

  .work-vertical-container p {
    font-size: 13px;
    line-height: 1.4;
  }

  .work-vertical-container p br {
    display: none;
  }

  .work-icon-wrapper {
    height: 52px;
    margin-bottom: 20px;
  }

  .work-icon-wrapper svg {
    width: 48px;
    height: 48px;
  }

  .work-second-grid-layout {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .work-second-vertical-container {
    padding: 18px 16px;
  }

  .work-second-vertical-container h3 {
    font-size: 28px;
    margin-bottom: 4px;
  }

  .work-second-vertical-container p {
    font-size: 14px;
    line-height: 1.35;
  }

  .work-second-vertical-container p br {
    display: none;
  }

  .work-horizontal-container {
    padding: 20px 16px;
  }

  .work-horizontal-container h1 {
    font-size: 24px;
    padding: 0 16px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .work-horizontal-container h1 br {
    display: none;
  }

  .work-horizontal-upon-description {
    font-size: 15px;
    padding: 0 16px;
  }

  .work-horizontal-description {
    padding: 10px 24px;
    font-size: 15px;
    width: auto;
    max-width: calc(100% - 32px);
    margin: 20px auto 20px;
  }

  /* TARIFF SECTION ADAPTATION */
  .tarief-section {
    margin-top: 60px;
    padding: 0 20px;
  }

  .tarief-description {
    padding: 6px 36px;
  }

  .tarief-description p {
    font-size: 16px;
  }

  .tarief-title {
    font-size: 28px;
    margin-top: 16px;
    margin-bottom: 10px;
  }

  .tarief-under-title-description {
    font-size: 16px;
  }

  .tarief-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
  }

  .tarief-vertical-container {
    width: 100%;
    padding-inline: 18px;
  }

  .tarief-undo-title {
    font-size: 17px;
    margin-top: 40px;
  }

  .tarief-icon-wrapper .tarief-title {
    font-size: 26px;
  }

  .tarief-grid-under-title-description {
    font-size: 12px;
  }

  .tarief-grid-list li p {
    font-size: 13px;
  }

  .tarief-grid-sum button {
    font-size: 13px;
    padding: 8px 14px;
  }

  .popular {
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .middle .tarief-undo-title {
    margin-top: 44px;
  }

  .tarief-under-btn-description {
    font-size: 14px;
    text-align: center;
    padding: 0 16px;
    margin-top: 28px;
  }

  /* ADVANTAGE SECTION ADAPTATION */
  .advantage-section {
    margin-top: 60px;
    padding: 0 20px;
  }

  .advantage-description {
    padding: 6px 36px;
  }

  .advantage-description p {
    font-size: 16px;
  }

  .advantage-title {
    font-size: 28px;
    margin-top: 16px;
    margin-bottom: 10px;
  }

  .advantage-under-title-description {
    font-size: 16px;
  }

  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 22px;
  }

  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding: 22px 20px 28px;
    gap: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .advantage-f-vertical-container h1,
  .advantage-s-vertical-container h1,
  .advantage-t-vertical-container h1,
  .advantage-fourth-vertical-container h1 {
    font-size: 17px;
  }

  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p,
  .advantage-t-vertical-container p,
  .advantage-fourth-vertical-container p {
    font-size: 13px;
  }

  .advantage-f-vertical-container p br,
  .advantage-s-vertical-container p br,
  .advantage-t-vertical-container p br,
  .advantage-fourth-vertical-container p br {
    display: none;
  }

  .advantage-t-vertical-container {
    margin-top: 0;
  }

  .vectors,
  .blue-vectors {
    display: none; /* Hide decorative background elements */
  }

  /* FOUNDERS SECTION ADAPTATION */
  .founders-section {
    margin-top: 80px;
    padding: 0 16px;
  }

  .founders-title {
    font-size: 28px;
  }

  .founders-under-title-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  /* founders: 2 колонки до 768px, column-gap уменьшается, row-gap НЕ ТРОГАЕМ (отступ над горизонтальным контейнером) */
  .founders-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-horizontal-btns {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .founders-horizontal-btn,
  .founders-horizontal-s-btn {
    width: 100%;
    text-align: center;
  }

  /* TECH SECTION ADAPTATION */
  .tech-section {
    margin-top: 80px;
  }

  .tech-cards-container {
    gap: 12px !important;
  }

  /* FORM SECTION ADAPTATION */
  .form-section {
    margin-top: 80px;
    padding: 0 16px;
  }

  .form-title {
    font-size: 28px;
  }

  .form-under-title-description {
    font-size: 16px;
  }

  .form-horizontal-container {
    padding: 40px 16px 30px;
  }

  .fields {
    flex-direction: column;
    gap: 6px;
  }

  .name-field,
  .email-phone-field {
    max-width: 100%;
  }

  .task-field {
    margin-top: 20px;
    max-width: 100%;
  }

  .form-horizontal-btn {
    font-size: 16px;
    padding-block: 14px;
  }

  /* FOOTER ADAPTATION */
  footer {
    flex-direction: column !important;
    padding: 24px 20px 40px !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .footer-left-container {
    align-items: center !important;
    margin-bottom: 15px !important;
  }

  .footer-left-list {
    justify-content: center;
    gap: 20px;
    margin-top: 10px !important;
  }

  .footer-right-container {
    flex-wrap: wrap !important;
    gap: 26px 30px !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .footer-right-list {
    min-width: 140px;
    align-items: center;
  }
}

@media (max-width: 1010px) {
  .hero-elipse-left {
    left: 40% !important;
    top: -10% !important;
  }
}

@media (max-width: 1000px) {
  .hero-elipse-left {
    left: 40% !important;
    top: -10% !important;
  }
}

/* Problem section: tablet */
@media (max-width: 768px) {
  .problem-section {
    margin-top: 80px;
    padding: 0 16px;
  }

  .problem-description {
    padding: 6px 28px;
  }

  .problem-description p {
    font-size: 14px;
  }

  .problem-title {
    font-size: 24px;
    margin-block: 22px;
  }

  .problem-section .container {
    margin-top: 28px;
  }

  .grid-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .problem-section .container .grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  .problem-section .vertical-container {
    max-width: none;
    min-height: 290px;
    padding: 28px 22px 28px;
  }

  .problem-section .vertical-container h3 {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .problem-section .vertical-container p {
    font-size: 14px;
    line-height: 1.45;
    flex-shrink: 0;
  }

  .problem-section .icon-wrapper {
    height: 58px;
    margin-bottom: 18px;
  }

  .problem-section .horizontal-container {
    min-height: 80px;
    padding: 26px 20px;
    margin-top: 22px;
  }

  .horizontal-container ul {
    gap: 32px;
  }

  .horizontal-container ul li {
    font-size: 15px;
    gap: 10px;
  }

  /* WORK SECTION: tablet */
  .work-section {
    margin-top: 60px;
    padding: 0 16px;
  }

  .work-title {
    font-size: 26px;
  }

  .work-under-title-description {
    font-size: 15px;
  }

  .work-under-title-additional-description p,
  .work-under-title-additional-description span {
    font-size: 14px;
  }

  .work-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .work-second-grid-layout {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 28px;
    margin-bottom: 28px;
  }

  .work-second-vertical-container h3 {
    font-size: 30px;
  }

  .work-second-vertical-container p {
    font-size: 15px;
  }

  .work-horizontal-container h1 {
    font-size: 22px;
  }

  .work-horizontal-upon-description {
    font-size: 14px;
  }
  .hero-elipse-left {
    left: 10% !important;
    top: -10% !important;
  }
}

/* Hero + Problem section: mobile */
@media (max-width: 640px) {
  /* HERO PHONE ADAPTATION */
  .hero_photo {
    height: auto !important;
    width: 100% !important;
    max-width: 450px !important;
    margin-inline: auto !important;
    display: block;
  }
  .hero__inner {
    margin-top: 24px;
    padding: 0 16px;
    margin-inline: auto;
  }
  .hero-elipse-left {
    left: 40% !important;
    top: -10% !important;
  }

  .hero__content {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-title {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.45;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-buttons {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
  }

  .hero__btn--primary,
  .btn--secondary {
    font-size: 15px;
    padding-block: 14px;
  }

  .hero-horizon-line {
    margin-block: 24px;
    max-width: 100%;
  }

  .hero__cta {
    max-width: 100%;
    height: 54px;
  }

  .hero-list-item {
    white-space: normal;
    font-size: 13px;
  }

  /* PROBLEM SECTION */
  .problem-section {
    margin-top: 70px;
    padding: 0 16px;
  }

  .problem-description {
    padding: 6px 24px;
    white-space: normal;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
  }

  .problem-description p {
    font-size: 14px;
  }

  .problem-title {
    font-size: 18px;
    margin-block: 18px;
    line-height: 1.35;
  }

  .problem-section .container {
    margin-top: 24px;
  }

  .grid-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-section .container .grid-layout {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .problem-section .vertical-container {
    max-width: none;
    min-height: 280px;
    padding: 26px 20px 28px;
  }

  .problem-section .vertical-container h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .problem-section .vertical-container h3 br {
    display: none;
  }

  .problem-section .vertical-container p {
    font-size: 14px;
    line-height: 1.5;
    flex-shrink: 0;
  }

  .problem-section .vertical-container p br {
    display: none;
  }

  .problem-section .icon-wrapper {
    height: 52px;
    margin-bottom: 16px;
  }

  .problem-section .icon-wrapper svg {
    max-width: 48px;
    max-height: 48px;
  }

  .problem-section .horizontal-container {
    min-height: auto;
    padding: 16px 12px;
    margin-top: 20px;
    border-radius: 20px;
  }

  .problem-section .horizontal-container ul {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .problem-section .horizontal-container ul li {
    font-size: 14px;
    gap: 6px;
    align-items: center;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .problem-section .horizontal-container ul li:last-child {
    border-bottom: none;
  }

  .problem-section .horizontal-container ul li p:not(:last-child) {
    font-size: 24px;
    font-weight: 700;
  }

  .problem-section .horizontal-container ul li p:last-child {
    font-size: 14px;
    line-height: 1.4;
  }

  .horizontal-container ul li p br {
    display: none;
  }

  /* SOLUTION SECTION PHONE */
  .solution-section {
    margin-top: 48px;
    padding: 0 10px;
  }

  .solution-description {
    padding: 5px 18px;
  }

  .solution-description p {
    font-size: 14px;
  }

  .solution-title {
    font-size: 22px;
    margin-top: 10px;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .solution-under-title-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .solutions-slider-container {
    gap: 12px;
    padding-bottom: 2px;
    margin-top: 4px;
  }

  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding: 18px 14px;
  }

  .solution-first-left-zaiavka,
  .solution-second-left-zaiavka,
  .solution-third-left-zaiavka,
  .solution-fourth-left-zaiavka {
    font-size: 10px;
  }

  .solution-first-left-title,
  .solution-second-left-title,
  .solution-third-left-title,
  .solution-fourth-left-title {
    font-size: 20px;
    margin-block: 8px;
  }

  .solution-first-left-description,
  .solution-second-left-description,
  .solution-third-left-description,
  .solution-fourth-left-description {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .solution-first-left-list,
  .solution-second-left-list,
  .solution-third-left-list,
  .solution-fourth-left-list {
    margin-bottom: 16px;
  }

  .solution-first-left-item p,
  .solution-second-left-item p,
  .solution-third-left-item p,
  .solution-fourth-left-item p {
    font-size: 13px;
  }

  .solution-first-left-star-block,
  .solution-second-left-star-block,
  .solution-third-left-star-block,
  .solution-fourth-left-star-block {
    padding: 10px 12px;
  }

  .solution-first-left-star-block p,
  .solution-second-left-star-block p,
  .solution-third-left-star-block p,
  .solution-fourth-left-star-block p {
    font-size: 13px;
  }

  .solution-first-right-slider img,
  .solution-second-right-slider img,
  .solution-third-right-slider img,
  .solution-fourth-right-slider img {
    border-radius: 0 0 20px 20px !important;
  }

  .solution-elipse {
    max-width: 100%;
  }

  /* TARIEF SECTION: 640px */
  .tarief-section {
    margin-top: 48px;
    padding: 0 20px;
  }

  .tarief-description {
    padding: 5px 28px;
  }

  .tarief-description p {
    font-size: 14px;
  }

  .tarief-title {
    font-size: 22px;
    margin-top: 14px;
    margin-bottom: 8px;
  }

  .tarief-under-title-description {
    font-size: 14px;
  }

  .tarief-grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
    margin-inline: 10px;
  }

  .tarief-vertical-container {
    padding-inline: 20px;
  }

  .tarief-undo-title {
    font-size: 16px;
    margin-top: 36px;
  }

  .tarief-icon-wrapper .tarief-title {
    font-size: 24px;
  }

  .tarief-grid-under-title-description {
    font-size: 12px;
  }

  .tarief-grid-list li p {
    font-size: 12px;
  }

  .tarief-grid-sum {
    margin-top: 28px;
  }

  .tarief-grid-sum button {
    font-size: 13px;
    padding: 8px 16px;
  }

  .popular {
    padding-inline: 16px;
    font-size: 12px;
  }

  .tarief-vertical-container.middle {
    margin-top: 20px;
  }

  .middle .tarief-undo-title {
    margin-top: 38px;
  }

  .tarief-under-btn-description {
    font-size: 13px;
    margin-top: 24px;
  }

  /* ADVANTAGE SECTION: 640px */
  .advantage-section {
    margin-top: 48px;
    padding: 0 20px;
  }

  .advantage-description {
    padding: 5px 28px;
  }

  .advantage-description p {
    font-size: 14px;
  }

  .advantage-title {
    font-size: 22px;
    margin-top: 14px;
    margin-bottom: 8px;
  }

  .advantage-under-title-description {
    font-size: 14px;
  }

  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
  }

  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding: 18px 18px 22px;
    gap: 12px;
  }

  .advantage-f-vertical-container h1,
  .advantage-s-vertical-container h1,
  .advantage-t-vertical-container h1,
  .advantage-fourth-vertical-container h1 {
    font-size: 16px;
  }

  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p,
  .advantage-t-vertical-container p,
  .advantage-fourth-vertical-container p {
    font-size: 12px;
  }

  .advantage-f-vertical-container p br,
  .advantage-s-vertical-container p br,
  .advantage-t-vertical-container p br,
  .advantage-fourth-vertical-container p br {
    display: none;
  }

  /* WORK SECTION: 640px phone */
  .work-section {
    margin-top: 48px;
    padding: 0 12px;
  }

  .work-description {
    padding: 5px 24px;
  }

  .work-description p {
    font-size: 14px;
  }

  .work-title {
    font-size: 24px;
    margin-top: 14px;
    margin-bottom: 8px;
  }

  .work-under-title-description {
    font-size: 14px;
  }

  .work-under-title-additional-description {
    padding: 10px 12px;
    margin-top: 12px;
  }

  .work-under-title-additional-description p,
  .work-under-title-additional-description span {
    font-size: 13px;
  }

  .work-section .container {
    margin-top: 20px;
  }

  .work-grid-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .work-vertical-container {
    padding: 20px 16px 24px;
  }

  .work-vertical-container h3 {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .work-vertical-container p {
    font-size: 12px;
  }

  .work-icon-wrapper {
    height: 44px;
    margin-bottom: 16px;
  }

  .work-icon-wrapper svg {
    width: 40px;
    height: 40px;
  }

  .work-second-grid-layout {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
    margin-bottom: 22px;
  }

  .work-second-vertical-container {
    padding: 16px 14px;
  }

  .work-second-vertical-container h3 {
    font-size: 28px;
  }

  .work-second-vertical-container p {
    font-size: 13px;
  }

  .work-horizontal-container h1 {
    font-size: 20px;
    margin-top: 18px;
    margin-bottom: 8px;
  }

  .work-horizontal-container h1 br {
    display: none;
  }

  .work-horizontal-upon-description {
    font-size: 13px;
  }

  .work-horizontal-description {
    padding: 9px 20px;
    font-size: 14px;
    margin-bottom: 18px;
  }
}
/* Problem section: small mobile */
@media (max-width: 480px) {
  /* HERO */
  .hero_photo {
    height: auto !important;
    width: 100% !important;
    max-width: 400px !important;
    margin-inline: auto !important;
    display: block;
  }
  .hero__inner {
    margin-top: 20px;
    padding: 0 14px;
  }

  .hero-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 13px;
  }

  .hero-buttons {
    margin-top: 16px;
  }

  .hero__btn--primary,
  .btn--secondary {
    font-size: 14px;
    padding-block: 12px;
  }

  .hero-horizon-line {
    margin-block: 20px;
  }

  .hero__cta {
    height: 50px;
  }

  .hero-list-item {
    font-size: 12px;
  }

  /* SOLUTION SECTION */
  .solution-section {
    margin-top: 42px;
    padding: 0 8px;
  }

  .solution-description {
    padding: 4px 14px;
  }

  .solution-description p {
    font-size: 13px;
  }

  .solution-title {
    font-size: 19px;
    margin-top: 8px;
    margin-bottom: 6px;
  }

  .solution-under-title-description {
    font-size: 13px;
  }

  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding: 14px 12px;
  }

  .solution-first-left-title,
  .solution-second-left-title,
  .solution-third-left-title,
  .solution-fourth-left-title {
    font-size: 18px;
    margin-block: 6px;
  }

  .solution-first-left-description,
  .solution-second-left-description,
  .solution-third-left-description,
  .solution-fourth-left-description {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .solution-first-left-list,
  .solution-second-left-list,
  .solution-third-left-list,
  .solution-fourth-left-list {
    margin-bottom: 12px;
  }

  .solution-first-left-item p,
  .solution-second-left-item p,
  .solution-third-left-item p,
  .solution-fourth-left-item p {
    font-size: 12px;
  }

  .solution-first-left-star-block,
  .solution-second-left-star-block,
  .solution-third-left-star-block,
  .solution-fourth-left-star-block {
    padding: 8px 10px;
  }

  .solution-first-left-star-block p,
  .solution-second-left-star-block p,
  .solution-third-left-star-block p,
  .solution-fourth-left-star-block p {
    font-size: 12px;
  }

  .problem-section {
    margin-top: 56px;
    padding: 0 12px;
  }

  .problem-description {
    padding: 6px 18px;
    border-radius: 20px;
  }

  .problem-description p {
    font-size: 13px;
  }

  .problem-title {
    font-size: 17px;
    margin-block: 16px;
    line-height: 1.35;
  }

  .problem-section .container {
    margin-top: 20px;
  }

  .grid-layout {
    gap: 14px;
  }

  .problem-section .container .grid-layout {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .problem-section .vertical-container {
    max-width: none;
    min-height: 260px;
    padding: 22px 16px 24px;
    border-radius: 20px;
  }

  .problem-section .vertical-container h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .problem-section .vertical-container p {
    font-size: 13px;
    line-height: 1.5;
    flex-shrink: 0;
  }

  .problem-section .icon-wrapper {
    height: 48px;
    margin-bottom: 14px;
  }

  .problem-section .icon-wrapper svg {
    max-width: 44px;
    max-height: 44px;
  }

  .problem-section .horizontal-container {
    min-height: auto;
    padding: 14px 10px;
    margin-top: 18px;
    border-radius: 18px;
  }

  .problem-section .horizontal-container ul {
    gap: 0;
    flex-direction: column;
  }

  .problem-section .horizontal-container ul li {
    font-size: 13px;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .problem-section .horizontal-container ul li:last-child {
    border-bottom: none;
  }

  .problem-section .horizontal-container ul li p:not(:last-child) {
    font-size: 22px;
    font-weight: 700;
  }

  .problem-section .horizontal-container ul li p:last-child {
    font-size: 13px;
    line-height: 1.4;
  }

  /* WORK SECTION: 480px */
  .work-section {
    margin-top: 50px;
    padding: 0 14px;
  }

  .work-description {
    padding: 5px 28px;
  }

  .work-description p {
    font-size: 14px;
  }

  .work-title {
    font-size: 24px;
    margin-top: 14px;
    margin-bottom: 8px;
  }

  .work-under-title-description {
    font-size: 14px;
  }

  .work-under-title-additional-description {
    padding: 10px 12px;
    margin-top: 14px;
  }

  .work-under-title-additional-description p,
  .work-under-title-additional-description span {
    font-size: 13px;
  }

  .work-section .container {
    margin-top: 22px;
  }

  .work-grid-layout {
    gap: 10px;
  }

  .work-vertical-container {
    padding: 20px 16px 26px;
  }

  .work-vertical-container h3 {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .work-vertical-container p {
    font-size: 12px;
  }

  .work-icon-wrapper {
    height: 46px;
    margin-bottom: 16px;
  }

  .work-icon-wrapper svg {
    width: 42px;
    height: 42px;
  }

  .work-second-grid-layout {
    gap: 8px;
    margin-top: 24px;
    margin-bottom: 24px;
  }

  .work-second-vertical-container {
    padding: 16px 14px;
  }

  .work-second-vertical-container h3 {
    font-size: 26px;
  }

  .work-second-vertical-container p {
    font-size: 13px;
  }

  .work-horizontal-container h1 {
    font-size: 20px;
    margin-top: 18px;
    margin-bottom: 8px;
  }

  .work-horizontal-upon-description {
    font-size: 13px;
  }

  .work-horizontal-description {
    padding: 9px 18px;
    font-size: 14px;
    margin-bottom: 18px;
  }

  /* TARIEF SECTION: 480px */
  .tarief-section {
    margin-top: 42px;
    padding: 0 20px;
  }

  .tarief-title {
    font-size: 20px;
  }

  .tarief-under-title-description {
    font-size: 13px;
  }

  .tarief-grid-layout {
    gap: 16px;
    margin-top: 24px;
  }

  .tarief-undo-title {
    font-size: 15px;
    margin-top: 32px;
  }

  .tarief-icon-wrapper .tarief-title {
    font-size: 22px;
  }

  .tarief-grid-sum button {
    font-size: 12px;
    padding: 7px 14px;
  }

  .middle .tarief-undo-title {
    margin-top: 34px;
  }

  /* ADVANTAGE SECTION: 480px */
  .advantage-section {
    margin-top: 42px;
    padding: 0 20px;
  }

  .advantage-title {
    font-size: 20px;
  }

  .advantage-under-title-description {
    font-size: 13px;
  }

  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    gap: 12px;
    margin-top: 18px;
  }

  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding: 16px 16px 20px;
    gap: 10px;
  }

  .advantage-f-vertical-container h1,
  .advantage-s-vertical-container h1,
  .advantage-t-vertical-container h1,
  .advantage-fourth-vertical-container h1 {
    font-size: 15px;
  }

  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p,
  .advantage-t-vertical-container p,
  .advantage-fourth-vertical-container p {
    font-size: 11px;
  }
}

/* Problem section: very small phones */
@media (max-width: 380px) {
  /* HERO */
  .hero__inner {
    margin-top: 16px;
    padding: 0 12px;
  }

  .hero-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .hero-description {
    font-size: 12px;
  }

  .hero-buttons {
    margin-top: 14px;
  }

  .hero__btn--primary,
  .btn--secondary {
    font-size: 13px;
    padding-block: 11px;
  }

  .hero-horizon-line {
    margin-block: 18px;
  }

  .hero__cta {
    height: 48px;
  }

  .hero-list-item {
    font-size: 11px;
  }

  /* SOLUTION SECTION */
  .solution-section {
    margin-top: 38px;
    padding-left: max(8px, env(safe-area-inset-left, 8px));
    padding-right: max(8px, env(safe-area-inset-right, 8px));
  }

  .solution-description {
    padding: 4px 12px;
  }

  .solution-description p {
    font-size: 12px;
  }

  .solution-title {
    font-size: 17px;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .solution-under-title-description {
    font-size: 12px;
  }

  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding: 12px 10px;
  }

  .solution-first-left-zaiavka,
  .solution-second-left-zaiavka,
  .solution-third-left-zaiavka,
  .solution-fourth-left-zaiavka {
    font-size: 9px;
  }

  .solution-first-left-title,
  .solution-second-left-title,
  .solution-third-left-title,
  .solution-fourth-left-title {
    font-size: 16px;
    margin-block: 5px;
  }

  .solution-first-left-description,
  .solution-second-left-description,
  .solution-third-left-description,
  .solution-fourth-left-description {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .solution-first-left-item p,
  .solution-second-left-item p,
  .solution-third-left-item p,
  .solution-fourth-left-item p {
    font-size: 11px;
  }

  .solution-first-left-star-block,
  .solution-second-left-star-block,
  .solution-third-left-star-block,
  .solution-fourth-left-star-block {
    padding: 8px 10px;
  }

  .solution-first-left-star-block p,
  .solution-second-left-star-block p,
  .solution-third-left-star-block p,
  .solution-fourth-left-star-block p {
    font-size: 11px;
  }

  .problem-section {
    margin-top: 48px;
    padding-left: max(10px, env(safe-area-inset-left, 10px));
    padding-right: max(10px, env(safe-area-inset-right, 10px));
  }

  .problem-description {
    padding: 5px 14px;
    border-radius: 16px;
    white-space: normal;
    text-align: center;
  }

  .problem-description p {
    font-size: 12px;
  }

  .problem-title {
    font-size: 16px;
    margin-block: 14px;
    line-height: 1.4;
  }

  .problem-section .container {
    margin-top: 16px;
    padding-inline: 0;
  }

  .grid-layout {
    gap: 12px;
  }

  .problem-section .container .grid-layout {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .problem-section .vertical-container {
    max-width: none;
    min-height: 230px;
    padding: 18px 14px 20px;
    border-radius: 16px;
  }

  .problem-section .vertical-container h3 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .problem-section .vertical-container p {
    font-size: 12px;
    line-height: 1.5;
    flex-shrink: 0;
  }

  .problem-section .icon-wrapper {
    height: 44px;
    margin-bottom: 12px;
  }

  .problem-section .icon-wrapper svg {
    max-width: 40px;
    max-height: 40px;
  }

  .problem-section .horizontal-container {
    min-height: auto;
    padding: 12px 10px;
    margin-top: 14px;
    border-radius: 16px;
  }

  .problem-section .horizontal-container ul {
    gap: 0;
    flex-direction: column;
  }

  .problem-section .horizontal-container ul li {
    font-size: 12px;
    gap: 4px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .problem-section .horizontal-container ul li:last-child {
    border-bottom: none;
  }

  .problem-section .horizontal-container ul li p:not(:last-child) {
    font-size: 20px;
    font-weight: 700;
  }

  .problem-section .horizontal-container ul li p:last-child {
    font-size: 12px;
    line-height: 1.4;
  }

  /* WORK SECTION: 380px */
  .work-section {
    margin-top: 42px;
    padding: 0 12px;
  }

  .work-description {
    padding: 4px 24px;
  }

  .work-description p {
    font-size: 13px;
  }

  .work-title {
    font-size: 21px;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .work-under-title-description {
    font-size: 13px;
  }

  .work-under-title-additional-description {
    padding: 9px 10px;
    margin-top: 12px;
  }

  .work-under-title-additional-description p,
  .work-under-title-additional-description span {
    font-size: 12px;
  }

  .work-section .container {
    margin-top: 18px;
  }

  .work-grid-layout {
    gap: 8px;
  }

  .work-vertical-container {
    padding: 18px 14px 22px;
  }

  .work-vertical-container h3 {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .work-vertical-container p {
    font-size: 11px;
  }

  .work-icon-wrapper {
    height: 42px;
    margin-bottom: 14px;
  }

  .work-icon-wrapper svg {
    width: 38px;
    height: 38px;
  }

  .work-second-grid-layout {
    gap: 6px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .work-second-vertical-container {
    padding: 14px 12px;
  }

  .work-second-vertical-container h3 {
    font-size: 24px;
  }

  .work-second-vertical-container p {
    font-size: 12px;
  }

  .work-horizontal-container h1 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 6px;
  }

  .work-horizontal-upon-description {
    font-size: 12px;
  }

  .work-horizontal-description {
    padding: 8px 14px;
    font-size: 13px;
    margin-bottom: 16px;
  }

  /* TARIEF SECTION: 380px */
  .tarief-section {
    margin-top: 38px;
    padding: 0 16px;
  }

  .tarief-description p {
    font-size: 13px;
  }

  .tarief-title {
    font-size: 18px;
  }

  .tarief-under-title-description {
    font-size: 12px;
  }

  .tarief-grid-layout {
    gap: 14px;
    margin-top: 20px;
  }

  .tarief-vertical-container {
    padding-inline: 16px;
  }

  .tarief-undo-title {
    font-size: 14px;
    margin-top: 28px;
  }

  .tarief-icon-wrapper .tarief-title {
    font-size: 20px;
  }

  .tarief-grid-list li p {
    font-size: 11px;
  }

  .tarief-grid-sum button {
    font-size: 11px;
    padding: 6px 12px;
  }

  .middle .tarief-undo-title {
    margin-top: 30px;
  }

  /* ADVANTAGE SECTION: 380px */
  .advantage-section {
    margin-top: 38px;
    padding: 0 16px;
  }

  .advantage-description p {
    font-size: 13px;
  }

  .advantage-title {
    font-size: 18px;
  }

  .advantage-under-title-description {
    font-size: 12px;
  }

  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    gap: 10px;
    margin-top: 16px;
  }

  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding: 14px 14px 18px;
    gap: 10px;
  }

  .advantage-f-vertical-container h1,
  .advantage-s-vertical-container h1,
  .advantage-t-vertical-container h1,
  .advantage-fourth-vertical-container h1 {
    font-size: 14px;
  }

  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p,
  .advantage-t-vertical-container p,
  .advantage-fourth-vertical-container p {
    font-size: 11px;
  }
}

/* Problem section: minimum width (iPhone SE 1st, small devices) */
@media (max-width: 320px) {
  /* HERO */
  .hero__inner {
    margin-top: 14px;
    padding: 0 10px;
  }

  .hero-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: 11px;
  }

  .hero-buttons {
    margin-top: 12px;
  }

  .hero__btn--primary,
  .btn--secondary {
    font-size: 12px;
    padding-block: 10px;
  }

  .hero-horizon-line {
    margin-block: 16px;
  }

  .hero__cta {
    height: 46px;
  }

  .hero-list-item {
    font-size: 11px;
  }

  /* SOLUTION SECTION */
  .solution-section {
    margin-top: 32px;
    padding-left: max(6px, env(safe-area-inset-left, 6px));
    padding-right: max(6px, env(safe-area-inset-right, 6px));
  }

  .solution-description {
    padding: 3px 10px;
  }

  .solution-description p {
    font-size: 11px;
  }

  .solution-title {
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 4px;
  }

  .solution-under-title-description {
    font-size: 11px;
  }

  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding: 10px 8px;
  }

  .solution-first-left-zaiavka,
  .solution-second-left-zaiavka,
  .solution-third-left-zaiavka,
  .solution-fourth-left-zaiavka {
    font-size: 8px;
  }

  .solution-first-left-title,
  .solution-second-left-title,
  .solution-third-left-title,
  .solution-fourth-left-title {
    font-size: 14px;
    margin-block: 4px;
  }

  .solution-first-left-description,
  .solution-second-left-description,
  .solution-third-left-description,
  .solution-fourth-left-description {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .solution-first-left-item p,
  .solution-second-left-item p,
  .solution-third-left-item p,
  .solution-fourth-left-item p {
    font-size: 10px;
  }

  .solution-first-left-star-block,
  .solution-second-left-star-block,
  .solution-third-left-star-block,
  .solution-fourth-left-star-block {
    padding: 6px 8px;
  }

  .solution-first-left-star-block p,
  .solution-second-left-star-block p,
  .solution-third-left-star-block p,
  .solution-fourth-left-star-block p {
    font-size: 10px;
  }

  .problem-section {
    margin-top: 40px;
    padding-left: max(8px, env(safe-area-inset-left, 8px));
    padding-right: max(8px, env(safe-area-inset-right, 8px));
  }

  .problem-description {
    padding: 4px 12px;
  }

  .problem-description p {
    font-size: 11px;
  }

  .problem-title {
    font-size: 15px;
    margin-block: 12px;
    line-height: 1.4;
  }

  .problem-section .container {
    margin-top: 14px;
  }

  .grid-layout {
    gap: 10px;
  }

  .problem-section .container .grid-layout {
    grid-template-columns: 1fr !important;
    gap: 8px;
  }

  .problem-section .vertical-container {
    max-width: none;
    min-height: 200px;
    padding: 16px 12px 18px;
    border-radius: 14px;
  }

  .problem-section .vertical-container h3 {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .problem-section .vertical-container p {
    font-size: 12px;
    line-height: 1.5;
    flex-shrink: 0;
  }

  .problem-section .icon-wrapper {
    height: 40px;
    margin-bottom: 10px;
  }

  .problem-section .icon-wrapper svg {
    max-width: 36px;
    max-height: 36px;
  }

  .problem-section .horizontal-container {
    min-height: auto;
    padding: 10px 8px;
    margin-top: 12px;
    border-radius: 14px;
  }

  .problem-section .horizontal-container ul {
    gap: 0;
    flex-direction: column;
  }

  .problem-section .horizontal-container ul li {
    font-size: 11px;
    gap: 4px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .problem-section .horizontal-container ul li:last-child {
    border-bottom: none;
  }

  .problem-section .horizontal-container ul li p:not(:last-child) {
    font-size: 18px;
    font-weight: 700;
  }

  .problem-section .horizontal-container ul li p:last-child {
    font-size: 11px;
    line-height: 1.4;
  }

  /* WORK SECTION: 320px */
  .work-section {
    margin-top: 36px;
    padding: 0 10px;
  }

  .work-description {
    padding: 4px 20px;
  }

  .work-description p {
    font-size: 12px;
  }

  .work-title {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .work-under-title-description {
    font-size: 12px;
  }

  .work-under-title-additional-description {
    padding: 8px 8px;
    margin-top: 10px;
  }

  .work-under-title-additional-description p,
  .work-under-title-additional-description span {
    font-size: 11px;
  }

  .work-section .container {
    margin-top: 14px;
  }

  .work-grid-layout {
    gap: 8px;
  }

  .work-vertical-container {
    padding: 14px 12px 18px;
  }

  .work-vertical-container h3 {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .work-vertical-container p {
    font-size: 10px;
  }

  .work-icon-wrapper {
    height: 38px;
    margin-bottom: 12px;
  }

  .work-icon-wrapper svg {
    width: 34px;
    height: 34px;
  }

  .work-second-grid-layout {
    gap: 6px;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .work-second-vertical-container {
    padding: 12px 10px;
  }

  .work-second-vertical-container h3 {
    font-size: 22px;
  }

  .work-second-vertical-container p {
    font-size: 11px;
  }

  .work-horizontal-container h1 {
    font-size: 16px;
    margin-top: 14px;
    margin-bottom: 5px;
  }

  .work-horizontal-upon-description {
    font-size: 11px;
  }

  .work-horizontal-description {
    padding: 7px 12px;
    font-size: 12px;
    margin-bottom: 14px;
  }

  /* TARIEF SECTION: 320px */
  .tarief-section {
    margin-top: 32px;
    padding: 0 14px;
  }

  .tarief-description p {
    font-size: 12px;
  }

  .tarief-title {
    font-size: 16px;
  }

  .tarief-under-title-description {
    font-size: 11px;
  }

  .tarief-grid-layout {
    gap: 12px;
    margin-top: 18px;
  }

  .tarief-vertical-container {
    padding-inline: 14px;
  }

  .tarief-undo-title {
    font-size: 13px;
    margin-top: 24px;
  }

  .tarief-icon-wrapper .tarief-title {
    font-size: 18px;
  }

  .tarief-grid-list li p {
    font-size: 10px;
  }

  .tarief-grid-sum button {
    font-size: 11px;
    padding: 6px 10px;
  }

  .middle .tarief-undo-title {
    margin-top: 26px;
  }

  /* ADVANTAGE SECTION: 320px */
  .advantage-section {
    margin-top: 32px;
    padding: 0 14px;
  }

  .advantage-description p {
    font-size: 12px;
  }

  .advantage-title {
    font-size: 16px;
  }

  .advantage-under-title-description {
    font-size: 11px;
  }

  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    gap: 10px;
    margin-top: 14px;
  }

  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding: 12px 12px 16px;
    gap: 8px;
  }

  .advantage-f-vertical-container h1,
  .advantage-s-vertical-container h1,
  .advantage-t-vertical-container h1,
  .advantage-fourth-vertical-container h1 {
    font-size: 14px;
  }

  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p,
  .advantage-t-vertical-container p,
  .advantage-fourth-vertical-container p {
    font-size: 10px;
  }
}

/* Problem section: intermediate tablet (900px) */
@media (min-width: 769px) and (max-width: 900px) {
  .problem-section {
    padding-inline: 18px;
  }

  .problem-section .container {
    padding-inline: 18px;
  }

  .problem-title {
    font-size: 25px;
    margin-block: 24px;
  }

  .grid-layout {
    gap: 20px;
  }

  .vertical-container {
    max-width: none;
    min-height: 260px;
    padding: 30px 20px 26px;
  }

  .vertical-container h3 {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .horizontal-container {
    min-height: 76px;
    padding: 24px 20px;
  }

  .horizontal-container ul {
    gap: 36px;
  }
}

/* Problem section: intermediate mobile (600px) */
@media (min-width: 481px) and (max-width: 600px) {
  .problem-section {
    margin-top: 64px;
    padding-inline: 14px;
  }

  .problem-description {
    padding: 6px 20px;
  }

  .problem-title {
    font-size: 20px;
    margin-block: 18px;
  }

  .problem-section .container {
    margin-top: 22px;
  }

  .vertical-container {
    max-width: none;
    min-height: 210px;
    padding: 24px 18px 22px;
  }

  .vertical-container h3 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .vertical-container p {
    font-size: 13px;
    line-height: 1.5;
  }

  .horizontal-container {
    min-height: 68px;
    padding: 22px 16px;
  }

  .horizontal-container ul li {
    font-size: 13px;
  }
}

/* Problem section: large screens — limit width */
@media (min-width: 1400px) {
  .problem-section .container {
    max-width: 1280px;
    padding-inline: 24px;
  }

  .grid-layout {
    gap: 28px;
  }
}

/* Problem section: landscape on small height — compact vertical spacing */
@media (max-height: 700px) and (min-width: 641px) {
  .problem-section {
    margin-top: 60px;
  }

  .problem-title {
    margin-block: 20px;
  }

  .problem-section .container {
    margin-top: 24px;
  }

  .vertical-container {
    padding-top: 28px;
  }

  .vertical-container h3 {
    margin-bottom: 16px;
  }

  .horizontal-container {
    margin-top: 16px;
    padding-block: 14px;
  }
}

@media (max-height: 600px) and (max-width: 640px) {
  .problem-section {
    margin-top: 40px;
  }

  .problem-title {
    margin-block: 12px;
  }

  .problem-section .container {
    margin-top: 16px;
  }

  .vertical-container {
    padding: 18px 14px;
  }

  .vertical-container h3 {
    margin-bottom: 10px;
  }

  .horizontal-container {
    margin-top: 12px;
    padding: 16px 12px;
  }

  .horizontal-container ul {
    gap: 20px;
  }
}

/* Problem section: touch devices — comfortable tap targets */
@media (pointer: coarse) {
  .horizontal-container ul li {
    min-height: 44px;
    justify-content: center;
  }
}

@media (max-width: 1240px) {
  .header__nav {
    gap: 20px; /* Increased minimum gap between items */
    flex: 1;
    justify-content: space-between; /* Space them out across the available width */
  }

  .header__inner {
    justify-content: space-between;
    gap: 30px; /* Push button and nav apart */
  }

  .header__cta {
    padding: 6px 14px; /* Even smaller padding */
    max-width: max-content;
    font-size: 13px;
    text-align: center;
    line-height: 1.2;
    white-space: normal; /* Text wraps nicely */
    flex-shrink: 0; /* Keep button shape */
  }
}

.btn--primary {
  display: flex;
  padding: 14px 38px 13px 38px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  border: none;
  color: #ffffff;
}

.btn--primary:hover {
  box-shadow: 0 14px 32px rgba(155, 29, 255, 0.22);
  filter: brightness(1.06);
}

/* ----- HERO ----- */

.hero__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.hero__content {
  margin-right: 10px;
  position: relative;
  isolation: isolate; /* слой для .hero-elipse-left под текстом */
}

/* контент колонки поверх декоративного SVG */
.hero__content > :not(.hero-elipse-left) {
  position: relative;
  z-index: 1;
}

.hero-title {
  color: #f4efef;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
  font-size: 37px;
  font-family: "Inter";
}

.hero-description {
  color: rgba(244, 239, 239, 0.7);
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
}

.hero-buttons {
  margin-top: 38px;
  display: flex;
  gap: 23px;
}

.hero__btn--primary {
  padding-block: 15px;
  padding-inline: 60px;
  font-size: 17px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  border-radius: 24px;
  color: #ffffff;
  border: none;
  cursor: pointer;
  position: relative;
}

.hero__btn--primary:hover {
  box-shadow: 0 16px 36px rgba(155, 29, 255, 0.22);
  filter: brightness(1.06);
}

.hero__btn--primary::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 26px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  filter: blur(3.75px);
  z-index: -1;
}

.btn--secondary {
  padding-block: 15px;
  padding-inline: 54px;
  border-radius: 24px;
  color: #ffffff;
  font-size: 17px;
  border: 1px solid transparent;
  background-image:
    linear-gradient(#5d3c6d, #5d3c6d),
    linear-gradient(
      280deg,
      rgba(82, 38, 122, 1) 0%,
      rgba(204, 117, 185, 1) 100%
    );
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: inset 0px 1px 1px rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.btn--secondary:hover {
  box-shadow:
    inset 0px 1px 1px rgba(255, 255, 255, 0.55),
    0 16px 36px rgba(82, 38, 122, 0.25);
  filter: brightness(1.06);
}

.hero-horizon-line {
  margin-top: 45px;
  margin-bottom: 40px;
}

.hero__cta {
  position: relative;
  overflow: visible; /* свечение .hero-elipse-left вне полосы; маска только у .hero__cta-marquee */
  border-radius: 24px;
  background: rgba(169, 32, 236, 0.1);
  height: 60px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 510px;
}

.hero__cta-marquee {
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 24px;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
}

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

.hero-list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 10px;
}

.hero-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Первый ребёнок .hero__content — не внутри .hero__cta, чтобы не резало overflow полосы */
.hero-elipse-left {
  position: absolute;
  top: -48%;
  right: 12%;
  fill: radial-gradient(
    50% 50% at 50% 50%,
    rgba(61, 111, 255, 0.5) 0%,
    rgba(155, 29, 255, 0.2) 70%,
    rgba(115, 115, 115, 0) 100%
  );
  filter: blur(2px);
  width: 1087px;
  height: 767px;
  z-index: 0;
  pointer-events: none;
}

/* На десктопе flex-row: width:100% здесь растягивал колонку и давал пустоту справа.
   overflow: visible — иначе обрезается .hero-elipse-right (left: 110%, за пределами фото). */
.hero__photo {
  position: relative;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  overflow: visible;
}

.hero_photo {
  position: relative;
  display: block;
  width: 646.974px;
  max-width: 100%;
  height: 519.149px;
  border-radius: 20px;
  object-fit: cover;
}

.hero-elipse-right {
  position: absolute;
  z-index: -1;
  top: -90%;
  left: 160%;
  border-radius: 1092.359px;
  background: var(
    --Gradient-4,
    linear-gradient(51deg, #f277d1 11.7%, #7d00e4 86.88%)
  );
  box-shadow: 0 0 21.287px -10.751px #000;
  filter: blur(58.349998474121094px);
  overflow: hidden;
  width: 138.71px;
  height: 1092.359px;
  transform: rotate(41.405deg);
}

/* ----- PROBLEMS ----- */
.problem-section {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 215px;
  width: 100%;
  padding-left: max(20px, env(safe-area-inset-left, 20px));
  padding-right: max(20px, env(safe-area-inset-right, 20px));
  box-sizing: border-box;
}

.problem-section .container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
  box-sizing: border-box;
}

.problem-description p {
  color: #f4efef;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.problem-description {
  padding: 8px 52px;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    rgba(177, 33, 225, 0.7) 0%,
    rgba(235, 42, 148, 0.7) 100%
  );
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.problem-title {
  margin-block: 34px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  max-width: 100%;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.vertical-container {
  width: 100%;
  min-width: 0;
  max-width: 301px;
  min-height: 320px;
  height: auto;
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 20px 36px;
  border: 1px solid rgba(226, 211, 255, 0.19);
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  isolation: isolate;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  --cursor-angle: 125deg;
}

.vertical-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* Proximity mode: only the border segment nearest to cursor is highlighted */
  background: conic-gradient(
    from calc(var(--cursor-angle) - 24deg),
    rgba(255, 45, 120, 0) 0deg,
    rgba(255, 45, 120, 0.9) 10deg,
    rgba(155, 29, 255, 0.95) 24deg,
    rgba(61, 111, 255, 0.9) 38deg,
    rgba(61, 111, 255, 0) 72deg,
    rgba(255, 255, 255, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.vertical-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* Hover mode: full multicolor border */
  background: linear-gradient(125deg, #ff2d78 0%, #7c4dff 45%, #3d6fff 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.vertical-container.is-near::before {
  opacity: 1;
}

.vertical-container:hover::before {
  opacity: 0;
}

.vertical-container:hover::after {
  opacity: 1;
}

.vertical-container:hover {
  box-shadow: 0 0 28px rgba(155, 29, 255, 0.16);
}

.icon-wrapper {
  height: 65px;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
}

.vertical-container h3 {
  margin-bottom: 20px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
  overflow: visible;
  word-wrap: break-word;
  flex-shrink: 0;
}

.vertical-container p {
  color: rgba(244, 239, 239, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  overflow: visible;
  word-wrap: break-word;
  flex-grow: 0;
  flex-shrink: 0;
  margin: 0;
}

.horizontal-container {
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 211, 255, 0.19);
  border-radius: 24px;
  padding: 22px 24px;
  min-height: 72px;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  grid-column: 1 / -1;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
  transition: box-shadow 0.25s ease;
  --cursor-angle: 125deg;
}

.horizontal-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  /* Proximity mode: highlight only nearest border segment */
  background: conic-gradient(
    from calc(var(--cursor-angle) - 24deg),
    rgba(255, 45, 120, 0) 0deg,
    rgba(255, 45, 120, 0.9) 10deg,
    rgba(155, 29, 255, 0.95) 24deg,
    rgba(61, 111, 255, 0.9) 38deg,
    rgba(61, 111, 255, 0) 72deg,
    rgba(255, 255, 255, 0) 360deg
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.horizontal-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(125deg, #ff2d78 0%, #7c4dff 45%, #3d6fff 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.horizontal-container.is-near::before {
  opacity: 1;
}

.horizontal-container:hover::before {
  opacity: 0;
}

.horizontal-container:hover::after {
  opacity: 1;
}

.horizontal-container:hover {
  box-shadow: 0 0 28px rgba(155, 29, 255, 0.16);
}

.horizontal-container ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 230px;
  flex-wrap: wrap;
}

.horizontal-container ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  font-weight: 300;
  line-height: normal;
  color: #f4efef;
  min-width: 0;
}

.horizontal-container ul li p:not(:last-child) {
  font-weight: bold;
}

.problem-elipse {
  position: absolute;
  top: 10%;
  left: 70%;
  z-index: -1;
}

/*---SOLUTION_SECTION---*/
.solution-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 180px;
}

.solution-elipse {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;

  /* position: absolute;
  top: 13px; 
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  width: 700px;
  height: 700px;
  background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 229, 160, 0.08) 0%, rgba(0, 229, 160, 0.00) 70%); */
}

.solution-description {
  padding: 6px 48px;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    rgba(255, 45, 120, 0.7) 0%,
    rgba(155, 29, 255, 0.7) 100%
  );
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
}

.solution-description p {
  color: #f4efef;
  font-size: 18px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 1px;
}

.solution-title {
  margin-top: 16px;
  margin-bottom: 15px;
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  color: #f4efef;
  text-align: center;
  letter-spacing: -1px;
}

.solution-under-title-description {
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*---First Slider---*/

.solutions-slider-container {
  display: flex;
  width: 100%;
  max-width: 1200px; /* Limit width like the container */
  overflow-x: auto;
  gap: 30px;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -ms-overflow-style: none; /* Hide scrollbar IE and Edge */
}

.solutions-slider-container::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.solution-first-slider,
.solution-second-slider,
.solution-third-slider,
.solution-fourth-slider {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.solution-first-slider {
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 29.749px;
  border: 1.24px solid rgba(255, 255, 255, 0.07);
  background: #13151f;
}

.solution-first-left-slider {
  display: flex;
  flex-direction: column;
  padding-left: 55px;
  padding-right: 52px;
}

.solution-first-left-zaiavka {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "PT Root UI";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.816px; /* 160% */
  letter-spacing: 2.045px;
  text-transform: uppercase;
}

.solution-first-left-zaiavka span {
  color: #ff2d78;
}

.solution-first-left-title {
  margin-top: 23px;
  margin-bottom: 22px;
}

.solution-first-left-description {
  color: #6b7280;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 31.608px; /* 170% */
  width: 100%;
  margin-bottom: 29px;
}

.solution-first-left-list {
  margin-bottom: 36px;
}

.solution-first-left-item {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 18px;
}

.solution-first-left-item span {
  color: #ff2d78;
  font-family: Onest;
  font-size: 17.354px;
  font-style: normal;
  font-weight: 700;
  line-height: 27.766px; /* 160% */
}

.solution-first-left-item p {
  color: #c4c8d4;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 27.766px; /* 160% */
}

.solution-first-left-star-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 15px;
  padding-inline: 20px;
  background: linear-gradient(
    90deg,
    rgba(155, 29, 255, 0.3) 0%,
    rgba(255, 45, 120, 0.3) 100%
  );
  border-radius: 14.875px;
}

.solution-first-left-star-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14.875px;
  padding: 0.469px;
  background: linear-gradient(
    90deg,
    rgba(155, 29, 255, 1) 0%,
    rgba(255, 45, 120, 1) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.solution-first-left-star-block p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.783px; /* 160% */
}

.solution-first-right-slider img {
  border-radius: 0 29.749px 29.749px 0;
  aspect-ratio: 1;
  height: 592px;
  border-left: 1.24px solid rgba(255, 255, 255, 0.07);
}

/*---Second Slider---*/

.solution-second-slider {
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  border-radius: 29.749px;
  border: 1.24px solid rgba(255, 255, 255, 0.07);
  background: #13151f;
}

.solution-second-left-slider {
  display: flex;
  flex-direction: column;
  padding-left: 75px;
  padding-right: 75px;
}

.solution-second-left-zaiavka {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "PT Root UI";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.816px; /* 160% */
  letter-spacing: 2.045px;
  text-transform: uppercase;
}

.solution-second-left-zaiavka span {
  color: #ff2d78;
}

.solution-second-left-title {
  margin-top: 23px;
  margin-bottom: 22px;
}

.solution-second-left-description {
  color: #6b7280;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 31.608px; /* 170% */
  width: 100%;
  margin-bottom: 29px;
}

.solution-second-left-list {
  margin-bottom: 36px;
}

.solution-second-left-item {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 18px;
}

.solution-second-left-item span {
  color: #ff2d78;
  font-family: Onest;
  font-size: 17.354px;
  font-style: normal;
  font-weight: 700;
  line-height: 27.766px; /* 160% */
}

.solution-second-left-item p {
  color: #c4c8d4;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 27.766px; /* 160% */
}

.solution-second-left-star-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 15px;
  padding-inline: 20px;
  background: linear-gradient(
    90deg,
    rgba(155, 29, 255, 0.3) 0%,
    rgba(255, 45, 120, 0.3) 100%
  );
  border-radius: 14.875px;
}

.solution-second-left-star-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14.875px;
  padding: 0.469px;
  background: linear-gradient(
    90deg,
    rgba(155, 29, 255, 1) 0%,
    rgba(255, 45, 120, 1) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.solution-second-left-star-block p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.783px; /* 160% */
}

.solution-second-right-slider img {
  border-radius: 29.749px 0 0 29.749px;
  /* width: 579px;
  height: 515px; */
  aspect-ratio: 1;
  height: 597px;
  border-right: 1.24px solid rgba(255, 255, 255, 0.07);
}

/*---Third Slider---*/

.solution-third-slider {
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 29.749px;
  border: 1.24px solid rgba(255, 255, 255, 0.07);
  background: #13151f;
}

.solution-third-left-slider {
  display: flex;
  flex-direction: column;

  padding-left: 65px;
  padding-right: 62px;
}

.solution-third-left-zaiavka {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "PT Root UI";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.816px; /* 160% */
  letter-spacing: 2.045px;
  text-transform: uppercase;
}

.solution-third-left-zaiavka span {
  color: #ff2d78;
}

.solution-third-left-title {
  margin-top: 23px;
  margin-bottom: 22px;
}

.solution-third-left-description {
  color: #6b7280;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 31.608px; /* 170% */
  width: 100%;
  margin-bottom: 29px;
}

.solution-third-left-list {
  margin-bottom: 36px;
}

.solution-third-left-item {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 18px;
}

.solution-third-left-item span {
  color: #ff2d78;
  font-family: Onest;
  font-size: 17.354px;
  font-style: normal;
  font-weight: 700;
  line-height: 27.766px; /* 160% */
}

.solution-third-left-item p {
  color: #c4c8d4;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 27.766px; /* 160% */
}

.solution-third-left-star-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 15px;
  padding-inline: 20px;
  background: linear-gradient(
    90deg,
    rgba(155, 29, 255, 0.3) 0%,
    rgba(255, 45, 120, 0.3) 100%
  );
  border-radius: 14.875px;
}

.solution-third-left-star-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14.875px;
  padding: 0.469px;
  background: linear-gradient(
    90deg,
    rgba(155, 29, 255, 1) 0%,
    rgba(255, 45, 120, 1) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.solution-third-left-star-block p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.783px; /* 160% */
}

.solution-third-right-slider img {
  border-radius: 0 29.749px 29.749px 0;
  /* width: 579px;
  height: 515px; */
  aspect-ratio: 1;
  height: 592px;
  border-left: 1.24px solid rgba(255, 255, 255, 0.07);
}

/*---Fourth Slider---*/

.solution-fourth-slider {
  margin-top: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  border-radius: 29.749px;
  border: 1.24px solid rgba(255, 255, 255, 0.07);
  background: #13151f;
}

.solution-fourth-left-slider {
  display: flex;
  flex-direction: column;

  padding-left: 65px;
  padding-right: 62px;
}

.solution-fourth-left-zaiavka {
  display: flex;
  align-items: center;
  gap: 10px;

  font-family: "PT Root UI";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.816px; /* 160% */
  letter-spacing: 2.045px;
  text-transform: uppercase;
}

.solution-fourth-left-zaiavka span {
  color: #ff2d78;
}

.solution-fourth-left-title {
  margin-top: 23px;
  margin-bottom: 22px;
}

.solution-fourth-left-description {
  color: #6b7280;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 31.608px; /* 170% */
  width: 100%;
  margin-bottom: 29px;
}

.solution-fourth-left-list {
  margin-bottom: 36px;
}

.solution-fourth-left-item {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 18px;
}

.solution-fourth-left-item span {
  color: #ff2d78;
  font-family: Onest;
  font-size: 17.354px;
  font-style: normal;
  font-weight: 700;
  line-height: 27.766px; /* 160% */
}

.solution-fourth-left-item p {
  color: #c4c8d4;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 27.766px; /* 160% */
}

.solution-fourth-left-star-block {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-block: 15px;
  padding-inline: 20px;
  background: linear-gradient(
    90deg,
    rgba(155, 29, 255, 0.3) 0%,
    rgba(255, 45, 120, 0.3) 100%
  );
  border-radius: 14.875px;
}

.solution-fourth-left-star-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14.875px;
  padding: 0.469px;
  background: linear-gradient(
    90deg,
    rgba(155, 29, 255, 1) 0%,
    rgba(255, 45, 120, 1) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.solution-fourth-left-star-block p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.783px; /* 160% */
}

.solution-fourth-right-slider img {
  border-radius: 29.749px 0 0 29.749px;
  /* width: 579px;
  height: 515px; */
  aspect-ratio: 1;
  height: 592px;
  border-right: 1.24px solid rgba(255, 255, 255, 0.07);
}

/* 1024px (планшет): только боковые отступы, без изменений вертикали */
@media (max-width: 1024px) {
  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
}

/* Мобильная версия: фото влезают в контейнер (cascade fix) */
@media (max-width: 640px) {
  .solution-first-right-slider,
  .solution-second-right-slider,
  .solution-third-right-slider,
  .solution-fourth-right-slider {
    overflow: hidden !important;
    min-width: 0;
  }
  /* У 1 и 2 контейнера — убрать лишний отступ под фото */
  .solution-first-slider,
  .solution-second-slider {
    align-items: flex-start !important;
  }
  .solution-first-left-slider,
  .solution-second-left-slider {
    padding-bottom: 0 !important;
  }
  /* Отступ под блоком «Менеджер получает...» и «Качество ответов...» */
  .solution-first-left-star-block,
  .solution-second-left-star-block {
    margin-bottom: 12px !important;
  }
  .solution-first-right-slider,
  .solution-second-right-slider {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  .solution-first-right-slider img,
  .solution-second-right-slider img,
  .solution-third-right-slider img,
  .solution-fourth-right-slider img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    aspect-ratio: unset !important;
    display: block !important;
  }
  /* Второй контейнер: фото растянуто по вертикали */
  .solution-second-right-slider {
    min-height: 200px !important;
  }
  .solution-second-right-slider img {
    height: 100% !important;
    min-height: 200px !important;
    object-fit: cover !important;
  }
  .solution-first-right-slider,
  .solution-second-right-slider,
  .solution-third-right-slider,
  .solution-fourth-right-slider {
    line-height: 0 !important;
  }
}

/* Только верхние внутренние отступы: 1↓ 2↓ */
@media (max-width: 640px) {
  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding-top: 20px !important;
  }
  .solution-first-left-title,
  .solution-second-left-title,
  .solution-third-left-title,
  .solution-fourth-left-title {
    margin-top: 20px !important;
  }
}
@media (max-width: 480px) {
  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding-top: 18px !important;
  }
  .solution-first-left-title,
  .solution-second-left-title,
  .solution-third-left-title,
  .solution-fourth-left-title {
    margin-top: 18px !important;
  }
}
@media (max-width: 380px) {
  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding-top: 16px !important;
  }
  .solution-first-left-title,
  .solution-second-left-title,
  .solution-third-left-title,
  .solution-fourth-left-title {
    margin-top: 16px !important;
  }
}
@media (max-width: 320px) {
  .solution-first-left-slider,
  .solution-second-left-slider,
  .solution-third-left-slider,
  .solution-fourth-left-slider {
    padding-top: 14px !important;
  }
  .solution-first-left-title,
  .solution-second-left-title,
  .solution-third-left-title,
  .solution-fourth-left-title {
    margin-top: 14px !important;
  }
}

/* MOBILE: problem-section horizontal-container (cascade fix) */
/* 641px–1280px: горизонтальная линия из 3 пунктов, компактно */
@media (min-width: 641px) and (max-width: 1280px) {
  .problem-section .horizontal-container {
    max-width: 720px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 20px 24px !important;
  }
  .problem-section .horizontal-container ul {
    flex-direction: row !important;
    gap: 24px !important;
    justify-content: space-between !important;
  }
  .problem-section .horizontal-container ul li {
    padding: 0 !important;
    font-size: 13px !important;
    flex: 1;
    min-width: 0;
  }
  .problem-section .horizontal-container ul li p:not(:last-child) {
    font-size: 22px !important;
  }
  .problem-section .horizontal-container ul li {
    border-bottom: none !important;
  }
}
@media (max-width: 640px) {
  .problem-section .horizontal-container {
    padding: 16px 12px !important;
  }
  .problem-section .horizontal-container ul {
    gap: 12px !important;
  }
  .problem-section .horizontal-container ul li {
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18) !important;
  }
  .problem-section .horizontal-container ul li:last-child {
    border-bottom: none !important;
  }
}
@media (max-width: 480px) {
  .problem-section .horizontal-container {
    padding: 14px 10px !important;
  }
  .problem-section .horizontal-container ul li {
    padding: 10px 0 !important;
  }
}
@media (max-width: 380px) {
  .problem-section .horizontal-container {
    padding: 12px 10px !important;
  }
  .problem-section .horizontal-container ul li {
    padding: 8px 0 !important;
  }
}
@media (max-width: 320px) {
  .problem-section .horizontal-container {
    padding: 10px 8px !important;
  }
  .problem-section .horizontal-container ul li {
    padding: 6px 0 !important;
  }
}

/* CRM SECTION */
.crm-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.crm-description {
  position: relative;
  padding: 8px 48px;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
}

.crm-description-elipse {
  position: absolute;
  bottom: -2000%;
  right: -5%;
  z-index: -1;
  pointer-events: none;
}

.crm-description p {
  color: #f4efef;
  font-size: 18px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 1px;
}

.crm-title {
  margin-top: 19px;
  margin-bottom: 12px;
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  color: #f4efef;
  text-align: center;
  letter-spacing: -1px;
}

.crm-under-title-description {
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/*---CRM-GRID---*/

.crm-container {
  margin-top: 37px;
}

.crm-grid-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.crm-first-right-arrow .crm-second-right-arrow .crm-third-right-arrow {
  position: relative;
}

.first-crm-arrow,
.second-crm-arrow,
.third-crm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.first-crm-arrow {
  left: 22.11%;
}
.second-crm-arrow {
  left: 48.7%;
}
.third-crm-arrow {
  left: 75.3%;
}

.crm-vertical-container {
  backdrop-filter: blur(20px);
  border-radius: 14.542px;
  background: rgba(226, 211, 255, 0.19);

  -webkit-backdrop-filter: blur(20px);

  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 18px;
  padding-bottom: 22px;
  padding-inline: 25px;

  border: 1px solid rgba(226, 211, 255, 0.19);
}

.crm-right-tracker {
  position: relative;
  border-radius: 14.542px;
  border: 1.212px solid rgba(34, 211, 163, 0.3);
  background: rgba(34, 211, 163, 0.08);
}

.crm-vertical-container h3 {
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

  color: #9999b3;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
}

.crm-vertical-container p {
  color: #f0f0f5;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}

.crm-right-elipse {
  position: absolute;
  z-index: -1;
  right: -330%;
  top: -45%;
}
/*---CRM-f-GRID---*/

.crm-f-container {
  margin-top: 37px;
}

.crm-f-grid-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.crm-f-first-right-arrow .crm-f-second-right-arrow .crm-f-third-right-arrow {
  position: relative;
}

.crm-f-vertical-container {
  /* width: 301px;
  height: 342.787px; */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 29px;
  padding-bottom: 44px;
  padding-inline: 23px;

  border-radius: 14.542px;
  border: 1.212px solid rgba(255, 255, 255, 0.08);
  background: #18181f;
}

.crm-f-right-tracker {
  position: relative;
}

.crm-f-vertical-container h3 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;

  color: #f0f0f5;
  font-size: 16px;
}

.crm-f-vertical-container p {
  font-style: normal;
  font-weight: 300;
  color: #9999b3;
  font-size: 14px;
  line-height: 24px;
}

.crm-f-right-elipse {
  position: absolute;
  z-index: -1;
  right: -330%;
  top: -45%;
}

@media (max-width: 1282px) {
  .crm-f-grid-layout {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1050px) {
  .crm-f-grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }
  .crm-grid-layout {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 15px;
  }
  /* В 3-колоночной адаптации: "Результат" по центру (2-я колонка) */
  .crm-grid-layout .crm-right-tracker {
    grid-column: 2;
    justify-self: center;
  }
  .first-crm-arrow {
    top: 23%;
    left: 30.15%;
  }
  .second-crm-arrow {
    top: 23%;
    left: 66.7%;
  }
  .third-crm-arrow {
    top: 75%;
    left: 30%;
  }
}
@media (max-width: 770px) {
  .crm-f-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .crm-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  /* В 2-колоночной адаптации: "Результат" справа от CRM-карточки */
  .crm-grid-layout .crm-right-tracker {
    grid-column: 2;
    grid-row: 2;
    max-width: none;
    justify-self: stretch;
    margin-inline: 0;
  }
  .crm-vertical-container {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-inline: 10px;
  }
  .first-crm-arrow {
    top: 22%;
    left: 46.6%;
  }
  .second-crm-arrow {
    top: 22%;
    left: 100.7%;
  }
  .third-crm-arrow {
    /* Между "CRM-карточка" и "Результат" (2 колонки) */
    top: 76%;
    left: 46.8%;
  }
}
@media (max-width: 520px) {
  .crm-f-vertical-container h3 {
    font-size: 14px;
  }
  .crm-f-vertical-container p {
    font-size: 13px;
  }
  .crm-f-grid-layout {
    gap: 0;
  }
  .second-crm-arrow {
    left: 100%;
  }
  .crm-grid-layout {
    column-gap: 20px;
  }
  .crm-f-vertical-container {
    padding-top: 29px;
    padding-bottom: 29px;
    padding-inline: 16px;
    border-radius: 0;
    border: none;
    background: #18181f;
  }
  .crm-f-vertical-container:nth-last-child(1) {
    border-bottom-left-radius: 14.542px;
    border-right: 1.212px solid rgba(255, 255, 255, 0.08);
    border-top: 1.212px solid rgba(255, 255, 255, 0.08);
  }
  .crm-f-vertical-container:nth-last-child(2) {
    border-left: 1.212px solid rgba(255, 255, 255, 0.08);
    border-top: 1.212px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1.212px solid rgba(255, 255, 255, 0.08);
  }
  .crm-f-vertical-container:nth-last-child(3) {
    border-top: 1.212px solid rgba(255, 255, 255, 0.08);
  }
  .crm-f-vertical-container:nth-last-child(4) {
    border-top-right-radius: 14.542px;
  }
  .crm-f-vertical-container:nth-last-child(5) {
    border-top-left-radius: 14.542px;
    border-right: 1.212px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 430px) {
  .crm-f-vertical-container h3 {
    font-size: 13px;
  }
  .crm-f-vertical-container p {
    font-size: 12px;
  }
  .crm-f-vertical-container {
    padding-top: 20px;
    padding-bottom: 21px;
    padding-inline: 10px;
  }
}

/*---Work Section---*/

.work-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.work-description {
  position: relative;
  padding: 8px 48px;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
}

.work-description-elipse {
  position: absolute;
  bottom: -2000%;
  right: -5%;
  z-index: -1;
  pointer-events: none;
}

.work-description p {
  color: #f4efef;
  font-size: 18px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 1px;
}

.work-title {
  margin-top: 19px;
  margin-bottom: 12px;
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  color: #f4efef;
  text-align: center;
  letter-spacing: -1px;
}

.work-under-title-description {
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.work-under-title-additional-description {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 812px;
  height: 44px;
  border-radius: 14px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.work-under-title-additional-description p {
  color: rgba(208, 213, 232, 1);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}

.work-under-title-additional-description span {
  color: rgba(155, 29, 255, 1);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

/*---GRID---*/

.container {
  margin-top: 37px;
}

.work-grid-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.first-right-arrow .second-right-arrow .third-right-arrow {
  position: relative;
}

.first-work-arrow,
.second-work-arrow,
.third-work-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.first-work-arrow {
  left: 21.15%;
}
.second-work-arrow {
  left: 47.4%;
}
.third-work-arrow {
  left: 73.7%;
}

.work-vertical-container {
  /* width: 301px;
  height: 342.787px; */
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 24px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 29px;
  padding-bottom: 44px;
  padding-inline: 23px;

  border: 1px solid rgba(226, 211, 255, 0.19);
}

.right-tracker {
  position: relative;
}

.work-icon-wrapper {
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.work-vertical-container h3 {
  margin-bottom: 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.work-vertical-container p {
  color: rgba(244, 239, 239, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.right-elipse {
  position: absolute;
  z-index: -1;
  right: -330%;
  top: -45%;
}

/*---Second Grid---*/
.work-second-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 45px;
  margin-bottom: 43px;
}

.work-second-vertical-container {
  /* width: 301px;
  height: 342.787px; */
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 24px;
  color: white;
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding-top: 21px;
  padding-bottom: 22px;
  padding-left: 42px;
  padding-right: 22px;

  border: 1px solid rgba(226, 211, 255, 0.19);
}

.work-second-vertical-container h3 {
  margin-bottom: 2px;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.work-second-vertical-container p {
  color: rgba(244, 239, 239, 0.8);
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 132%;
}

/*---Horizontal Grid---*/
.work-horizontal-container {
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 211, 255, 0.19);
  border-radius: 27px;

  display: flex;
  flex-direction: column;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  grid-column: 1 / -1;
  width: 100%;
}

.work-horizontal-container h1 {
  margin-top: 29px;
  margin-bottom: 13px;
  font-size: 40px;
  font-style: normal;
  font-weight: 450;
  line-height: 115%;
  color: #fff;
  text-align: center;
  letter-spacing: -1px;
}

.work-horizontal-upon-description {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
}

.work-horizontal-description {
  color: #fff;
  padding-block: 8px;
  padding-inline: 148px;
  margin-inline: auto;
  margin-top: 26px;
  margin-bottom: 19px;
  border-radius: 24px;
  background: linear-gradient(
    90deg,
    rgba(255, 45, 120, 0.7) 0%,
    rgba(155, 29, 255, 0.7) 100%
  );
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.work-horizontal-description:hover {
  filter: brightness(1.1);
  box-shadow:
    0 14px 36px rgba(155, 29, 255, 0.35),
    0 4px 4px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.work-horizontal-description:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 4px;
}

/*---TARIEF SECTION---*/
.tarief-section {
  margin-top: 107px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tarief-description {
  padding: 8px 48px;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
}

.tarief-description p {
  color: #f4efef;
  font-size: 18px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 1px;
}

.tarief-title {
  margin-top: 19px;
  margin-bottom: 12px;
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  color: #f4efef;
  text-align: center;
  letter-spacing: -1px;
}

.tarief-under-title-description {
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
}

/*---Tarief Grid---*/

.tarief-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 49px;
}

.tarief-vertical-container {
  background: rgba(255, 45, 120, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-inline: 22px;
  padding-bottom: 11px;
  border-radius: 24px;
  color: white;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(226, 211, 255, 0.19);

  align-self: start;
}

.middle .tarief-undo-title {
  margin-top: 55px;
}

.middle {
  position: relative;
  background: rgba(155, 29, 255, 0.3);
  align-self: stretch;
}

.popular {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -4%;
  border-radius: 24px;
  background: #e4e4f1;
  padding-inline: 27.5px;
  padding-block: 10px;
  color: #30303a;
  font-size: 14px;
  font-weight: 600;
}

.tarief-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.tarief-undo-title {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-top: 54px;
}

.tarief-title {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.tarief-month {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 200;
  margin-left: -9px;
  letter-spacing: 0.4px;
}

.tarief-grid-under-title-description {
  color: #fff;
  font-size: 15px;
  font-weight: 200;
}

.tarief-first-line {
  margin-top: 26px;
  margin-bottom: 20px;
}
.tarief-second-line {
  margin-top: 15px;
  margin-bottom: 16px;
}
.tarief-third-line {
  margin-top: 15px;
  margin-bottom: 21px;
}

.tarief-grid-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tarief-grid-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tarief-grid-list li p {
  color: #fff;
  font-size: 15px;
  font-weight: 200;
}

.tarief-grid-list li svg {
  width: 15px;
  height: 15px;
}

.tarief-vertical-container p {
  color: rgba(244, 239, 239, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.tarief-grid-sum {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 44px;
}

.tarief-grid-sum p {
  color: rgba(255, 255, 255, 0.79);
  font-size: 16px;
  font-weight: 200;
}

.tarief-grid-sum h1 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.tarief-grid-undo-btn-description {
  color: rgba(255, 255, 255, 0.79);
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 13px;
}

.tarief-grid-sum button {
  border: none;
  border-radius: 9px;
  background: #e4e4f1;
  color: #30303a;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  padding-inline: 10px;
  padding-block: 8px;
}

.tarief-grid-sum button:hover {
  background: #ffffff;
  color: #17171c;
  box-shadow: 0 14px 28px rgba(155, 29, 255, 0.18);
  filter: brightness(1.03);
}

.tarief-under-btn-description {
  margin-top: 19px;
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
}

.tarief-under-btn-description span {
  color: rgba(244, 239, 239, 0.7);
  font-size: 18px;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
  text-decoration: underline;
  text-underline-offset: 2px; /* Регулирует расстояние между текстом и линией */
}
/*---NACINAL---*/
.nac-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 188px;
  width: 100%;
  max-width: 100%;
  padding-inline: 16px;
  box-sizing: border-box;
}

.nac-description {
  position: relative;
  z-index: 0;
  overflow: visible;
  padding: 10px 48px;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
}

.nac-description p {
  color: #f4efef;
  font-size: 18px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 1px;
}

.nac-title {
  margin-top: 22px;
  margin-bottom: 7px;
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  text-align: center;
  color: #f4efef;
}

.nac-under-title-description {
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  color: #6b7280;

  line-height: 36.4px; /* 165% */
}

.nac-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.nac-list-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 20px;
  padding-block: 12px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 11.1px;
  border: 1.11px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
}

.nac-list-item p {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  color: #c4c8d4;
  line-height: 23.088px; /* 160% */
}

/*---NACINAL GRID---*/
.nac-grid-layout {
  margin-top: 142px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.nac-vertical-container {
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 24px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 29px;
  padding-bottom: 44px;
  padding-inline: 23px;

  background: rgba(226, 211, 255, 0.19);
  border: 1px solid rgba(226, 211, 255, 0.19);
}

.nac-Box {
  position: absolute;
  top: -38%;
  display: flex;
  align-items: center;
  gap: 23px;
}

.nac-Icon-box {
  display: flex;
  min-width: 63.023px;
  min-height: 63.023px;
  padding: 10.241px 0 11.817px 0;
  justify-content: center;
  align-items: center;

  background: rgba(226, 211, 255, 0.19);
  border: 1px solid rgba(226, 211, 255, 0.19);
  border-radius: 20px;

  color: #ffffff;
  text-align: center;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
}

.nac-span {
  padding-inline: 12.4px;
  padding-block: 3.72px;
  border-radius: 124px;
  display: flex;
  align-items: center;
  background: rgba(91, 107, 255, 0.1);
  color: #ff2d78;
  font-size: 15px;
  font-weight: 600px;
}

.nac-vertical-container h3 {
  margin-bottom: 20px;
  margin-top: 20px;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.nac-vertical-container p {
  color: rgba(244, 239, 239, 0.7);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

/*---NACINAL HORIZONTAL GRID---*/
.nac-grid-horizontal-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.nac-grid-horizontal-layout h1 {
  font-size: 30px;
  color: #f0f0f5;
  font-weight: 500;
}

.nac-grid-horizontal-layout p {
  color: rgba(244, 239, 239, 0.7);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  margin-block: 20px;
  line-height: 25px;
}

.nac-grid-left-horizontal {
  background: rgba(226, 211, 255, 0.19);
  border: 1px solid rgba(226, 211, 255, 0.19);
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  min-height: 333px;
}

.nac-left-hor-buttons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nac-left-hor-buttons :first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff2d78;
  font-size: 15px;
  font-weight: 600;
  color: #08090d;
  padding-inline: 24px;
  padding-block: 15px;
  border-radius: 15px;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nac-left-hor-buttons :first-child:hover {
  filter: brightness(1.08);
  box-shadow: 0 10px 28px rgba(255, 45, 120, 0.35);
  transform: translateY(-2px);
}

.nac-left-hor-buttons :first-child:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(255, 45, 120, 0.25);
}

.nac-left-hor-buttons :last-child {
  background: transparent;
  font-size: 15px;
  color: #ffffff;
  padding-inline: 24px;
  padding-block: 15px;
  border-radius: 15px;
  border: 0.1px #ffffff solid;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, box-shadow 0.2s ease;
}

.nac-left-hor-buttons :last-child:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 24px rgba(155, 29, 255, 0.12);
  transform: translateY(-2px);
}

.nac-left-hor-buttons :last-child:active {
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.06);
}

.nac-grid-right-horizontal {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: rgba(226, 211, 255, 0.19);
  border: 1px solid rgba(226, 211, 255, 0.19);
  border-radius: 20px;
  padding: 40px;
}

.nac-up-grid-right-hor {
  display: flex;
  width: 100%;
  gap: 40px;
}

.nac-down-grid-right-hor {
  border-top: 1px rgba(255, 255, 255, 0.3) solid;
  padding-top: 25px;
  display: flex;
  width: 100%;
  gap: 46px;
}

@media (max-width: 1120px) {
  .nac-grid-layout {
    grid-template-columns: repeat(3, 1fr);
  }
  .nac-vertical-container:last-child {
    margin-top: 50px;
  }
}

@media (max-width: 950px) {
  .nac-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  .nac-vertical-container:nth-last-child(2) {
    margin-top: 50px;
  }
}

@media (max-width: 950px) {
  .nac-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .nac-vertical-container:nth-last-child(1) {
    margin-top: 100px;
  }
  .nac-vertical-container:nth-last-child(2) {
    margin-top: 100px;
  }
}

@media (max-width: 930px) {
  .nac-grid-horizontal-layout {
    display: flex;
    flex-direction: column;
  }
  .nac-up-grid-right-hor {
    gap: 40px;
  }
  .nac-down-grid-right-hor {
    gap: 46px;
  }
}

@media (max-width: 650px) {
  .nac-up-grid-right-hor {
    gap: 30px;
  }
  .nac-down-grid-right-hor {
    gap: 30px;
  }
  .nac-grid-layout {
    margin-top: 50px;
  }
}

@media (max-width: 687px) {
 .nac-title {
  font-size: 30px;
  font-weight: 500;
  margin-top: 35px !important;
  margin-bottom: 15px !important;
 }
 .nac h1 {
  font-size: 21px;
 }
 .nac-under-title-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
 }
 .nac-list {
  row-gap: 1px;
 }
 .nac-list-item p {
  font-size: 16px;
 }
}

@media (max-width: 800px) {
  /* Иначе align-items: center у .nac-section сжимает блок по ширине контента — карточки не на всю ширину */
  .nac-section .nac-container {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
  }
  .nac-description {
    margin-top: -110px;
  }

  .nac-grid-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  .nac-Box {
    display: none;
  }
  .nac-vertical-container {
    flex: 1 1 auto;
    align-self: stretch;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .nac-vertical-container:nth-last-child(1),
  .nac-vertical-container:nth-last-child(2) {
    margin-top: 0px;
  }
}

/*---Advantage Section---*/
.advantage-section {
  margin-top: 107px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.advantage-description {
  padding: 8px 48px;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
}

.founders-advantage-description {
  padding: 8px 48px;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
  margin-bottom: 100px;
}

.founders-advantage-description p {
  color: #f4efef;
  font-size: 18px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 1px;
}

.founders-advantage-description h1 {
  color: #f4efef;
  font-size: 20px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 1px;
}

.advantage-title {
  margin-top: 19px;
  margin-bottom: 12px;
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  color: #f4efef;
  text-align: center;
  letter-spacing: -1px;
}

.advantage-title span {
  color: #ff2d78;
}

.advantage-under-title-description {
  color: #6b7280;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
}

.advantage-first-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
  margin-top: 26px;
}

.advantage-second-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
  margin-top: 26px;
}

.advantage-f-vertical-container {
  position: relative;
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  color: white;
  text-align: center;
  display: flex;
  text-align: start;
  padding-top: 40px;
  padding-bottom: 56px;
  padding-left: 35px;
  padding-right: 63px;
  gap: 22px;
  align-self: start;
  border: 1px solid rgba(226, 211, 255, 0.19);
  overflow: visible;
}

.advantage-f-vertical-container-elipse {
  position: absolute;
}

.advantage-s-vertical-container {
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  color: white;
  text-align: center;
  display: flex;
  text-align: start;
  padding-top: 40px;
  padding-bottom: 56px;
  padding-left: 35px;
  padding-right: 14px;
  gap: 22px;
  align-self: start;
  border: 1px solid rgba(226, 211, 255, 0.19);
}

.advantage-t-vertical-container {
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  color: white;
  text-align: center;
  display: flex;
  text-align: start;
  padding-top: 40px;
  padding-bottom: 73px;
  padding-left: 35px;
  padding-right: 63px;
  margin-top: -17px;
  gap: 22px;
  align-self: start;
  border: 1px solid rgba(226, 211, 255, 0.19);
}

.advantage-fourth-vertical-container {
  position: relative;
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  color: white;
  text-align: center;
  display: flex;
  text-align: start;
  padding-top: 40px;
  padding-bottom: 56px;
  padding-left: 35px;
  padding-right: 63px;
  gap: 22px;
  align-self: start;
  border: 1px solid rgba(226, 211, 255, 0.19);
}

.wrapper-first {
  border-radius: 121.293px;
  /* background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 229, 160, 0.08) 0%, rgba(0, 229, 160, 0.00) 70%); */
  border-radius: 19.407px;
  background: rgba(0, 229, 160, 0.1);
  display: flex;
  width: 67.924px;
  height: 67.924px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.wrapper-second {
  border-radius: 121.293px;
  /* background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 229, 160, 0.08) 0%, rgba(0, 229, 160, 0.00) 70%); */
  border-radius: 19.407px;
  background: rgba(91, 107, 255, 0.1);
  display: flex;
  width: 67.924px;
  height: 67.924px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.wrapper-third {
  border-radius: 121.293px;
  /* background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 229, 160, 0.08) 0%, rgba(0, 229, 160, 0.00) 70%); */
  border-radius: 19.407px;
  background: rgba(255, 180, 50, 0.15);
  display: flex;
  width: 67.924px;
  height: 67.924px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.wrapper-forth {
  border-radius: 121.293px;
  /* background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 229, 160, 0.08) 0%, rgba(0, 229, 160, 0.00) 70%); */
  border-radius: 19.407px;
  background: rgba(200, 100, 255, 0.1);
  display: flex;
  width: 67.924px;
  height: 67.924px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.wrapper-first {
  border-radius: 121.293px;
  /* background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 229, 160, 0.08) 0%, rgba(0, 229, 160, 0.00) 70%); */
  border-radius: 19.407px;
  background: rgba(0, 229, 160, 0.1);
  display: flex;
  width: 67.924px;
  height: 67.924px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.wrapper-second {
  border-radius: 121.293px;
  /* background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 229, 160, 0.08) 0%, rgba(0, 229, 160, 0.00) 70%); */
  border-radius: 19.407px;
  background: rgba(91, 107, 255, 0.1);
  display: flex;
  width: 67.924px;
  height: 67.924px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.advantage-first-text {
  color: #9aaaff;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.407px; /* 138.62% */
  letter-spacing: 1.456px;
  text-transform: uppercase;
}

.advantage-second-text {
  color: #ff2d78;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.407px; /* 138.62% */
  letter-spacing: 1.456px;
  text-transform: uppercase;
}

.advantage-third-text {
  color: #ffc84d;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.407px; /* 138.62% */
  letter-spacing: 1.456px;
  text-transform: uppercase;
}

.advantage-forth-text {
  color: #c8f;
  font-size: 13px;
  font-weight: 600;
  line-height: 19.407px; /* 138.62% */
  letter-spacing: 1.456px;
  text-transform: uppercase;
}

.advantage-f-vertical-container h1,
.advantage-s-vertical-container h1,
.advantage-t-vertical-container h1,
.advantage-fourth-vertical-container h1 {
  color: #f0f0f5;
  font-size: 17px;
  font-weight: 400;
  margin-block: 13px;
}

.advantage-f-vertical-container p,
.advantage-s-vertical-container p,
.advantage-t-vertical-container p,
.advantage-fourth-vertical-container p {
  color: #6b7280;
  font-size: 14px;
  font-weight: 300;
}

.advantage-list {
  display: flex;
  margin-left: -10px;
  align-items: center;
}

.gif-img {
  width: 153.041px;
  height: 68.741px;
  aspect-ratio: 118/53;
}

.vectors {
  position: absolute;
  left: -47%;
  top: 4%;
  overflow: visible;
}

.vectors svg {
  border-radius: 50%;
  overflow: visible;
  display: block;
}

.vector-1-dev,
.vector-2-dev,
.vector-3-dev,
.vector-4-dev,
.vector-5-dev,
.vector-6-dev {
  position: relative;
}
.vector-1 {
  left: 30px;
  top: 172px;
}
.vector-2 {
  top: 155px;
  left: 12px;
}
.vector-3 {
  top: 115px;
}
.vector-4 {
  top: 78px;
}
.vector-5 {
  top: 38px;
}

.vector-1,
.vector-2,
.vector-3,
.vector-4,
.vector-5,
.vector-6 {
  position: absolute;
}

.blue-vectors {
  position: absolute;
  left: 90%;
  top: -20%;
}

.b-vector-1-dev,
.b-vector-2-dev,
.b-vector-3-dev,
.b-vector-4-dev,
.b-vector-5-dev,
.b-vector-6-dev {
  position: relative;
}
.b-vector-1 {
  top: 180px;
  left: 169px;
}
.b-vector-2 {
  top: 160px;
  left: 149px;
}
.b-vector-3 {
  top: 120px;
  left: 110px;
}
.b-vector-4 {
  top: 80px;
  left: 70px;
}
.b-vector-5 {
  top: 40px;
  left: 39px;
}

.b-vector-1,
.b-vector-2,
.b-vector-3,
.b-vector-4,
.b-vector-5,
.b-vector-6 {
  position: absolute;
}

/*---Founders Section---*/

.founders-section {
  margin-top: 107px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.founders-title {
  margin-top: 19px;
  margin-bottom: 12px;
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  color: #f4efef;
  text-align: center;
  letter-spacing: -1px;
}

.founders-under-title-description {
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
  margin-bottom: 90px;
}

/*---Grid---*/

.founders-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 178px;
  row-gap: 178px;
  margin-inline: auto;
}

/* Только column-gap: постепенное уменьшение между карточками. row-gap НЕ ТРОГАЕМ — отступ над горизонтальным контейнером */
@media (max-width: 1400px) {
  .founders-grid-layout {
    column-gap: 120px;
  }
}
@media (max-width: 1280px) {
  .founders-grid-layout {
    column-gap: 80px;
  }
}
@media (max-width: 1160px) {
  .founders-grid-layout {
    column-gap: 56px;
  }
}
@media (max-width: 1080px) {
  .founders-grid-layout {
    column-gap: 40px;
  }
}
@media (max-width: 1000px) {
  .founders-grid-layout {
    column-gap: 28px;
  }
}
@media (max-width: 920px) {
  .founders-grid-layout {
    column-gap: 20px;
  }
}
@media (max-width: 840px) {
  .founders-grid-layout {
    column-gap: 14px;
  }
}
@media (max-width: 768px) {
  .founders-grid-layout {
    grid-template-columns: 1fr !important;
    column-gap: 18px;
    row-gap: 178px;
  }
  /* Сближаем только две карточки через margin, row-gap оставляем — отступ над горизонтальным контейнером */
  .founders-grid-layout .founders-vertical-container:first-of-type {
    margin-bottom: -160px !important;
  }
  /* 768–480px: фото слева, текст справа — всё в одном блоке, зазор 4px */
  .founders-vertical-container {
    padding: 20px 20px 28px !important;
  }
  .founders-icon-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .founders-icon-wrapper img {
    order: 1 !important;
    flex-shrink: 0 !important;
  }
  .founders-text-block {
    order: 2 !important;
    flex: 1 !important;
  }
  .founders-text-block .founders-description {
    margin-top: 10px !important;
  }
  .alex-elipse {
    display: none !important;
  }
}

/* Только десктоп 2 колонки: уменьшенный вертикальный отступ, внешний горизонтальный отступ, кнопки в ряд */
@media (max-width: 769px) {
  .tarief-month {
    margin-left: 5px;
  }
}

@media (min-width: 769px) {
  .founders-section {
    padding-inline: 24px !important;
  }
  .founders-vertical-container {
    padding-top: 22px !important;
    padding-bottom: 40px !important;
  }
  .founder-horizontal-btns {
    flex-direction: row !important;
    justify-content: center !important;
  }
  .founders-horizontal-btn,
  .founders-horizontal-s-btn {
    width: auto !important;
  }
}

.founders-vertical-container {
  /* width: 301px;
  height: 342.787px; */
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 24px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;

  padding-top: 29px;
  padding-inline: 14px;
  padding-bottom: 55px;

  border: 1px solid rgba(226, 211, 255, 0.19);
}

.Ilyas {
  border-radius: 24px;
  object-fit: cover;
}

.Aibar {
  border-radius: 24px;
}

.founders-icon-wrapper {
  /* height: 65px; */
  display: flex;
  align-items: flex-start;
  gap: 24px;
  /* margin-bottom: 25px; */
}

.alex {
  position: relative;
}

.alex-elipse {
  position: absolute;
  left: -160%;
}

.founders-text-block,
.founders-icon-wrapper div {
  text-align: left;
}

.founders-text-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.founders-text-block h3 {
  margin: 0 0 2px 0;
}

.founders-role {
  margin: 0;
  color: rgba(244, 239, 239, 0.7);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.founders-description {
  text-align: left;
  margin: 0;
  margin-top: 12px;
}

.founders-vertical-container h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.founders-icon-wrapper p {
  color: rgba(244, 239, 239, 0.7);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.founders-vertical-container p {
  color: rgba(244, 239, 239, 0.7);
  font-size: 15px;
  font-style: normal;
  font-weight: 200;
  line-height: 140%;
  text-align: left;
}

.founders-description span {
  text-transform: lowercase;
  font-weight: 400;
}

.founders-horizontal-container {
  background: rgba(226, 211, 255, 0.19);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 211, 255, 0.19);
  border-radius: 27px;

  display: flex;
  flex-direction: column;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: -138px;
  padding-top: 20px;
  padding-bottom: 53px;
  grid-column: 1 / -1;
  width: 100%;
}

.founders-horizontal-container h1 {
  margin-top: 29px;
  margin-bottom: 13px;
  font-size: 40px;
  font-style: normal;
  font-weight: 450;
  line-height: 115%;
  color: #fff;
  text-align: center;
  letter-spacing: -1px;
}

.founders-horizontal-upon-description {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
}

.founder-horizontal-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 37px;
  padding-inline: 32px;
}

.founders-horizontal-btn {
  color: #fff;
  padding-inline: 33px;
  padding-block: 10px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(
    90deg,
    rgba(255, 45, 120, 0.7) 0%,
    rgba(155, 29, 255, 0.7) 100%
  );
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
  letter-spacing: 0.4px;
  cursor: pointer;
}

.founders-horizontal-btn:hover {
  filter: brightness(1.08);
  box-shadow:
    0 14px 32px rgba(155, 29, 255, 0.28),
    0 4px 4px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.founders-horizontal-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.founders-horizontal-s-btn {
  color: #fff;
  padding-inline: 20px;
  padding-block: 10px;
  border-radius: 12px;
  border: none;
  background: rgba(155, 29, 255, 0.2);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
  letter-spacing: 0.4px;
  cursor: pointer;
}

.founders-horizontal-s-btn:hover {
  filter: brightness(1.08);
  background: rgba(155, 29, 255, 0.38);
  box-shadow:
    0 12px 28px rgba(155, 29, 255, 0.22),
    0 4px 4px 0 rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.founders-horizontal-s-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .work-horizontal-description:hover,
  .founders-horizontal-btn:hover,
  .founders-horizontal-s-btn:hover {
    transform: none;
  }
}

/*---Tech Section---*/

.tech-section {
  margin-top: 159px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tech-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  color: #f4efef;
  text-align: center;
  letter-spacing: -1px;
}

.tech-under-title-description {
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
  margin-bottom: 29px;
}

.tech-underlist-title {
  color: #6b7280;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 12.054px; /* 120.542% */
  line-height: 12.054px; /* 120.542% */
  letter-spacing: 1.055px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tech-list-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  position: relative;
  /* Mask edges for a smooth fade-in/fade-out */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.tech-list-track {
  display: flex;
  width: max-content;
  animation: scrollX var(--animation-duration, 30s) linear infinite
    var(--animation-direction, normal);
}

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

.tech-list-group {
  display: flex;
  gap: 10px;
  padding-right: 10px; /* gap between groups */
}

.tech-list {
  display: flex;
  gap: 10px;
}

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

.tech-list li {
  display: flex;
  gap: 7px;
  padding-block: 8px;
  padding-inline: 11px;
  border-radius: 9.589px;
  border: 0.685px solid rgba(255, 255, 255, 0.07);
  background: #13151f;
}

.tech-wrapper-first {
  /* background: radial-gradient(70.71% 70.71% at 50% 50%, rgba(0, 229, 160, 0.08) 0%, rgba(0, 229, 160, 0.00) 70%); */
  border-radius: 5.479px;
  background: rgba(0, 180, 255, 0.1);
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tech-wrapper-second {
  border-radius: 5.479px;
  background: rgba(255, 120, 50, 0.1);
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tech-wrapper-third {
  border-radius: 5.479px;
  background: rgba(180, 100, 255, 0.1);
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tech-wrapper-fourth {
  border-radius: 5.479px;
  background: rgba(255, 80, 140, 0.1);
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.tech-wrapper-fifth {
  border-radius: 5.479px;
  background: rgba(50, 200, 150, 0.1);
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tech-wrapper-sixth {
  border-radius: 5.479px;
  background: rgba(255, 180, 0, 0.1);
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tech-wrapper-seventh {
  border-radius: 5.479px;
  background: rgba(0, 229, 160, 0.1);
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tech-wrapper-s-first {
  background: rgba(0, 100, 255, 0.1);
  border-radius: 5.479px;
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tech-wrapper-s-second {
  background: rgba(255, 60, 60, 0.1);
  border-radius: 5.479px;
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tech-wrapper-s-third {
  background: rgba(0, 229, 160, 0.1);
  border-radius: 5.479px;
  display: flex;
  width: 21.917px;
  height: 21.917px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.tech-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tech-text-wrapper h1 {
  font-size: 9px;
  font-weight: 600;
  line-height: normal;
  color: #f0f0f5;
  letter-spacing: 0.6px;
}

.tech-text-wrapper p {
  color: #6b7280;
  font-size: 6.849px;
  font-weight: 400;
  line-height: 10.958px; /* 160% */
}

.second-tech-list {
  margin-top: 43px;
}

.tech-s-list {
  display: flex;
  gap: 10px;
}

.tech-s-list li {
  display: flex;
  gap: 7px;
  padding-block: 8px;
  padding-inline: 11px;
  border-radius: 9.589px;
  border: 0.685px solid rgba(255, 255, 255, 0.07);
  background: #13151f;
}

.tech-cards {
  margin-top: 42px;
  border-radius: 15.45px;
  border: 0.772px solid rgba(255, 255, 255, 0.07);
  background: #13151f;
  display: flex;
  text-align: center;
}

@media (max-width: 768px) {
  .tech-section {
    padding-inline: 24px !important;
  }
}
@media (max-width: 640px) {
  .tech-cards {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }
  .tech-card-second {
    border-left: 0.772px solid rgba(255, 255, 255, 0.07) !important;
  }
  .tech-card-third {
    border-left: 0.772px solid rgba(255, 255, 255, 0.07) !important;
    border-right: none !important;
  }
  .tech-card-fourth {
    border-left: 0.772px solid rgba(255, 255, 255, 0.07) !important;
  }
  .tech-card-third,
  .tech-card-fourth {
    border-top: 0.772px solid rgba(255, 255, 255, 0.07) !important;
  }
}
@media (max-width: 480px) {
  .tech-section {
    padding-inline: 20px !important;
  }
}

.tech-card {
  padding-top: 20px;
  padding-bottom: 19px;
}

.tech-card-first {
  padding-left: 30px;
  padding-right: 25px;
}
.tech-card-second,
.tech-card-third {
  padding-inline: 25px;
}

.tech-card-fourth {
  padding-left: 25px;
  padding-right: 30px;
}

.tech-card h1 {
  color: #fff;
  font-size: 23.175px;
  font-weight: 500;
  line-height: 23.175px; /* 100% */
  letter-spacing: -0.464px;
}

.tech-card p {
  margin-top: 5px;
  color: #6b7280;
  font-size: 11.279px;
  font-weight: 400;
  line-height: 12.978px; /* 115.062% */
}

.tech-card-second {
  border-left: 0.772px solid rgba(255, 255, 255, 0.07);
}

.tech-card-second,
.tech-card-third {
  border-right: 0.772px solid rgba(255, 255, 255, 0.07);
  background: #13151f;
}

/* CLIENT SECTION */
.client-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 90px;
}

.client-description {
  position: relative;
  padding: 8px 48px;
  margin-inline: auto;
  border-radius: 24px;
  background: linear-gradient(90deg, #ff2d78 0%, #9b1dff 100%);
  box-shadow: 0 4px 4px 0 rgba(255, 255, 255, 0.25);
}

.client-description-elipse {
  position: absolute;
  bottom: -2000%;
  right: -5%;
  z-index: -1;
  pointer-events: none;
}

.client-description p {
  color: #f4efef;
  font-size: 18px;
  font-style: normal;
  font-weight: 450;
  line-height: normal;
  letter-spacing: 1px;
}

.client-title {
  margin-top: 19px;
  margin-bottom: 12px;
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  color: #f4efef;
  text-align: center;
  letter-spacing: -1px;
}

.client-under-title-description {
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
}

/*--CLIENT SECTION--*/

.client-f-container {
  margin-top: 37px;
}

.client-f-grid-layout {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.client-f-first-right-arrow
  .client-f-second-right-arrow
  .client-f-third-right-arrow {
  position: relative;
}

.first-f-client-arrow,
.second-f-client-arrow,
.third-f-client-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.first-f-client-arrow {
  left: 21.15%;
}
.second-f-client-arrow {
  left: 47.4%;
}
.third-f-client-arrow {
  left: 73.7%;
}

.client-f-vertical-container {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 29px;
  padding-bottom: 44px;
  padding-inline: 10px;

  border-radius: 14.542px;
  border: 1.212px solid rgba(255, 255, 255, 0.08);
  background: #18181f;
}

.client-f-right-tracker {
  position: relative;
}

.client-f-vertical-container h3 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #f0f0f5;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.6px;
}

.client-f-vertical-container p {
  font-style: normal;
  font-weight: 300;
  color: #9999b3;
  font-size: 13px;
  line-height: 24px;
}

.client-f-right-elipse {
  position: absolute;
  z-index: -1;
  right: -330%;
  top: -45%;
}
@media (max-width: 1102px) {
  .client-f-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .client-title,
  .crm-title {
    font-size: 30px;
  }
  .client-under-title-description,
  .crm-under-title-description {
    font-size: 16px;
  }
}
@media (max-width: 870px) {
  .client-f-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .client-title,
  .crm-title {
    font-size: 26px;
  }
  .client-under-title-description,
  .crm-under-title-description {
    font-size: 15px;
  }
}
@media (max-width: 660px) {
  .client-f-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .client-title,
  .crm-title {
    font-size: 21px;
  }
  .client-under-title-description,
  .crm-under-title-description {
    font-size: 14px;
  }
}
@media (max-width: 450px) {
  .client-f-container {
    border-radius: 14.542px;
    border: 1.212px solid rgba(255, 255, 255, 0.08);
    background: #18181f;
  }
  .client-title,
  .crm-title {
    font-size: 18px;
  }
  .client-under-title-description,
  .crm-under-title-description {
    font-size: 12px;
  }
  .client-f-grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .client-f-vertical-container {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 29px;
    padding-bottom: 29px;
    padding-inline: 6px;

    border-radius: 0;
    border: none;
    background: #18181f;
  }
  .client-f-vertical-container:nth-last-child(1) {
    border-left: 1.212px solid rgba(255, 255, 255, 0.08);
    border-top: 1.212px solid rgba(255, 255, 255, 0.08);
    border-bottom-right-radius: 14.542px;
  }
  .client-f-vertical-container:nth-last-child(2) {
    border-top: 1.212px solid rgba(255, 255, 255, 0.08);
    border-bottom-left-radius: 14.542px;
  }
  .client-f-vertical-container:nth-last-child(3) {
    border-left: 1.212px solid rgba(255, 255, 255, 0.08);
    border-top-right-radius: 14.542px;
  }
  .client-f-vertical-container:nth-last-child(4) {
    border-top-left-radius: 14.542px;
  }
}
@media (max-width: 400px) {
  .client-f-vertical-container {
    padding-top: 29px;
    padding-bottom: 29px;
    padding-inline: 0;
  }
}
/*---Form Section---*/

.form-section {
  margin-top: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  color: #f4efef;
  text-align: center;
  letter-spacing: -1px;
}

.form-under-title-description {
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
  margin-top: 14px;
  margin-bottom: 29px;
}

.form-horizontal-container {
  position: relative;
  background: rgba(226, 211, 255, 0.19);
  border: 1px solid rgba(226, 211, 255, 0.19);
  border-radius: 27px;
  padding-inline: 40px; /* changed from 74px to be more flexible */
  padding-top: 57px;
  padding-bottom: 31px; /* added bottom padding to balance */
  width: 100%;
  max-width: 1161px; /* based on 2*493px + gap 19px + 2*40px padding */
  margin-inline: auto;
  box-sizing: border-box;
  /* Размытие на отдельном слое: иначе в Chrome указатель мыши пропадает над полями ввода */
}

.form-horizontal-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
}

.form-horizontal-container > * {
  position: relative;
  z-index: 1;
}

.fields {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 12px;
  width: 100%;
  max-width: 1005px;
  margin-inline: auto;
  flex-wrap: wrap; /* allows inputs to stack on smaller screens */
}

.task-field h1,
.name-field h1,
.email-phone-field h1 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  font-weight: 200;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  margin-left: 10px;
}

.name-field,
.email-phone-field {
  width: 100%;
  max-width: 493px;
  flex: 1 1 300px;
}

.name-field input,
.email-phone-field input {
  border-radius: 18px;
  border: none;
  background: rgba(226, 211, 255, 0.45);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px; /* added small padding for aesthetics */
  width: 100%;
  max-width: 493px;
  box-sizing: border-box;
  color: black;
  cursor: text;
  caret-color: #111111;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.name-field input::placeholder,
.email-phone-field input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.name-field input:-webkit-autofill,
.email-phone-field input:-webkit-autofill {
  -webkit-text-fill-color: #111111;
  caret-color: #111111;
}

.task-field {
  margin-top: 48px;
  text-align: left;
  width: 100%;
  max-width: 1013px; /* Matches 493 + 19 + 493 */
  margin-inline: auto;
}

.task-field textarea {
  background: rgba(226, 211, 255, 0.45);
  border-radius: 18px;
  border: none;
  width: 100%;
  max-width: 1013px;
  min-height: 128px;
  color: black;
  padding-left: 20px;
  padding-block: 10px;
  box-sizing: border-box;
  resize: none;
  overflow: hidden;
  cursor: text;
  caret-color: #111111;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.task-field textarea:-webkit-autofill {
  -webkit-text-fill-color: #111111;
  caret-color: #111111;
}

.form-horizontal-btn {
  padding-inline: 33px;
  padding-block: 16px;
  border-radius: 18px;
  border: none;
  width: 100%;
  max-width: 1005px; /* align with textarea row */
  display: block;
  margin-inline: auto;
  box-sizing: border-box; /* ensure padding doesn't cause overflow */
  margin-top: 77px;
  /* background: linear-gradient(90deg, rgba(255, 45, 120, 0.70) 0%, rgba(155, 29, 255, 0.70) 100%); */
  /* background: linear-gradient(90deg, rgba(155, 29, 255, 0.70) 0%, rgba(255, 45, 120, 0.70) 100%); */
  background: linear-gradient(-90deg, #ff2d78 0%, #9b1dff 100%);

  letter-spacing: 0.4px;

  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 0.6px;
}

.form-horizontal-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 18px 38px rgba(255, 45, 120, 0.18);
}

.form-under-btn-description {
  color: rgba(244, 239, 239, 0.7);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 200;
  line-height: normal;
  letter-spacing: 0.35px;
  margin-top: 14px;
}

@media (min-width: 1101px) {
  .form-horizontal-container {
    width: calc(100% - 80px) !important;
    max-width: 1161px !important;
    margin-inline: auto !important;
    padding-top: 36px !important;
    padding-bottom: 24px !important;
  }
  .form-horizontal-container .task-field {
    margin-top: 28px !important;
  }

  .form-horizontal-container .fields {
    gap: 12px !important;
  }
  .form-horizontal-container .name-field h1,
  .form-horizontal-container .email-phone-field h1 {
    margin-bottom: 6px !important;
  }
  .form-horizontal-container .name-field input,
  .form-horizontal-container .email-phone-field input {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .form-horizontal-btn {
    margin-top: 10px !important;
  }
  .form-horizontal-container {
    width: calc(100% - 80px) !important;
    max-width: calc(100% - 80px) !important;
    margin-inline: auto !important;
  }
  .form-horizontal-container .fields {
    flex-direction: row !important;
    max-width: 100% !important;
  }
  .form-horizontal-container .name-field,
  .form-horizontal-container .email-phone-field {
    max-width: none !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
  }
  .form-horizontal-container .name-field input,
  .form-horizontal-container .email-phone-field input {
    max-width: none !important;
  }
  .form-horizontal-container .task-field,
  .form-horizontal-container .task-field textarea,
  .form-horizontal-container .form-horizontal-btn {
    max-width: 100% !important;
  }
}

@media (max-width: 1024px) {
  .form-horizontal-container .fields {
    max-width: 100% !important;
  }
  .form-horizontal-container .task-field,
  .form-horizontal-container .task-field textarea {
    max-width: 100% !important;
  }
  .form-horizontal-container .form-horizontal-btn {
    max-width: 100% !important;
  }
  .form-horizontal-container .name-field input,
  .form-horizontal-container .email-phone-field input {
    max-width: 100% !important;
  }
}
@media (max-width: 480px) {
  .form-horizontal-btn {
    margin-top: 10px !important;
  }
  .form-horizontal-container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-inline: 16px !important;
    padding-top: 24px !important;
    padding-bottom: 20px !important;
  }
  .form-horizontal-container .fields {
    gap: 8px !important;
  }
  .form-horizontal-container .task-field {
    margin-top: 16px !important;
  }
  .form-horizontal-container .name-field h1,
  .form-horizontal-container .email-phone-field h1,
  .form-horizontal-container .task-field h1 {
    margin-bottom: 4px !important;
  }
  .form-horizontal-container .name-field,
  .form-horizontal-container .email-phone-field {
    min-width: 0 !important;
    flex: none !important;
  }
}
@media (max-width: 768px) {
  .form-horizontal-btn {
    margin-top: 10px !important;
  }
  .form-horizontal-container {
    padding-inline: 24px !important;
    padding-top: 32px !important;
    padding-bottom: 24px !important;
  }
  .form-horizontal-container .fields {
    gap: 10px !important;
  }
  .form-horizontal-container .task-field {
    margin-top: 20px !important;
  }
  .form-horizontal-container .name-field,
  .form-horizontal-container .email-phone-field {
    margin: 0 !important;
    min-width: 0 !important;
    flex: none !important;
  }
  .form-horizontal-container .name-field h1,
  .form-horizontal-container .email-phone-field h1,
  .form-horizontal-container .task-field h1 {
    margin-bottom: 4px !important;
  }
}

/*---Footer---*/

footer {
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 82px;
  padding-top: 85px;
  padding-bottom: 145px;
  padding-inline: 40px;
  gap: 122px;
}

.footer-left-container {
  display: flex;
  flex-direction: column;
}

.footer-left-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 19px;
}

.footer-left-list {
  margin-top: 19px;
  display: flex;
  gap: 44px;
}

.footer-right-container {
  display: flex;
  justify-content: center;
  gap: 82px;
}

.footer-right-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.footer-right-f-item p {
  color: #cfd1d4;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 11px;
}

.footer-nav-link {
  text-decoration: none;
  text-align: left;
  display: inline-block;
}

.footer-nav-link p {
  text-align: left;
  transition: color 0.2s ease;
}

.footer-nav-link:hover p {
  color: rgba(255, 255, 255, 0.6); /* темнее чем базовые 0.8 */
}

.footer-right-list li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 300;
  line-height: normal;
}

.footer-enter p {
  line-height: 19px;
}

/* WORK-SECTION: cascade fix — ноутбук 4/3 колонки (без изменений), планшет 2, телефон 1 */
/* Ноутбук (>1024px): базовые стили — не трогаем */
@media (max-width: 1024px) {
  .work-grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .work-second-grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .work-horizontal-container h1 {
    font-size: 22px !important;
  }
  .work-horizontal-upon-description {
    font-size: 14px !important;
  }
  .work-horizontal-description,
  .work-horizontal-description p {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }
}
@media (max-width: 640px) {
  .work-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .work-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    max-width: 100% !important;
  }
  .work-vertical-container {
    max-width: 100% !important;
  }
  .work-second-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .work-second-vertical-container {
    max-width: 100% !important;
  }
  .work-vertical-container {
    padding-block: 20px;
    padding-inline: 5px;
  }
  .work-vertical-container h3 {
    margin-bottom: 20px;
    margin-top: -8px;
  }

  .work-title {
    font-size: 26px !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 8px !important;
  }
  .work-under-title-description {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
  /* CTA блок: заголовок, описание, кнопка */
  .work-horizontal-container h1 {
    font-size: 18px !important;
    margin-top: 16px !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
  }
  .work-horizontal-upon-description {
    font-size: 12px !important;
    line-height: 1.4 !important;
  }
  .work-horizontal-description {
    font-size: 13px !important;
    padding: 10px 16px !important;
    line-height: 1.35 !important;
    text-align: center !important;
  }
  .work-horizontal-description p {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
}
@media (max-width: 480px) {
  .work-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .work-grid-layout {
    gap: 10px !important;
  }
  .work-second-grid-layout {
    gap: 8px !important;
  }
  .work-vertical-container {
    padding-block: 20px;
    padding-inline: 15px;
  }
  .work-title {
    font-size: 22px !important;
  }
  .work-under-title-description {
    font-size: 14px !important;
  }
  .work-horizontal-container h1 {
    font-size: 16px !important;
  }
  .work-horizontal-upon-description {
    font-size: 11px !important;
  }
  .work-horizontal-description,
  .work-horizontal-description p {
    font-size: 12px !important;
    padding: 9px 14px !important;
  }
}
@media (max-width: 380px) {
  .work-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .work-grid-layout {
    gap: 8px !important;
  }
  .work-second-grid-layout {
    gap: 6px !important;
  }
  .work-horizontal-container h1 {
    font-size: 15px !important;
  }
  .work-horizontal-upon-description {
    font-size: 11px !important;
  }
  .work-horizontal-description,
  .work-horizontal-description p {
    font-size: 11px !important;
    padding: 8px 12px !important;
  }
}
@media (max-width: 320px) {
  .work-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .work-grid-layout {
    gap: 8px !important;
  }
  .work-second-grid-layout {
    gap: 6px !important;
  }
  .work-horizontal-container h1 {
    font-size: 14px !important;
  }
  .work-horizontal-upon-description {
    font-size: 10px !important;
  }
  .work-horizontal-description,
  .work-horizontal-description p {
    font-size: 11px !important;
    padding: 8px 10px !important;
  }
}

/* TARIEF-SECTION: cascade fix — ноутбук 3 колонки (без изменений), планшет 2, телефон 1 */
@media (max-width: 1024px) {
  .tarief-grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
}
@media (max-width: 640px) {
  .tarief-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .tarief-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .tarief-vertical-container.middle {
    margin-top: 24px !important;
  }
}
@media (max-width: 480px) {
  .tarief-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .tarief-grid-layout {
    gap: 16px !important;
  }
}
@media (max-width: 380px) {
  .tarief-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .tarief-grid-layout {
    gap: 14px !important;
  }
}
@media (max-width: 320px) {
  .tarief-section {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .tarief-grid-layout {
    gap: 12px !important;
  }
}

/* ADVANTAGE-SECTION: cascade fix — ноутбук 2 колонки (без изменений), ≤900px в одну колонку */
@media (max-width: 900px) {
  .advantage-section {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch !important;
    align-items: stretch !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .advantage-title,
  .advantage-under-title-description {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }
  .advantage-under-title-description {
    padding-inline: 8px !important;
    overflow-wrap: break-word !important;
  }
  .advantage-first-grid-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-width: 0 !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
  }
  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    max-width: 100% !important;
  }
  .advantage-text-wrapper {
    min-width: 0 !important;
  }
  /* Логотипы во 2-й карточке — flex-wrap на мобильных */
  .advantage-s-vertical-container .advantage-list {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    margin-left: 0 !important;
    gap: 12px !important;
  }
  .advantage-s-vertical-container .advantage-list li {
    flex-shrink: 0 !important;
  }
  .advantage-s-vertical-container .advantage-list img {
    max-width: 100% !important;
    height: auto !important;
  }
  .advantage-s-vertical-container .gif-img {
    max-width: 140px !important;
    height: auto !important;
  }
  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding-top: 20px !important;
    padding-bottom: 28px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    gap: 14px !important;
  }
}
@media (max-width: 640px) {
  .advantage-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .advantage-first-grid-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-width: 0 !important;
  }
  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p {
    overflow-wrap: break-word !important;
  }
  .advantage-s-vertical-container .advantage-list {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .advantage-s-vertical-container .gif-img {
    max-width: 120px !important;
  }
  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding-top: 18px !important;
    padding-bottom: 24px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    gap: 12px !important;
  }
}
@media (max-width: 480px) {
  .advantage-section {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .advantage-s-vertical-container .advantage-list {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .advantage-s-vertical-container .gif-img {
    max-width: 100px !important;
  }
  .advantage-first-grid-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-width: 0 !important;
  }
  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p {
    overflow-wrap: break-word !important;
  }
  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding-top: 16px !important;
    padding-bottom: 22px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 380px) {
  .advantage-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .advantage-s-vertical-container .advantage-list {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .advantage-s-vertical-container .gif-img {
    max-width: 90px !important;
  }
  .advantage-first-grid-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-width: 0 !important;
  }
  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p {
    overflow-wrap: break-word !important;
  }
  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding-top: 14px !important;
    padding-bottom: 18px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
}
@media (max-width: 320px) {
  .advantage-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .advantage-s-vertical-container .advantage-list {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .advantage-s-vertical-container .gif-img {
    max-width: 80px !important;
  }
  .advantage-first-grid-layout {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container {
    margin-left: 0 !important;
    margin-right: 0 !important;
    min-width: 0 !important;
  }
  .advantage-f-vertical-container p,
  .advantage-s-vertical-container p {
    overflow-wrap: break-word !important;
  }
  .advantage-first-grid-layout,
  .advantage-second-grid-layout {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .advantage-f-vertical-container,
  .advantage-s-vertical-container,
  .advantage-t-vertical-container,
  .advantage-fourth-vertical-container {
    padding-top: 12px !important;
    padding-bottom: 16px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* FOUNDERS-SECTION: cascade fix — 1 колонка только с 768px, НЕ ТРОГАЕМ founders-horizontal-container */
@media (max-width: 900px) {
  .founders-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
    margin-top: 60px !important;
  }
  .founders-title {
    font-size: 26px !important;
  }
  .founders-under-title-description {
    font-size: 15px !important;
    margin-bottom: 32px !important;
  }
}
@media (max-width: 640px) {
  .founders-section {
    padding-left: 24px !important;
    padding-right: 24px !important;
    margin-top: 48px !important;
  }
  .founders-title {
    font-size: 22px !important;
  }
  .founders-under-title-description {
    font-size: 14px !important;
    margin-bottom: 28px !important;
  }
  .founders-grid-layout {
    column-gap: 14px !important;
  }
  .founders-vertical-container {
    padding: 18px 18px 24px !important;
  }
  .founders-vertical-container h3 {
    font-size: 15px !important;
  }
  .founders-vertical-container p {
    font-size: 13px !important;
  }
}
@media (max-width: 480px) {
  .founders-section {
    padding-left: 22px !important;
    padding-right: 22px !important;
    margin-top: 40px !important;
  }
  .founder-horizontal-btns {
    flex-direction: column !important;
    width: 100% !important;
  }
  .founders-horizontal-btn,
  .founders-horizontal-s-btn {
    width: 100% !important;
  }
  .founders-title {
    font-size: 20px !important;
  }
  .founders-under-title-description {
    font-size: 13px !important;
    margin-bottom: 24px !important;
  }
  .founders-grid-layout {
    column-gap: 12px !important;
  }
  /* Очень маленький режим: фото и текст в колонку */
  .founders-vertical-container {
    padding: 16px 16px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .founders-icon-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
    text-align: center !important;
  }
  .founders-icon-wrapper img {
    order: 1 !important;
  }
  .founders-text-block {
    order: 2 !important;
    align-items: center !important;
    text-align: center !important;
  }
  .founders-text-block .founders-description {
    margin-top: 4px !important;
    text-align: center !important;
  }
  .founders-vertical-container h3 {
    font-size: 14px !important;
  }
  .founders-vertical-container p {
    font-size: 12px !important;
  }
}
@media (max-width: 380px) {
  .founders-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-top: 36px !important;
  }
  .founders-title {
    font-size: 18px !important;
  }
  .founders-under-title-description {
    font-size: 12px !important;
    margin-bottom: 20px !important;
  }
  .founders-grid-layout {
    column-gap: 10px !important;
  }
  .founders-vertical-container {
    padding: 14px 14px 20px !important;
  }
  .founders-vertical-container h3 {
    font-size: 14px !important;
  }
  .founders-vertical-container p {
    font-size: 11px !important;
  }
}
@media (max-width: 320px) {
  .founders-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
    margin-top: 32px !important;
  }
  .founders-title {
    font-size: 16px !important;
  }
  .founders-under-title-description {
    font-size: 11px !important;
    margin-bottom: 18px !important;
  }
  .founders-grid-layout {
    column-gap: 8px !important;
  }
  .founders-vertical-container {
    padding: 12px 12px 18px !important;
  }
}

/* ===== GLOBAL SECTION HEADING FONT SIZES — TABLET <=768px ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 26px !important;
    letter-spacing: -0.5px !important;
  }
  .hero-description {
    font-size: 15px !important;
    line-height: 1.45 !important;
  }
  .problem-title {
    font-size: 26px !important;
    line-height: 1.25 !important;
    margin-block: 20px !important;
  }
  .tarief-title {
    font-size: 26px !important;
    letter-spacing: -0.5px !important;
  }
  .tarief-under-title-description {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
  .advantage-title {
    font-size: 26px !important;
    letter-spacing: -0.5px !important;
  }
  .advantage-under-title-description {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
  .tech-title {
    font-size: 26px !important;
    letter-spacing: -0.5px !important;
  }
  .tech-under-title-description {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
  .form-title {
    font-size: 26px !important;
    letter-spacing: -0.5px !important;
  }
  .form-under-title-description {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
  .founders-title {
    font-size: 26px !important;
    letter-spacing: -0.5px !important;
  }
}

/* ===== GLOBAL SECTION HEADING FONT SIZES — PHONE <=480px ===== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 22px !important;
  }
  .hero-description {
    font-size: 14px !important;
  }
  .problem-title {
    font-size: 22px !important;
  }
  .tarief-title {
    font-size: 22px !important;
  }
  .tarief-under-title-description {
    font-size: 14px !important;
  }
  .advantage-title {
    font-size: 22px !important;
  }
  .advantage-under-title-description {
    font-size: 14px !important;
  }
  .tech-title {
    font-size: 22px !important;
  }
  .tech-under-title-description {
    font-size: 14px !important;
  }
  .form-title {
    font-size: 22px !important;
  }
  .form-under-title-description {
    font-size: 14px !important;
  }
  .founders-title {
    font-size: 22px !important;
  }
}

/* ===== SOLUTION + FOUNDERS CTA HEADING FONT SIZES — TABLET <=768px ===== */
@media (max-width: 768px) {
  .solution-title {
    font-size: 26px !important;
    letter-spacing: -0.5px !important;
  }
  .solution-under-title-description {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
  .founders-horizontal-container h1 {
    font-size: 26px !important;
    letter-spacing: -0.5px !important;
  }
  .founders-horizontal-upon-description {
    font-size: 15px !important;
    line-height: 1.4 !important;
  }
}

/* ===== SOLUTION + FOUNDERS CTA HEADING FONT SIZES — PHONE <=480px ===== */
@media (max-width: 480px) {
  .solution-title {
    font-size: 22px !important;
  }
  .solution-under-title-description {
    font-size: 14px !important;
  }
  .founders-horizontal-container h1 {
    font-size: 22px !important;
  }
  .founders-horizontal-upon-description {
    font-size: 14px !important;
  }
}

/* ===== WORK ADDITIONAL DESCRIPTION — TABLET <=768px ===== */
@media (max-width: 768px) {
  .work-under-title-additional-description {
    width: auto !important;
    max-width: 90% !important;
    height: auto !important;
    padding: 12px !important;
    margin-inline: auto !important;
  }
  .work-under-title-additional-description p,
  .work-under-title-additional-description span {
    font-size: 15px !important;
    text-align: center !important;
  }
}

/* ===== WORK ADDITIONAL DESCRIPTION — PHONE <=480px ===== */
@media (max-width: 480px) {
  .work-under-title-additional-description {
    max-width: 100% !important;
  }
  .work-under-title-additional-description p,
  .work-under-title-additional-description span {
    font-size: 13px !important;
  }
}
