.about-page-bg {
    position: relative;
    min-height: 100vh;
    color: #fff;
}

.about-page-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background: radial-gradient(circle at bottom left,
            #222d5a 0%,
            #000000 60%);

    background-size: cover;
}

.about-main {
    padding-bottom: 5rem;
}

.about-hero {
    text-align: center;
    padding: 6rem 0;
}

.about-hero h1 {
    font-size: 5rem;
    line-height: 1;
    margin: 2rem 0;

    background: linear-gradient(to bottom,
            #ffffff,
            #777777);

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-hero p {
    max-width: 700px;
    margin: auto;
    color: #bdbdbd;
}

.about-section {
    margin: 2rem auto;
    max-width: 1000px;
}

.glass-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem;
}

.glass-card h2 {
    margin-bottom: 1rem;
    color: #ffc978;
}

.glass-card p {
    color: #bdbdbd;
    line-height: 1.8;
}

.benefits-section {
    margin: 4rem auto;
    text-align: center;
}

.benefits-section h2 {
    margin-bottom: 2rem;
}

.benefits-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
}

.benefits-slider::before,
.benefits-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.benefits-slider::before {
    left: 0;
    background: linear-gradient(to right,
            #00000082,
            transparent);
}

.benefits-slider::after {
    right: 0;
    background: linear-gradient(to left,
            #000,
            transparent);
}

.benefits-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollCards 30s linear infinite;
}

.benefit-card {
    position: relative;
    min-width: 340px;
    width: 16rem;
    height: 16rem;
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 2rem;

    border-radius: 24px;

    background:
        linear-gradient(135deg,
            rgba(127, 66, 167, .15),
            rgba(83, 0, 160, .08));

    border: 1px solid rgba(255, 255, 255, .12);

    backdrop-filter: blur(20px);

    box-shadow:
        0 0 20px rgba(127, 66, 167, .15),
        0 0 40px rgba(83, 0, 160, .08);

    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: .8rem;
}

.benefit-card h3 span {
    background: linear-gradient(to right,
            #89a8f5,
            #e67d7d);

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.benefit-card p {
    color: #cfcfcf;
    font-size: 1rem;
    line-height: 1.6;
}

.benefit-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, .4),
            transparent);
}

@keyframes scrollCards {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.contact-box {
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
}

.contact-box .download-btn {
    margin-top: 1.5rem;
}

.footer-ad {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 10%;
}

body {
    overflow: auto !important;
}

@media (max-width: 425px) {

    .benefits-slider::before {
        background: linear-gradient(to right, #0000006e, transparent);
    }

    .benefits-slider::after {
        background: linear-gradient(to right, #00000000, transparent);
    }

}