/* ===== ABOUT PAGE CSS ===== */
.about-page {
    padding: 64px 0;
    overflow: hidden;
}

/* Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}
@media (min-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}
.about-story__content .section-title {
    margin-bottom: 24px;
}
.about-story__text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}
.about-story__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-story__image:hover img {
    transform: scale(1.05);
}
.about-story__badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
    text-align: center;
    z-index: 2;
}
.about-story__badge-number {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}
.about-story__badge-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    opacity: 0.9;
}

/* Stats Section */
.about-stats {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 48px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(220,20,60,0.15) 0%, transparent 60%);
    pointer-events: none;
}
@media (min-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 64px 40px;
    }
}
.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.stat-item__value {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(to right, #fff, rgba(255,255,255,0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.stat-item__label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Values Section */
.about-values {
    margin-bottom: 80px;
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.value-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
    text-align: center;
}
.value-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-4px);
    border-color: rgba(220,20,60,0.2);
}
.value-card__icon {
    width: 64px;
    height: 64px;
    background: #fef2f2;
    color: var(--red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.value-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}
.value-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section included from style.css natively */
