/* Who We Are Hero Section - Exactly matches Contact Page Styling */

.neural-gradient-text {
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Section - 100vh */
.who-we-are-hero {
    padding-top: calc(var(--header-height, 75px) + 2rem);
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.who-we-are-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/NP-About-Hero2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 0;
}

.who-we-are-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.3) 50%, 
        rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.who-we-are-hero .container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 5vw;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    text-align: left;
}

.hero-right-space {
    /* Empty space for visual balance */
}

/* CONTACT US label - small cyan text */
.hero-label {
    color: #74EEDD;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

/* Main heading - matches Contact page exactly */
.hero-heading {
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 24px;
}

.hero-heading.neural-h1 {
    color: #ffffff;
}

/* Decorative line under heading */
.hero-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
}

/* Orange tagline text */
.hero-tagline {
    color: #d97706;
    font-size: 1.25rem;
    margin-bottom: 24px;
}

/* Gray description paragraph */
.hero-description {
    color: #9ca3af;
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-heading {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }
}

@media (max-width: 768px) {
    .who-we-are-hero {
        min-height: 100vh;
        padding-top: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-heading {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-label {
        font-size: 12px;
    }
    
    .hero-right-space {
        display: none;
    }
}

@media (max-width: 480px) {
    .who-we-are-hero {
        min-height: 85vh;
    }
    
    .hero-heading {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
}