@import url("./index.css");
@import url("./header.css");
@import url("./footer.css");
@import url("./modal.css");

/* ==========================================
   HERO
   ========================================== */

.fixed-back {
    opacity: 0.2;
}

main .cta {
    width: 100%;
    margin-top: 30px;
    max-width: 420px;
}

.about-hero__label {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.about-hero__company {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 28px;
}

.about-hero h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-hero__desc {
    font-size: 18px;
    color: var(--white);

    line-height: 1.75;
}

/* ==========================================
   ADVANTAGES
   ========================================== */

.about-advantages__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 40px;
}

.about-advantages__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-advantages__card {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    padding: 36px 40px;
}

.about-advantages__card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.about-advantages__card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.about-advantages__card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.about-advantages__card-text {
    font-size: 17px;
    color: var(--white);
    line-height: 1.75;
}

.about-advantages__card-list {
    list-style: none;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-advantages__card-list li {
    font-size: 17px;
    color: var(--white);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.about-advantages__card-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.about-advantages__card-note {
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(214, 253, 81, 0.07);
    border-left: 3px solid var(--accent);
    border-radius: 0 10px 10px 0;
    font-size: 15px;
    color: var(--white);
    opacity: 0.88;
    line-height: 1.65;
}

/* ==========================================
   CTA
   ========================================== */

.about-cta__inner {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: stretch;
    min-height: 380px;
}

.about-cta__content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-cta__title {
    font-size: 38px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-cta__text {
    font-size: 16px;
    color: var(--white);
    opacity: 0.8;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 560px;
}

.about-cta__image {
    overflow: hidden;
}

.about-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {

    .about-hero__company {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--accent);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 28px;
    }

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

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

    .about-cta__inner {
        grid-template-columns: 1fr 320px;
    }

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

    .about-cta__content {
        padding: 40px 36px;
    }
}

@media (max-width: 768px) {
    /* section.about-hero {
        margin-top: 30px;
    } */

    .about-hero__label {
        font-size: 16px;
    }

    .about-hero h1 {
        font-size: 24px;
    }

    .about-hero__desc {
        font-size: 16px;
    }

    .about-advantages__title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .about-advantages__card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .about-advantages__card-header {
        gap: 14px;
    }

    .about-advantages__card-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .about-advantages__card-title {
        font-size: 18px;
    }

    .about-advantages__card-text {
        font-size: 15px;
    }

    .about-advantages__card-list li {
        font-size: 15px;
    }

    .about-cta__inner {
        grid-template-columns: 1fr;
    }

    .about-cta__image {
        height: 280px;
        order: -1;
    }

    .about-cta__content {
        padding: 30px 24px;
    }

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

    .about-cta__text {
        font-size: 15px;
        margin-bottom: 24px;
    }
}