/* AgentSmart AI About Page Styles */

.main-content {
    padding: 120px 0 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.main-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.team-section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.team-member {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border-left: 6px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 201, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 201, 255, 0.2);
}

.member-photo {
    flex-shrink: 0;
}

.member-photo img {
    width: 180px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid var(--primary);
}

.member-placeholder {
    width: 180px;
    height: 240px;
    background: var(--ai-gradient);
    border-radius: 16px;
    border: 4px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.member-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.member-info h3 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.member-title {
    font-weight: 600;
    color: var(--primary);
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.member-highlight {
    background: var(--neural-gradient);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    margin: 1.5rem 0;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.member-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: slide 3s infinite;
}

@keyframes slide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.member-bio {
    color: var(--gray);
    line-height: 1.8;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--ai-gradient);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--neural-gradient);
    border-radius: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: white;
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .member-photo img,
    .member-placeholder {
        width: 150px;
        height: 200px;
        margin: 0 auto;
    }
}