/* =========================================================
   Cashback (Mr.Rebates / Rakuten / TopCashback) — Pochtoy
   ========================================================= */

/* ---------- Reset for landing wrapper ---------- */
div.p-cashback-mrrebates {
    color: #3E4B5B;
    font-family: 'Montserrat', 'Poppins', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.4;
    background: #ffffff;
    /* Full-bleed capable wrapper (сохраняем ширину футера) */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    overflow-x: clip;
}

.p-cashback-mrrebates *,
.p-cashback-mrrebates *::before,
.p-cashback-mrrebates *::after {
    box-sizing: border-box;
}

.p-cashback-mrrebates img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* =========================================================
   Block 1 — Hero
   ========================================================= */
.p-cashback-mrrebates__hero {
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border-radius: 0 0 60px 60px;
    background-color: #21985a;
}

.p-cashback-mrrebates__hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: block;
}

.p-cashback-mrrebates__hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px;
}

/* ---------- Text column ---------- */
.p-cashback-mrrebates__hero-text {
    color: #ffffff;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

/* Pill badge: green $ overlapping outlined pill */
.p-cashback-mrrebates__hero-badge {
    display: inline-flex;
    align-items: stretch;
    height: 43px;
    position: relative;
}

.p-cashback-mrrebates__hero-badge-dollar {
    background: #6ae109;
    color: #000000;
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    min-width: 55px;
    height: 43px;
    border-radius: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    position: relative;
    z-index: 2;
    margin-right: -22px;
}

.p-cashback-mrrebates__hero-badge-text {
    display: inline-flex;
    align-items: center;
    height: 43px;
    padding: 10px 22px 10px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.26);
    border-radius: 70px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
}

/* Title */
.p-cashback-mrrebates__hero-title {
    font-weight: 600;
    font-size: 55px;
    line-height: 1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.p-cashback-mrrebates__hero-title span {
    display: block;
}

/* Lead */
.p-cashback-mrrebates__hero-lead {
    font-weight: 500;
    font-size: 25px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    max-width: 620px;
}

.p-cashback-mrrebates__hero-lead b {
    font-weight: 700;
}

/* CTA — black pill */
a.p-cashback-mrrebates__hero-cta,
a.p-cashback-mrrebates__hero-cta:link,
a.p-cashback-mrrebates__hero-cta:visited,
a.p-cashback-mrrebates__hero-cta:hover,
a.p-cashback-mrrebates__hero-cta:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 50px;
    background: #000000;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.2;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.15s ease, transform 0.15s ease;
    cursor: pointer;
}

a.p-cashback-mrrebates__hero-cta:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

a.p-cashback-mrrebates__hero-cta:active {
    transform: translateY(0);
}

/* ---------- Composition column ---------- */
.p-cashback-mrrebates__hero-comp {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.p-cashback-mrrebates__hero-comp img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
}

/* =========================================================
   Adaptive — tablet
   ========================================================= */
@media (max-width: 1100px) {
    .p-cashback-mrrebates__hero {
        border-radius: 0 0 40px 40px;
    }
    .p-cashback-mrrebates__hero-content {
        padding: 60px 40px;
        gap: 30px;
    }
    .p-cashback-mrrebates__hero-title {
        font-size: 44px;
    }
    .p-cashback-mrrebates__hero-lead {
        font-size: 20px;
    }
    .p-cashback-mrrebates__hero-badge-text {
        font-size: 15px;
        white-space: normal;
    }
    a.p-cashback-mrrebates__hero-cta,
    a.p-cashback-mrrebates__hero-cta:link,
    a.p-cashback-mrrebates__hero-cta:visited,
    a.p-cashback-mrrebates__hero-cta:hover,
    a.p-cashback-mrrebates__hero-cta:active {
        font-size: 20px;
        padding: 14px 38px;
    }
    .p-cashback-mrrebates__hero-comp img {
        max-width: 100%;
    }
}

/* =========================================================
   Adaptive — mobile
   ========================================================= */
@media (max-width: 900px) {
    .p-cashback-mrrebates__hero {
        border-radius: 0 0 30px 30px;
    }
    .p-cashback-mrrebates__hero-bg {
        object-position: center;
    }
    .p-cashback-mrrebates__hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 50px;
    }
    .p-cashback-mrrebates__hero-text {
        gap: 20px;
        max-width: none;
        order: 1;
    }
    .p-cashback-mrrebates__hero-comp {
        order: 2;
        justify-content: center;
    }
    .p-cashback-mrrebates__hero-comp img {
        max-width: 380px;
    }
    .p-cashback-mrrebates__hero-badge {
        height: auto;
        max-width: 100%;
    }
    .p-cashback-mrrebates__hero-badge-dollar {
        font-size: 24px;
        min-width: 44px;
        height: 38px;
        padding: 0 14px;
        margin-right: -18px;
    }
    .p-cashback-mrrebates__hero-badge-text {
        height: auto;
        min-height: 38px;
        padding: 8px 18px 8px 32px;
        font-size: 13px;
        line-height: 1.2;
        white-space: normal;
    }
    .p-cashback-mrrebates__hero-title {
        font-size: 32px;
        letter-spacing: -0.3px;
    }
    .p-cashback-mrrebates__hero-lead {
        font-size: 17px;
        line-height: 1.35;
    }
    a.p-cashback-mrrebates__hero-cta,
    a.p-cashback-mrrebates__hero-cta:link,
    a.p-cashback-mrrebates__hero-cta:visited,
    a.p-cashback-mrrebates__hero-cta:hover,
    a.p-cashback-mrrebates__hero-cta:active {
        font-size: 18px;
        padding: 14px 32px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .p-cashback-mrrebates__hero-title {
        font-size: 28px;
    }
    .p-cashback-mrrebates__hero-lead {
        font-size: 16px;
    }
    .p-cashback-mrrebates__hero-badge-text {
        font-size: 12px;
    }
}

/* =========================================================
   Block 2 — Services (cards grid + CTAs)
   ========================================================= */
.p-cashback-mrrebates__services {
    padding: 90px 0;
    background: #ffffff;
    scroll-margin-top: 20px;
}

.p-cashback-mrrebates__services-wrap {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Title */
.p-cashback-mrrebates__services-title {
    text-align: center;
    color: #000000;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.3px;
    margin: 0;
}

.p-cashback-mrrebates__services-title span {
    display: block;
}

/* Green pill: $ + text */
.p-cashback-mrrebates__services-pill {
    display: inline-flex;
    align-items: stretch;
    height: 52px;
    position: relative;
}

.p-cashback-mrrebates__services-pill-dollar {
    background: #6ae109;
    color: #d6ffb4;
    font-weight: 800;
    font-size: 30px;
    line-height: 1;
    min-width: 60px;
    height: 52px;
    border-radius: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin-right: -25px;
}

.p-cashback-mrrebates__services-pill-text {
    display: inline-flex;
    align-items: center;
    height: 52px;
    padding: 10px 22px 10px 42px;
    background: transparent;
    border: 2px solid #6ae109;
    border-radius: 70px;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.15;
    color: #000000;
    white-space: nowrap;
}

/* Grid */
.p-cashback-mrrebates__services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.p-cashback-mrrebates__services-card {
    display: block;
    border-radius: 30px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease;
    line-height: 0;
}

.p-cashback-mrrebates__services-card:hover {
    transform: translateY(-3px);
}

.p-cashback-mrrebates__services-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
}

/* CTAs */
.p-cashback-mrrebates__services-ctas {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

a.p-cashback-mrrebates__services-cta,
a.p-cashback-mrrebates__services-cta:link,
a.p-cashback-mrrebates__services-cta:visited,
a.p-cashback-mrrebates__services-cta:hover,
a.p-cashback-mrrebates__services-cta:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 50px;
    background: #000000;
    color: #ffffff !important;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.15s ease, transform 0.15s ease;
    cursor: pointer;
    min-width: 180px;
}

a.p-cashback-mrrebates__services-cta:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

/* Adaptive — services */
@media (max-width: 1100px) {
    .p-cashback-mrrebates__services {
        padding: 70px 0;
    }
    .p-cashback-mrrebates__services-title {
        font-size: 32px;
    }
    .p-cashback-mrrebates__services-pill-text {
        font-size: 18px;
        white-space: normal;
    }
    .p-cashback-mrrebates__services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .p-cashback-mrrebates__services {
        padding: 50px 0;
    }
    .p-cashback-mrrebates__services-wrap {
        padding: 0 20px;
        gap: 30px;
    }
    .p-cashback-mrrebates__services-title {
        font-size: 26px;
        line-height: 1.15;
    }
    .p-cashback-mrrebates__services-pill {
        height: auto;
        max-width: 100%;
    }
    .p-cashback-mrrebates__services-pill-dollar {
        font-size: 22px;
        min-width: 44px;
        height: 42px;
        padding: 0 14px;
        margin-right: -18px;
    }
    .p-cashback-mrrebates__services-pill-text {
        height: auto;
        min-height: 42px;
        padding: 8px 18px 8px 32px;
        font-size: 14px;
        line-height: 1.25;
        white-space: normal;
    }
    .p-cashback-mrrebates__services-card,
    .p-cashback-mrrebates__services-card img {
        border-radius: 20px;
    }
    a.p-cashback-mrrebates__services-cta,
    a.p-cashback-mrrebates__services-cta:link,
    a.p-cashback-mrrebates__services-cta:visited,
    a.p-cashback-mrrebates__services-cta:hover,
    a.p-cashback-mrrebates__services-cta:active {
        font-size: 18px;
        padding: 14px 32px;
        min-width: 140px;
        flex: 1 1 45%;
    }
}

@media (max-width: 640px) {
    .p-cashback-mrrebates__services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .p-cashback-mrrebates__services-title {
        font-size: 22px;
    }
}

/* =========================================================
   Block 3 — How to get cashback (green section + 3 steps)
   ========================================================= */
.p-cashback-mrrebates__howto {
    margin: 0 20px 90px;
    background: #d6ffb4;
    border-radius: 60px;
    overflow: hidden;
}

.p-cashback-mrrebates__howto-wrap {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 90px 60px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    column-gap: 40px;
    row-gap: 0;
    align-items: stretch;
}

/* ---------- Left column: title + photo composition ---------- */
.p-cashback-mrrebates__howto-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

.p-cashback-mrrebates__howto-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.1;
    color: #000000;
    margin: 0;
    max-width: 560px;
    letter-spacing: -0.3px;
}

.p-cashback-mrrebates__howto-visual {
    position: relative;
    width: 100%;
    align-self: end;
}

.p-cashback-mrrebates__howto-ellipse {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 120%;
    max-width: 900px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: block;
}

.p-cashback-mrrebates__howto-photo {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 720px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/* ---------- Right column: 3 white cards ---------- */
.p-cashback-mrrebates__howto-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    align-self: start;
}

.p-cashback-mrrebates__howto-arrow {
    display: block;
    width: 30px;
    height: 30px;
    margin: -35px 0 -15px 60px;
    line-height: 0;
    position: relative;
    z-index: 2;
}

.p-cashback-mrrebates__howto-arrow--final {
    margin: -35px 0 0 60px;
}

.p-cashback-mrrebates__howto-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p-cashback-mrrebates__howto-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 21px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.p-cashback-mrrebates__howto-icon {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.p-cashback-mrrebates__howto-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p-cashback-mrrebates__howto-body {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #000000;
}

.p-cashback-mrrebates__howto-name {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2;
    margin: 0;
    color: #000000;
}

.p-cashback-mrrebates__howto-name b {
    color: #5f09e1;
    font-weight: 700;
}

.p-cashback-mrrebates__howto-desc {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.35;
    color: #000000;
    margin: 0;
}

.p-cashback-mrrebates__howto-link,
.p-cashback-mrrebates__howto-link:link,
.p-cashback-mrrebates__howto-link:visited,
.p-cashback-mrrebates__howto-link:hover,
.p-cashback-mrrebates__howto-link:active {
    color: #5f09e1 !important;
    font-weight: 700;
    text-decoration: none;
}

.p-cashback-mrrebates__howto-link:hover {
    text-decoration: underline;
}

/* Adaptive — howto */
@media (max-width: 1100px) {
    .p-cashback-mrrebates__howto {
        border-radius: 40px;
        margin: 0 16px 70px;
    }
    .p-cashback-mrrebates__howto-wrap {
        padding: 60px 40px;
        column-gap: 30px;
    }
    .p-cashback-mrrebates__howto-title {
        font-size: 32px;
    }
    .p-cashback-mrrebates__howto-name {
        font-size: 20px;
    }
    .p-cashback-mrrebates__howto-icon {
        width: 96px;
        height: 96px;
    }
    .p-cashback-mrrebates__howto-arrow {
        margin-left: 53px;
    }
    .p-cashback-mrrebates__howto-arrow--final {
        margin-left: 53px;
    }
}

@media (max-width: 640px) {
    .p-cashback-mrrebates__howto {
        margin: 0 8px 50px;
        border-radius: 30px;
    }
    .p-cashback-mrrebates__howto-wrap {
        grid-template-columns: 1fr;
        padding: 40px 20px 50px;
        row-gap: 30px;
    }
    .p-cashback-mrrebates__howto-cards {
        gap: 10px;
    }
    .p-cashback-mrrebates__howto-arrow {
        margin: -25px 0 -15px 42px;
    }
    .p-cashback-mrrebates__howto-arrow--final {
        margin: -25px 0 0 42px;
    }
    .p-cashback-mrrebates__howto-title {
        font-size: 26px;
        line-height: 1.15;
        text-align: center;
        max-width: none;
    }
    .p-cashback-mrrebates__howto-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    .p-cashback-mrrebates__howto-card {
        padding: 16px;
        gap: 14px;
    }
    .p-cashback-mrrebates__howto-icon {
        width: 82px;
        height: 82px;
    }
    .p-cashback-mrrebates__howto-name {
        font-size: 18px;
    }
    .p-cashback-mrrebates__howto-desc {
        font-size: 14px;
    }
}

/* =========================================================
   Block 4 — Registration (tabs: Mr.Rebates / Rakuten / Topcashback)
   ========================================================= */
.p-cashback-mrrebates__reg {
    padding: 90px 0;
    background: #ffffff;
    scroll-margin-top: 20px;
}

.p-cashback-mrrebates__reg-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.p-cashback-mrrebates__reg-title {
    text-align: center;
    color: #000000;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -0.3px;
    margin: 0;
}

/* ---------- Tabs ---------- */
.p-cashback-mrrebates__reg-tabs {
    display: inline-flex;
    align-items: stretch;
    border: 2px solid #5f09e1;
    border-radius: 50px;
    background: #ffffff;
    overflow: hidden;
    padding: 0;
}

.p-cashback-mrrebates__reg-tab {
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff;
    color: #000000;
    border: 0;
    padding: 14px 34px;
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    border-right: 2px solid #5f09e1;
}

.p-cashback-mrrebates__reg-tab:last-child {
    border-right: 0;
}

.p-cashback-mrrebates__reg-tab.is-active {
    background: #5f09e1;
    color: #c8c4ff;
    font-weight: 600;
}

/* ---------- Panels ---------- */
.p-cashback-mrrebates__reg-panels {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.p-cashback-mrrebates__reg-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.p-cashback-mrrebates__reg-panel.is-active {
    display: flex;
}

.p-cashback-mrrebates__reg-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Step layout — alternate media left/right for visual rhythm */
.p-cashback-mrrebates__reg-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.p-cashback-mrrebates__reg-step:nth-child(even) .p-cashback-mrrebates__reg-step-media {
    order: 2;
}

.p-cashback-mrrebates__reg-step-media {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.p-cashback-mrrebates__reg-step-media img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 20px;
}

.p-cashback-mrrebates__reg-step-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    background: #f5f7fa;
    border-radius: 20px;
    padding: 40px;
    color: #000000;
    align-self: stretch;
}

.p-cashback-mrrebates__reg-step-title {
    font-weight: 700;
    font-size: 26px;
    line-height: 1.25;
    color: #000000;
    margin: 0;
}

a.p-cashback-mrrebates__reg-step-link,
a.p-cashback-mrrebates__reg-step-link:link,
a.p-cashback-mrrebates__reg-step-link:visited,
a.p-cashback-mrrebates__reg-step-link:hover,
a.p-cashback-mrrebates__reg-step-link:active {
    color: #5f09e1 !important;
    text-decoration: none;
    font-weight: 700;
}

a.p-cashback-mrrebates__reg-step-link:hover {
    text-decoration: underline;
}

.p-cashback-mrrebates__reg-step-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
    color: #000000;
    margin: 0;
}

.p-cashback-mrrebates__reg-step-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.p-cashback-mrrebates__reg-step-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
}

.p-cashback-mrrebates__reg-step-list-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    line-height: 0;
}

.p-cashback-mrrebates__reg-step-list-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p-cashback-mrrebates__reg-step-list-text {
    flex: 1 1 0;
    min-width: 0;
}

/* CTA */
a.p-cashback-mrrebates__reg-cta,
a.p-cashback-mrrebates__reg-cta:link,
a.p-cashback-mrrebates__reg-cta:visited,
a.p-cashback-mrrebates__reg-cta:hover,
a.p-cashback-mrrebates__reg-cta:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 46px;
    background: #5f09e1;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    border-radius: 10px;
    text-decoration: none !important;
    transition: background 0.15s ease, transform 0.15s ease;
    text-align: center;
}

a.p-cashback-mrrebates__reg-cta:hover {
    background: #4d07b5;
    transform: translateY(-1px);
}

/* Adaptive — registration */
@media (max-width: 1100px) {
    .p-cashback-mrrebates__reg {
        padding: 70px 0;
    }
    .p-cashback-mrrebates__reg-title {
        font-size: 32px;
    }
    .p-cashback-mrrebates__reg-tab {
        padding: 12px 26px;
        font-size: 16px;
    }
    .p-cashback-mrrebates__reg-step {
        gap: 30px;
    }
    .p-cashback-mrrebates__reg-step-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .p-cashback-mrrebates__reg {
        padding: 50px 0;
    }
    .p-cashback-mrrebates__reg-wrap {
        padding: 0 20px;
        gap: 30px;
    }
    .p-cashback-mrrebates__reg-title {
        font-size: 26px;
        line-height: 1.2;
    }
    .p-cashback-mrrebates__reg-tabs {
        width: 100%;
        flex-direction: column;
        border-radius: 20px;
    }
    .p-cashback-mrrebates__reg-tab {
        border-right: 0;
        border-bottom: 2px solid #5f09e1;
        padding: 12px 20px;
        font-size: 15px;
        text-align: center;
    }
    .p-cashback-mrrebates__reg-tab:last-child {
        border-bottom: 0;
    }
    .p-cashback-mrrebates__reg-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .p-cashback-mrrebates__reg-step:nth-child(even) .p-cashback-mrrebates__reg-step-media {
        order: 0;
    }
    .p-cashback-mrrebates__reg-step-media {
        padding: 16px;
    }
    .p-cashback-mrrebates__reg-step-title {
        font-size: 20px;
    }
    .p-cashback-mrrebates__reg-step-body {
        padding: 24px;
    }
    .p-cashback-mrrebates__reg-step-text,
    .p-cashback-mrrebates__reg-step-list {
        font-size: 15px;
    }
    a.p-cashback-mrrebates__reg-cta,
    a.p-cashback-mrrebates__reg-cta:link,
    a.p-cashback-mrrebates__reg-cta:visited,
    a.p-cashback-mrrebates__reg-cta:hover,
    a.p-cashback-mrrebates__reg-cta:active {
        font-size: 18px;
        padding: 14px 32px;
        width: 100%;
    }
}

/* =========================================================
   Block 5 — Address CTA banner (purple with girl)
   ========================================================= */
.p-cashback-mrrebates__addr {
    padding: 50px 0 90px;
    background: #ffffff;
}

.p-cashback-mrrebates__addr-wrap {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.p-cashback-mrrebates__addr-banner {
    position: relative;
    background: #5f09e1;
    border-radius: 60px;
    overflow: hidden;
    min-height: 460px;
    padding: 60px 620px 60px 70px;
    display: flex;
    align-items: center;
}

.p-cashback-mrrebates__addr-flag {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: hard-light;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.p-cashback-mrrebates__addr-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #5f09e1 30%, rgba(95, 9, 225, 0.55) 60%, rgba(95, 9, 225, 0) 90%);
    z-index: 1;
    pointer-events: none;
}

.p-cashback-mrrebates__addr-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #ffffff;
}

.p-cashback-mrrebates__addr-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
}

.p-cashback-mrrebates__addr-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
}

a.p-cashback-mrrebates__addr-cta,
a.p-cashback-mrrebates__addr-cta:link,
a.p-cashback-mrrebates__addr-cta:visited,
a.p-cashback-mrrebates__addr-cta:hover,
a.p-cashback-mrrebates__addr-cta:active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 15px 50px;
    background: #ffffff;
    color: #000000 !important;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.2;
    border-radius: 10px;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    margin-top: 8px;
}

a.p-cashback-mrrebates__addr-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.p-cashback-mrrebates__addr-girl {
    position: absolute;
    right: -120px;
    bottom: 0;
    top: 0;
    height: 100%;
    width: 55%;
    max-width: 620px;
    object-fit: contain;
    object-position: right bottom;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    display: block;
}

/* Adaptive — address */
@media (max-width: 1100px) {
    .p-cashback-mrrebates__addr-banner {
        padding: 50px 460px 50px 50px;
        border-radius: 40px;
        min-height: 400px;
    }
    .p-cashback-mrrebates__addr-title {
        font-size: 26px;
    }
    .p-cashback-mrrebates__addr-text {
        font-size: 16px;
    }
    .p-cashback-mrrebates__addr-girl {
        max-width: 440px;
        right: -90px;
    }
}

@media (max-width: 768px) {
    .p-cashback-mrrebates__addr {
        padding: 30px 0 50px;
    }
    .p-cashback-mrrebates__addr-wrap {
        padding: 0 20px;
    }
    .p-cashback-mrrebates__addr-banner {
        padding: 30px 24px 320px;
        border-radius: 30px;
        min-height: 0;
    }
    .p-cashback-mrrebates__addr-content {
        max-width: 100%;
        gap: 16px;
    }
    .p-cashback-mrrebates__addr-title {
        font-size: 22px;
    }
    .p-cashback-mrrebates__addr-text {
        font-size: 15px;
    }
    a.p-cashback-mrrebates__addr-cta,
    a.p-cashback-mrrebates__addr-cta:link,
    a.p-cashback-mrrebates__addr-cta:visited,
    a.p-cashback-mrrebates__addr-cta:hover,
    a.p-cashback-mrrebates__addr-cta:active {
        font-size: 18px;
        padding: 14px 32px;
    }
    .p-cashback-mrrebates__addr-veil {
        background: linear-gradient(to bottom, #5f09e1 40%, rgba(95,9,225,0.6) 70%, rgba(95,9,225,0) 100%);
    }
    .p-cashback-mrrebates__addr-girl {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
        width: 78%;
        height: auto;
        max-width: 340px;
        max-height: none;
        object-fit: contain;
        object-position: center bottom;
    }
}

/* =========================================================
   Block 6 — PayPal payout info + no-PayPal alt
   ========================================================= */
.p-cashback-mrrebates__pp {
    padding: 90px 0;
    background: #ffffff;
}

.p-cashback-mrrebates__pp-wrap {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* ---------- Head ---------- */
.p-cashback-mrrebates__pp-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.p-cashback-mrrebates__pp-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.1;
    color: #000000;
    margin: 0;
    letter-spacing: -0.3px;
}

.p-cashback-mrrebates__pp-lead {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #000000;
    margin: 0;
}

.p-cashback-mrrebates__pp-lead b {
    color: #5f09e1;
    font-weight: 700;
}

/* ---------- Info row (alert + bullet on left, photo on right) ---------- */
.p-cashback-mrrebates__pp-info {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: center;
}

.p-cashback-mrrebates__pp-info-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.p-cashback-mrrebates__pp-alert {
    background: #ffd4d4;
    border: 1px solid #ff3737;
    border-radius: 20px;
    padding: 14px 20px;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
}

.p-cashback-mrrebates__pp-alert b {
    font-weight: 700;
}

.p-cashback-mrrebates__pp-bullet {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.p-cashback-mrrebates__pp-bullet-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-top: 4px;
    line-height: 0;
}

.p-cashback-mrrebates__pp-bullet-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p-cashback-mrrebates__pp-bullet-text {
    flex: 1 1 0;
    min-width: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    margin: 0;
}

.p-cashback-mrrebates__pp-bullet-text b {
    font-weight: 700;
}

/* ---------- Photo box ---------- */
.p-cashback-mrrebates__pp-photo {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 1124 / 718;
    line-height: 0;
}

.p-cashback-mrrebates__pp-photo-model {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ---------- No-PayPal banner (lavender) ---------- */
.p-cashback-mrrebates__pp-nopp {
    background: #c8c4ff;
    border-radius: 60px;
    padding: 50px 60px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.2fr);
    gap: 30px;
    align-items: center;
}

.p-cashback-mrrebates__pp-nopp-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.25;
    color: #000000;
    margin: 0;
}

.p-cashback-mrrebates__pp-nopp-icon {
    width: 110px;
    height: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    flex-shrink: 0;
}

.p-cashback-mrrebates__pp-nopp-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.p-cashback-mrrebates__pp-nopp-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #000000;
}

.p-cashback-mrrebates__pp-nopp-lead {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
}

.p-cashback-mrrebates__pp-nopp-support {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

/* Adaptive — pp */
@media (max-width: 1100px) {
    .p-cashback-mrrebates__pp {
        padding: 70px 0;
    }
    .p-cashback-mrrebates__pp-title {
        font-size: 32px;
    }
    .p-cashback-mrrebates__pp-info {
        gap: 30px;
    }
    .p-cashback-mrrebates__pp-nopp {
        padding: 40px 40px;
        gap: 24px;
        border-radius: 40px;
    }
    .p-cashback-mrrebates__pp-nopp-title {
        font-size: 24px;
    }
    .p-cashback-mrrebates__pp-nopp-icon {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .p-cashback-mrrebates__pp {
        padding: 50px 0;
    }
    .p-cashback-mrrebates__pp-wrap {
        padding: 0 20px;
        gap: 30px;
    }
    .p-cashback-mrrebates__pp-title {
        font-size: 26px;
    }
    .p-cashback-mrrebates__pp-lead {
        font-size: 16px;
    }
    .p-cashback-mrrebates__pp-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .p-cashback-mrrebates__pp-photo {
        aspect-ratio: 3 / 2;
    }
    .p-cashback-mrrebates__pp-nopp {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 16px;
        padding: 30px 24px;
        border-radius: 30px;
    }
    .p-cashback-mrrebates__pp-nopp-title {
        font-size: 22px;
    }
    .p-cashback-mrrebates__pp-nopp-body {
        text-align: left;
        width: 100%;
    }
    .p-cashback-mrrebates__pp-nopp-icon {
        width: 76px;
        height: 76px;
    }
}

/* =========================================================
   Block 7 — FAQ (accordion)
   ========================================================= */
.p-cashback-mrrebates__faq {
    padding: 90px 0;
    background: #ffffff;
}

.p-cashback-mrrebates__faq-wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.p-cashback-mrrebates__faq-title {
    text-align: center;
    color: #000000;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.3px;
    margin: 0;
}

.p-cashback-mrrebates__faq-list {
    display: flex;
    flex-direction: column;
}

.p-cashback-mrrebates__faq-item {
    border-top: 1px solid #c8c4ff;
    padding: 0;
}

.p-cashback-mrrebates__faq-item:last-child {
    border-bottom: 1px solid #c8c4ff;
}

.p-cashback-mrrebates__faq-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    color: #000000;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    transition: color 0.15s ease;
}

.p-cashback-mrrebates__faq-summary::-webkit-details-marker {
    display: none;
}

.p-cashback-mrrebates__faq-summary::marker {
    display: none;
}

.p-cashback-mrrebates__faq-item[open] .p-cashback-mrrebates__faq-summary {
    color: #5f09e1;
}

.p-cashback-mrrebates__faq-q {
    flex: 1 1 auto;
}

.p-cashback-mrrebates__faq-toggle {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #c8c4ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.p-cashback-mrrebates__faq-toggle span {
    position: absolute;
    background: #5f09e1;
    transition: transform 0.2s ease, background 0.15s ease;
    border-radius: 2px;
}

.p-cashback-mrrebates__faq-toggle span:first-child {
    width: 16px;
    height: 2px;
}

.p-cashback-mrrebates__faq-toggle span:last-child {
    width: 2px;
    height: 16px;
}

.p-cashback-mrrebates__faq-item[open] .p-cashback-mrrebates__faq-toggle {
    background: #5f09e1;
    border-color: #5f09e1;
}

.p-cashback-mrrebates__faq-item[open] .p-cashback-mrrebates__faq-toggle span {
    background: #ffffff;
}

.p-cashback-mrrebates__faq-item[open] .p-cashback-mrrebates__faq-toggle span:last-child {
    transform: rotate(90deg);
}

.p-cashback-mrrebates__faq-a {
    padding: 0 0 22px;
    color: #000000;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.55;
    white-space: pre-line;
}

a.p-cashback-mrrebates__faq-link,
a.p-cashback-mrrebates__faq-link:link,
a.p-cashback-mrrebates__faq-link:visited,
a.p-cashback-mrrebates__faq-link:hover,
a.p-cashback-mrrebates__faq-link:active {
    color: #5f09e1 !important;
    font-weight: 700;
    text-decoration: none;
}

a.p-cashback-mrrebates__faq-link:hover {
    text-decoration: underline;
}

/* Adaptive — FAQ */
@media (max-width: 1100px) {
    .p-cashback-mrrebates__faq {
        padding: 70px 0;
    }
    .p-cashback-mrrebates__faq-title {
        font-size: 32px;
    }
    .p-cashback-mrrebates__faq-summary {
        font-size: 18px;
    }
    .p-cashback-mrrebates__faq-a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .p-cashback-mrrebates__faq {
        padding: 50px 0;
    }
    .p-cashback-mrrebates__faq-wrap {
        padding: 0 20px;
        gap: 24px;
    }
    .p-cashback-mrrebates__faq-title {
        font-size: 26px;
    }
    .p-cashback-mrrebates__faq-summary {
        font-size: 16px;
        padding: 18px 0;
        gap: 14px;
    }
    .p-cashback-mrrebates__faq-toggle {
        width: 32px;
        height: 32px;
    }
    .p-cashback-mrrebates__faq-toggle span:first-child {
        width: 12px;
    }
    .p-cashback-mrrebates__faq-toggle span:last-child {
        height: 12px;
    }
    .p-cashback-mrrebates__faq-a {
        font-size: 15px;
        padding-bottom: 18px;
    }
}

/* =========================================================
   Block 8 — "Have questions?" green banner
   ========================================================= */
.p-cashback-mrrebates__help {
    padding: 0;
    margin: 0 20px 90px;
    background: #21985a;
    border-radius: 60px;
    overflow: hidden;
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-cashback-mrrebates__help-wrap {
    width: 100%;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.p-cashback-mrrebates__help-banner {
    position: static;
    background: transparent;
    padding: 0;
}

.p-cashback-mrrebates__help-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    display: block;
}

.p-cashback-mrrebates__help-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    color: #ffffff;
    max-width: 620px;
}

.p-cashback-mrrebates__help-title {
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.3px;
}

.p-cashback-mrrebates__help-text {
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    max-width: 460px;
}

.p-cashback-mrrebates__help-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    color: #ffffff;
    max-width: 620px;
    position: relative;
    z-index: 1;
}

/* Adaptive — help */
@media (max-width: 1100px) {
    .p-cashback-mrrebates__help {
        margin: 0 16px 70px;
        border-radius: 40px;
        min-height: 220px;
    }
    .p-cashback-mrrebates__help-wrap {
        padding: 50px 30px;
    }
    .p-cashback-mrrebates__help-title {
        font-size: 32px;
    }
    .p-cashback-mrrebates__help-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .p-cashback-mrrebates__help {
        margin: 0 8px 50px;
        border-radius: 30px;
        min-height: 180px;
    }
    .p-cashback-mrrebates__help-wrap {
        padding: 40px 20px;
    }
    .p-cashback-mrrebates__help-title {
        font-size: 24px;
    }
    .p-cashback-mrrebates__help-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .p-cashback-mrrebates__howto-title {
        font-size: 22px;
    }
    .p-cashback-mrrebates__howto-wrap {
        padding: 30px 16px 40px;
    }
    .p-cashback-mrrebates__howto-icon {
        width: 66px;
        height: 66px;
    }
    .p-cashback-mrrebates__howto-arrow {
        margin-left: 34px;
    }
    .p-cashback-mrrebates__howto-arrow--final {
        margin-left: 34px;
    }
    .p-cashback-mrrebates__howto-name {
        font-size: 16px;
    }
    .p-cashback-mrrebates__howto-desc {
        font-size: 13px;
    }
}