/* About Page Styles */

.about-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.about-hero h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.about-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.story-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* What We Do Section */
.what-we-do-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.difference-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

.difference-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.difference-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

.difference-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.difference-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    border-left: 4px solid var(--secondary-teal);
    background: linear-gradient(to right, rgba(76, 201, 176, 0.05), transparent);
}

.value-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
}

/* Leadership Section */
.leadership-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.leader-card {
    text-align: center;
}

.leader-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.leader-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.leader-experience {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 0;
    background: white;
}

.philosophy-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content h2 {
    margin-bottom: 2rem;
}

.philosophy-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.philosophy-tagline {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 2rem 0 1rem;
}

.philosophy-promise {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-top: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Positioning Section */
.positioning-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.positioning-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.positioning-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.positioning-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* About CTA */
.about-cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.about-cta h2 {
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero .lead {
        font-size: 1.25rem;
    }
    
    .story-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .philosophy-promise {
        font-size: 2rem;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
    
    .leader-avatar {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}