/*
Theme Name: Rental Boyfriend
Theme URI: https://example.com/
Author: Custom Development
Description: Custom lightweight WordPress theme for a boyfriend rental profile listing website.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: rental-boyfriend
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #ffffff;
    color: #171717;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* =========================================================
   CONTACT & PROFILE LISTING
   CLEAN PREMIUM DESIGN
   ========================================================= */

/* Hide WordPress page title only on Contact page */

body.page-id-10 h1.entry-title,
body.page-id-10 .entry-title,
body.page-id-10 .page-title,
body.page-id-10 .page-header {
    display: none !important;
}


/* Main wrapper */

body.page-id-10 .site-main {
    padding-top: 25px;
}

.rb-contact-page {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 0 80px;
    color: #26121d;
}


/* =========================================================
   HERO
   ========================================================= */

.rb-contact-hero {
    position: relative;
    overflow: hidden;
    text-align: center;

    padding: 75px 45px 65px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(255, 64, 145, .22),
            transparent 30%
        ),
        radial-gradient(
            circle at 88% 15%,
            rgba(145, 65, 255, .20),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #fff2f8 0%,
            #ffffff 48%,
            #f6efff 100%
        );

    border: 1px solid #f0d5e2;

    box-shadow:
        0 25px 70px rgba(91, 20, 58, .10);
}


/* Decorative circles */

.rb-contact-hero::before {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    left: -150px;
    top: -150px;

    border-radius: 50%;

    background: rgba(218, 28, 111, .08);
}

.rb-contact-hero::after {
    content: "";
    position: absolute;

    width: 260px;
    height: 260px;

    right: -120px;
    bottom: -130px;

    border-radius: 50%;

    background: rgba(145, 45, 210, .08);
}


.rb-contact-hero > * {
    position: relative;
    z-index: 2;
}


.rb-contact-hero-badge {
    display: inline-flex;

    padding: 7px 14px;

    border-radius: 999px;

    background: rgba(188, 21, 96, .08);

    color: #ad1658;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.rb-contact-hero h1 {
    max-width: 850px;

    margin: 18px auto;

    font-size: clamp(40px, 5vw, 62px);

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -2px;

    background:
        linear-gradient(
            90deg,
            #741633,
            #cf1766,
            #8127c4
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.rb-contact-hero p {
    max-width: 680px;

    margin: 20px auto 0;

    color: #735d69;

    font-size: 18px;

    line-height: 1.7;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.rb-contact-hero-actions {
    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 14px !important;

    width: 100% !important;

    margin: 32px auto 0 !important;

    padding: 0 !important;
}


.rb-contact-hero-actions a {
    box-sizing: border-box !important;

    display: inline-flex !important;

    align-items: center !important;

    justify-content: center !important;

    width: 210px !important;

    min-width: 210px !important;

    height: 54px !important;

    min-height: 54px !important;

    margin: 0 !important;

    padding: 0 20px !important;

    border-radius: 14px !important;

    font-size: 15px !important;

    font-weight: 800 !important;

    line-height: 1 !important;

    text-align: center !important;

    text-decoration: none !important;

    white-space: nowrap !important;

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        background .22s ease;
}


.rb-contact-primary {
    color: #fff !important;

    background:
        linear-gradient(
            135deg,
            #8b123e,
            #d31668
        ) !important;

    border: 1px solid transparent !important;

    box-shadow:
        0 12px 25px rgba(178, 20, 92, .25) !important;
}


.rb-contact-secondary {
    color: #72163c !important;

    background: #fff !important;

    border: 1px solid #edcbd9 !important;

    box-shadow: 0 8px 20px rgba(90, 20, 55, .05) !important;
}


.rb-contact-primary:hover,
.rb-contact-secondary:hover {
    transform: translateY(-3px) !important;
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.rb-contact-steps {
    padding: 80px 0 20px;
}


.rb-contact-section-heading {
    text-align: center;

    margin-bottom: 38px;
}


.rb-contact-section-heading > span {
    color: #b01859;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}


.rb-contact-section-heading h2 {
    margin: 10px 0;

    color: #30131f;

    font-size: 40px;

    line-height: 1.15;

    font-weight: 900;
}


.rb-contact-section-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #796671;

    font-size: 16px;

    line-height: 1.7;
}


/* Step cards */

.rb-contact-step-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.rb-contact-step {
    position: relative;

    padding: 30px;

    min-height: 250px;

    box-sizing: border-box;

    border-radius: 24px;

    background: #fff;

    border: 1px solid #f0dce5;

    box-shadow:
        0 15px 40px rgba(65, 15, 43, .07);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.rb-contact-step:hover {
    transform: translateY(-6px);

    box-shadow:
        0 22px 48px rgba(65, 15, 43, .12);
}


.rb-contact-step-number {
    color: #c01a62;

    font-size: 13px;

    font-weight: 900;

    letter-spacing: 1px;
}


.rb-contact-step-icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 56px;
    height: 56px;

    margin: 18px 0;

    border-radius: 16px;

    color: #fff;

    font-size: 23px;

    background:
        linear-gradient(
            135deg,
            #a91551,
            #d92775
        );

    box-shadow:
        0 10px 22px rgba(194, 30, 103, .20);
}


.rb-contact-step h3 {
    margin: 0 0 10px;

    color: #321522;

    font-size: 21px;

    font-weight: 850;
}


.rb-contact-step p {
    margin: 0;

    color: #78646f;

    font-size: 15px;

    line-height: 1.65;
}


/* =========================================================
   TRUST BAR
   ========================================================= */

.rb-contact-trust {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 1px;

    margin: 55px 0 75px;

    overflow: hidden;

    border-radius: 20px;

    background: #efdbe6;

    border: 1px solid #efdbe6;
}


.rb-contact-trust div {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 70px;

    background: #fffafd;

    color: #553541;

    font-size: 14px;

    font-weight: 750;
}


.rb-contact-trust strong {
    color: #c31c64;

    font-size: 18px;
}


/* =========================================================
   FORM SECTION
   ========================================================= */

.rb-contact-form-section {
    scroll-margin-top: 100px;

    padding-top: 10px;
}


.rb-contact-form-heading {
    text-align: center;

    margin-bottom: 32px;
}


.rb-contact-form-badge {
    color: #b01859;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}


.rb-contact-form-heading h2 {
    margin: 10px 0;

    color: #30131f;

    font-size: 40px;

    line-height: 1.15;

    font-weight: 900;
}


.rb-contact-form-heading p {
    max-width: 650px;

    margin: 0 auto;

    color: #796671;

    line-height: 1.7;
}


.rb-contact-form-card {
    padding: 40px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            #fff8fb,
            #faf6ff
        );

    border: 1px solid #efdce7;

    box-shadow:
        0 25px 65px rgba(55, 14, 39, .09);

    box-sizing: border-box;
}


/* Existing form inside our card */

.rb-contact-form-card .rb-listing-page {
    margin: 0 !important;

    padding: 0 !important;

    background: transparent !important;

    border: 0 !important;

    box-shadow: none !important;
}


.rb-contact-form-card .rb-listing-header {
    margin-top: 0 !important;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.rb-contact-bottom-cta {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 75px;

    padding: 42px 45px;

    box-sizing: border-box;

    border-radius: 28px;

    color: #fff;

    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(255,255,255,.18),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #531027,
            #a91455,
            #7020a3
        );

    box-shadow:
        0 25px 60px rgba(84, 16, 52, .20);
}


.rb-contact-bottom-cta span {
    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

    opacity: .8;
}


.rb-contact-bottom-cta h2 {
    margin: 8px 0;

    font-size: 32px;

    line-height: 1.2;
}


.rb-contact-bottom-cta p {
    margin: 0;

    opacity: .82;
}


.rb-contact-bottom-cta a {
    flex: 0 0 auto;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 190px;

    height: 52px;

    border-radius: 13px;

    background: #fff;

    color: #78143f !important;

    font-weight: 850;

    text-decoration: none !important;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .rb-contact-page {
        width: calc(100% - 28px);

        padding-top: 12px;
    }


    .rb-contact-hero {
        padding: 50px 22px;

        border-radius: 24px;
    }


    .rb-contact-hero h1 {
        font-size: 40px;

        letter-spacing: -1px;
    }


    .rb-contact-hero p {
        font-size: 16px;
    }


    .rb-contact-hero-actions {
        flex-direction: column !important;

        gap: 12px !important;
    }


    .rb-contact-hero-actions a {
        width: min(320px, 100%) !important;

        min-width: 0 !important;
    }


    .rb-contact-step-grid {
        grid-template-columns: 1fr;
    }


    .rb-contact-step {
        min-height: auto;
    }


    .rb-contact-trust {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 1px;
    }


    .rb-contact-trust div {
        min-height: 60px;

        padding: 10px;

        text-align: center;
    }


    .rb-contact-form-card {
        padding: 22px 18px;

        border-radius: 22px;
    }


    .rb-contact-section-heading h2,
    .rb-contact-form-heading h2 {
        font-size: 32px;
    }


    .rb-contact-bottom-cta {
        flex-direction: column;

        align-items: flex-start;

        padding: 32px 25px;
    }


    .rb-contact-bottom-cta h2 {
        font-size: 28px;
    }


    .rb-contact-bottom-cta a {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .rb-contact-trust {
        grid-template-columns: 1fr;
    }


    .rb-contact-hero h1 {
        font-size: 34px;
    }


    .rb-contact-form-card {
        padding: 18px 14px;
    }

}


/* =========================================================
   RENTAL BOYFRIEND - PREMIUM MARKET HERO
   ========================================================= */

.rb-market-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(190, 20, 92, .10), transparent 32%),
        radial-gradient(circle at 85% 25%, rgba(126, 40, 180, .11), transparent 34%),
        linear-gradient(135deg, #fff 0%, #fff8fb 48%, #faf5ff 100%);
    border-bottom: 1px solid rgba(190, 20, 92, .08);
    min-height: 650px;
    display: flex;
    align-items: center;
}

.rb-market-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    gap: 70px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 85px;
}

.rb-market-hero-content {
    max-width: 760px;
}

.rb-market-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid rgba(190, 20, 92, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    color: #a70f4e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(87, 12, 50, .06);
}

.rb-market-hero h1 {
    margin: 22px 0 22px;
    max-width: 780px;
    color: #171219;
    font-size: clamp(48px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -3.5px;
    font-weight: 900;
}

.rb-market-hero h1 span {
    display: block;
    background: linear-gradient(100deg, #a50d4d, #cf1d72 45%, #8d25b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rb-market-lead {
    max-width: 710px;
    margin: 0 0 18px;
    color: #5f5360;
    font-size: 19px;
    line-height: 1.75;
}

.rb-market-join-text {
    max-width: 700px;
    margin: 0;
    color: #332731;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

.rb-market-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.rb-market-btn {
    min-height: 56px;
    padding: 0 25px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.rb-market-btn span,
.rb-market-card-cta span {
    font-size: 20px;
    line-height: 1;
}

.rb-market-btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, #a50d4d, #d01968);
    box-shadow: 0 15px 30px rgba(165, 13, 77, .24);
}

.rb-market-btn-primary:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(165, 13, 77, .30);
}

.rb-market-btn-secondary {
    color: #351c29 !important;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(79, 35, 55, .14);
}

.rb-market-btn-secondary:hover {
    color: #351c29 !important;
    transform: translateY(-3px);
    border-color: rgba(190, 20, 92, .28);
    box-shadow: 0 12px 25px rgba(60, 20, 40, .08);
}

.rb-market-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
}

.rb-market-trust-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rb-market-trust-item strong {
    color: #a50d4d;
    font-size: 14px;
    font-weight: 900;
}

.rb-market-trust-item span {
    color: #665a63;
    font-size: 12px;
    font-weight: 700;
}

.rb-market-trust-line {
    width: 1px;
    height: 34px;
    background: rgba(75, 30, 52, .14);
}


/* Right earning card */

.rb-market-hero-card {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(190, 20, 92, .13);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,248,252,.92));
    box-shadow:
        0 30px 80px rgba(85, 19, 54, .12),
        inset 0 1px 0 rgba(255,255,255,.9);
}

.rb-market-hero-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -75px;
    right: -75px;
    border-radius: 50%;
    background: rgba(204, 29, 111, .09);
    pointer-events: none;
}

.rb-market-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rb-market-card-badge {
    color: #a50d4d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.rb-market-card-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c71868;
    box-shadow: 0 0 0 7px rgba(199,24,104,.10);
}

.rb-market-card-icon {
    width: 64px;
    height: 64px;
    margin-top: 30px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #a50d4d, #c91a70);
    font-size: 27px;
    font-weight: 900;
    box-shadow: 0 13px 28px rgba(165, 13, 77, .22);
}

.rb-market-hero-card h2 {
    margin: 24px 0 13px;
    color: #241721;
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -.8px;
}

.rb-market-hero-card h2 span {
    display: block;
    color: #bd1762;
}

.rb-market-hero-card > p {
    margin: 0;
    color: #695c66;
    font-size: 14px;
    line-height: 1.7;
}

.rb-market-card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 26px 0;
}

.rb-market-card-stats > div {
    padding: 14px 9px;
    border-radius: 15px;
    background: rgba(190, 20, 92, .055);
    text-align: center;
}

.rb-market-card-stats strong {
    display: block;
    color: #8f124a;
    font-size: 13px;
    font-weight: 900;
}

.rb-market-card-stats small {
    display: block;
    margin-top: 4px;
    color: #776a73;
    font-size: 10px;
}

.rb-market-card-cta {
    min-height: 53px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff !important;
    background: #191218;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease;
}

.rb-market-card-cta:hover {
    color: #fff !important;
    background: #a50d4d;
    transform: translateY(-2px);
}

.rb-market-card-note {
    margin-top: 16px;
    text-align: center;
    color: #776b73;
    font-size: 11px;
    font-weight: 600;
}


/* Decorative background */

.rb-market-hero-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
}

.rb-market-hero-bg-one {
    width: 420px;
    height: 420px;
    left: -220px;
    top: 90px;
    background: rgba(204, 29, 111, .055);
}

.rb-market-hero-bg-two {
    width: 500px;
    height: 500px;
    right: -280px;
    bottom: -300px;
    background: rgba(126, 40, 180, .07);
}


/* Responsive */

@media (max-width: 900px) {

    .rb-market-hero-inner {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .rb-market-hero-content {
        max-width: 100%;
    }

    .rb-market-hero-card {
        max-width: 620px;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

}

@media (max-width: 600px) {

    .rb-market-hero {
        min-height: auto;
    }

    .rb-market-hero-inner {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .rb-market-eyebrow {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .rb-market-hero h1 {
        margin-top: 18px;
        font-size: 46px;
        line-height: 1;
        letter-spacing: -2px;
    }

    .rb-market-lead {
        font-size: 16px;
        line-height: 1.65;
    }

    .rb-market-join-text {
        font-size: 14px;
    }

    .rb-market-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rb-market-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .rb-market-trust {
        gap: 11px;
        justify-content: space-between;
    }

    .rb-market-trust-line {
        height: 28px;
    }

    .rb-market-trust-item span {
        font-size: 10px;
    }

    .rb-market-hero-card {
        padding: 23px;
        border-radius: 23px;
    }

    .rb-market-hero-card h2 {
        font-size: 26px;
    }

    .rb-market-card-stats {
        gap: 5px;
    }

    .rb-market-card-stats > div {
        padding: 12px 5px;
    }

}


/* =========================================================
 * FINAL HERO CONTAINER / SPACING FIX
 * ========================================================= */

.rb-market-hero-inner {
    width: min(100% - 48px, 1360px);
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
}

/* Keep the left content visually balanced */
.rb-market-hero-content {
    width: 100%;
    max-width: 760px;
}

/* Prevent oversized heading from touching the viewport */
.rb-market-hero h1 {
    max-width: 760px;
}

/* Keep earning card inside the centered layout */
.rb-market-hero-card {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
}

/* Large desktop */
@media (min-width: 1400px) {

    .rb-market-hero-inner {
        width: min(100% - 80px, 1400px);
        max-width: 1400px;
        padding-left: 30px;
        padding-right: 30px;
    }

}

/* Tablet */
@media (max-width: 900px) {

    .rb-market-hero-inner {
        width: calc(100% - 36px);
        max-width: none;
        padding-left: 18px;
        padding-right: 18px;
        margin-left: auto;
        margin-right: auto;
    }

    .rb-market-hero-card {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

}

/* Mobile */
@media (max-width: 600px) {

    .rb-market-hero-inner {
        width: calc(100% - 24px);
        padding-left: 12px;
        padding-right: 12px;
    }

    .rb-market-hero-content {
        max-width: 100%;
    }

    .rb-market-hero h1 {
        max-width: 100%;
    }

    .rb-market-hero-card {
        max-width: 100%;
    }

}


/* =========================================================
 * RENT A FRIEND REVIEWS PAGE
 * ========================================================= */

.rb-reviews-page {
    width: min(100% - 40px, 1280px);
    margin: 0 auto;
    padding: 70px 0 100px;
    color: #21161e;
}


/* HERO */

.rb-reviews-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 75px 35px;
    border: 1px solid rgba(190,20,92,.12);
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(221,34,119,.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 10%,
            rgba(135,53,194,.15),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #fff8fb,
            #ffffff 48%,
            #faf5ff
        );
    box-shadow: 0 30px 80px rgba(77,20,52,.10);
}


.rb-reviews-eyebrow {
    display: inline-block;
    padding: 9px 17px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(190,20,92,.18);
    color: #ae1456;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}


.rb-reviews-hero h1 {
    margin: 20px auto 18px;
    max-width: 850px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 900;
    background: linear-gradient(
        100deg,
        #9e104d,
        #d01972,
        #8c29b7
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}


.rb-reviews-hero > p {
    max-width: 720px;
    margin: 0 auto;
    color: #675964;
    font-size: 18px;
    line-height: 1.75;
}


.rb-reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    margin-top: 40px;
}


.rb-review-rating-big,
.rb-reviews-summary > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.rb-review-rating-big strong {
    color: #c01868;
    font-size: 24px;
    letter-spacing: 3px;
}


.rb-review-rating-big span,
.rb-reviews-summary > div:last-child span {
    color: #766874;
    font-size: 12px;
    font-weight: 700;
}


.rb-reviews-summary > div:last-child strong {
    color: #21161e;
    font-size: 30px;
}


.rb-review-summary-divider {
    width: 1px;
    height: 45px;
    background: rgba(50,20,40,.15);
}


/* TOOLBAR */

.rb-reviews-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin: 75px 0 30px;
}


.rb-reviews-toolbar-label {
    color: #b01458;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}


.rb-reviews-toolbar h2 {
    margin: 8px 0 0;
    font-size: 38px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}


.rb-review-write-btn {
    min-height: 52px;
    padding: 0 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff !important;
    background: linear-gradient(
        135deg,
        #a90d4f,
        #d21a6d
    );
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(169,13,79,.22);
    transition: .2s ease;
}


.rb-review-write-btn:hover {
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(169,13,79,.30);
}


/* REVIEW GRID */

.rb-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}


.rb-review-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(190,20,92,.10);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(60,20,40,.07);
    transition: transform .2s ease, box-shadow .2s ease;
}


.rb-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 55px rgba(60,20,40,.12);
}


.rb-review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}


.rb-review-avatar {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(
        135deg,
        #a90d4f,
        #c91a70
    );
    font-size: 19px;
    font-weight: 900;
}


.rb-review-card h3 {
    margin: 0 0 5px;
    font-size: 17px;
}


.rb-review-meta {
    color: #7a6d76;
    font-size: 12px;
}


.rb-review-stars {
    margin: 23px 0 15px;
    color: #d01968;
    font-size: 18px;
    letter-spacing: 2px;
}


.rb-review-text {
    color: #564a53;
    font-size: 15px;
    line-height: 1.75;
}


.rb-review-text p {
    margin: 0 0 10px;
}


.rb-review-date {
    margin-top: 22px;
    padding-top: 15px;
    border-top: 1px solid rgba(60,20,40,.08);
    color: #93868f;
    font-size: 11px;
    font-weight: 700;
}


/* EMPTY STATE */

.rb-reviews-empty {
    grid-column: 1 / -1;
    padding: 70px 25px;
    text-align: center;
    border: 1px dashed rgba(190,20,92,.22);
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        #fff8fb,
        #faf7ff
    );
}


.rb-empty-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #c01868;
    background: rgba(192,24,104,.08);
    font-size: 25px;
}


.rb-reviews-empty h3 {
    margin: 0 0 10px;
    font-size: 25px;
}


.rb-reviews-empty p {
    max-width: 520px;
    margin: 0 auto 25px;
    color: #70636d;
    line-height: 1.7;
}


/* TRUST STRIP */

.rb-reviews-trust {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 30px;
    padding: 22px 25px;
    border-radius: 18px;
    background: #fff7fb;
    border: 1px solid rgba(190,20,92,.09);
}


.rb-trust-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #b9145b;
    font-weight: 900;
}


.rb-reviews-trust strong {
    font-size: 14px;
}


.rb-reviews-trust p {
    margin: 4px 0 0;
    color: #766a72;
    font-size: 12px;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .rb-review-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

}


@media (max-width: 650px) {

    .rb-reviews-page {
        width: calc(100% - 24px);
        padding: 40px 0 70px;
    }

    .rb-reviews-hero {
        padding: 50px 20px;
        border-radius: 25px;
    }

    .rb-reviews-hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .rb-reviews-hero > p {
        font-size: 15px;
    }

    .rb-reviews-summary {
        gap: 20px;
    }

    .rb-reviews-toolbar {
        display: block;
        margin-top: 50px;
    }

    .rb-reviews-toolbar h2 {
        font-size: 30px;
    }

    .rb-review-write-btn {
        margin-top: 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .rb-review-grid {
        grid-template-columns: 1fr;
    }

    .rb-review-card {
        padding: 23px;
    }

}


/* =========================================================
   PREMIUM PUBLIC REVIEW FORM
   ========================================================= */

.rb-public-review-submit {
    max-width: 1180px;
    margin: 90px auto 110px;
    padding: 70px 70px 75px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(190, 20, 95, .12);
    border-radius: 32px;
    background:
        radial-gradient(circle at 10% 5%, rgba(255, 190, 220, .38), transparent 30%),
        radial-gradient(circle at 95% 10%, rgba(220, 190, 255, .38), transparent 30%),
        linear-gradient(145deg, #fff7fb 0%, #ffffff 48%, #faf5ff 100%);
    box-shadow: 0 28px 70px rgba(55, 10, 40, .10);
}

.rb-public-review-submit::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(207, 25, 111, .06);
    top: -110px;
    right: -70px;
    pointer-events: none;
}

.rb-public-review-submit::after {
    content: "★";
    position: absolute;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #c41468, #8f176f);
    color: #fff;
    font-size: 24px;
    top: 48px;
    right: 55px;
    box-shadow: 0 14px 30px rgba(190, 20, 100, .25);
}

.rb-public-review-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.rb-public-review-heading span {
    display: inline-block;
    margin-bottom: 14px;
    color: #c41468;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.rb-public-review-heading h2 {
    margin: 0 0 16px;
    color: #17121a;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -.035em;
}

.rb-public-review-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: #716775;
    font-size: 17px;
    line-height: 1.7;
}

.rb-public-review-form {
    max-width: 900px;
    margin: 0 auto;
    padding: 42px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(190, 20, 95, .12);
    border-radius: 26px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 50px rgba(50, 10, 35, .07);
    backdrop-filter: blur(12px);
}

.rb-public-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.rb-public-review-field {
    margin-bottom: 24px;
}

.rb-public-review-grid .rb-public-review-field {
    margin-bottom: 0;
}

.rb-public-review-field label {
    display: block;
    margin-bottom: 9px;
    color: #211722;
    font-size: 14px;
    font-weight: 750;
}

.rb-public-review-field input[type="text"],
.rb-public-review-field input[type="email"],
.rb-public-review-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #eadde6;
    border-radius: 14px;
    background: #fff;
    color: #211722;
    font-family: inherit;
    font-size: 15px;
    padding: 14px 16px;
    outline: none;
    transition: .2s ease;
}

.rb-public-review-field input[type="text"],
.rb-public-review-field input[type="email"] {
    min-height: 52px;
}

.rb-public-review-field textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.rb-public-review-field input::placeholder,
.rb-public-review-field textarea::placeholder {
    color: #aaa0aa;
}

.rb-public-review-field input[type="text"]:focus,
.rb-public-review-field input[type="email"]:focus,
.rb-public-review-field textarea:focus {
    border-color: #c41468;
    box-shadow: 0 0 0 4px rgba(196, 20, 104, .08);
}

.rb-public-review-field input[type="file"] {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    border: 1px dashed #dcb8cc;
    border-radius: 14px;
    background: #fff8fc;
    color: #675b66;
    font-family: inherit;
}

.rb-public-review-field small {
    display: block;
    margin-top: 8px;
    color: #918590;
    font-size: 12px;
}

.rb-public-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 5px;
    padding: 10px 14px;
    border: 1px solid #eadde6;
    border-radius: 14px;
    background: #fff;
}

.rb-public-rating-input input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rb-public-rating-input label {
    margin: 0;
    color: #d9cbd4;
    cursor: pointer;
    font-size: 31px;
    line-height: 1;
    transition: .15s ease;
}

.rb-public-rating-input label:hover,
.rb-public-rating-input label:hover ~ label,
.rb-public-rating-input input:checked ~ label {
    color: #e31b78;
    transform: scale(1.08);
}

.rb-public-review-form > .rb-public-review-field {
    margin-top: 26px;
}

.rb-public-review-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    margin-top: 8px;
    padding: 15px 28px;
    border: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #c41468 0%, #9b176e 100%);
    color: #fff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(196, 20, 104, .24);
    transition: transform .2s ease, box-shadow .2s ease;
}

.rb-public-review-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(196, 20, 104, .32);
}

.rb-public-review-submit-btn:active {
    transform: translateY(0);
}

.rb-public-review-note {
    margin: 18px 0 0;
    text-align: center;
    color: #827580;
    font-size: 13px;
    line-height: 1.5;
}

.rb-public-review-success,
.rb-public-review-error {
    max-width: 900px;
    margin: 0 auto 25px;
    padding: 18px 22px;
    border-radius: 15px;
    position: relative;
    z-index: 3;
}

.rb-public-review-success {
    border: 1px solid #bde8d1;
    background: #effcf5;
    color: #16653d;
}

.rb-public-review-error {
    border: 1px solid #f0c5d5;
    background: #fff3f7;
    color: #a51c55;
}

.rb-public-review-success p,
.rb-public-review-error p {
    margin: 5px 0 0;
}

.rb-public-review-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* Mobile */
@media (max-width: 800px) {

    .rb-public-review-submit {
        margin: 55px 16px 70px;
        padding: 48px 20px 50px;
        border-radius: 24px;
    }

    .rb-public-review-submit::after {
        width: 48px;
        height: 48px;
        top: 25px;
        right: 22px;
        font-size: 19px;
        border-radius: 15px;
    }

    .rb-public-review-heading {
        margin-bottom: 34px;
        padding-top: 20px;
    }

    .rb-public-review-heading h2 {
        font-size: 32px;
    }

    .rb-public-review-heading p {
        font-size: 15px;
    }

    .rb-public-review-form {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .rb-public-review-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rb-public-rating-input label {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    .rb-public-review-submit {
        margin-left: 10px;
        margin-right: 10px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .rb-public-review-heading h2 {
        font-size: 28px;
    }

    .rb-public-review-form {
        padding: 21px 14px;
    }

    .rb-public-review-submit-btn {
        min-height: 54px;
    }
}


/* =========================================================
   REVIEWS HERO - TRUST TEXT
   ========================================================= */

.rb-reviews-trust-text {
    margin: 22px auto 0;
    max-width: 760px;
    padding: 13px 22px;
    border: 1px solid rgba(190, 18, 93, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #665b67;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    box-shadow: 0 8px 25px rgba(190, 18, 93, 0.06);
}

.rb-reviews-trust-text strong {
    color: #bd145d;
    font-weight: 800;
}

@media (max-width: 600px) {
    .rb-reviews-trust-text {
        margin-top: 18px;
        padding: 11px 16px;
        border-radius: 18px;
        font-size: 13px;
    }
}


/* =========================================================
   REVIEWS PAGE - SEO CONTENT
   ========================================================= */

.rb-reviews-seo-content {
    max-width: 1180px;
    margin: 70px auto 75px;
}

.rb-reviews-seo-intro {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

.rb-seo-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #bd145d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rb-reviews-seo-intro h2,
.rb-reviews-how h2,
.rb-reviews-faq h2 {
    margin: 0 0 17px;
    color: #211720;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    letter-spacing: -.025em;
}

.rb-reviews-seo-intro p {
    margin: 0 auto 14px;
    max-width: 850px;
    color: #6e626d;
    font-size: 16px;
    line-height: 1.8;
}

.rb-reviews-seo-intro strong {
    color: #b9145d;
}

.rb-reviews-seo-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 65px;
}

.rb-reviews-seo-columns article {
    padding: 30px;
    border: 1px solid #eee1e9;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(50, 15, 40, .055);
}

.rb-seo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    border-radius: 13px;
    background: #fff0f7;
    color: #c41468;
    font-size: 20px;
    font-weight: 900;
}

.rb-reviews-seo-columns h3,
.rb-reviews-how h3 {
    margin: 0 0 9px;
    color: #241a22;
    font-size: 18px;
}

.rb-reviews-seo-columns p,
.rb-reviews-how p {
    margin: 0;
    color: #756a74;
    font-size: 14px;
    line-height: 1.7;
}

.rb-seo-inline-link {
    display: inline-block;
    margin-top: 15px;
    color: #b9145d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.rb-seo-inline-link:hover {
    text-decoration: underline;
}

.rb-reviews-how {
    padding: 55px;
    margin-bottom: 65px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(210, 25, 109, .09), transparent 35%),
        #fff8fc;
    border: 1px solid #f0dce8;
}

.rb-reviews-how > h2 {
    margin-bottom: 32px;
}

.rb-reviews-how-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.rb-reviews-how-grid > div {
    padding: 23px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #f0e4eb;
}

.rb-reviews-how-grid strong {
    display: block;
    margin-bottom: 15px;
    color: #c41468;
    font-size: 12px;
    letter-spacing: 1px;
}

.rb-reviews-faq {
    max-width: 900px;
    margin: 0 auto;
}

.rb-reviews-faq h2 {
    margin-bottom: 28px;
}

.rb-reviews-faq details {
    margin-bottom: 12px;
    padding: 0 22px;
    border: 1px solid #eadde6;
    border-radius: 15px;
    background: #fff;
}

.rb-reviews-faq summary {
    padding: 20px 0;
    color: #251a23;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.rb-reviews-faq summary::-webkit-details-marker {
    display: none;
}

.rb-reviews-faq summary::after {
    content: "+";
    float: right;
    color: #c41468;
    font-size: 20px;
}

.rb-reviews-faq details[open] summary::after {
    content: "−";
}

.rb-reviews-faq details p {
    margin: -3px 0 20px;
    color: #706570;
    font-size: 14px;
    line-height: 1.75;
}

@media (max-width: 900px) {

    .rb-reviews-seo-content {
        margin: 55px 18px 65px;
    }

    .rb-reviews-seo-columns {
        grid-template-columns: 1fr;
    }

    .rb-reviews-how {
        padding: 35px 25px;
    }

    .rb-reviews-how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {

    .rb-reviews-how-grid {
        grid-template-columns: 1fr;
    }

    .rb-reviews-seo-intro p {
        font-size: 14px;
    }

    .rb-reviews-faq summary {
        padding-right: 8px;
    }
}


/* =========================================================
   HOMEPAGE ON-PAGE SEO SECTION
   ========================================================= */

.rb-home-seo-section {
    padding: 90px 0 100px;
    background: #fff;
}

.rb-home-seo-intro {
    max-width: 900px;
    margin: 0 auto 55px;
    text-align: center;
}

.rb-home-seo-eyebrow {
    display: inline-block;
    margin-bottom: 13px;
    color: #bd145d;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rb-home-seo-intro h2,
.rb-home-seo-guide h2,
.rb-home-seo-bottom h2 {
    margin: 0 0 18px;
    color: #211720;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -.03em;
}

.rb-home-seo-intro p {
    max-width: 850px;
    margin: 0 auto 14px;
    color: #706570;
    font-size: 16px;
    line-height: 1.8;
}

.rb-home-seo-intro strong {
    color: #bd145d;
}

.rb-home-seo-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 70px;
}

.rb-home-seo-card {
    padding: 32px;
    border: 1px solid #eee1e9;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(50, 10, 40, .055);
    transition: transform .2s ease, box-shadow .2s ease;
}

.rb-home-seo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(50, 10, 40, .10);
}

.rb-home-seo-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: #fff0f7;
    color: #c41468;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
}

.rb-home-seo-card h3 {
    margin: 0 0 10px;
    color: #241a22;
    font-size: 19px;
}

.rb-home-seo-card p {
    min-height: 105px;
    margin: 0;
    color: #756a74;
    font-size: 14px;
    line-height: 1.7;
}

.rb-home-seo-card a {
    display: inline-block;
    margin-top: 18px;
    color: #b9145d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.rb-home-seo-card a:hover {
    text-decoration: underline;
}

.rb-home-seo-guide {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 55px;
    align-items: center;
    padding: 55px;
    margin-bottom: 70px;
    border: 1px solid #f0dce8;
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(210, 25, 109, .10), transparent 35%),
        #fff8fc;
}

.rb-home-seo-guide-content p {
    max-width: 650px;
    margin: 0;
    color: #716670;
    font-size: 15px;
    line-height: 1.8;
}

.rb-home-seo-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.rb-home-seo-steps div {
    padding: 22px;
    border: 1px solid #f0e1ea;
    border-radius: 17px;
    background: #fff;
}

.rb-home-seo-steps strong {
    display: block;
    margin-bottom: 10px;
    color: #c41468;
    font-size: 12px;
}

.rb-home-seo-steps span {
    color: #2a2028;
    font-size: 14px;
    font-weight: 750;
}

.rb-home-seo-bottom {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 28px;
    text-align: center;
    background: #211720;
}

.rb-home-seo-bottom h2 {
    color: #fff;
}

.rb-home-seo-bottom p {
    max-width: 750px;
    margin: 0 auto 25px;
    color: #d9cfd6;
    font-size: 15px;
    line-height: 1.8;
}

.rb-home-seo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 13px;
    background: #c41468;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(196, 20, 104, .25);
}

.rb-home-seo-cta:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {

    .rb-home-seo-section {
        padding: 65px 0 75px;
    }

    .rb-home-seo-cards {
        grid-template-columns: 1fr;
    }

    .rb-home-seo-guide {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 38px 28px;
    }
}

@media (max-width: 600px) {

    .rb-home-seo-intro {
        margin-bottom: 38px;
    }

    .rb-home-seo-intro p {
        font-size: 14px;
    }

    .rb-home-seo-card {
        padding: 25px;
    }

    .rb-home-seo-card p {
        min-height: 0;
    }

    .rb-home-seo-steps {
        grid-template-columns: 1fr;
    }

    .rb-home-seo-bottom {
        padding: 38px 22px;
    }
}

