/* CTA Section Component Styles */

/* Base CTA Section */
.cta-section {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a1f35 0%, #0f1419 100%);
    background-image:
        url(../svg/homepage/Vector-blue-bottom-left.svg),
        url(../svg/homepage/Vector-green-top-right.svg);
    background-repeat: no-repeat, no-repeat;
    background-position:
        calc(0% - 0px) calc(100% + 20px),
        calc(100% - 0px) calc(0% - 40px);
}

.cta-section .container {
    max-width: 1016px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow:
        0px 2px 0px 0px #ffffff33 inset,
        0px 2px 8px 0px #00d6ff26,
        0px 0px 4px 0px #00d6ff3d;
    border-radius: 20px;
    padding: 60px;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    max-width: 640px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 24px;
    color: #a0aec0;
}

.cta-section .cta-buttons a {
    padding: 14px 32px;
}

/* CTA Content Wrapper */
.cta-section .cta-content-wrapper {
    max-width: 772px;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(153, 153, 153, 0.01) 100%
    );
    padding: 40px 24px;
    margin: 0 auto 32px;
    border-radius: 8px;
}

.cta-section .cta-content {
    max-width: 320px;
    margin: 0px auto;
    border-radius: 8px;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 2%;
    color: #a0aec0;
    text-align: left;
}

.cta-section .cta-content strong {
    color: #00d4ff;
    font-size: 18px;
    line-height: 20px;
}

.cta-section .content-text {
    margin-bottom: 16px;
    display: inline-flex;
}

.cta-section .content-text:first-of-type {
    margin-top: 24px;
}

.cta-section .content-text img {
    margin-right: 16px;
}

.cta-section .cta-tagline {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #a0aec0;
    opacity: 0.85;
}

/* Responsive Styles */
/* Note: padding responsive styles are in main.css (.section, .cta-section) */

@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .cta-section .container {
        padding: 30px 20px;
    }
}
