.odish-how-section {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 110px;
    padding: clamp(86px, 9vw, 132px) 0 clamp(80px, 8vw, 118px);
    background:
        radial-gradient(circle at 14% 22%, rgba(229, 9, 20, .08), transparent 30%),
        radial-gradient(circle at 88% 30%, rgba(229, 9, 20, .07), transparent 28%),
        linear-gradient(180deg, #fffafa 0%, #ffffff 46%, #fffafa 100%);
}

.odish-how-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(229, 9, 20, .035), transparent 24%, transparent 76%, rgba(229, 9, 20, .035));
}

.odish-how-orb,
.odish-how-dots,
.odish-how-curve,
.odish-how-spark {
    position: absolute;
    pointer-events: none;
}

.odish-how-orb {
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: rgba(229, 9, 20, .08);
    filter: blur(38px);
}

.odish-how-orb-left {
    left: -230px;
    top: 118px;
}

.odish-how-orb-right {
    right: -220px;
    top: 126px;
}

.odish-how-dots {
    width: 190px;
    height: 150px;
    opacity: .24;
    background-image: radial-gradient(rgba(229, 9, 20, .55) 2px, transparent 2px);
    background-size: 16px 16px;
}

.odish-how-dots-left {
    left: 0;
    top: 250px;
    mask-image: linear-gradient(90deg, #000, transparent);
}

.odish-how-dots-right {
    right: 0;
    top: 285px;
    mask-image: linear-gradient(270deg, #000, transparent);
}

.odish-how-curve {
    width: 540px;
    height: 260px;
    border: 1px solid rgba(229, 9, 20, .18);
    border-color: rgba(229, 9, 20, .2) transparent transparent transparent;
    border-radius: 50%;
}

.odish-how-curve-left {
    left: -160px;
    top: 125px;
    transform: rotate(-10deg);
}

.odish-how-curve-right {
    right: -120px;
    top: 220px;
    transform: rotate(-18deg);
}

.odish-how-spark {
    color: rgba(229, 9, 20, .16);
    font-size: 20px;
}

.odish-how-spark-one {
    left: 16%;
    top: 180px;
}

.odish-how-spark-two {
    right: 16%;
    top: 210px;
}

.odish-how-header {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.odish-how-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 12px 24px;
    border-radius: 999px;
    color: #e50914;
    background: rgba(229, 9, 20, .075);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .44em;
}

.odish-how-title {
    margin: 0;
    color: #0f0f10;
    font-size: clamp(44px, 5.6vw, 72px);
    font-weight: 950;
    line-height: .98;
    letter-spacing: 0;
}

.odish-how-title span {
    position: relative;
    display: inline-block;
    color: #e50914;
}

.odish-how-title span::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 3%;
    bottom: -10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(229, 9, 20, .12);
    z-index: -1;
}

.odish-how-intro {
    max-width: 670px;
    margin: 28px auto 0;
    color: #707070;
    font-size: 20px;
    line-height: 1.65;
}

.odish-how-steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.odish-how-connector {
    position: absolute;
    left: 6%;
    right: 6%;
    top: 51%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(229, 9, 20, .7), rgba(229, 9, 20, .18), rgba(229, 9, 20, .7), transparent);
    transform: translateY(-50%);
}

.odish-how-card {
    position: relative;
    min-height: 318px;
    padding: 34px 34px 28px;
    overflow: hidden;
    border: 1px solid rgba(15, 15, 16, .055);
    border-radius: 28px;
    color: #0f0f10;
    background: rgba(255, 255, 255, .93);
    box-shadow:
        0 24px 70px rgba(15, 15, 16, .07),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    backdrop-filter: blur(18px);
}

.odish-how-card:hover,
.odish-how-card:focus-visible {
    color: #0f0f10;
    border-color: rgba(229, 9, 20, .18);
    box-shadow:
        0 34px 90px rgba(15, 15, 16, .12),
        0 10px 32px rgba(229, 9, 20, .08);
    transform: translateY(-7px);
}

.odish-how-card:focus-visible,
.odish-how-card-action:focus-visible {
    outline: 3px solid rgba(229, 9, 20, .3);
    outline-offset: 5px;
}

.odish-how-number {
    position: absolute;
    top: 40px;
    right: 34px;
    color: rgba(229, 9, 20, .075);
    font-size: 64px;
    font-weight: 950;
    line-height: 1;
}

.odish-how-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    margin-bottom: 28px;
    border: 1px solid rgba(229, 9, 20, .11);
    border-radius: 999px;
    color: #e50914;
    background:
        radial-gradient(circle at 35% 30%, rgba(255, 255, 255, .9), transparent 48%),
        rgba(229, 9, 20, .09);
    box-shadow: 0 18px 38px rgba(229, 9, 20, .12);
    font-size: 40px;
    transition: transform .2s ease;
}

.odish-how-card:hover .odish-how-icon,
.odish-how-card:focus-visible .odish-how-icon {
    transform: scale(1.04);
}

.odish-how-card-accent {
    display: block;
    width: 24px;
    height: 2px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: #e50914;
}

.odish-how-card-title,
.odish-how-card-text,
.odish-how-card-action {
    display: block;
}

.odish-how-card-title {
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.odish-how-card-text {
    max-width: 310px;
    color: #646873;
    font-size: 16px;
    line-height: 1.7;
}

.odish-how-card-action {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 12px 20px;
    border: 1px solid rgba(15, 15, 16, .1);
    border-radius: 999px;
    color: #0f0f10;
    background: #ffffff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(15, 15, 16, .045);
}

.odish-how-card-action i {
    color: #e50914;
    transition: transform .2s ease;
}

.odish-how-card:hover .odish-how-card-action i,
.odish-how-card:focus-visible .odish-how-card-action i {
    transform: translateX(3px);
}

.odish-how-trust {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 1280px;
    margin: 32px auto 0;
    padding: 28px 34px;
    border: 1px solid rgba(15, 15, 16, .07);
    border-radius: 24px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 22px 64px rgba(15, 15, 16, .07);
    backdrop-filter: blur(18px);
}

.odish-how-trust-item {
    display: flex;
    align-items: center;
    gap: 22px;
    min-width: 0;
    padding: 0 34px;
}

.odish-how-trust-item:first-child {
    padding-left: 0;
}

.odish-how-trust-item:last-child {
    padding-right: 0;
}

.odish-how-trust-item + .odish-how-trust-item {
    border-left: 1px solid rgba(15, 15, 16, .1);
}

.odish-how-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border: 1px solid rgba(229, 9, 20, .12);
    border-radius: 999px;
    color: #e50914;
    background: rgba(229, 9, 20, .075);
    font-size: 30px;
    flex: 0 0 auto;
}

.odish-how-trust-item strong,
.odish-how-trust-item small {
    display: block;
}

.odish-how-trust-item strong {
    color: #0f0f10;
    font-size: 17px;
    line-height: 1.25;
}

.odish-how-trust-item small {
    margin-top: 7px;
    color: #707070;
    font-size: 15px;
    line-height: 1.55;
}

.odish-how-reveal {
    animation: odishHowFadeIn .55s ease both;
}

.odish-how-card:nth-of-type(2) {
    animation-delay: .06s;
}

.odish-how-card:nth-of-type(3) {
    animation-delay: .12s;
}

@keyframes odishHowFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199.98px) {
    .odish-how-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .odish-how-card:last-child {
        grid-column: 1 / -1;
    }

    .odish-how-connector {
        display: none;
    }

    .odish-how-trust {
        padding: 28px;
    }

    .odish-how-trust-item {
        padding: 0 22px;
    }
}

@media (max-width: 991.98px) {
    .odish-how-trust {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .odish-how-trust-item {
        padding: 0;
    }

    .odish-how-trust-item + .odish-how-trust-item {
        padding-top: 22px;
        border-top: 1px solid rgba(15, 15, 16, .1);
        border-left: 0;
    }
}

@media (max-width: 767.98px) {
    .odish-how-section {
        padding: 72px 0 80px;
    }

    .odish-how-header {
        margin-bottom: 36px;
    }

    .odish-how-badge {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 11px;
        letter-spacing: .22em;
    }

    .odish-how-title {
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.05;
    }

    .odish-how-title span::after {
        bottom: -6px;
        height: 7px;
    }

    .odish-how-intro {
        margin-top: 22px;
        font-size: 17px;
    }

    .odish-how-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .odish-how-card,
    .odish-how-card:last-child {
        grid-column: auto;
    }

    .odish-how-card {
        min-height: auto;
        padding: 28px 24px 24px;
        border-radius: 24px;
    }

    .odish-how-number {
        top: 30px;
        right: 24px;
        font-size: 52px;
    }

    .odish-how-icon {
        width: 78px;
        height: 78px;
        margin-bottom: 24px;
        font-size: 32px;
    }

    .odish-how-card-title {
        font-size: 20px;
    }

    .odish-how-card-action {
        margin-top: 24px;
    }

    .odish-how-trust {
        margin-top: 22px;
        padding: 24px;
        border-radius: 22px;
    }

    .odish-how-trust-item {
        gap: 18px;
        align-items: flex-start;
    }

    .odish-how-trust-icon {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

    .odish-how-orb,
    .odish-how-curve {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .odish-how-section *,
    .odish-how-section *::before,
    .odish-how-section *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
