.fso-hero {
    padding:90px 0 15px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F6F7FD 100%);
}
.fso-hero__container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
 
}
.fso-hero__inner {
    display: flex;
    align-items: center;
    gap: 82px;
}
.fso-hero__content {
    flex: 0 0 670px;
    max-width: 670px;
    padding: 0;
}
span.fso-hero__label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    line-height: 28px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.fso-hero__title {
    font-size: 62px;
    font-weight: 700;
    line-height: 66px;
    color: #000000;
    margin: 0 0 17px;
    max-width: 610px;
    width: 100%;
}
.fso-hero__desc {
    margin-bottom: 34px;
  max-width: 590px;
  width: 100%;
}
.fso-hero__desc p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.8);
    line-height: 28px;
    margin: 0;
}
.fso-hero__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
a.fso-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    border: 2px solid #0a0a0a;
    transition: opacity 0.2s ease;
}
a.fso-hero__btn--dark {
    background: #000000;
    color: #ffffff;
}
a.fso-hero__btn--outline {
    background: transparent;
    color: #000000;
}
a.fso-hero__btn:hover {
    opacity: 0.85;
    text-decoration: none;
}
.fso-hero__visual {
    flex: 1;
    position: relative;
}
.fso-hero__mockup-wrap {
    width: 100%;
  text-align: right;
}
.fso-hero__mockup-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .fso-hero__inner {
        flex-direction: column;
        gap: 40px;
    }
    .fso-hero__content {
        flex: none;
        max-width: 100%;
    }
    .fso-hero__title {
        font-size: 40px;
    } 
}
@media (max-width: 768px) {
    .fso-hero {
        padding: 56px 0;
    }
    .fso-hero__container {
        padding: 0 20px;
    }
    .fso-hero__title {
        font-size: 32px;
    }
}
@media (max-width: 767px) {
    .fso-hero__title {
        font-size: 26px;
    }
    a.fso-hero__btn {
        width: 100%;
        justify-content: center;
    } 
}
