.fp-section {
    width: var(--container);
    margin: 112px auto 0;
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 478px auto;
    gap: 48px;
    align-items: start;
    margin-bottom: 64px;
}

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

.section-head p {
    margin: 4px 0 0;
    color: var(--grey);
    font-size: 16px;
    line-height: 1.4;
}

.section-head > a {
    width: 184px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--black);
    background: #fff;
    border: 1px solid var(--black);
    border-radius: 16px;
    font-size: 16px;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.section-head > a:hover {
    color: #fff;
    background: var(--brand-gradient-action-hover);
    border-color: transparent;
    box-shadow: var(--brand-shadow);
    transform: translateY(-1px);
}

.section-link {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    color: #1b1024;
    border: 1px solid #1b1024;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
}

.section-link img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    flex-shrink: 0;
    transition: filter .2s ease;
}

.section-link:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
    .section-head {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .section-head h2 {
        font-size: 38px;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 640px) {
    .section-head h2 {
        font-size: 34px;
    }

    .fp-section {
        margin-top: 64px;
    }

    .section-head {
        gap: 18px;
        margin-bottom: 24px;
    }

    .section-head p {
        max-width: none;
    }

    .section-link {
        width: 100%;
        height: 48px;
    }
}
