/* Final CTA Section - соответствует React версии */
.final-cta {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

/* Background */
.final-cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.final-cta-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background: #0d58c6;
}

.final-cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: #0d58c6;
}

/* Content Container */
.final-cta-container {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.final-cta-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Text */
.final-cta-text {
    margin-bottom: 2rem;
}

.final-cta-title {
    font-size: 2.5rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: rgb(191, 219, 254);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}


/* Buttons */
.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.final-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 300ms ease;
    text-decoration: none;
    overflow: hidden;
    min-width: 300px;
}

.final-cta-button--primary {
    background: white;
    color: rgb(37, 99, 235);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.final-cta-button--primary:hover {
    background: rgb(239, 246, 255);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.final-cta-button--outline {
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(4px);
}

.final-cta-button--outline:hover {
    background: white;
    color: rgb(37, 99, 235);
}

.final-cta-button-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}




/* Decorative Elements */
.final-cta-decorative {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.final-cta-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.final-cta-circle--1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
}

.final-cta-circle--2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 4rem;
    height: 4rem;
    animation-delay: 1s;
}

.final-cta-circle--3 {
    top: 50%;
    left: 5rem;
    width: 3rem;
    height: 3rem;
    animation-delay: 2s;
}

/* Animated Particles */
.final-cta-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.final-cta-particle {
    position: absolute;
    border-radius: 50%;
    animation: bounce 3s ease-in-out infinite;
}

.final-cta-particle--1 {
    top: 25%;
    left: 25%;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.3);
    animation-duration: 3s;
}

.final-cta-particle--2 {
    top: 75%;
    left: 75%;
    width: 0.25rem;
    height: 0.25rem;
    background: rgba(147, 197, 253, 0.5);
    animation-delay: 1s;
    animation-duration: 4s;
}

.final-cta-particle--3 {
    top: 50%;
    right: 25%;
    width: 0.375rem;
    height: 0.375rem;
    background: rgba(196, 181, 253, 0.5);
    animation-delay: 2s;
    animation-duration: 3.5s;
}

.final-cta-particle--4 {
    bottom: 25%;
    left: 33%;
    width: 0.25rem;
    height: 0.25rem;
    background: rgba(165, 180, 252, 0.5);
    animation-delay: 0.5s;
    animation-duration: 4.5s;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Responsive Design */
@media (min-width: 640px) {
    .final-cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
    
    .final-cta-button {
        min-width: auto;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        font-size: 3rem;
    }
    
    .final-cta-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .final-cta {
        padding: 3rem 0;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-subtitle {
        font-size: 1rem;
    }

         .final-cta-companies {
         gap: 1rem;
     }
 } 
