.pricing-section {
    position: relative;
}

.pricing-shell {
    display: grid;
    gap: 40px;
}

.pricing-heading {
    margin-bottom: 0;
}

.pricing-layout {
    display: grid;
    grid-template-columns: minmax(320px, .78fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.pricing-visual {
    position: sticky;
    top: calc(var(--premium-header-height, 88px) + 24px);
    align-self: start;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-visual::before,
.pricing-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
}

.pricing-visual::before {
    inset: 58px auto auto 22px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(52, 144, 255, .16) 0%, rgba(52, 144, 255, 0) 72%);
}

.pricing-visual::after {
    inset: auto 8px 34px auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255, 150, 56, .22) 0%, rgba(255, 150, 56, 0) 72%);
}

.pricing-orbit {
    position: relative;
    width: min(100%, 470px);
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 48px 34px 0;
    border-radius: 40px;
    background:
        linear-gradient(155deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
        radial-gradient(circle at 50% 34%, rgba(255, 150, 56, .88) 0 18%, rgba(255, 150, 56, .24) 18% 31%, rgba(255, 255, 255, .06) 31% 46%, rgba(6, 16, 30, 0) 46%);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 28px 100px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .08);
    overflow: hidden;
}

.pricing-orbit::before {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: linear-gradient(180deg, rgba(4, 9, 21, .02), rgba(4, 9, 21, .38));
}

.pricing-badge,
.pricing-float {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(4, 9, 21, .72);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

.pricing-badge {
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .86);
}

.pricing-float {
    width: min(220px, calc(100% - 40px));
    padding: 18px 18px 16px;
    border-radius: 20px;
}

.pricing-float strong {
    display: block;
    margin-bottom: 8px;
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    line-height: 1.15;
    color: #fff;
}

.pricing-float span {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    line-height: 1.4;
}

.pricing-float--top {
    top: 114px;
    left: 0;
}

.pricing-float--bottom {
    right: 6px;
    bottom: 34px;
}

.pricing-float--bottom strong {
    color: var(--owu-orange);
}

.pricing-portrait {
    position: relative;
    z-index: 1;
    width: min(100%, 360px);
    max-height: 430px;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .32));
}

.pricing-content {
    display: grid;
    gap: 20px;
}

.payment-format-grid {
    display: grid;
    gap: 18px;
}

.payment-format-card {
    padding: 28px;
}

.payment-format-card--accent {
    border-color: rgba(255, 150, 56, .28);
    background: linear-gradient(180deg, rgba(255, 150, 56, .08), rgba(255, 255, 255, .04));
}

.payment-format-head {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.payment-format-head h3 {
    margin: 0;
}

.payment-format-subtitle {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .58) !important;
    font-size: 14px;
    line-height: 1.45;
}

.payment-format-price {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 16px;
    border-radius: 16px;
    background: rgba(52, 144, 255, .12);
    border: 1px solid rgba(52, 144, 255, .26);
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
}

.payment-format-card--accent .payment-format-price {
    background: rgba(255, 150, 56, .12);
    border-color: rgba(255, 150, 56, .26);
}

.payment-format-price s {
    margin-right: 6px;
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
    text-decoration-color: rgba(255, 255, 255, .5);
}

.payment-format-card .premium-button {
    margin-top: 22px;
}

.payment-format-list {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.payment-format-list li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, .74);
    font-size: 15px;
    line-height: 1.45;
}

.payment-format-list li::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--owu-blue), var(--owu-green));
    box-shadow: 0 0 18px rgba(52, 144, 255, .48);
}

.pricing-consult {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
}

.pricing-consult-label {
    display: block;
    margin-bottom: 10px;
    color: var(--owu-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.pricing-consult p {
    margin: 0;
}

.pricing-consult .premium-button.ghost {
    background: linear-gradient(135deg, rgba(7, 17, 31, .96), rgba(17, 31, 48, .92));
    color: var(--white);
    -webkit-text-fill-color: currentColor;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.pricing-consult .premium-button.ghost:hover {
    background: linear-gradient(135deg, rgba(10, 24, 44, .98), rgba(24, 42, 64, .94));
}

@media screen and (max-width: 980px) {
    .pricing-layout {
        grid-template-columns: 1fr;
    }

    .pricing-visual {
        position: relative;
        top: auto;
        order: 1;
        min-height: 520px;
    }

    .pricing-content {
        order: 2;
    }
}

@media screen and (max-width: 680px) {
    .pricing-shell {
        gap: 28px;
    }

    .pricing-visual {
        min-height: 480px;
    }

    .pricing-orbit {
        min-height: 440px;
        padding: 82px 18px 0;
        border-radius: 30px;
    }

    .pricing-badge {
        top: 20px;
        font-size: 11px;
        letter-spacing: .1em;
    }

    .pricing-float {
        width: 190px;
        padding: 14px 14px 13px;
    }

    .pricing-float strong {
        font-size: 16px;
    }

    .pricing-float span {
        font-size: 13px;
    }

    .pricing-float--top {
        top: 88px;
        left: 6px;
    }

    .pricing-float--bottom {
        right: 6px;
        bottom: 18px;
    }

    .pricing-portrait {
        width: min(100%, 280px);
        max-height: 338px;
    }

    .payment-format-card {
        padding: 24px 20px;
    }

    .payment-format-head {
        flex-direction: column;
    }

    .payment-format-price {
        white-space: normal;
    }

    .pricing-consult {
        flex-direction: column;
        align-items: stretch;
        padding: 22px 20px;
    }

    .pricing-consult .premium-button {
        width: 100%;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 420px) {
    .pricing-visual {
        min-height: 420px;
    }

    .pricing-orbit {
        min-height: 390px;
        padding-top: 76px;
    }

    .pricing-float {
        width: 156px;
    }

    .pricing-float strong {
        font-size: 14px;
    }

    .pricing-float span {
        font-size: 12px;
    }

    .payment-format-list li {
        font-size: 14px;
    }
}