:root {
    --strm-navy: #06152e;
    --strm-orange: #ff5a0a;
    --strm-line: #dfe4ec;
    --strm-soft: #fff6f0;
}

.strm {
    color: var(--strm-navy);
    font-family: inherit;
    background: #fff;
    line-height: 1.55;
}

.strm * {
    box-sizing: border-box;
}

.strm svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}
.strm-hero svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.strm-wrap {
    width: min(1280px, calc(100% - 40px));
    margin-inline: auto;
}

.strm-hero {
    min-height: 380px;
    background-image:
        linear-gradient(
            90deg,
            #fff 0%,
            rgba(255, 255, 255, .96) 36%,
            rgba(255, 255, 255, .32) 65%,
            rgba(255, 255, 255, 0) 100%
        ),
        var(--strm-hero);
    background-size: cover;
    background-position: center;
}

.strm-hero-copy {
    padding-top: 28px;
}

.strm-breadcrumb {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 30px;
}

.strm-breadcrumb span {
    color: #8a94a6;
    padding: 0 9px;
}

.strm-hero h1 {
    font-size: 43px;
    line-height: 1.12;
    letter-spacing: -1.4px;
    margin: 0 0 12px;
    font-weight: 800;
}

.strm-hero h1 em {
    color: var(--strm-orange);
    font-style: normal;
}

.strm-lead {
    max-width: 430px;
    font-size: 17px;
    margin: 0;
}

.strm-promises {
    display: flex;
    gap: 44px;
    margin-top: 38px;
}

.strm-promises > div {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 190px;
}

.strm-promises i,
.strm-aside i,
.strm-next i,
.strm-how i {
    display: grid;
    place-items: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--strm-soft);
    color: var(--strm-orange);
    font-style: normal;
}

.strm-promises b,
.strm-promises small,
.strm-next b,
.strm-next small {
    display: block;
}

.strm-promises small {
    font-size: 11px;
    margin-top: 3px;
}

.strm-card {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
    margin-top: -14px;
    border: 1px solid var(--strm-line);
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(6, 21, 46, .07);
    background: #fff;
    overflow: hidden;
    position: relative;
}

.strm-form-side {
    padding: 28px;
}

.strm form > section {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--strm-line);
}

.strm form > section:nth-of-type(3) {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 8px;
}

.strm h2 {
    font-size: 21px;
    margin: 0 0 4px;
    text-align: left;
}

.strm form section > p {
    font-size: 13px;
    margin: 0 0 18px;
}

.strm-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.strm-choice {
    min-height: 125px;
    border: 1px solid var(--strm-line);
    border-radius: 8px;
    padding: 18px 42px 18px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    position: relative;
}

.strm-choice input {
    position: absolute;
    opacity: 0;
}

.strm-choice i {
    color: var(--strm-navy);
}

.strm-choice b,
.strm-choice small {
    display: block;
}

.strm-choice b {
    font-size: 17px;
}

.strm-choice small {
    font-size: 12px;
    margin-top: 4px;
}

.strm-choice mark {
    display: none;
    position: absolute;
    right: 12px;
    top: 12px;
    background: var(--strm-orange);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
}

.strm-choice.is-selected {
    border-color: var(--strm-orange);
    background: linear-gradient(135deg, #fff, #fff8f3);
}

.strm-choice.is-selected i,
.strm-choice.is-selected b {
    color: var(--strm-orange);
}

.strm-choice.is-selected mark {
    display: block;
}

.strm-details h2 {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.strm-details h2 button {
    border: 0;
    background: none;
    color: var(--strm-orange);
    font: inherit;
    font-size: 13px;
    cursor: pointer;
}

.strm-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 26px;
}

.strm-fields label > span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.strm-fields input,
.strm-fields select {
    width: 100%;
    height: 44px;
    border: 1px solid #cfd6e1;
    border-radius: 6px;
    padding: 0 12px;
    background: #fff;
    color: var(--strm-navy);
    font: inherit;
    font-size: 13px;
}

.strm-fields input:focus,
.strm-fields select:focus {
    border-color: var(--strm-orange);
    outline: 2px solid rgba(255, 90, 10, .12);
}

.strm-wide {
    grid-column: 1 / -1;
}

.strm-submit {
    width: 100%;
    border: 0;
    border-radius: 6px;
    height: 48px;
    background: linear-gradient(90deg, #ff5a0a, #ff6e0b);
    color: #fff;
    font: inherit;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(255, 90, 10, .18);
    text-align: center;
}

.strm-submit:disabled {
    opacity: .65;
}

.strm-submit span {
    margin-left: 8px;
}

.strm-secure {
    text-align: center;
    color: #667085;
    font-size: 12px;
    margin: 10px 0 0;
}

.strm-secure svg {
    width: 14px;
    height: 14px;
    vertical-align: -3px;
}

.strm-error {
    background: #fff1f1;
    color: #a30000;
    border: 1px solid #fac7c7;
    border-radius: 6px;
    padding: 10px;
    margin-top: 12px;
}

.strm-hp {
    position: absolute !important;
    left: -9999px !important;
}

.strm-aside {
    background: linear-gradient(150deg, #fff, #fff9f5);
    border-left: 1px solid var(--strm-line);
    padding: 68px 62px;
    text-align: center;
}

.strm-aside .strm-big-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
}

.strm-aside .strm-big-icon svg {
    width: 36px;
    height: 36px;
}

.strm-aside > h2 {
    font-size: 28px;
    text-align: center;
}

.strm-aside > p {
    font-size: 14px;
}

.strm-aside hr {
    border: 0;
    border-top: 1px solid var(--strm-line);
    margin: 30px 0;
    text-align: left;
}

.strm-aside h3 {
    text-align: left;
    font-size: 18px;
}

.strm-next {
    display: flex;
    gap: 15px;
    text-align: left;
    margin: 20px 0;
}

.strm-next i {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
}

.strm-next small {
    font-size: 12px;
    margin-top: 5px;
}

.strm-urgent {
    border: 1px solid var(--strm-line);
    border-radius: 8px;
    padding: 20px;
    margin-top: 34px;
}

.strm-urgent p {
    margin: 6px 0 0;
    font-size: 13px;
}

.strm-urgent strong {
    color: var(--strm-orange);
}

.strm-how {
    padding: 28px 0 12px;
    text-align: center;
}

.strm-how > h2 {
    font-size: 25px;
    margin-bottom: 18px;
    text-align: center;
}

.strm-how > div {
    display: flex;
    align-items: center;
    border: 1px solid var(--strm-line);
    border-radius: 12px;
    padding: 18px 28px;
}

.strm-how article {
    flex: 1;
    padding: 0px 40px;
}

.strm-how article i {
    margin: 0 auto 8px;
}

.strm-how article b {
    display: block;
    font-size: 13px;
}

.strm-how article p {
    font-size: 11px;
}

.strm-how > div > span {
    font-size: 30px;
    font-weight: 200;
}

.strm-result-head {
    text-align: center;
    padding: 30px 15px;
}

.strm-result-head i {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--strm-soft);
    color: var(--strm-orange);
    font-style: normal;
    font-size: 30px;
    margin: auto;
}

.strm-result-head > p:first-of-type {
    font-size: 12px;
    color: #667085;
}

.strm-result-head h2 {
    font-size: 28px;
    justify-content: center;
    display: flex;
}

.strm-match-list {
    display: grid;
    gap: 14px;
}

.strm-match {
    display: grid;
    grid-template-columns: 170px 1fr;
    border: 1px solid var(--strm-line);
    border-radius: 10px;
    overflow: hidden;
}

.strm-match-img {
    background: #f1f3f5;
    min-height: 145px;
}

.strm-match-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strm-match > div:last-child {
    padding: 18px;
}

.strm-match small {
    color: var(--strm-orange);
    font-weight: 700;
    text-transform: uppercase;
}

.strm-match h3,
.strm-match p {
    margin: 3px 0;
}

.strm-match a {
    float: right;
    background: var(--strm-orange);
    color: #fff !important;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 5px;
    font-weight: 700;
}

.strm-again {
    display: block;
    margin: 22px auto 0;
    border: 0;
    background: none;
    color: var(--strm-orange);
    font-weight: 700;
    cursor: pointer;
}


/* ==============================
   TABLET / MOBILE
   ============================== */

@media (max-width: 800px) {

    .strm-wrap {
        /*width: min(100% - 24px, 680px);*/
        max-width: 100%;
    }

    .strm-hero {
        min-height: auto;
        background-position: 68% center;
    }

    .strm-hero-copy {
        padding: 24px 0 105px;
    }

    .strm-hero h1 {
        font-size: 33px;
    }

    .strm-promises {
        gap: 15px;
        display: grid;
    }

    .strm-promises > div {
        max-width: 290px;
    }

    .strm-card {
        grid-template-columns: 1fr;
        margin-top: -70px;
    }

    .strm-aside {
        border-left: 0;
        border-top: 1px solid var(--strm-line);
        padding: 38px 26px;
    }

    .strm-how > div {
        display: grid;
        grid-template-columns: 1fr;
    }

    .strm-how > div > span {
        transform: rotate(90deg);
        margin-left: 3px;
    }

    .strm-fields {
        grid-template-columns: 1fr;
    }

    .strm-wide {
        grid-column: auto;
    }
}


/* ==============================
   SMALL MOBILE
   ============================== */

@media (max-width: 520px) {

    .strm-hero h1 {
        font-size: 29px;
    }

    .strm-lead {
        font-size: 15px;
        max-width: 330px;
    }

    .strm-choice-grid {
        grid-template-columns: 1fr;
    }

    .strm-form-side {
        padding: 20px 16px;
    }

    .strm-details h2 {
        align-items: flex-start;
        flex-direction: column;
    }

    .strm-match {
        grid-template-columns: 1fr;
    }

    .strm-match-img {
        height: 180px;
    }

    .strm-match a {
        float: none;
        display: block;
        text-align: center;
        margin-top: 12px;
    }
    .strm-details h2 button{
        margin-bottom: 30px;
    }
}


/* ==============================
   REDUCED MOTION
   ============================== */

@media (prefers-reduced-motion: reduce) {

    .strm * {
        scroll-behavior: auto !important;
    }
}