
.rppd-pro-page,
.rppd-pro-page * {
    box-sizing: border-box;
}

.rppd-pro-page {
    --rppd-green: #22c55e;
    --rppd-green-dark: #16a34a;
    --rppd-green-light: #86efac;

    --rppd-black: #07110c;
    --rppd-dark: #0b1711;
    --rppd-dark-2: #102018;

    --rppd-text: #101814;
    --rppd-muted: #66736b;

    --rppd-border: #e7ece8;
    --rppd-white: #ffffff;
    --rppd-light: #f7faf8;

    width: 100%;
    overflow: hidden;

    background: #fff;

    color: var(--rppd-text);

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    line-height: 1.6;
}

.rppd-pro-page img {
    max-width: 100%;
    height: auto;
}

.rppd-pro-page a {
    text-decoration: none;
}

.rppd-pro-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}
/* =========================================================
   SECTION HEADING
   ========================================================= */

.rppd-pro-section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.rppd-pro-section-label {
    margin-bottom: 14px;
    color: #16a34a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.rppd-pro-section-heading h2 {
    margin: 0;

    color: #0e1711;

    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.1;

    letter-spacing: -2.5px;
}

.rppd-pro-section-heading h2 span {
    color: #16a34a;
}

.rppd-pro-section-heading p {
    max-width: 620px;

    margin: 18px auto 0;

    color: #707c74;

    font-size: 15px;
    line-height: 1.8;
}


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

.rppd-pro-hero {
    position: relative;

    padding:
        105px 0
        115px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(34,197,94,.12),
            transparent 34%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(16,185,129,.1),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            #f8fcf9 0%,
            #ffffff 55%,
            #f5faf7 100%
        );
}

.rppd-pro-hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(90px);

    pointer-events: none;
}

.rppd-pro-glow-one {
    top: -250px;
    left: -250px;

    background: rgba(34,197,94,.09);
}

.rppd-pro-glow-two {
    right: -250px;
    bottom: -250px;

    background: rgba(16,185,129,.08);
}

.rppd-pro-hero > .rppd-pro-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .92fr 1.08fr;

    align-items: center;

    gap: 75px;
}

.rppd-pro-hero-content {
    max-width: 570px;
}

.rppd-pro-eyebrow {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 24px;
    padding: 7px 12px;

    border: 1px solid #d8efdf;
    border-radius: 100px;

    background: rgba(255,255,255,.8);

    color: #15803d;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.rppd-pro-eyebrow-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 0 4px rgba(34,197,94,.12);
}

.rppd-pro-hero h1 {
    margin: 0;

    color: #0b1711;

    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 1;
    letter-spacing: -4px;
    font-weight: 850;
}

.rppd-pro-hero h1 span {
    display: block;
    line-height: 1.3;
    background:
        linear-gradient(
            90deg,
            #16a34a,
            #22c55e,
            #0f9f57
        );

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

    color: transparent;
}

.rppd-pro-hero-description {
    max-width: 520px;

    margin: 28px 0 32px;

    color: #66736b;

    font-size: 17px;
    line-height: 1.8;
}

.rppd-pro-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;
}

.rppd-pro-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 0 20px;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 750;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}
.rppd-pro-hero-actions .rppd-pro-btn .icon {
    display: inline-flex;
}
.rppd-pro-hero-actions .rppd-pro-btn-primary:hover {
    color: #fff;
}
.rppd-pro-btn-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #16a34a,
            #22c55e
        );

    box-shadow:
        0 14px 30px rgba(34,197,94,.25);
}

.rppd-pro-btn-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 38px rgba(34,197,94,.32);
}

.rppd-pro-btn-arrow {
    font-size: 18px;
}

.rppd-pro-btn-secondary {
    border: 1px solid #dce5df;

    background: #fff;

    color: #152019;
}

.rppd-pro-btn-secondary:hover {
    transform: translateY(-3px);

    border-color: #b9d9c4;

    box-shadow:
        0 12px 25px rgba(0,0,0,.07);
}

.rppd-pro-play {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eaf8ee;

    color: #15803d;

    font-size: 8px;
}

.rppd-pro-trust-row {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    margin-top: 27px;
}
.rppd-pro-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #68756d;
    font-size: 13px;
    font-weight: 600;
}

.rppd-pro-check {
    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f8ed;

    color: #15803d;

    font-size: 10px;
    font-weight: 900;
}


/* Hero browser */

.rppd-pro-hero-visual {
    position: relative;
}

.rppd-pro-browser {
    position: relative;

    overflow: hidden;

    border-radius: 18px;

    background: #fff;

    border: 1px solid #dfe8e2;

    box-shadow:
        0 35px 90px rgba(17,36,25,.15),
        0 5px 15px rgba(17,36,25,.05);

    transform:
        perspective(1200px)
        rotateY(-3deg)
        rotateX(1deg);

    transition:
        transform .5s ease;
}

.rppd-pro-browser:hover {
    transform:
        perspective(1200px)
        rotateY(0)
        rotateX(0);
}

.rppd-pro-browser-top {
    height: 42px;

    display: flex;
    align-items: center;

    padding: 0 15px;

    border-bottom: 1px solid #edf1ee;

    background: #f8faf9;
}

.rppd-pro-browser-dots {
    display: flex;
    gap: 6px;
}

.rppd-pro-browser-dots i {
    width: 7px;
    height: 7px;

    display: block;

    border-radius: 50%;

    background: #ccd5cf;
}

.rppd-pro-browser-address {
    width: 190px;

    margin: 0 auto;

    padding: 5px 10px;

    border-radius: 6px;

    background: #eef2ef;

    color: #8a968e;

    text-align: center;

    font-size: 9px;
}

.rppd-pro-preview-screen {
    min-height: 390px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(34,197,94,.23),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0c1911,
            #12291c
        );

    color: #fff;
}

.rppd-pro-preview-nav {
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 30px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.rppd-pro-preview-logo {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.rppd-pro-preview-links {
    display: flex;
    gap: 20px;

    color: rgba(255,255,255,.65);

    font-size: 8px;
}

.rppd-pro-preview-menu {
    width: 26px;
    height: 26px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
}

.rppd-pro-preview-body {
    min-height: 335px;

    display: flex;
    align-items: center;

    padding: 40px 50px;
}

.rppd-pro-preview-copy {
    max-width: 330px;
}

.rppd-pro-preview-copy small {
    color: #67e68f;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
}

.rppd-pro-preview-copy h3 {
    margin: 13px 0;

    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -2px;
}

.rppd-pro-preview-copy h3 strong {
    display: block;

    color: #4ade80;
}

.rppd-pro-preview-copy p {
    margin: 0 0 20px;

    color: rgba(255,255,255,.58);

    font-size: 10px;
}

.rppd-pro-preview-button {
    width: fit-content;

    padding: 9px 13px;

    border-radius: 6px;

    background: #22c55e;

    color: #fff;

    font-size: 8px;
    font-weight: 700;
}

.rppd-pro-preview-shape {
    position: absolute;

    right: 30px;

    width: 190px;
    height: 190px;
}

.rppd-pro-preview-shape span {
    position: absolute;

    width: 130px;
    height: 130px;

    border: 1px solid rgba(134,239,172,.25);

    border-radius: 50%;
}

.rppd-pro-preview-shape span:nth-child(1) {
    top: 10px;
    left: 20px;
}

.rppd-pro-preview-shape span:nth-child(2) {
    top: 35px;
    left: 45px;

    width: 90px;
    height: 90px;

    background: rgba(34,197,94,.1);
}

.rppd-pro-preview-shape span:nth-child(3) {
    top: 65px;
    left: 75px;

    width: 35px;
    height: 35px;

    background: #22c55e;

    border: none;

    box-shadow:
        0 0 60px rgba(34,197,94,.8);
}


/* floating cards */

.rppd-pro-floating-card {
    position: absolute;

    z-index: 5;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 11px 14px;

    border: 1px solid rgba(255,255,255,.8);
    border-radius: 11px;

    background: rgba(255,255,255,.94);

    box-shadow:
        0 15px 40px rgba(17,36,25,.14);

    backdrop-filter: blur(10px);

    animation:
        rppdFloat 4s ease-in-out infinite;
}

.rppd-floating-icon {
    font-size: 16px;
}

.rppd-pro-floating-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #eaf8ee;

    color: #16a34a;
}

.rppd-pro-floating-card strong,
.rppd-pro-floating-card small {
    display: block;
}

.rppd-pro-floating-card strong {
    color: #17221b;
    font-size: 11px;
}

.rppd-pro-floating-card small {
    color: #87938b;
    font-size: 9px;
}

.rppd-pro-floating-one {
    top: 55px;
    left: -35px;
}

.rppd-pro-floating-two {
    right: -30px;
    bottom: 55px;

    animation-delay: -2s;
}

@keyframes rppdFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.rppd-pro-scroll-indicator {
    position: absolute;

    bottom: 25px;
    left: 50%;

    display: flex;
    align-items: center;
    gap: 8px;

    transform: translateX(-50%);

    color: #89958d;

    font-size: 12px;
    font-weight: 600;
}

.rppd-pro-scroll-indicator span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #22c55e;
}


/* =========================================================
   PRICING
   ========================================================= */

.rppd-pro-pricing {
    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(34,197,94,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #08130c,
            #102319
        );

    color: #fff;
}

.rppd-pro-pricing-glow {
    position: absolute;

    right: -180px;
    top: -180px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(34,197,94,.1);

    filter: blur(80px);
}

.rppd-pro-pricing-heading {
    position: relative;
    z-index: 2;

    max-width: 690px;

    margin: 0 auto 55px;

    text-align: center;
}

.rppd-pro-pricing-heading .rppd-pro-section-label {
    color: #4ade80;
}

.rppd-pro-pricing-heading h2 {
    margin: 0;

    font-size: clamp(37px, 4vw, 54px);
    line-height: 1.1;

    letter-spacing: -2.5px;
}

.rppd-pro-pricing-heading h2 span {
    color: #4ade80;
}

.rppd-pro-pricing-heading p {
    margin: 18px auto 0;

    color: rgba(255,255,255,.58);

    font-size: 16x;
}

.rppd-pro-pricing-card {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr .9fr;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.07),
            rgba(255,255,255,.025)
        );

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);

    backdrop-filter: blur(15px);
}

.rppd-pro-pricing-left {
    padding: 48px;
}
.rppd-pro-pricing-badge {
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 9px;
    border: 1px solid rgba(74,222,128,.25);
    border-radius: 6px;
    background: rgba(34,197,94,.1);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.rppd-pro-pricing-left h3 {
    margin: 0;

    font-size: 30px;
    line-height: 1.15;

    letter-spacing: -1px;
}

.rppd-pro-pricing-left > p {
    max-width: 430px;

    margin: 12px 0 22px;

    color: rgba(255,255,255,.58);

    font-size: 14px;
}

.rppd-pro-price {
    display: flex;
    align-items: flex-end;
    gap: 9px;
}

.rppd-pro-old-price {
    margin-bottom: 7px;

    color: rgba(255,255,255,.3);

    font-size: 20px;

    text-decoration: line-through;
}

.rppd-pro-price strong {
    color: #fff;
    font-size: 62px;
    line-height: .9;
    letter-spacing: -4px;
}

.rppd-pro-price-note {
    margin-bottom: 5px;
    color: rgba(255,255,255,.4);
    font-size: 12px;
}

.rppd-pro-price-description {
    margin-top: 12px !important;
    font-size: 13px !important;
}

.rppd-pro-buy-btn {
    min-height: 55px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    padding: 0 18px;
    border-radius: 10px;
    background: linear-gradient(
            135deg,
            #16a34a,
            #22c55e
        );
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.35px;
    box-shadow: 0 15px 30px rgba(34,197,94,.18);
    transition: transform .25s ease,
        box-shadow .25s ease;
}
.rppd-pro-buy-btn span.icon{
    display: flex;
    width: 20px;
}
.rppd-pro-buy-btn:hover {
    color: #fff!important;
    transform: translateY(-3px);

    box-shadow:
        0 20px 40px rgba(34,197,94,.27);
}

.rppd-pro-secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    margin-top: 14px;

    color: rgba(255,255,255,.4);

    font-size: 14px;
}

.rppd-pro-secure-note span {
    color: #4ade80;
}

.rppd-pro-pricing-right {
    padding: 48px;

    border-left: 1px solid rgba(255,255,255,.08);

    background: rgba(0,0,0,.1);
}

.rppd-pro-included-title {
    margin-bottom: 22px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.rppd-pro-included {
    margin: 0;
    padding: 0;

    list-style: none;
}

.rppd-pro-included li {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255,255,255,.07);

    color: rgba(255,255,255,.62);

    font-size: 14px;
}

.rppd-pro-included li:last-child {
    border-bottom: 0;
}

.rppd-pro-included li span {
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(34,197,94,.12);

    color: #4ade80;

    font-size: 9px;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.rppd-pro-benefits {
    padding: 90px 0;

    background: #fff;
}

.rppd-pro-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.rppd-pro-benefit {
    padding: 30px;

    border: 1px solid #e7ece9;
    border-radius: 15px;

    background: #fff;
}

.rppd-pro-benefit-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 11px;

    background: #eaf8ee;

    color: #16a34a;

    font-size: 17px;
}

.rppd-pro-benefit h3 {
    margin: 0 0 10px;

    color: #17221b;

    font-size: 18px;
}

.rppd-pro-benefit p {
    margin: 0;

    color: #77837b;

    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   FAQ
   ========================================================= */

.rppd-pro-faq {
    padding: 115px 0;

    background: #f7faf8;
}

.rppd-pro-faq-grid {
    max-width: 850px;

    margin: 0 auto;
}

.rppd-pro-faq-item {
    margin-bottom: 9px;

    border: 1px solid #e2e9e4;
    border-radius: 11px;

    background: #fff;

    overflow: hidden;
}

.rppd-pro-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 19px 21px;

    cursor: pointer;

    color: #26332b;

    font-size: 16px;
    font-weight: 700;

    list-style: none;
}

.rppd-pro-faq-item summary::-webkit-details-marker {
    display: none;
}

.rppd-pro-faq-item summary span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #edf7f0;

    color: #16a34a;

    font-size: 15px;

    transition:
        transform .25s ease;
}

.rppd-pro-faq-item[open]
summary span {
    transform: rotate(45deg);
}

.rppd-pro-faq-answer {
    padding: 0 21px 21px;

    color: #718078;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.rppd-pro-final-cta {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: #07110c;
}

.rppd-pro-final-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    top: -280px;
    left: 50%;

    border-radius: 50%;

    transform: translateX(-50%);

    background: rgba(34,197,94,.12);

    filter: blur(90px);
}

.rppd-pro-final-box {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}
.rppd-pro-final-label {
    margin-bottom: 15px;
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.rppd-pro-final-box h2 {
    margin: 0;

    color: #fff;

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

    letter-spacing: -3px;
}

.rppd-pro-final-box h2 span {
    display: block;

    color: #4ade80;
}

.rppd-pro-final-box p {
    max-width: 600px;

    margin: 20px auto 30px;

    color: rgba(255,255,255,.55);

    font-size: 14px;
}

.rppd-pro-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}

.rppd-pro-btn-white {
    background: #fff;

    color: #111a14;

    box-shadow:
        0 15px 30px rgba(0,0,0,.2);
}

.rppd-pro-btn-white:hover {
    transform: translateY(-3px);

    background: #f1fff5;
}

.rppd-pro-final-demo {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;

    color: rgba(255,255,255,.75);

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

    transition:
        border-color .25s ease,
        color .25s ease;
}

.rppd-pro-final-demo:hover {
    border-color: rgba(74,222,128,.5);

    color: #4ade80;
}


/* =========================================================
   FOOTER
   ========================================================= */

.rppd-pro-footer {
    padding: 55px 0 25px;

    background: #050b07;

    color: #fff;
}

.rppd-pro-footer-main {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 35px;
}

.rppd-pro-footer .rppd-pro-logo {
    color: #fff;
    font-size: 24px;
}
.rppd-pro-footer-main > p {
    max-width: 100%;
    margin: 0;
    color: rgba(255,255,255,.4);
    font-size: 16px;
    line-height: 1.8;
}

.rppd-pro-footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;

    grid-column: span 2;
}

.rppd-pro-footer-links a {
    color: rgba(255,255,255,.45);

    font-size: 14px;
    font-weight: 600;

    transition:
        color .25s ease;
}

.rppd-pro-footer-links a:hover {
    color: #4ade80;
}

.rppd-pro-footer-bottom {
    display: flex;
    justify-content: space-between;

    margin-top: 35px;
    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.07);

    color: rgba(255,255,255,.28);

    font-size: 14px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .rppd-pro-nav {
        display: none;
    }

    .rppd-pro-hero > .rppd-pro-container {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .rppd-pro-hero-content {
        max-width: 700px;
        margin: 0 auto;

        text-align: center;
    }

    .rppd-pro-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .rppd-pro-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .rppd-pro-hero-actions,
    .rppd-pro-trust-row {
        justify-content: center;
    }

    .rppd-pro-hero-visual {
        max-width: 720px;

        width: 100%;

        margin: 0 auto;
    }

    .rppd-pro-customizer-grid {
        grid-template-columns: 1fr;
    }

    .rppd-pro-customizer-content {
        max-width: 700px;
        margin: 0 auto;

        text-align: center;
    }

    .rppd-pro-check-list {
        display: inline-block;

        text-align: left;
    }

    .rppd-pro-pricing-card {
        grid-template-columns: 1fr;
    }

    .rppd-pro-pricing-right {
        border-top: 1px solid rgba(255,255,255,.08);
        border-left: 0;
    }

}


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

@media (max-width: 700px) {

    .rppd-pro-container {
        width: min(100% - 28px, 1180px);
    }

    .rppd-pro-header-inner {
        min-height: 68px;
    }

    .rppd-pro-header-btn {
        padding: 10px 12px;

        font-size: 10px;
    }

    .rppd-pro-header-btn span {
        display: none;
    }

    .rppd-pro-logo-text {
        font-size: 16px;
    }

    .rppd-pro-logo-mark {
        width: 34px;
        height: 34px;
    }

    .rppd-pro-hero {
        padding: 70px 0 90px;
    }

    .rppd-pro-hero h1 {
        font-size: 44px;

        letter-spacing: -2.5px;
    }

    .rppd-pro-hero-description {
        font-size: 14px;
    }

    .rppd-pro-hero-actions {
        flex-direction: column;
    }

    .rppd-pro-btn {
        width: 100%;
    }

    .rppd-pro-trust-row {
        flex-direction: column;

        gap: 9px;
    }

    .rppd-pro-floating-one {
        top: -18px;
        left: 5px;
    }

    .rppd-pro-floating-two {
        right: 5px;
        bottom: -18px;
    }

    .rppd-pro-browser {
        transform: none;
    }

    .rppd-pro-preview-screen {
        min-height: 310px;
    }

    .rppd-pro-preview-body {
        min-height: 265px;

        padding: 30px;
    }

    .rppd-pro-preview-copy h3 {
        font-size: 30px;
    }

    .rppd-pro-preview-shape {
        opacity: .5;
        right: -40px;
    }

    .rppd-pro-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .rppd-pro-stat {
        border-bottom: 1px solid #edf1ee;
    }

    .rppd-pro-stat:nth-child(2) {
        border-right: 0;
    }

    .rppd-pro-intro,
    .rppd-pro-demos,
    .rppd-pro-customizer,
    .rppd-pro-layouts,
    .rppd-pro-comparison,
    .rppd-pro-pricing,
    .rppd-pro-faq {
        padding: 80px 0;
    }

    .rppd-pro-section-heading {
        margin-bottom: 38px;
    }

    .rppd-pro-section-heading h2 {
        font-size: 35px;
        letter-spacing: -1.7px;
    }

    .rppd-pro-feature-grid {
        grid-template-columns: 1fr;
    }

    .rppd-pro-feature-large {
        grid-column: span 1;
    }

    .rppd-pro-feature-card {
        min-height: auto;

        padding: 27px;
    }

    .rppd-pro-feature-preview {
        overflow: hidden;
    }

    .rppd-pro-mini-hero {
        min-width: 105px;
        height: 70px;
    }

    .rppd-pro-demo-grid {
        grid-template-columns: 1fr;
    }

    .rppd-pro-demo-image {
        height: 220px;
    }

    .rppd-pro-customizer-body {
        grid-template-columns: 1fr;
    }

    .rppd-pro-customizer-sidebar {
        display: none;
    }

    .rppd-pro-customizer-content h2 {
        font-size: 37px;
    }

    .rppd-pro-layout-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .rppd-pro-layout-preview {
        height: 145px;

        padding: 14px;
    }

    .layout-preview-content strong {
        font-size: 15px;
    }

    .rppd-pro-more-box {
        grid-template-columns: 1fr;

        padding: 30px;
    }

    .rppd-pro-more-content h2 {
        font-size: 28px;
    }

    .rppd-pro-comparison-table {
        overflow-x: auto;
    }

    .rppd-pro-comparison-head,
    .rppd-pro-comparison-row {
        min-width: 620px;

        grid-template-columns: 1fr 130px 150px;
    }

    .rppd-pro-pricing-left,
    .rppd-pro-pricing-right {
        padding: 30px;
    }

    .rppd-pro-price strong {
        font-size: 54px;
    }

    .rppd-pro-benefits-grid {
        grid-template-columns: 1fr;
    }

    .rppd-pro-final-cta {
        padding: 80px 0;
    }

    .rppd-pro-final-box h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .rppd-pro-final-actions {
        flex-direction: column;
    }

    .rppd-pro-final-actions > * {
        width: 100%;
    }

    .rppd-pro-footer-main {
        grid-template-columns: 1fr;
    }

    .rppd-pro-footer-links {
        grid-column: span 1;

        justify-content: flex-start;

        flex-wrap: wrap;
    }

    .rppd-pro-footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

}