/* About Page - New Clean Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --about-bg: #050614;
    --about-card: rgba(255, 255, 255, 0.03);
    --about-border: rgba(255, 255, 255, 0.08);
    --about-teal: #2be4ac;
    --about-text: #f8fafc;
    --about-muted: #94a3b8;
}

/* Page Header */
.about-header {
    position: relative;
    padding: 420px 0 120px;
    margin-top: 0;
    background: var(--about-bg);
    overflow: hidden;
    text-align: center;
}

.about-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
}

.about-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--about-bg), transparent);
}

.about-header .container {
    position: relative;
    z-index: 2;
}

.about-header__content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.about-header__content p {
    font-size: 18px;
    color: var(--about-muted);
}

/* About Intro Section */
.about-intro {
    padding: 100px 0;
    background: var(--about-bg);
}

.about-intro__image {
    position: relative;
}

.about-intro__image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Animated Graphic */
.about-intro__image--animated img {
    animation: floatPulse 4s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes floatPulse {

    0%,
    100% {
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 20px 40px rgba(43, 228, 172, 0.2));
    }

    50% {
        transform: translateY(-15px) scale(1.02);
        filter: drop-shadow(0 35px 60px rgba(43, 228, 172, 0.4));
    }
}

.about-intro__image--animated::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(43, 228, 172, 0.1) 0%, transparent 70%);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
    border-radius: 30px;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.about-intro__content {
    padding-left: 40px;
}

.about-intro__label {
    display: inline-block;
    color: var(--about-teal);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-intro__title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-intro__text {
    color: var(--about-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Features */
.about-intro__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    background: var(--about-card);
    border: 1px solid var(--about-border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(43, 228, 172, 0.3);
    background: rgba(43, 228, 172, 0.05);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(43, 228, 172, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--about-teal);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--about-muted);
    margin: 0;
    line-height: 1.5;
}

/* Stats Section */
.about-stats {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--about-bg) 0%, rgba(43, 228, 172, 0.03) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--about-card);
    border: 1px solid var(--about-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--about-teal);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--about-teal);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--about-muted);
    font-weight: 500;
}

/* Values Section */
.about-values {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--about-bg) 0%, rgba(43, 228, 172, 0.02) 100%);
}

.about-values__header {
    margin-bottom: 60px;
}

.about-values__label {
    display: inline-block;
    color: var(--about-teal);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-values__title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--about-card);
    border: 1px solid var(--about-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--about-teal), #20b593);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(43, 228, 172, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-illustration {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.value-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.value-card:hover .value-illustration img {
    transform: scale(1.1);
}

.value-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--about-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-values__title {
        font-size: 28px;
    }
}

/* CTA Section */
.about-cta {
    position: relative;
    padding: 100px 0;
    background: #000;
    overflow: hidden;
}

.about-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.about-cta .container {
    position: relative;
    z-index: 2;
}

.about-cta__label {
    color: var(--about-teal);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-cta__title {
    font-family: 'Outfit', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 35px;
}

.about-cta__btn {
    display: inline-block;
    background: var(--about-teal);
    color: var(--about-bg);
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(43, 228, 172, 0.3);
}

.about-cta__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(43, 228, 172, 0.4);
    color: var(--about-bg);
}

/* Responsive */
@media (max-width: 991px) {
    .about-header__content h1 {
        font-size: 40px;
    }

    .about-intro__content {
        padding-left: 0;
        margin-top: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro__title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .about-header {
        padding: 280px 0 80px !important;
    }

    .about-header__content h1 {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-box {
        padding: 25px 15px;
    }

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

    .about-cta__title {
        font-size: 28px;
    }
}