.about-hero {
    padding-bottom: 40px;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 64px;
}

.stat-val {
    font-family: 'Benzin', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item {
    border-left: 2px solid var(--z-yellow);
    padding-left: 20px;
}

.stat-label {
    font-family: 'Codec Pro', sans-serif;
    color: rgba(253, 251, 237, 0.6);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(253, 251, 237, 0.1);
    z-index: 2;
}

.forbes-section {
    padding: 60px 0;
}

.forbes-card {
    background: var(--card-background);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(253, 251, 237, 0.08);
    border-radius: 24px;
    padding: 48px;
    margin: 0;
}

.forbes-visual {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.forbes-img {
    width: 100%;
    display: block;
}

.forbes-content {
    padding-left: 48px;
}

.section-title {
    font-family: 'Benzin', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin: 16px 0;
}

.forbes-text {
    font-family: 'Codec Pro', sans-serif;
    color: rgba(253, 251, 237, 0.5);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.forbes-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(253, 251, 237, 0.1);
    padding-top: 24px;
}

.forbes-brand {
    font-family: 'Benzin', sans-serif;
    font-size: 24px;
    color: #ffffff;
}

.forbes-tag {
    font-family: 'Codec Pro', sans-serif;
    font-weight: 800;
    color: var(--z-yellow);
}

.team-section {
    padding: 80px 0;
    background: rgba(18,36,22,0.5);
    position: relative;
}

.team-subtitle {
    font-family: 'Codec Pro', sans-serif;
    color: rgba(253, 251, 237, 0.5);
    max-width: 600px;
    margin: 16px auto 48px;
    line-height: 1.6;
}

.team-card {
    background: rgba(20, 36, 23, 0.4);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(253, 251, 237, 0.05);
    transition: transform 0.4s, border-color 0.4s, background 0.4s;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 230, 0, 0.3);
    background: rgba(20, 36, 23, 0.8);
}

.team-photo-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: filter 0.5s, transform 0.5s;
}

.team-card:hover .team-photo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-body {
    padding: 24px;
}

.team-role {
    color: var(--z-yellow);
    font-family: 'Codec Pro', sans-serif;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.team-name {
    font-family: 'Benzin', sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 12px;
}

.team-desc {
    font-family: 'Codec Pro', sans-serif;
    color: rgba(253, 251, 237, 0.6);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.production-section {
    padding: 80px 0;
    background: rgba(18,36,22,0.5);
    position: relative;
}

.prod-subtitle {
    font-family: 'Codec Pro', sans-serif;
    color: rgba(253, 251, 237, 0.5);
    font-size: 16px;
    margin: 0;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: var(--card-background);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 16px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.large {
    height: 450px;
}

.gallery-item.small {
    height: 215px;
}

.partners-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
    border-top: 1px solid rgba(253, 251, 237, 0.05);
    background: var(--z-green-dark);
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    height: 80px;
    filter: grayscale(100%) opacity(0.4);
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.partner-logo img {
    display: block;
    max-height: 50px;
    max-width: 180px;
    width: 100%;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.partner-logo span {
    display: none;
    color: rgba(253, 251, 237, 0.5);
    font-family: 'Codec Pro', sans-serif;
    font-size: 14px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 1199px) {
    .main-title {
        font-size: 40px;
    }

    .stat-val {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        padding-bottom: 30px;
    }

    .stats-grid {
        gap: 32px;
        margin-bottom: 40px;
    }

    .forbes-content {
        padding-left: 0;
        margin-top: 32px;
    }

    .forbes-card {
        padding: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .gallery-item.large {
        height: 300px;
    }

    .gallery-item.small {
        height: 200px;
    }

    .team-section,
    .production-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .main-title {
        font-size: 32px;
    }

    .hero-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .stat-val {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .forbes-card {
        padding: 24px 12px;
    }

    .forbes-text {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .team-photo-wrap {
        height: 320px;
    }

    .gallery-item.large {
        height: 250px;
    }

    .gallery-item.small {
        height: 180px;
    }

    .partner-logo {
        padding: 0 16px;
    }

    .partner-logo img {
        max-width: 140px;
        max-height: 40px;
    }
}

@media (max-width: 575px) {
    .stats-grid {
        align-items: flex-start;
        justify-content: space-between;
        gap: 24px;
        width: 100%;
    }

    .main-title {
        font-size: 28px;
    }

    .forbes-section {
        padding: 40px 0;
    }

    .team-section,
    .production-section {
        padding: 40px 0;
    }

    .forbes-brand {
        font-size: 20px;
    }

    .team-photo-wrap {
        height: 260px;
    }
}