/* ===== ABOUT HERO ===== */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #0a0a0a;
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 80px;
}

.about-hero-content h1 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 24px;
}

.about-hero-content h1 .highlight {
    background: #F97316;
    color: #fff;
    padding: 0 8px;
}

.about-hero-content h1 .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F97316;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 28px;
    margin: 0 6px;
    vertical-align: middle;
}

.about-hero-content p {
    font-size: 15px;
    color: #ccc;
    max-width: 540px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* ===== STATS BAR ===== */
.stats-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    margin: 40px 60px;
    padding: 40px 20px;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    border-right: 1px solid #2a2a2a;
    padding: 0 20px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
}

.stat-label {
    font-size: 13px;
    color: #aaa;
    text-align: center;
}

/* ===== ABOUT MIDDLE ===== */
.about-middle {
    display: flex;
    gap: 40px;
    padding: 80px 60px;
    background-color: #0a0a0a;
    align-items: flex-start;
}

.about-story {
    flex: 1;
}

.about-tag {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #F97316;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-story h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 20px;
}

.about-story h2 .highlight {
    background: #F97316;
    color: #fff;
    padding: 0 8px;
}

.about-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* ===== TIMELINE ===== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid #2a2a2a;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #F97316;
    border-radius: 50%;
    flex-shrink: 0;
    position: absolute;
    left: -27px;
    top: 4px;
}

.timeline-year {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #F97316;
    flex-shrink: 0;
    width: 44px;
}

.timeline-text {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

/* ===== BELIEFS ===== */
.about-beliefs {
    flex: 1;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.belief-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.belief-icon {
    font-size: 24px;
    background: #1a1a1a;
    border-radius: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.belief-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.belief-card p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.6;
}

/* ===== TEAM ===== */
.team-section {
    padding: 80px 60px;
    background-color: #0a0a0a;
}

.team-section h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    color: #ffffff;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.team-card:hover {
    border-color: #F97316;
}

.team-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
}

.team-social {
    display: flex;
    gap: 10px;
    padding: 16px 16px 0;
}

.team-social a {
    width: 32px;
    height: 32px;
    background: #1a1a1a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.team-social a:hover {
    background: #F97316;
}

.team-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    padding: 12px 16px 4px;
}

.team-card p {
    font-size: 13px;
    color: #aaa;
    padding: 0 16px 20px;
}

/* ===== CTA BANNER ===== */
.about-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    background: #111111;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    margin: 0 60px 60px;
    padding: 30px 40px;
}

.about-cta-icon {
    width: 56px;
    height: 56px;
    background: #F97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-cta h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 6px;
}

.about-cta p {
    font-size: 13px;
    color: #aaa;
}

.about-cta .hero-btn {
    margin-left: auto;
    white-space: nowrap;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .stats-bar {
        flex-direction: column;
        margin: 20px;
        gap: 30px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #2a2a2a;
        padding-bottom: 20px;
        width: 100%;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .about-middle {
        flex-direction: column;
        padding: 50px 20px;
    }

    .team-section {
        padding: 50px 20px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta {
        flex-direction: column;
        margin: 0 20px 40px;
        text-align: center;
    }

    .about-cta .hero-btn {
        margin-left: 0;
    }
}