.yc-hiw-section {
    --yc-hiw-accent: var(--uicolor, #ff681d);
    --yc-hiw-dark: #1f232c;
    --yc-hiw-text: #686c75;
    --yc-hiw-border: #e3e4e7;
    --yc-hiw-background: none;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    background-image: var(--yc-hiw-background);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.yc-hiw-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(470px, 0.95fr);
    gap: clamp(55px, 7vw, 110px);
    align-items: start;
}

.yc-hiw-main {
    min-width: 0;
    padding-top: 20px;
}

.yc-hiw-header {
    max-width: 590px;
}

.yc-hiw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-block-end: 20px;
    color: #8c8d92;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.2;
    text-transform: uppercase;
}

.yc-hiw-eyebrow-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--yc-hiw-accent);
    font-size: 15px;
    letter-spacing: 0;
}

.yc-hiw-eyebrow-icon svg,
.yc-hiw-eyebrow-icon img {
    display: block;
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.yc-hiw-title {
    max-width: 640px;
    margin: 0;
    color: var(--yc-hiw-dark);
    font-size: 30px;
    font-weight: 700;
}

.yc-hiw-description {
    max-width: 590px;
    margin-block: 22px;
    color: var(--yc-hiw-text);
    font-size: 17px;
}

.yc-hiw-description > :first-child {
    margin-block-start: 0;
}

.yc-hiw-description > :last-child {
    margin-block-end: 0;
}

.yc-hiw-button {
    display: flex;
    margin-block-start: 34px;
}

.yc-hiw-button a {
    min-height: 56px;
    border-radius: 999px;
}

.yc-hiw-visual {
    position: relative;
    width: min(100%, 640px);
    min-height: 430px;
    margin-block-start: 45px;
}

.yc-hiw-compare {
    --yc-hiw-position: 50%;
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: 0;
    width: min(75%, 460px);
    aspect-ratio: 1.08 / 1;
    overflow: visible;
    isolation: isolate;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.yc-hiw-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.yc-hiw-image img {
    display: block;
    object-fit: contain;
    object-position: center bottom;
    pointer-events: none;
}

.yc-hiw-image--before {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--yc-hiw-position)) 0 0);
}

[dir="rtl"] .yc-hiw-image--before {
    clip-path: inset(0 0 0 calc(100% - var(--yc-hiw-position)));
}

.yc-hiw-divider {
    position: absolute;
    z-index: 3;
    inset-block: 0;
    inset-inline-start: var(--yc-hiw-position);
    width: 3px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 1px rgba(25, 28, 35, 0.08);
    transform: translateX(-50%);
    pointer-events: none;
}

[dir="rtl"] .yc-hiw-divider {
    transform: translateX(50%);
}

.yc-hiw-handle {
    position: absolute;
    z-index: 4;
    inset-block-start: 50%;
    inset-inline-start: var(--yc-hiw-position);
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: rgba(31, 35, 44, 0.88);
    box-shadow: 0 6px 18px rgba(18, 21, 29, 0.24);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

[dir="rtl"] .yc-hiw-handle {
    transform: translate(50%, -50%);
}

.yc-hiw-handle-arrow {
    width: 0;
    height: 0;
    border-block: 5px solid transparent;
}

.yc-hiw-handle-arrow--back {
    border-inline-end: 7px solid #fff;
}

.yc-hiw-handle-arrow--next {
    border-inline-start: 7px solid #fff;
}

.yc-hiw-range {
    position: absolute;
    z-index: 5;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: ew-resize;
    opacity: 0;
}

.yc-hiw-range:focus-visible + * {
    outline: none;
}

.yc-hiw-compare:has(.yc-hiw-range:focus-visible) .yc-hiw-handle {
    outline: 3px solid color-mix(in srgb, var(--yc-hiw-accent) 45%, transparent);
    outline-offset: 4px;
}

.yc-hiw-progress {
    --yc-hiw-progress: 80;
    position: absolute;
    z-index: 6;
    inset-block-start: -70px;
    inset-inline-end: 20px;
    display: grid;
    width: 170px;
    height: 170px;
    place-items: center;
    border-radius: 50%;
    background: conic-gradient(
        var(--yc-hiw-accent) calc(var(--yc-hiw-progress) * 1%),
        #f4f4f4 0
    );
}

.yc-hiw-progress::before {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: inherit;
    background: #fff;
}

.yc-hiw-progress-value {
    position: relative;
    z-index: 1;
    color: #050505;
    font-size: clamp(38px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1;
}

.yc-hiw-visual-line {
    position: absolute;
    inset-block-start: 100px;
    inset-inline-end: 93px;
    width: 17px;
    height: 300px;
    background: #F6F6F6;
}

.yc-hiw-steps {
    display: grid;
    gap: 20px;
}

.yc-hiw-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
    position: relative;
    min-height: 170px;
    padding: 38px 40px;
    border: 1px solid var(--yc-hiw-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

article.yc-hiw-step:hover::before {
    height: 100%;
}

article.yc-hiw-step::before {
    background-color: #f6f6f6;
    border-radius: 10px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    z-index: 0;
    transition: all 300ms ease;
}

.yc-hiw-step-number {
    display: grid;
    width: 50px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    background: var(--yc-hiw-dark);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: 0.2s all ease;
    z-index: 0;
}

.yc-hiw-step:hover .yc-hiw-step-number {
    background-color: var(--uicolor);
}

.yc-hiw-step-content {
    z-index: 0;
}

.yc-hiw-step-title {
    margin: 0;
    color: var(--yc-hiw-dark);
    font-size: 22px;
    font-weight: 600;
}

.yc-hiw-step-description {
    margin-block-start: 12px;
    color: var(--secondarytext);
    font-size: 14px;
    line-height: 1.85;
}

.yc-hiw-step-description > :first-child {
    margin-block-start: 0;
}

.yc-hiw-step-description > :last-child {
    margin-block-end: 0;
}

@media (max-width: 1180px) {
    .yc-hiw-container {
        grid-template-columns: minmax(0, 1fr) minmax(410px, 0.9fr);
        gap: 45px;
    }

    .yc-hiw-visual-line {
    display: none;
}

    .yc-hiw-visual {
        min-height: 390px;
    }

    .yc-hiw-progress {
        width: 145px;
        height: 145px;
    }
}

@media (max-width: 991px) {
    .yc-hiw-container {
        grid-template-columns: 1fr;
    }

    .yc-hiw-main,
    .yc-hiw-header,
    .yc-hiw-visual {
        width: 100%;
        max-width: none;
    }

    .yc-hiw-visual {
        max-width: 611px;
        min-height: 460px;
        margin-inline: auto;
    }

    .yc-hiw-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yc-hiw-step {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 0;
    }
}

@media (max-width: 767px) {

    .yc-hiw-title {
        font-size: clamp(34px, 10vw, 46px);
        letter-spacing: -1px;
    }

    .yc-hiw-description {
        margin-block-start: 22px;
        font-size: 16px;
    }

    .yc-hiw-visual {
        min-height: 390px;
        margin-block-start: 10px;
    }

    .yc-hiw-compare {
        width: 88%;
    }

    .yc-hiw-progress {
        display: none
    }

    .yc-hiw-progress::before {
        inset: 11px;
    }

    .yc-hiw-progress-value {
        font-size: 28px;
    }

    .yc-hiw-visual-line {
        display: none;
    }

    .yc-hiw-steps {
        grid-template-columns: 1fr;
    }

    .yc-hiw-step {
        grid-template-columns: 50px minmax(0, 1fr);
        padding: 14px 10px;
    }

.yc-hiw-step-title {
    font-size: 15px;
}

.yc-hiw-step-description {
    font-size: 13px;
    margin-block-start: 3px;
}

.yc-hiw-step-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
}
}

@media (max-width: 480px) {
    .yc-hiw-eyebrow {
        gap: 6px;
        font-size: 12px;
        letter-spacing: 2.5px;
        margin-bottom: 10px;
    }

    .yc-hiw-visual {
        min-height: 270px;
    }

    .yc-hiw-compare {
        width: 94%;
    }

    .yc-hiw-step {
        gap: 10px;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .yc-hiw-step {
        transition: none;
    }
}

.-ycwt-whyus .-ycw-row {
    padding-bottom: 0 !important;
}