/* ==========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================== */

/* About Hero */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 0 6rem;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 8rem 0 4rem;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content p {
        font-size: 1.1rem;
    }
}

/* Company Story */
.company-story {
    padding: 6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-visual {
    padding: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-box {
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.stat-box .stat-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 968px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-content h2 {
        font-size: 2rem;
    }
}

/* Mission & Vision */
.mission-vision {
    padding: 6rem 0;
    background: var(--bg-dark-secondary);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    padding: 3rem;
    text-align: center;
}

.mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* AI Approach */
.ai-approach {
    padding: 6rem 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.approach-card {
    padding: 2.5rem;
    position: relative;
}

.approach-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.approach-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Timeline */
.timeline-section {
    padding: 6rem 0;
    background: var(--bg-dark-secondary);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            var(--primary-blue),
            var(--primary-purple),
            var(--accent-pink));
    transform: translateX(-50%);
}

.timeline-item {
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    width: calc(50% - 2rem);
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 50%;
    top: 2rem;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.timeline-item:nth-child(odd)::before {
    right: -2.5rem;
}

.timeline-item:nth-child(even)::before {
    left: -2.5rem;
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        margin-left: 2rem !important;
        margin-right: 0 !important;
    }

    .timeline-item::before {
        left: -2.5rem !important;
        right: auto !important;
    }
}

/* Values */
.values-section {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2.5rem;
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Mobile Responsive Fixes */
@media (max-width: 576px) {
    .story-visual {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        /* Keep 2 columns but tighten spacing */
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem 1rem;
    }

    .stat-box .stat-number {
        font-size: 1.75rem;
    }

    .stat-box .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 380px) {
    .stats-grid {
        grid-template-columns: 1fr;
        /* Stack on very small devices */
    }
}