.yanodeudas-hero {
    width: 100%;
    min-height: 600px;
    background: linear-gradient(180deg, #eef8fd 0%, #fcfcfd 100%);
}

.yanodeudas-hero__inner {
    width: 100%;
    max-width: 1240px;
    min-height: 600px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.yanodeudas-hero__left,
.yanodeudas-hero__right {
    min-height: 600px;
}

.yanodeudas-hero__left {
    display: flex;
    align-items: center;
}

.yanodeudas-hero__content {
    max-width: 560px;
}

.yanodeudas-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    margin: 0 0 10px;
}

.yanodeudas-rating__label,
.yanodeudas-rating__brand-text {
    color: #191919;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-style: normal;
    line-height: 1;
    white-space: nowrap;
}

.yanodeudas-rating__label {
    font-weight: 700;
}

.yanodeudas-rating__stars {
    display: inline-flex;
    align-items: center;
}

.yanodeudas-rating__stars-svg {
    display: block;
    width: 98px;
    height: auto;
}

.yanodeudas-rating__brand {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.yanodeudas-rating__brand-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
}

.yanodeudas-rating__brand-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.yanodeudas-rating__brand-text {
    font-weight: 500;
}

.yanodeudas-hero__title {
    margin: 0 0 10px;
    color: #000;
    font-family: Roobert, sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 900;
    line-height: 62px;
    letter-spacing: 0.26px;
}

.yanodeudas-hero__description {
    margin: 0 0 21px;
    color: #45556c;
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: -0.45px;
}

.yanodeudas-hero__button {
    align-self: flex-start;
}

.yanodeudas-hero__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.yanodeudas-debt-card {
    width: 100%;
    max-width: 461px;
    min-height: 474px;
    padding: 26px 39px 34px;
    box-sizing: border-box;
    border-radius: 20px;
    border: 1.5px solid #dde3ed;
    background: #fff;
    box-shadow: 0 4px 10px 5px rgba(0, 0, 0, 0.05);
}

.yanodeudas-debt-card__amount-skeleton,
.yanodeudas-debt-card__options-skeleton {
    display: none;
    pointer-events: none;
}

.yanodeudas-debt-card__skeleton-chip {
    display: block;
    background: linear-gradient(90deg, #eef3fb 0%, #f7faff 50%, #eef3fb 100%);
    background-size: 200% 100%;
    animation: yanodeudas-skeleton-shimmer 1.4s ease-in-out infinite;
}

.yanodeudas-debt-card__amount-skeleton {
    width: 100%;
    height: 106px;
    border-radius: 20px;
    background: linear-gradient(90deg, #eef3fb 0%, #f7faff 50%, #eef3fb 100%);
    background-size: 200% 100%;
    animation: yanodeudas-skeleton-shimmer 1.4s ease-in-out infinite;
}

.yanodeudas-debt-card__skeleton-chip {
    height: 34px;
    border-radius: 17px;
}

.yanodeudas-debt-card__options-skeleton {
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.yanodeudas-debt-card.is-loading .yanodeudas-debt-card__amount-input,
.yanodeudas-debt-card.is-loading .yanodeudas-debt-card__options {
    display: none;
}

.yanodeudas-debt-card.is-loading .yanodeudas-debt-card__amount-skeleton {
    display: block;
}

.yanodeudas-debt-card.is-loading .yanodeudas-debt-card__options-skeleton {
    display: grid;
}

@keyframes yanodeudas-skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.yanodeudas-debt-card__title {
    margin: 0 0 15px;
    color: #000;
    text-align: center;
    font-family: Roobert, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.yanodeudas-debt-card__amount-wrap {
    margin-bottom: 15px;
}

.yanodeudas-debt-card__amount-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.yanodeudas-debt-card__amount-input {
    width: 100%;
    height: 106px;
    box-sizing: border-box;
    border: 1.5px solid #dde3ed;
    border-radius: 20px;
    background: #f9fbff;
    color: #000;
    text-align: center;
    font-family: "Test Söhne", Roobert, sans-serif;
    font-size: 59px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.yanodeudas-debt-card__amount-input:focus {
    border-color: #3266e3;
    box-shadow: 0 0 0 4px rgba(50, 102, 227, 0.08);
}

.yanodeudas-debt-card__credits {
    margin-bottom: 26px;
}

.yanodeudas-debt-card__credits-title {
    margin: 0 0 14px;
    color: #000;
    text-align: center;
    font-family: Roobert, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 27px;
}

.yanodeudas-debt-card__options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.yanodeudas-debt-card__option {
    min-height: 34px;
    padding: 0 10px;
    border: 2px solid #3266e3;
    border-radius: 17px;
    background: #fff;
    color: #000;
    font-family: Roobert, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(50, 102, 227, 0);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.yanodeudas-debt-card__option:hover,
.yanodeudas-debt-card__option:focus {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(50, 102, 227, 0.14);
    outline: none;
}

.yanodeudas-debt-card__option.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, #3266e3 0%, #4b7df2 100%);
    box-shadow: 0 10px 24px rgba(50, 102, 227, 0.22);
    color: #fff;
}

.yanodeudas-debt-card__submit {
    width: 100%;
    min-height: 60px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 900;
}

.yanodeudas-debt-card__trust {
    min-height: 75px;
    margin-top: 16px;
    padding: 14px 16px;
    box-sizing: border-box;
    border-radius: 6px;
    background: rgba(50, 102, 227, 0.1);
    display: grid;
    grid-template-columns: 37px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.yanodeudas-debt-card__trust-icon {
    display: block;
    width: 37px;
    height: 48px;
    object-fit: contain;
}

.yanodeudas-debt-card__trust-content {
    min-width: 0;
}

.yanodeudas-debt-card__trust-title {
    margin: 0;
    color: #000;
    font-family: Roobert, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 12px;
    letter-spacing: -0.45px;
}

.yanodeudas-debt-card__trust-description {
    margin: 8px 0 0;
    color: #000;
    font-family: Roobert, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: -0.45px;
}

.yanodeudas-help {
    width: 100%;
    padding: 60px 0;
    background: #fff;
}

.yanodeudas-help__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.yanodeudas-help__left {
    display: flex;
    align-items: center;
}

.yanodeudas-help__content {
    max-width: 565px;
}

.yanodeudas-help__eyebrow {
    margin: 0 0 10px;
    color: #3266e3;
    font-family: Roobert, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.264px;
}

.yanodeudas-help__title {
    margin: 0 0 30px;
    color: #000;
    font-family: Roobert, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0.264px;
}

.yanodeudas-help__list {
    display: grid;
    gap: 18px;
}

.yanodeudas-help__item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
}

.yanodeudas-help__item-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #edefec;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.yanodeudas-help__item-icon {
    width: 17px;
    height: 18px;
    object-fit: contain;
}

.yanodeudas-help__item-text {
    margin: 0;
    color: #464745;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: -0.449px;
}

.yanodeudas-help__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.yanodeudas-help__image {
    display: block;
    width: 100%;
    max-width: 461px;
    height: auto;
    border-radius: 20px;
}

.yanodeudas-process {
    --yanodeudas-process-card-width: 294px;
    width: 100%;
    min-height: 724px;
    padding: 60px 0 96px;
    box-sizing: border-box;
    background: #fafaf5;
}

.yanodeudas-process__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.yanodeudas-process__header {
    margin: 0 auto 42px;
    text-align: center;
}

.yanodeudas-process__track-wrap {
    width: min(1272px, calc(100% - 48px));
    margin: 0 auto;
}

.yanodeudas-process__eyebrow {
    margin: 0 0 6px;
    color: #3266e3;
    font-family: Roobert, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.264px;
}

.yanodeudas-process__title {
    margin-bottom: 80px;
    color: #1d293d;
    font-family: Roobert, sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.264px;
}

.yanodeudas-process__track {
    display: grid;
    grid-template-columns: repeat(4, var(--yanodeudas-process-card-width));
    justify-content: space-between;
    align-items: stretch;
}

.yanodeudas-process__dots {
    display: none;
}

.yanodeudas-process__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgb(217, 217, 217);
    transition: background-color 0.2s ease;
}

.yanodeudas-process__dot.is-active {
    background: rgb(50, 102, 227);
}

.yanodeudas-reviews {
    width: 100%;
    padding: 60px 0 96px;
    box-sizing: border-box;
    background: #fff;
}

.yanodeudas-reviews__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.yanodeudas-reviews__header {
    margin: 0 auto;
    text-align: center;
}

.yanodeudas-reviews__eyebrow {
    margin: 0 0 6px;
    color: #3266e3;
    font-family: Roobert, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.264px;
}

.yanodeudas-reviews__title {
    margin: 0;
    color: #1d293d;
    font-family: Roobert, sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.264px;
}

.yanodeudas-reviews__cards-wrap {
    width: 100%;
    margin-top: 51px;
    overflow: hidden;
}

.yanodeudas-reviews__cards {
    position: relative;
    width: 100%;
    max-width: 1240px;
    height: 310px;
    margin: 0 auto;
    overflow: hidden;
}

.yanodeudas-reviews__controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
}

.yanodeudas-reviews__arrow {
    display: inline-flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 48px;
    background: #000;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

.yanodeudas-reviews__arrow:hover,
.yanodeudas-reviews__arrow:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.yanodeudas-reviews__arrow.is-disabled,
.yanodeudas-reviews__arrow:disabled {
    opacity: 0.38;
    cursor: default;
    transform: none;
}

.yanodeudas-reviews__arrow svg {
    display: block;
    width: 9px;
    height: 17px;
    transform: rotate(180deg);
}

.yanodeudas-reviews__arrow--next svg {
    transform: none;
}

.yanodeudas-financial-cta {
    width: 100%;
    /* min-height: 561px; */
    background: #3266e3;
}

.yanodeudas-financial-cta__inner {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: 1240px;
    min-height: 561px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 482px;
    gap: 40px;
    align-items: center;
}

.yanodeudas-financial-cta__content {
    max-width: 560px;
}

.yanodeudas-financial-cta__title {
    margin: 0;
    color: #fff;
    font-family: Roobert, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0.264px;
}

.yanodeudas-financial-cta__description {
    margin: 12px 0 0;
    color: #fff;
    font-family: Roobert, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 19.5px;
    letter-spacing: -0.449px;
}

.yanodeudas-financial-cta__button {
    display: inline-flex;
    width: 164px;
    height: 49px;
    margin-top: 24px;
    justify-content: center;
    align-items: center;
    border-radius: 24.5px;
    background: #000;
    color: #fff;
    font-family: Roobert, sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.yanodeudas-financial-cta__button:hover,
.yanodeudas-financial-cta__button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
    outline: none;
}

.yanodeudas-financial-cta__right {
    display: flex;
    justify-content: center;
}

.yanodeudas-financial-cta__visual {
    position: relative;
    width: 482px;
    height: 482px;
    border-radius: 50%;
    overflow: hidden;
}

.yanodeudas-financial-cta__visual::before,
.yanodeudas-financial-cta__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}

.yanodeudas-financial-cta__visual::before {
    background: linear-gradient(180deg, rgba(0, 75, 255, 0) 0%, #004bff 100%);
    z-index: 0;
}

.yanodeudas-financial-cta__visual::after {
    background: transparent;
    z-index: 2;
}

.yanodeudas-financial-cta__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.yanodeudas-faq {
    width: 100%;
    padding: 60px 0 96px;
    box-sizing: border-box;
    background: #fff;
}

.yanodeudas-faq__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.yanodeudas-faq__header {
    text-align: center;
}

.yanodeudas-faq__title {
    margin: 0;
    color: #1d293d;
    text-align: center;
    font-family: Roobert, sans-serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: 0.369px;
}

.yanodeudas-faq__eyebrow {
    margin: 8px 0 0;
    color: #3266e3;
    text-align: center;
    font-family: Roobert, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    letter-spacing: -0.439px;
}

.yanodeudas-faq__list {
    display: grid;
    gap: 16px;
    width: 100%;
    max-width: 1020px;
    margin: 65px auto 0;
}

.yanodeudas-alternatives {
    width: 100%;
    min-height: 454px;
    padding: 88px 0;
    box-sizing: border-box;
    background: #fafaf5;
}

.yanodeudas-alternatives__inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
    align-items: start;
}

.yanodeudas-alternatives__left {
    display: flex;
    justify-content: flex-start;
}

.yanodeudas-alternatives__title {
    margin: 0;
    color: #000;
    font-family: Roobert, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0.264px;
}

.yanodeudas-alternatives__right {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

@media (max-width: 1279px) and (min-width: 768px) {
    .yanodeudas-process__track-wrap {
        width: min(660px, calc(100% - 48px));
    }

    .yanodeudas-process__track {
        grid-template-columns: repeat(2, var(--yanodeudas-process-card-width));
        row-gap: 32px;
    }

    .yanodeudas-reviews__cards {
        max-width: 100%;
    }

    .yanodeudas-financial-cta__inner {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 32px;
    }

    .yanodeudas-financial-cta__title {
        font-size: 36px;
        line-height: 36px;
    }

    .yanodeudas-financial-cta__visual {
        width: 380px;
        height: 380px;
    }

    .yanodeudas-faq__list {
        max-width: 100%;
    }

    .yanodeudas-alternatives {
        min-height: auto;
        padding: 72px 0;
    }

    .yanodeudas-alternatives__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .yanodeudas-alternatives__left {
        justify-content: center;
    }

    .yanodeudas-alternatives__title {
        text-align: center;
    }

    .yanodeudas-alternatives__right {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .yanodeudas-hero {
        min-height: auto;
    }

    .yanodeudas-hero__inner {
        min-height: auto;
        padding: 32px 16px 0;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .yanodeudas-hero__left {
        min-height: auto;
        justify-content: center;
        padding-bottom: 24px;
    }

    .yanodeudas-hero__right {
        min-height: 0;
        justify-content: center;
    }

    .yanodeudas-hero__content {
        max-width: 100%;
        text-align: center;
    }

    .yanodeudas-rating {
        gap: 6px;
        margin: 0 auto 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .yanodeudas-rating__label,
    .yanodeudas-rating__brand-text {
        font-size: 12px;
    }

    .yanodeudas-rating__stars-svg {
        width: 88px;
    }

    .yanodeudas-rating__brand-icon {
        width: 15px;
        height: 15px;
        flex-basis: 15px;
    }

    .yanodeudas-hero__title {
        font-size: 38px;
        line-height: 40px;
        letter-spacing: 0;
    }

    .yanodeudas-hero__description {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.2px;
    }

    .yanodeudas-hero__button {
        align-self: center;
    }

    .yanodeudas-debt-card {
        max-width: 100%;
        min-height: auto;
        padding: 24px 18px 24px;
    }

    .yanodeudas-debt-card__title {
        font-size: 22px;
    }

    .yanodeudas-debt-card__amount-input {
        height: 112px;
        font-size: 40px;
    }

    .yanodeudas-debt-card__options {
        gap: 8px;
    }

    .yanodeudas-debt-card__option {
        min-height: 34px;
        padding: 0 6px;
        font-size: 12px;
    }

    .yanodeudas-debt-card__submit {
        min-height: 56px;
        font-size: 17px;
    }

    .yanodeudas-debt-card__trust {
        margin-top: 14px;
        padding: 12px 14px;
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
    }

    .yanodeudas-debt-card__trust-icon {
        width: 32px;
        height: 41px;
    }

    .yanodeudas-debt-card__amount-skeleton {
        height: 112px;
    }

    .yanodeudas-debt-card__options-skeleton {
        gap: 8px;
    }

    .yanodeudas-help {
        padding: 56px 0;
    }

    .yanodeudas-help__inner {
        padding: 0 16px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .yanodeudas-help__content {
        max-width: 100%;
    }

    .yanodeudas-help__left {
        order: 2;
    }

    .yanodeudas-help__right {
        order: 1;
    }

    .yanodeudas-help__eyebrow {
        margin-bottom: 6px;
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    .yanodeudas-help__title {
        margin-bottom: 24px;
        font-size: 31px;
        line-height: 33px;
        letter-spacing: 0;
        text-align: center;
    }

    .yanodeudas-help__list {
        gap: 16px;
    }

    .yanodeudas-help__item {
        gap: 12px;
    }

    .yanodeudas-help__item-text {
        font-size: 15px;
        line-height: 19px;
    }

    .yanodeudas-help__right {
        justify-content: center;
    }

    .yanodeudas-help__image {
        max-width: 100%;
    }

    .yanodeudas-process {
        min-height: auto;
        padding: 56px 0;
    }

    .yanodeudas-process__inner {
        padding: 0 16px;
    }

    .yanodeudas-process__header {
        margin-bottom: 28px;
    }

    .yanodeudas-process__eyebrow {
        margin-bottom: 4px;
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    .yanodeudas-process__title {
        font-size: 29px;
        line-height: 33px;
        letter-spacing: 0;
        text-align: center;
    }

    .yanodeudas-process__track-wrap {
        width: 100%;
    }

    .yanodeudas-process__track {
        display: flex;
        justify-content: flex-start;
        padding:
            24px
            max(16px, calc((100vw - var(--yanodeudas-process-card-width)) / 2))
            10px;
        gap: 24px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-inline:
            max(16px, calc((100vw - var(--yanodeudas-process-card-width)) / 2));
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .yanodeudas-process__track::-webkit-scrollbar {
        display: none;
    }

    .yanodeudas-process__dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 14px;
    }

    .yanodeudas-reviews {
        padding: 56px 0;
    }

    .yanodeudas-reviews__inner {
        padding: 0 16px;
    }

    .yanodeudas-reviews__eyebrow {
        margin-bottom: 4px;
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    .yanodeudas-reviews__title {
        font-size: 29px;
        line-height: 33px;
        letter-spacing: 0;
        text-align: center;
    }

    .yanodeudas-reviews__cards-wrap {
        margin-top: 32px;
    }

    .yanodeudas-reviews__cards {
        max-width: 100%;
        height: 310px;
    }

    .yanodeudas-financial-cta {
        min-height: auto;
    }

    .yanodeudas-financial-cta__inner {
        --yanodeudas-financial-cta-mobile-overlay-width: min(402px, calc(100vw - 32px));
        --yanodeudas-financial-cta-mobile-overlay-height: calc(var(--yanodeudas-financial-cta-mobile-overlay-width) * 429 / 402);
        min-height: auto;
        padding: 56px 16px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .yanodeudas-financial-cta__right {
        order: 1;
        position: relative;
        z-index: 0;
    }

    .yanodeudas-financial-cta__left {
        order: 2;
        position: relative;
        z-index: 2;
        width: 100%;
        margin-top: clamp(-96px, -23vw, -68px);
    }

    .yanodeudas-financial-cta__content {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .yanodeudas-financial-cta__title {
        display: block;
        width: calc(100% + 32px);
        margin-left: -16px;
        max-width: none;
        font-size: 25px;
        line-height: 29px;
        letter-spacing: 0;
    }

    .yanodeudas-financial-cta__title br {
        display: none;
    }

    .yanodeudas-financial-cta__description {
        font-size: 16px;
        line-height: 20px;
        letter-spacing: -0.2px;
    }

    .yanodeudas-financial-cta__button {
        margin-right: auto;
        margin-left: auto;
    }

    .yanodeudas-financial-cta__visual {
        width: var(--yanodeudas-financial-cta-mobile-overlay-width);
        height: var(--yanodeudas-financial-cta-mobile-overlay-width);
        margin: 0 auto;
    }

    .yanodeudas-financial-cta__visual::after {
        background: transparent;
    }

    .yanodeudas-financial-cta__inner::after {
        content: "";
        position: absolute;
        top: 180px;
        left: 50%;
        width: var(--yanodeudas-financial-cta-mobile-overlay-width);
        height: var(--yanodeudas-financial-cta-mobile-overlay-height);
        transform: translateX(-50%);
        background: linear-gradient(180deg, rgba(50, 102, 227, 0) 1%, #3266e3 46%);
        z-index: 1;
        pointer-events: none;
    }

    .yanodeudas-faq {
        padding: 56px 0;
    }

    .yanodeudas-faq__inner {
        padding: 0 16px;
    }

    .yanodeudas-faq__title {
        font-size: 29px;
        line-height: 33px;
        letter-spacing: 0;
    }

    .yanodeudas-faq__eyebrow {
        margin-top: 6px;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: -0.2px;
    }

    .yanodeudas-faq__list {
        gap: 12px;
        margin-top: 40px;
    }

    .yanodeudas-alternatives {
        min-height: auto;
        padding: 56px 0;
    }

    .yanodeudas-alternatives__inner {
        padding: 0 16px;
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .yanodeudas-alternatives__left {
        justify-content: center;
    }

    .yanodeudas-alternatives__title {
        font-size: 30px;
        line-height: 32px;
        letter-spacing: 0;
        text-align: center;
    }

    .yanodeudas-alternatives__right {
        flex-direction: column;
        gap: 16px;
    }

    .yanodeudas-alternatives__title br {
        display: none;
    }
}
