.sa-how-to-start,
.sa-how-to-start * {
    box-sizing: border-box;
}

.sa-how-to-start {
    width: 100%;
    max-width: 100%;
    overflow: clip;
    background: #fff;
    color: #fff;
    padding: clamp(42px, 4.8vw, 76px) 0;
}

.sa-how-to-start__container {
    --sa-how-shell-max: var(--start-container-max, 1440px);
    --sa-how-shell-gutter: var(--start-container-gutter, clamp(32px, 6vw, 96px));
    width: min(var(--sa-how-shell-max), calc(100vw - var(--sa-how-shell-gutter)));
    max-width: var(--sa-how-shell-max);
    margin: 0 auto;
    min-width: 0;
}

.sa-how-to-start__card {
    display: grid;
    grid-template-columns: minmax(460px, 1.08fr) minmax(320px, 0.92fr);
    align-items: center;
    gap: clamp(32px, 4vw, 68px);
    width: 100%;
    min-height: clamp(300px, 22vw, 380px);
    padding: clamp(34px, 3.7vw, 56px);
    border-radius: clamp(22px, 2vw, 32px);
    background: #000;
    overflow: hidden;
}

.sa-how-to-start__content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.sa-how-to-start__title {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(40px, 3.35vw, 56px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.08;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.sa-how-to-start__subtitle {
    max-width: 520px;
    margin: clamp(18px, 2vw, 26px) 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.55;
}

.sa-how-to-start__actions {
    display: flex;
    width: 100%;
    margin-top: clamp(22px, 2.2vw, 32px);
}

.sa-how-to-start[data-button-align="left"] .sa-how-to-start__actions {
    justify-content: flex-start;
}

.sa-how-to-start[data-button-align="center"] .sa-how-to-start__actions {
    justify-content: center;
}

.sa-how-to-start[data-button-align="right"] .sa-how-to-start__actions {
    justify-content: flex-end;
}

.sa-how-to-start__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 13px 14px 13px 24px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.sa-how-to-start__button:hover,
.sa-how-to-start__button:focus-visible {
    background: var(--start-blue, #147bf6);
    border-color: var(--start-blue, #147bf6);
    color: #fff;
    text-decoration: none;
    outline: none;
}

.sa-how-to-start__button--blue,
.sa-how-to-start__button--white,
.sa-how-to-start__button--black {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.82);
    color: #fff;
}

.sa-how-to-start__button--blue:hover,
.sa-how-to-start__button--blue:focus-visible,
.sa-how-to-start__button--white:hover,
.sa-how-to-start__button--white:focus-visible,
.sa-how-to-start__button--black:hover,
.sa-how-to-start__button--black:focus-visible {
    background: var(--start-blue, #147bf6);
    border-color: var(--start-blue, #147bf6);
    color: #fff;
}

.sa-how-to-start__button-icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #fff;
    color: #050505;
    transition: transform 180ms ease;
}

.sa-how-to-start__button:hover .sa-how-to-start__button-icon,
.sa-how-to-start__button:focus-visible .sa-how-to-start__button-icon {
    transform: translateX(4px);
}

.sa-how-to-start__button-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.sa-how-to-start__visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.sa-how-to-start[data-image-position="left"] .sa-how-to-start__visual {
    order: -1;
}

.sa-how-to-start[data-image-align="left"] .sa-how-to-start__visual {
    justify-content: flex-start;
}

.sa-how-to-start[data-image-align="center"] .sa-how-to-start__visual {
    justify-content: center;
}

.sa-how-to-start[data-image-align="right"] .sa-how-to-start__visual {
    justify-content: flex-end;
}

.sa-how-to-start__image {
    display: block;
    width: min(100%, 500px);
    max-height: clamp(220px, 21vw, 350px);
    object-fit: contain;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .sa-how-to-start__card {
        grid-template-columns: minmax(400px, 1fr) minmax(280px, 0.82fr);
    }

    .sa-how-to-start__title {
        max-width: 620px;
        font-size: clamp(38px, 4.1vw, 48px);
    }

    .sa-how-to-start__image {
        width: min(100%, 420px);
        max-height: 310px;
    }
}

@media (max-width: 991px) {
    .sa-how-to-start {
        padding: clamp(38px, 8vw, 62px) 0;
    }

    .sa-how-to-start__container {
        width: min(100% - 32px, var(--sa-how-shell-max, 1440px));
    }

    .sa-how-to-start__card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: clamp(28px, 7vw, 42px);
        gap: 24px;
    }

    .sa-how-to-start__title {
        font-size: clamp(32px, 8.2vw, 46px);
        letter-spacing: -0.052em;
        text-wrap: balance;
    }

    .sa-how-to-start__subtitle {
        font-size: 16px;
    }

    .sa-how-to-start[data-button-mobile-align="left"] .sa-how-to-start__actions {
        justify-content: flex-start;
    }

    .sa-how-to-start[data-button-mobile-align="center"] .sa-how-to-start__actions {
        justify-content: center;
    }

    .sa-how-to-start[data-button-mobile-align="right"] .sa-how-to-start__actions {
        justify-content: flex-end;
    }

    .sa-how-to-start[data-image-mobile-position="below"] .sa-how-to-start__visual {
        order: 0;
    }

    .sa-how-to-start[data-image-mobile-position="above"] .sa-how-to-start__visual {
        order: -1;
    }

    .sa-how-to-start[data-image-mobile-align="left"] .sa-how-to-start__visual {
        justify-content: flex-start;
    }

    .sa-how-to-start[data-image-mobile-align="center"] .sa-how-to-start__visual {
        justify-content: center;
    }

    .sa-how-to-start[data-image-mobile-align="right"] .sa-how-to-start__visual {
        justify-content: flex-end;
    }

    .sa-how-to-start[data-image-mobile-size="small"] .sa-how-to-start__image {
        width: min(100%, 280px);
        max-height: 220px;
    }

    .sa-how-to-start[data-image-mobile-size="medium"] .sa-how-to-start__image {
        width: min(100%, 340px);
        max-height: 260px;
    }

    .sa-how-to-start[data-image-mobile-size="large"] .sa-how-to-start__image {
        width: min(100%, 420px);
        max-height: 310px;
    }

    .sa-how-to-start[data-image-mobile-size="full"] .sa-how-to-start__image {
        width: 100%;
        max-height: 360px;
    }
}

@media (max-width: 575px) {
    .sa-how-to-start__card {
        border-radius: 22px;
    }

    .sa-how-to-start__button {
        min-height: 54px;
        padding: 12px 12px 12px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sa-how-to-start__button,
    .sa-how-to-start__button-icon {
        transition: none;
    }

    .sa-how-to-start__button:hover .sa-how-to-start__button-icon,
    .sa-how-to-start__button:focus-visible .sa-how-to-start__button-icon {
        transform: none;
    }
}
