:root {
    --black: #18091D;
    --grey: #7F7582;
    --line: #EBE7ED;
    --indigo: #390894;
    --purple: #7F0AAD;
    --orange: #FD5B03;
    --bg: #F7F7F7;
    --container: min(1536px, calc(100vw - 48px));
    --wide: min(1696px, calc(100vw - 48px));
}

.about-page {
    background: var(--bg);
}

.about-main {
    width: 100%;
    color: var(--black);
}

.about-hero,
.about-intro,
.about-mission,
.about-services,
.about-workflow,
.about-advantages {
    width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.about-hero {
    min-height: 720px;
    position: relative;
    margin-top: 64px;
    padding: 40px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 14%, rgba(172, 17, 255, .6), transparent 26%),
        linear-gradient(135deg, #18091D 0%, #26064D 54%, #390894 100%);
    border-radius: 40px;
    overflow: hidden;
}

.about-hero::before {
    width: 620px;
    height: 620px;
    position: absolute;
    right: -180px;
    bottom: -240px;
    content: "";
    border: 64px solid rgba(255,255,255,.08);
    border-radius: 50%;
}

.about-hero::after {
    width: 320px;
    height: 8px;
    position: absolute;
    left: 40px;
    bottom: 40px;
    content: "";
    background: linear-gradient(90deg, var(--orange), var(--purple), transparent);
    border-radius: 999px;
}

.about-hero__grid {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 600px;
    gap: 56px;
    align-items: stretch;
}

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

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0 24px;
    color: var(--wide);
    font-size: 18px;
    font-weight: 800;
}

.about-kicker::before {
    width: 8px;
    height: 8px;
    content: "";
    background: rgba(255,255,255,.84);;
    border-radius: 50%;
}

.about-hero h1 {
    max-width: 940px;
    margin: 0;
    color: #fff;
    font-size: 92px;
    font-weight: 500;
    line-height: .92;
    letter-spacing: -0.06em;
}

.about-lead {
    max-width: 690px;
    margin: 32px 0 0;
    color: rgba(255,255,255,.84);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.18;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.about-hero__actions a {
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    color: #fff;
    border-radius: 18px;
    font-size: 17px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.about-hero__actions a:first-child {
    background: var(--orange);
}

.about-hero__actions a:last-child {
    color: var(--black);
    background: #fff;
}

.about-hero__actions a:hover {
    transform: translateY(-2px);
}

.about-hero__actions img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.about-hero__visual {
    position: absolute;
    right: -60px;
    bottom: -430px;
    width: 0;
    height: 0;
    z-index: 1;
    pointer-events: none;
}

.about-hero__visual > img {
    width: clamp(160px, 55vw, 1180px);
    height: auto;
    max-width: none;
    position: absolute;
    right: 0;
    bottom: 0;
    filter: drop-shadow(0 42px 60px rgba(0,0,0,.32));
}

.about-hero__stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 64px;
}

.about-hero__stats div {
    min-height: 132px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
}

.about-hero__stats strong {
    color: #fff;
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
}

.about-hero__stats span {
    color: rgba(255,255,255,.74);
    font-size: 16px;
    line-height: 1.25;
}

.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 456px;
    gap: 80px;
    margin-top: 88px;
    align-items: start;
}

.about-intro__text {
    display: grid;
    gap: 24px;
}

.about-intro__text p,
.about-intro__note p,
.about-mission p,
.about-services .section-head p,
.about-workflow .section-head p,
.about-advantages__head p,
.about-service-card p,
.about-workflow__grid p,
.about-advantage-card p {
    margin: 0;
    color: var(--grey);
    font-size: 18px;
    line-height: 1.5;
}

.about-intro__text p:first-child {
    color: var(--black);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.about-intro__note {
    position: sticky;
    top: 120px;
    padding: 32px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(253, 91, 3, .72), transparent 42%),
        var(--black);
    border-radius: 32px;
}

.about-intro__note h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
}

.about-intro__note p {
    color: rgba(255,255,255,.78);
}

.about-intro__note p + p {
    margin-top: 18px;
}

.about-mission {
    margin-top: 112px;
    padding: 56px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(57, 8, 148, .94), rgba(24, 9, 29, .98)),
        var(--black);
    border-radius: 32px;
}

.about-mission span {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 10px 16px;
    color: #fff;
    background: var(--orange);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
}

.about-mission h2 {
    max-width: 1120px;
    margin: 0;
    color: #fff;
    font-size: 56px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
}

.about-mission p {
    max-width: 720px;
    margin-top: 32px;
    color: rgba(255,255,255,.78);
}

.about-services,
.about-workflow,
.about-advantages {
    margin-top: 112px;
}

.about-services .section-head,
.about-workflow .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 64px;
    align-items: end;
    margin-bottom: 40px;
}

.about-services .section-head h2,
.about-workflow .section-head h2,
.about-advantages__head h2 {
    margin: 0;
    color: var(--black);
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
}

.about-services .section-head p,
.about-workflow .section-head p {
    color: var(--black);
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-service-card {
    min-height: 330px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #fff;
    border: 1px solid #F0ECF2;
    border-radius: 24px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.about-service-card::after {
    width: 160px;
    height: 160px;
    position: absolute;
    right: -88px;
    top: -88px;
    content: "";
    background: rgba(57, 8, 148, .08);
    border-radius: 50%;
    transition: transform .2s ease, background .2s ease;
}

.about-service-card:hover {
    border-color: rgba(57, 8, 148, .18);
    box-shadow: 0 24px 48px rgba(24, 9, 29, .08);
    transform: translateY(-4px);
}

.about-service-card:hover::after {
    background: rgba(253, 91, 3, .12);
    transform: scale(1.25);
}

.about-service-card span,
.about-workflow__grid span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 48px;
    color: #fff;
    background: var(--black);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 800;
}

.about-service-card:nth-child(3n + 2) span,
.about-workflow__grid article:nth-child(2) span {
    background: var(--indigo);
}

.about-service-card:nth-child(3n) span,
.about-workflow__grid article:nth-child(3) span {
    background: var(--orange);
}

.about-service-card h3,
.about-workflow__grid h3,
.about-advantage-card h3 {
    margin: 0 0 16px;
    color: var(--black);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.about-service-card p {
    margin-top: auto;
}

.about-workflow__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-workflow__grid article {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #fff;
    border: 1px solid #F0ECF2;
    border-radius: 24px;
}

.about-workflow__grid p,
.about-advantage-card p {
    margin-top: auto;
}

.about-advantages__head {
    max-width: 940px;
    margin-bottom: 40px;
}

.about-advantages__head p {
    max-width: 620px;
    margin-top: 24px;
}

.about-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-advantage-card {
    min-height: 292px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(57, 8, 148, .12);
    border-radius: 24px;
}

.about-advantage-card h3::before {
    display: block;
    width: 42px;
    height: 6px;
    margin-bottom: 28px;
    content: "";
    background: var(--orange);
    border-radius: 999px;
}

.about-page .fp-form {
    margin-bottom: 112px;
}

@media (max-width: 1440px) {
    .about-hero__grid {
        grid-template-columns: minmax(0, 1fr) 520px;
    }

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

    .about-hero__visual {
        right: -210px;
    }

    .about-hero__visual > img {
        width: clamp(760px, 70vw, 1040px);
    }

    .about-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1180px) {
    .about-hero__grid,
    .about-intro,
    .about-services .section-head,
    .about-workflow .section-head {
        grid-template-columns: 1fr;
    }

    .about-hero__visual {
        display: none;
    }

    .about-intro__note {
        position: static;
    }

    .about-services__grid,
    .about-workflow__grid,
    .about-advantages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .about-hero,
    .about-intro,
    .about-mission,
    .about-services,
    .about-workflow,
    .about-advantages {
        width: var(--container);
    }

    .about-hero {
        min-height: auto;
        margin-top: 32px;
        padding: 24px;
        padding-bottom: 48px;
        border-radius: 28px;
    }

    .about-hero::before {
        width: 360px;
        height: 360px;
        right: -170px;
        bottom: -140px;
        border-width: 36px;
    }

    .about-hero::after {
        width: auto;
        height: 5px;
        right: 24px;
        bottom: 20px;
        left: 24px;
    }

    .about-page .crumbs {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .about-kicker {
        margin: 0 0 18px;
        font-size: 14px;
    }

    .about-hero h1 {
        font-size: clamp(40px, 12vw, 50px);
        line-height: .96;
        overflow-wrap: anywhere;
    }

    .about-lead,
    .about-intro__text p:first-child {
        font-size: 21px;
    }

    .about-lead {
        margin-top: 24px;
        line-height: 1.28;
    }

    .about-hero__actions {
        display: grid;
        gap: 8px;
        margin-top: 30px;
    }

    .about-hero__actions a {
        width: 100%;
        height: 56px;
        border-radius: 15px;
        font-size: 15px;
    }

    .about-hero__stats,
    .about-services__grid,
    .about-workflow__grid,
    .about-advantages__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__stats {
        gap: 8px;
        margin-top: 18px;
    }

    .about-hero__stats div {
        min-height: 94px;
        padding: 18px;
        border-radius: 17px;
    }

    .about-hero__stats strong {
        font-size: clamp(24px, 7.5vw, 30px);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .about-hero__stats span {
        margin-top: 12px;
        font-size: 13px;
    }

    .about-intro,
    .about-mission,
    .about-services,
    .about-workflow,
    .about-advantages {
        margin-top: 72px;
    }

    .about-intro {
        gap: 32px;
    }

    .about-intro__text {
        gap: 18px;
    }

    .about-intro__text p,
    .about-intro__note p,
    .about-mission p,
    .about-services .section-head p,
    .about-workflow .section-head p,
    .about-advantages__head p,
    .about-service-card p,
    .about-workflow__grid p,
    .about-advantage-card p {
        font-size: 16px;
    }

    .about-intro__note,
    .about-mission {
        padding: 28px;
        border-radius: 24px;
    }

    .about-mission h2,
    .about-services .section-head h2,
    .about-workflow .section-head h2,
    .about-advantages__head h2 {
        font-size: clamp(34px, 10vw, 40px);
        overflow-wrap: anywhere;
    }

    .about-services .section-head,
    .about-workflow .section-head {
        gap: 20px;
        margin-bottom: 28px;
    }

    .about-services__grid,
    .about-workflow__grid,
    .about-advantages__grid {
        gap: 12px;
    }

    .about-service-card,
    .about-workflow__grid article,
    .about-advantage-card {
        min-height: auto;
        border-radius: 20px;
    }

    .about-service-card,
    .about-workflow__grid article,
    .about-advantage-card {
        padding: 24px;
    }

    .about-service-card h3,
    .about-workflow__grid h3,
    .about-advantage-card h3 {
        font-size: 25px;
    }

    .about-service-card span,
    .about-workflow__grid span {
        margin-bottom: 36px;
    }

    .about-page .fp-form {
        margin-bottom: 72px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 18px;
        padding-bottom: 42px;
        border-radius: 24px;
    }

    .about-hero::after {
        right: 18px;
        bottom: 17px;
        left: 18px;
    }

    .about-page .crumbs {
        gap: 9px;
        margin-bottom: 26px;
        font-size: 12px;
    }

    .about-kicker {
        max-width: 230px;
        font-size: 12px;
        line-height: 1.35;
    }

    .about-hero h1 {
        font-size: clamp(38px, 12.4vw, 46px);
    }

    .about-lead {
        font-size: 19px;
    }

    .about-hero__stats div {
        min-height: 88px;
        padding: 16px;
    }

    .about-intro,
    .about-mission,
    .about-services,
    .about-workflow,
    .about-advantages {
        margin-top: 64px;
    }

    .about-intro__note,
    .about-mission {
        padding: 24px 20px;
        border-radius: 21px;
    }

    .about-intro__note h2 {
        font-size: 34px;
    }

    .about-mission h2,
    .about-services .section-head h2,
    .about-workflow .section-head h2,
    .about-advantages__head h2 {
        font-size: 33px;
    }

    .about-mission p {
        margin-top: 24px;
    }

    .about-service-card,
    .about-workflow__grid article,
    .about-advantage-card {
        padding: 22px;
    }

    .about-service-card {
        min-height: 270px;
    }

    .about-workflow__grid article {
        min-height: 250px;
    }

    .about-advantage-card {
        min-height: 220px;
    }

    .about-service-card span,
    .about-workflow__grid span {
        width: 48px;
        height: 48px;
        margin-bottom: 28px;
        border-radius: 14px;
    }
}
