/* ===================================
   ABOUT PAGE STYLES - PREMIUM STARTUP LOOK
   =================================== */

:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #10B981 100%);
    --gradient-card: linear-gradient(145deg, #ffffff, #f0f0f0);
}

/* Hero Section Enhancement */
.page-header {
    background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    /* More spacing */
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.page-title {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    /* Larger */
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

/* Our Story */
.our-story {
    padding: var(--spacing-4xl) 0;
    position: relative;
}

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

.story-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.story-paragraph {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid transparent;
    transition: border-color 0.3s;
}

.story-paragraph:hover {
    border-left-color: var(--primary-blue);
}

/* Premium Stats Card */
.story-stats-card {
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.story-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.stat-big {
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.stat-big:hover {
    transform: translateY(-5px);
}

.stat-big-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-big-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision - Glassmorphism cards */
.mission-vision {
    padding: var(--spacing-4xl) 0;
    background: #f8fafc;
}

.mv-grid {
    gap: 2.5rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gray-50);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.mv-card:hover .mv-icon {
    background: var(--primary-blue);
    color: white;
    /* Only if icon is text/font based */
    transform: scale(1.1) rotate(5deg);
}

.mv-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Values Grid */
.values-grid {
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    border: 1px solid var(--gray-100);
    border-radius: 1.5rem;
    transition: all 0.3s;
    background: linear-gradient(180deg, white 0%, #fafafa 100%);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
    background: white;
}

.team-card {
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem 1.5rem;
    border-radius: 1.5rem;
    background: white;
    position: relative;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Premium Avatar */
.team-avatar {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: white;
    color: var(--gray-800);
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-primary);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

    .story-stats-card {
        flex-direction: row;
        justify-content: space-around;
        padding: 2rem;
    }

    .stat-big-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .story-stats-card {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}