.ab-hero__title {
    font-weight: 400;
    font-size: 60px;
    line-height: 102%;
    letter-spacing: -0.03em;
    color: #fff;
    max-width: 900px;
    text-transform: uppercase;
}

.ab-header__request {
    min-width: 207px;
    justify-content: space-between;
}

.ab-hero__lead {
    position: absolute;
    top: 20%;
    left: 80%;
    z-index: 1;
    max-width: 400px;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.03em;
    color: #fff;
}

/* ==========================================================================
   About section (title + description)
   ========================================================================== */
.about-page {
    position: relative;
    padding: 130px 50px 170px;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

/* Background glow */
.about-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../assets/img/about-us-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.about-page > * {
    position: relative;
    z-index: 1;
}

.about-page__title {
    padding-bottom: 90px;
    margin-bottom: 110px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 300;
    font-size: 350px;
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(96.31deg, #fff 2.19%, #cfbfb4 113.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description — right-aligned block */
.about-page__desc {
    display: flex;
    flex-direction: column;
    gap: 70px;
    max-width: 986px;
    margin-left: auto;
}

.about-page__desc p {
    font-weight: 400;
    font-size: 35px;
    line-height: 149%;
    letter-spacing: -0.03em;
    background: linear-gradient(96.31deg, #fff 7.62%, #cfbfb4 124.04%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Mission (image + overlapping block + stats)
   ========================================================================== */
.mission {
    background-color: #000;
    color: #fff;
    padding-bottom: 250px;
    overflow: hidden;
}

.mission__img {
    display: block;
    width: 100%;
    height: auto;
}

/* Bottom block overlaps the image */
.mission__body {
    position: relative;
    z-index: 1;
    margin-top: -200px;
}

.mission__title {
    padding-left: 13px;
    font-weight: 300;
    font-size: 500px;
    line-height: 0.8;
    letter-spacing: -0.03em;
    background: linear-gradient(96.31deg, #fff 2.19%, #cfbfb4 113.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description — right-aligned */
.mission__desc {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 980px;
    margin-top: 105px;
    margin-left: auto;
    margin-right: 50px;
}

.mission__desc p {
    font-weight: 400;
    font-size: 35px;
    line-height: 163%;
    letter-spacing: -0.03em;
    background: linear-gradient(96.31deg, #fff 24.41%, #cfbfb4 157.45%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Stats */
.mission__stats-wrap {
    margin-top: 260px;
    padding: 0 50px;
}

.mission__stats-label {
    display: block;
    padding-bottom: 33px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
    font-size: 20px;
    line-height: 115%;
    letter-spacing: -0.03em;
    color: #fff;
    text-transform: uppercase;
}

.mission__stats {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.mission__stat {
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

.mission__num {
    font-weight: 300;
    font-size: 150px;
    line-height: 0.8;
    letter-spacing: -0.03em;
    background: linear-gradient(96.31deg, #fff 2.19%, #cfbfb4 113.25%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mission__stat-caption {
    padding-bottom: 6px;
    font-weight: 500;
    font-size: 20px;
    line-height: 115%;
    letter-spacing: -0.03em;
    color: #fff;
}

/* ==========================================================================
   Advantages (infinite auto-scrolling marquee)
   ========================================================================== */
.advantages {
    overflow: hidden;
    background-color: #000;
}

.advantages__track {
    display: flex;
    width: max-content;
    animation: advantages-marquee 60s linear infinite;
}

.advantages__card {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 546px;
    height: 820px;
    margin-right: 4px;
    padding: 42px 35px 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    color: #fff;
}

/* Subtle top + bottom darkening for readable text */
.advantages__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0) 22%,
        rgba(0, 0, 0, 0) 62%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
}

.advantages__num,
.advantages__label {
    position: relative;
    z-index: 1;
}

.advantages__num {
    font-weight: 500;
    font-size: 25px;
    line-height: 92%;
    letter-spacing: -0.03em;
    color: #fff;
}

.advantages__label {
    font-weight: 400;
    font-size: 27px;
    line-height: 85%;
    letter-spacing: -0.03em;
    color: #fff;
    text-transform: uppercase;
}

@keyframes advantages-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Slider nav — hidden on desktop (marquee), shown on mobile */
.advantages__nav {
    display: none;
}

/* how */
.how--about {
    padding-top: 290px;
}

.how--about .how__title {
    font-size: 90px;
    text-transform: capitalize;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how--about .how__list .how__item:not(:last-child) {
    border-bottom: 1px solid #2e2e2e;
}