/* THE BLUEPRINT: The Technical Handshake (Final CTA) */

.void-cta-section {
    position: relative;
    background-color: #000000;
    padding: 160px 0; /* Massive vertical padding */
    width: 100%;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid transparent; 
}

/* The Glowing Gradient Line */
.void-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #00FFCC, #8A2BE2, #FF4500);
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.5), 0 0 20px rgba(138, 43, 226, 0.3);
    z-index: 1;
}

.void-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.void-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(48px, 5vw, 80px);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.void-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 48px;
    font-weight: 300;
}

.void-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Primary Button: Book Technical Scoping */
.btn-void-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #00FFCC;
    color: #000000;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 32px;
    border: none;
    border-radius: 0; /* Sharp corners */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-void-primary:hover {
    background-color: #00CCAA; /* Slightly darker teal */
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.4);
}

/* Secondary Button: View Sample Datasets */
.btn-void-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #FFFFFF;
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 17px 31px; /* 1px less for border */
    border: 1px solid #FFFFFF;
    border-radius: 0; /* Sharp corners */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-void-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .void-cta-section {
        padding: 100px 0;
    }
    
    .void-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .btn-void-primary, .btn-void-secondary {
        width: 100%;
    }
}