/* Ultra-Premium About Section - 11/10 Design */

/* Premium Typography & Spacing */
#about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Subtle Premium Background Pattern */
#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(147, 51, 234, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(10,10,10,0.5) 100%);
    pointer-events: none;
}

/* Main Container with Refined Glass Effect */
.about-container {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.01) 50%,
        transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 80px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 20px 60px -10px rgba(0, 0, 0, 0.5),
        0 10px 20px -5px rgba(59, 130, 246, 0.05);
}

/* Premium Section Label */
.about-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.about-label i {
    margin-right: 8px;
    color: #60a5fa;
}

/* Ultra-Premium Headline */
.about-headline {
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.about-headline .accent {
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Subtitle */
.about-subtitle {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 800px;
}

/* Stats Section - Minimal & Elegant */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1px;
    margin: 64px 0;
}

.stat-card {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(10, 10, 10, 0.95) 100%);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:first-child {
    border-radius: 16px 0 0 16px;
}

.stat-card:last-child {
    border-radius: 0 16px 16px 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 100;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* Premium Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 80px;
}

/* Story Section */
.about-story {
    position: relative;
}

.story-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.story-text:first-of-type::first-letter {
    font-size: 72px;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 12px;
    margin-top: -8px;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Leadership Card - Ultra Premium */
.leadership-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.leader-avatar {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.leader-avatar::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.leader-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.leader-info .title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Values & Philosophy Section */
.about-values {
    position: relative;
}

.values-grid {
    display: grid;
    gap: 24px;
}

.value-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.02) 0%,
        transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #60a5fa 0%, #a78bfa 100%);
    opacity: 0.5;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #60a5fa;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.value-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* Call to Action - Ultra Premium */
.about-cta {
    margin-top: 80px;
    padding: 64px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%,
        rgba(147, 51, 234, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        padding: 60px 40px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .about-container {
        padding: 40px 24px;
    }
    
    .about-headline {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .about-subtitle {
        font-size: 18px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card:first-child,
    .stat-card:last-child {
        border-radius: 0;
    }
    
    .stat-card:first-child {
        border-radius: 16px 16px 0 0;
    }
    
    .stat-card:last-child {
        border-radius: 0 0 16px 16px;
    }
    
    .about-cta {
        padding: 40px 24px;
    }
}

/* Subtle Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.value-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.value-card:nth-child(even) {
    animation: float 6s ease-in-out 3s infinite;
}

/* Performance optimizations */
.about-container {
    will-change: auto;
    contain: layout style;
}

.stat-card,
.value-card,
.leadership-card {
    will-change: auto;
    contain: layout style paint;
}