/* CTA Section Styles - Minimal & Timeless */
.cta {
    position: relative;
    padding: 120px 0;
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-content {
    text-align: center;
}

.cta-logo {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-logo-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 0;
}

.cta-title {
    font-size: 48px;
    font-weight: 300;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.btn-lg {
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.btn-lg i {
    margin-right: 8px;
}

@media (max-width: 968px) {
    .cta {
        padding: 80px 0;
    }
    
    .cta-logo-image {
        width: 100px;
        height: 100px;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .cta {
        padding: 60px 0;
    }
    
    .cta-container {
        padding: 0 24px;
    }
    
    .cta-logo {
        margin-bottom: 24px;
    }
    
    .cta-logo-image {
        width: 80px;
        height: 80px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
}

