/* --- Основные настройки и Шрифты --- */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #f9f9fb;
    color: #111;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Изогнутые линии */
.bg-line {
    position: absolute;
    border: 10px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.line-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-color: transparent transparent rgba(98, 85, 246, 0.1) transparent;
    animation: rotate 60s linear infinite;
}

.line-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border-color: transparent transparent rgba(129, 75, 246, 0.1) transparent;
    animation: rotate 80s linear infinite reverse;
}


/* БЕГУШАЯ СТРОКА */
.logos-marquee-section {
    padding: 60px 0;
    background-color: #f9f9fb;
    overflow: hidden;
    position: relative;
    width: 100vw; 
    margin-left: calc(-50vw + 50%); 
    left: 0;
}

.logos-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    align-items: center;
    animation: scroll 30s linear infinite;
    width: calc(250px * 20); 
    padding: 0 20px; 
}

.logo-item {
    flex: 0 0 auto;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.1rem;
    line-height: 1.18;
  }
  h2 {
    font-size: 1.35rem;
    line-height: 1.22;
  }
  h3 {
    font-size: 1.08rem;
    line-height: 1.19;
  }
  h4 {
    font-size: 1rem;
    line-height: 1.18;
  }
  .section-cta-animate .cta-text,
  .testimonials-title,
  .aiagent-promo-title {
    font-size: 1.12rem;
    line-height: 1.22;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.38rem;
    line-height: 1.16;
  }
  h2 {
    font-size: 1.08rem;
    line-height: 1.18;
  }
  h3 {
    font-size: 0.97rem;
    line-height: 1.17;
  }
  h4 {
    font-size: 0.93rem;
    line-height: 1.16;
  }
  .section-cta-animate .cta-text,
  .testimonials-title,
  .aiagent-promo-title {
    font-size: 1.01rem;
    line-height: 1.18;
  }
}
@media (max-width: 900px) {
  body {
    font-size: 15px;
  }
  .logos-marquee-section {
    padding: 24px 0;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  .site-background,
  .bg-line {
    display: none;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* YOUR GROWTH STARTS HERE */
.section-cta-animate {
    position: relative;
    width: 100%;
    min-height: 120px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto 8px auto;
    z-index: 2;
  }
  .section-cta-animate .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }
  .section-cta-animate .cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #7c6af5, #f9ddff, #ffe4c5, #cec1ff, #dbe5ff, #7c6af5);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.01em;
    text-align: center;
    margin-bottom: 6px;
    animation: gradient-flow 4s linear infinite;
  }
  @keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  .section-cta-animate .cta-arrow {
    font-size: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: cta-arrow-bounce 1.6s infinite;
    margin-bottom: 0px;
    background: linear-gradient(90deg, #7c6af5, #f9ddff, #ffe4c5, #cec1ff, #dbe5ff, #7c6af5);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation-name: cta-arrow-bounce, gradient-flow;
    animation-duration: 1.6s, 4s;
    animation-iteration-count: infinite, infinite;
    animation-timing-function: cubic-bezier(0.4,0,0.2,1), linear;
  }
  @keyframes arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(18px); }
  }
  .section-cta-animate .cta-waves,
  .section-cta-animate .cta-waves--top {
    position: absolute;
    left: 0; right: 0;
    width: 100%; height: 60px;
    background: none;
    pointer-events: none;
  }