.professor-enterprise {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a237e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.professor-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-bg.svg') center/cover;
    opacity: 0.05;
    pointer-events: none;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Professor Profile Styles */
.professor-profile {
    margin-bottom: var(--spacing-lg);
    perspective: 1000px;
}

.profile-content {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: var(--spacing-md);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.profile-content:hover {
    transform: translateY(-5px) rotateX(2deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.profile-image-wrapper {
    flex-shrink: 0;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.4s ease;
    width: 320px;
}

.profile-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.profile-photo {
    width: 100%;
    height: 400px;
    border-radius: 24px;
    object-fit: cover;
    object-position: center top;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    filter: brightness(1.05) contrast(1.05);
}

.profile-content:hover .profile-photo {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    filter: brightness(1.1) contrast(1.1);
}

.profile-badges {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--spacing-md);
    white-space: nowrap;
    z-index: 2;
}

.profile-badge {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-badge:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, var(--accent), #7c4dff);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.profile-badge i {
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px;
    border-radius: 50%;
}

.profile-info {
    flex: 1;
}

.profile-header {
    margin-bottom: var(--spacing-md);
    position: relative;
}

.profile-info h2 {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.profile-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: var(--spacing-md);
}

/* Professor Logos Carousel */
.professor-logos-carousel {
    position: relative;
    width: 100%;
    padding: 0 40px;
    margin-top: var(--spacing-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.professor-logos-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
    transition: transform 0.3s ease-in-out;
    width: fit-content;
}

.professor-logos-container .company-logo {
    width: 140px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.professor-logos-container .company-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    background: rgba(255, 255, 255, 0.1);
}

.professor-logos-carousel .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.professor-logos-carousel .carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.professor-logos-carousel .carousel-nav.prev {
    left: 10px;
}

.professor-logos-carousel .carousel-nav.next {
    right: 10px;
}

/* Enterprise Solutions Styles */
.enterprise-solutions {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: var(--spacing-lg);
    color: white;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-lg);
}

.enterprise-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    position: relative;
}

.enterprise-header h2 {
    color: white;
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.enterprise-badge {
    background: linear-gradient(45deg, var(--accent), #7c4dff);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.enterprise-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.enterprise-badge i {
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px;
    border-radius: 50%;
}

.enterprise-subtitle {
    color: var(--text-secondary);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.enterprise-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.enterprise-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
}

.enterprise-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.card-features li i {
    color: var(--accent-success);
    font-size: 1rem;
}

.enterprise-cta {
    text-align: center;
    padding-top: var(--spacing-md);
}

.btn-enterprise {
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-enterprise:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, var(--accent), #7c4dff);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-enterprise i {
    font-size: 1.2rem;
}

/* Results Section */
.results-section {
    padding: var(--spacing-lg) 0;
    text-align: center;
    position: relative;
}

.results-header {
    margin-bottom: var(--spacing-lg);
}

.results-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin: 0 auto;
    max-width: 1200px;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: var(--spacing-md);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: var(--spacing-sm);
}

.result-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .enterprise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .enterprise-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-info h2 {
        font-size: 2.4rem;
    }
    
    .profile-image-wrapper {
        width: 280px;
    }
    
    .profile-photo {
        height: 350px;
    }

    .professor-logos-container .company-logo {
        width: 120px;
        height: 60px;
    }
}

@media (max-width: 992px) {
    .profile-content {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-lg);
    }

    .profile-info h2 {
        text-align: center;
        font-size: 2.2rem;
    }

    .profile-subtitle {
        margin: 0 auto;
    }
    
    .profile-image-wrapper {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .profile-photo {
        height: 400px;
    }
    
    .professor-logos-container .company-logo {
        width: 110px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .professor-enterprise {
        padding: var(--spacing-md) 0;
    }

    .profile-content {
        padding: var(--spacing-sm);
    }

    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .enterprise-card {
        padding: var(--spacing-md);
    }

    .card-icon {
        font-size: 1.75rem;
    }

    .enterprise-card h3 {
        font-size: 1.2rem;
    }

    .card-features li {
        font-size: 0.9rem;
    }

    .professor-logos-carousel {
        margin-top: var(--spacing-sm);
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-md);
    }

    .results-header h2 {
        font-size: 2rem;
    }

    .profile-photo {
        height: 350px;
    }

    .profile-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .professor-logos-container .company-logo {
        width: 100px;
        height: 50px;
        padding: 6px;
    }
    
    .professor-logos-carousel {
        padding: 0 35px;
    }

    .enterprise-header h2 {
        font-size: 1.8rem;
    }

    .enterprise-solutions {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .profile-photo {
        height: 300px;
    }

    .profile-info h2 {
        font-size: 1.8rem;
    }

    .profile-subtitle {
        font-size: 1.1rem;
    }
    
    .professor-logos-container .company-logo {
        width: 90px;
        height: 45px;
        padding: 4px;
    }
    
    .profile-badges {
        position: relative;
        bottom: 0;
        margin-top: var(--spacing-md);
    }

    .enterprise-cta {
        padding-top: var(--spacing-xs);
    }

    .btn-enterprise {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

    .enterprise-header h2 {
        font-size: 1.5rem;
    }

    .profile-header {
        margin-bottom: var(--spacing-sm);
    }

    .results-header h2 {
        font-size: 1.8rem;
    }
}

/* Tool Cards Responsiveness */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.tool-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    transition: var(--transition-normal);
}

.tool-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.tool-card img {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-md);
}

.tool-card h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.tool-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }

    .tool-card {
        padding: var(--spacing-md);
    }

    .tool-card img {
        width: 48px;
        height: 48px;
    }

    .tool-card h4 {
        font-size: 1.1rem;
    }

    .tool-card p {
        font-size: 0.9rem;
    }
} 