.about-page {
    --about-red: #e30613;
    --about-red-dark: #9a0000;
    --about-black: #040404;
    --about-line: #dedede;
    overflow: hidden;
    background:
        radial-gradient(circle at 3% 74%, rgba(0, 0, 0, 0.1) 1px, transparent 2px) 0 0 / 18px 18px,
        #fff;
    color: #101010;
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 34px;
}

.about-page * {
    box-sizing: border-box;
}

.about-hero {
    min-height: 510px;
    display: grid;
    grid-template-columns: minmax(480px, 0.92fr) minmax(420px, 1.08fr);
    align-items: stretch;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 28%, rgba(227, 6, 19, 0.72), transparent 24%),
        linear-gradient(90deg, #000 0%, #050505 42%, #2b0000 72%, #050000 100%);
    color: #fff;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0 42%, transparent 62%),
        radial-gradient(circle at 4px 4px, rgba(227, 6, 19, 0.25) 0 1px, transparent 2px) 65% 10% / 26px 26px;
    pointer-events: none;
}

.about-hero__content {
    width: min(650px, calc(100% - 56px));
    align-self: center;
    justify-self: end;
    position: relative;
    z-index: 2;
    padding: 44px 0 50px;
}

.about-eyebrow {
    margin: 0 0 12px;
    color: var(--about-red);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.about-hero h1 {
    width: min(600px, 100%);
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 4.6vw, 58px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
}

.about-hero h1 strong {
    display: block;
    color: var(--about-red);
    font-weight: 900;
}

.about-hero__content > span,
.about-card > span {
    display: block;
    width: 58px;
    height: 3px;
    margin: 20px 0 22px;
    background: var(--about-red);
}

.about-hero p:not(.about-eyebrow) {
    width: min(630px, 100%);
    margin: 0 0 11px;
    color: #fff;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 500;
}

.about-hero__visual {
    position: relative;
    overflow: hidden;
}

.about-wave {
    width: 620px;
    height: 420px;
    position: absolute;
    left: -70px;
    top: 22px;
    opacity: 0.38;
    border-radius: 50%;
    border-top: 1px solid rgba(227, 6, 19, 0.52);
    transform: rotate(-11deg);
    box-shadow:
        0 18px 0 -17px rgba(227, 6, 19, 0.45),
        0 36px 0 -35px rgba(227, 6, 19, 0.38),
        0 54px 0 -53px rgba(227, 6, 19, 0.32),
        0 72px 0 -71px rgba(227, 6, 19, 0.25),
        0 90px 0 -89px rgba(227, 6, 19, 0.2);
}

.about-hands {
    width: 720px;
    height: 420px;
    position: absolute;
    right: -36px;
    top: 54px;
    filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.32));
}

.about-hands span {
    position: absolute;
    border-radius: 999px 999px 80px 120px;
    background:
        radial-gradient(circle at 35% 34%, rgba(255, 255, 255, 0.34), transparent 7%),
        radial-gradient(circle at 54% 44%, rgba(255, 255, 255, 0.16), transparent 10%),
        linear-gradient(135deg, rgba(255, 72, 72, 0.92), rgba(125, 0, 0, 0.96));
    box-shadow:
        inset 0 0 45px rgba(255, 255, 255, 0.1),
        inset 0 -28px 45px rgba(0, 0, 0, 0.34);
}

.about-hands span:first-child {
    width: 520px;
    height: 170px;
    right: 58px;
    top: 30px;
    transform: rotate(13deg);
}

.about-hands span:last-of-type {
    width: 520px;
    height: 180px;
    right: 10px;
    bottom: 52px;
    transform: rotate(-16deg);
}

.about-hands strong {
    position: absolute;
    right: 215px;
    top: 135px;
    z-index: 2;
    color: #fff;
    font-size: 146px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.about-cards {
    width: min(1240px, calc(100% - 48px));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: -2px auto 0;
    padding-top: 38px;
    position: relative;
    z-index: 2;
}

.about-card {
    min-height: 376px;
    position: relative;
    padding: 74px 38px 30px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.about-card__icon {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    position: absolute;
    left: 50%;
    top: -64px;
    transform: translateX(-50%);
    border: 4px solid #fff;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(180deg, #ff1717, #be0000);
    box-shadow: 0 12px 24px rgba(190, 0, 0, 0.28);
}

.about-card__icon i {
    font-size: 50px;
    line-height: 1;
}

.about-card h2 {
    margin: 0;
    color: #080808;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
}

.about-card h2 strong {
    color: var(--about-red);
    font-weight: 900;
}

.about-card > span {
    margin: 12px auto 18px;
}

.about-card p {
    width: min(560px, 100%);
    margin: 0 auto 8px;
    color: #2b2f36;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 500;
}

.about-card ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin: 28px 0 0;
    padding: 24px 0 0;
    border-top: 1px solid #d8d8d8;
}

.about-card li {
    display: grid;
    justify-items: center;
    gap: 9px;
}

.about-card li i {
    color: var(--about-red);
    font-size: 35px;
    line-height: 1;
}

.about-card li strong {
    color: #111;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 900;
}

.about-benefits {
    width: min(1240px, calc(100% - 48px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 20px auto 0;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(180deg, #f20b0b, #c60000);
    box-shadow: 0 12px 28px rgba(198, 0, 0, 0.2);
}

.about-benefits article {
    min-height: 88px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 16px 34px;
    color: #fff;
}

.about-benefits article:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.about-benefits i {
    color: #fff;
    font-size: 35px;
    line-height: 1;
}

.about-benefits strong {
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .about-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .about-hero__content {
        justify-self: start;
        margin-left: 32px;
        padding-bottom: 40px;
    }

    .about-hero__visual {
        position: absolute;
        inset: 0;
        opacity: 0.35;
    }

    .about-cards,
    .about-benefits {
        grid-template-columns: 1fr;
    }

    .about-card + .about-card {
        margin-top: 34px;
    }

    .about-benefits article:not(:last-child) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }
}

@media (max-width: 700px) {
    .about-hero__content {
        width: calc(100% - 32px);
        margin: 0 auto;
        padding: 38px 0;
    }

    .about-eyebrow {
        font-size: 13px;
        letter-spacing: 3px;
    }

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

    .about-hero p:not(.about-eyebrow) {
        font-size: 13px;
    }

    .about-cards,
    .about-benefits {
        width: min(100% - 24px, 1240px);
    }

    .about-card {
        padding: 66px 18px 24px;
    }

    .about-card h2 {
        font-size: 30px;
    }

    .about-card ul {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-benefits article {
        padding: 16px 22px;
    }
}
