/* ===== About page ===== */
.about-page-intro {
    position: relative;
    padding: 90px 0 70px;
}

.about-page-intro .intro-content {
    padding-left: 1rem;
}

.about-page-intro .intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(245, 183, 84, 0.12);
    border: 1px solid rgba(245, 183, 84, 0.28);
    color: #f5b754;
    font-size: 13px;
    margin-bottom: 18px;
}

.about-page-intro .intro-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 18px;
}

.about-page-intro .intro-title span {
    color: #f5b754;
}

.about-page-intro .intro-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 2;
    font-size: 15px;
}

.about-page-intro .intro-text p:last-child {
    margin-bottom: 0;
}

.about-page-intro .intro-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-page-intro .intro-image-wrap {
    position: relative;
    border-radius: 24px 24px 0 24px;
    overflow: hidden;
    isolation: isolate;
}

.about-page-intro .intro-image-wrap img {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: transform 600ms ease;
}

.about-page-intro .intro-image-wrap:hover img {
    transform: scale(1.04);
}

.about-page-intro .intro-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.about-page-stats {
    position: relative;
    padding: 40px 0 90px;
}

.about-page-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 1180px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 183, 84, 0.35), transparent);
}

.about-page-stats .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 44px;
}

.about-page-stats .section-head p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.9;
}

.stat-card {
    height: 100%;
    padding: 28px 24px;
    border-radius: 20px;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 183, 84, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.stat-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 183, 84, 0.12);
    border: 1px solid rgba(245, 183, 84, 0.28);
    color: #f5b754;
    font-size: 22px;
}

.stat-card__value {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-card__value .plus {
    color: #f5b754;
    margin-left: 2px;
}

.stat-card__label {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

.about-page-team {
    position: relative;
    padding: 20px 0 100px;
}

.about-page-team .section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.about-page-team .section-head p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    line-height: 1.9;
}

.team-level-title {
    text-align: center;
    margin: 36px 0 28px;
}

.team-level-title h3 {
    display: inline-block;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(245, 183, 84, 0.45);
}

.team-card {
    height: 100%;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 183, 84, 0.35);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.team-card__photo {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.team-card:hover .team-card__photo img {
    transform: scale(1.05);
}

.team-card__body {
    padding: 22px 20px 24px;
    text-align: center;
}

.team-card__name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-card__position {
    display: block;
    color: #f5b754;
    font-size: 14px;
    margin-bottom: 14px;
}

.team-card__desc {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.team-card__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.team-card__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.25s ease;
}

.team-card__social a:hover {
    background: #f5b754;
    border-color: #f5b754;
    color: #1b1b1b;
}

.about-page-cta {
    padding: 0 0 110px;
}

.about-page-cta .cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 42px 36px;
    background:
        radial-gradient(circle at 100% 0%, rgba(245, 183, 84, 0.18), transparent 42%),
        linear-gradient(135deg, #242424 0%, #1b1b1b 100%);
    border: 1px solid rgba(245, 183, 84, 0.18);
}

.about-page-cta .cta-box h3 {
    color: #fff;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    margin-bottom: 10px;
}

.about-page-cta .cta-box p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.9;
}

@media (max-width: 991px) {
    .about-page-intro {
        padding-top: 70px;
    }

    .about-page-intro .intro-content {
        padding-left: 0;
        margin-bottom: 32px;
    }
}

@media (max-width: 767px) {
    .about-page-intro,
    .about-page-stats,
    .about-page-team,
    .about-page-cta {
        padding-bottom: 80px;
    }
}
