.about-hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: var(--brand-mid);
    position: relative;
    overflow: hidden;
    color: var(--brand-white);
    text-align: left;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(var(--brand-black-rgb), 0.6) 0%, rgba(var(--brand-black-rgb), 0.2) 100%);
    z-index: 1;
}

.about-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 10s ease;
}

.about-hero:hover .about-hero-img {
    transform: scale(1.1);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    margin: 0;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.about-hero h1 {
    font-size: clamp(60px, 10vw, 100px);
    line-height: 1;
    margin-bottom: 20px;
}

.about-hero p {
    color: rgba(var(--brand-white-rgb), 0.8);
    max-width: 500px;
    margin: 0;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--brand-surface);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-text h2 {
    font-size: 48px;
    margin-bottom: 32px;
    line-height: 1.1;
}

.story-text p {
    font-size: 18px;
    color: var(--brand-muted);
    margin-bottom: 24px;
    line-height: 1.8;
}

.story-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: var(--brand-dark);
    color: var(--brand-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-item {
    padding: 40px;
    border: 1px solid rgba(var(--brand-white-rgb), 0.1);
    transition: var(--transition);
}

.process-item:hover {
    background: rgba(var(--brand-white-rgb), 0.05);
    border-color: rgba(var(--brand-white-rgb), 0.3);
}

.process-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.process-item p {
    color: rgba(var(--brand-white-rgb), 0.6);
    font-size: 16px;
}

.process-number {
    font-size: 64px;
    font-weight: 800;
    opacity: 0.1;
    margin-bottom: -30px;
    display: block;
}

/* Vision Section */
.vision-section {
    padding: 150px 0;
    text-align: center;
    background: var(--brand-white);
}

.vision-content {
    max-width: 800px;
    margin: 0 auto;
}

.vision-content h2 {
    font-size: 64px;
    margin-bottom: 40px;
}

.vision-content p {
    font-size: 24px;
    line-height: 1.6;
    color: var(--brand-text);
    font-style: italic;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 80px;
}

.stat-card {
    padding: 40px;
    background: var(--brand-white);
    border: 1px solid var(--brand-border);
    text-align: center;
}

.stat-card h4 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--brand-primary);
}

.stat-card span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--brand-muted);
}

@media (max-width: 992px) {
    .story-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero h1 {
        font-size: clamp(48px, 10vw, 64px);
    }

    .story-grid {
        gap: 50px;
    }

    .story-text h2 {
        font-size: 38px;
    }
    
    .vision-content h2 {
        font-size: 52px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 70vh;
    }

    .about-hero-content {
        padding: 0 24px;
    }

    .story-section, 
    .process-section {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .stat-card {
        padding: 30px;
    }

    .vision-section {
        padding: 100px 0;
    }

    .vision-content p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        min-height: 60vh;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .story-text h2 {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .story-text p {
        font-size: 16px;
    }

    .process-item {
        padding: 30px 20px;
    }

    .vision-content h2 {
        font-size: 42px;
    }
    
    .vision-content div a.btn {
        width: 100%;
        margin: 5px 0 !important;
    }
}

@media (max-width: 420px) {
    .about-hero-content {
        padding: 0 15px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .stat-card h4 {
        font-size: 36px;
    }
}

