/* === TURING STYLE HERO SECTION === */
.hero.turing-hero {
    position: relative;
    min-height: 100vh;
    background-color: #0a0a0a;
    color: #fff;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to bottom */
}

/* Video Background */
.hero-video-wrapper {
    position: absolute;
    top: -20%; /* As per reference */
    left: 0;
    width: 100%;
    height: 140%; /* Compensate for top offset */
    z-index: 0;
    background-color: #111;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Slightly dim video for text readability */
}

/* Gradients */
.hero-gradient-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(74, 155, 142, 0.15), transparent, transparent); /* Adapted to Teal */
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.hero-gradient-overlay-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(74, 155, 142, 0.1), transparent, transparent); /* Adapted to Teal */
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

/* Content Layout */
.hero-content-turing {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 80px 60px; /* Padding bottom to lift off edge */
    flex-wrap: wrap;
    gap: 4rem;
}

/* Left Content */
.hero-left {
    max-width: 800px;
}

.hero-title-turing {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 6vw, 5rem); /* Responsive huge font */
    font-weight: 300; /* Light weight */
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: none;
}

.hero-subtitle-turing {
    font-size: 1.125rem; /* ~18px */
    line-height: 1.6;
    color: #b8b8b8;
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
}

/* Buttons */
.hero-buttons-turing {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.btn-turing-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-accent); /* Teal instead of Blue */
    color: #fff;
    padding: 0.9rem 1.8rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-turing-primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateX(2px);
    box-shadow: 0 10px 20px rgba(74, 155, 142, 0.3);
}

.btn-turing-secondary {
    background-color: transparent;
    color: #b8b8b8;
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
    text-decoration: none;
}

.btn-turing-secondary:hover {
    color: #fff;
}

/* Right Content (Stats/Nav) */
.hero-right {
    display: flex;
    gap: 5rem;
    align-items: flex-end;
}

.turing-stat {
    text-align: center;
}

.turing-stat-value {
    font-size: 4rem;
    font-weight: 300; /* Light */
    line-height: 1;
    margin-bottom: 0.75rem;
    color: #fff;
}

.turing-stat-label {
    font-size: 1rem;
    color: #b8b8b8;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content-turing {
        flex-direction: column;
        align-items: flex-start;
        padding: 120px 20px 60px 20px;
    }
    
    .hero-right {
        width: 100%;
        justify-content: flex-start;
        gap: 3rem;
    }
    
    .hero-video-wrapper {
        height: 100%;
        top: 0;
    }
}

@media (max-width: 600px) {
    .hero-title-turing {
        font-size: 3rem;
    }
    
    .hero-buttons-turing {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .btn-turing-primary, .btn-turing-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }
}
