:root {
    --ink: #160f2d;
    --muted: #6f6887;
    --blue: #36dca3;
    --blue-2: #05a286;
    --deep: #2b1748;
    --line: #d9f7ea;
    --soft: #f0fff8;
    --soft-2: #effff8;
    --panel: #f8fffc;
    --white: #ffffff;
    --sky: #f6f1ff;
    --sky-2: #fcfaff;
    --ash-blue: #f7f3ff;
    --shadow: 0 24px 60px rgba(21, 195, 154, 0.14);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

img {
    max-width: 100%;
    display: block;
}

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

/* =========================
   Header
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background:
        linear-gradient(180deg, rgba(249, 245, 255, 0.98) 0%, rgba(252, 250, 255, 0.94) 100%);
    border-bottom: 1px solid rgba(221, 211, 255, 0.92);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand img {
    width: 172px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 52px;
    font-size: 15px;
    font-weight: 800;
}

.nav-links a,
.login-link {
    transition: color .18s ease;
}

.nav-links a:hover,
.login-link:hover {
    color: var(--blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    font-weight: 800;
}

.outline-btn {
    border: 2px solid var(--ink);
    border-radius: 999px;
    padding: 12px 24px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.88);
    transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.outline-btn:hover {
    transform: translateY(-1px);
    border-color: var(--blue);
    color: var(--blue);
    background: #ffffff;
}

/* =========================
   Hero
========================= */

.hero-section {
    background:
        radial-gradient(circle at 68% 0%, rgba(54, 220, 163, 0.18), transparent 34%),
        radial-gradient(circle at 22% 8%, rgba(192, 132, 252, 0.16), transparent 34%),
        linear-gradient(180deg, #f6f1ff 0%, #fcfaff 68%, #ffffff 100%);
    padding: 78px 0 58px;
}

.hero-grid {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 500px 320px;
    gap: 34px;
    justify-content: center;
    align-items: center;
}

.spark {
    color: var(--blue);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 24px;
}

.hero-copy {
    max-width: 500px;
}

.hero-copy h1 {
    margin: 0;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -0.015em;
    font-weight: 520;
}

.hero-copy h1 span,
.hero-copy h1 em {
    display: block;
}

.hero-copy h1 em {
    color: var(--blue);
    font-style: italic;
    font-weight: 740;
    font-size: 0.76em;
    line-height: 1.04;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.hero-subtext {
    max-width: 455px;
    margin: 20px 0 30px;
    color: #463d62;
    font-size: 16px;
    line-height: 1.72;
    font-weight: 700;
}

.primary-btn,
.dark-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    min-width: 190px;
    padding: 0 38px;
    border-radius: 999px;
    background: var(--deep);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
    box-shadow: 0 20px 45px rgba(43, 23, 72, .18);
    transition: transform .18s ease, box-shadow .18s ease;
}

.primary-btn:hover,
.dark-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(43, 23, 72, .22);
}

.hero-section .primary-btn {
    min-width: 205px;
    min-height: 58px;
    padding: 0 42px;
    font-size: 14px;
    letter-spacing: 0.025em;
}

.hero-image-wrap {
    width: 320px;
    height: auto;
    min-height: 0;
    justify-self: start;
    border-radius: 22px;
    background: transparent;
    box-shadow: 0 24px 60px rgba(21, 195, 154, .12);
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    border-radius: 22px;
}

/* =========================
   Stats
========================= */

.stats-section {
    padding: 56px 0 96px;
    background: #fff;
}

.stats-wrap {
    text-align: center;
}

.stats-wrap h2 {
    margin: 0 0 48px;
    font-size: clamp(34px, 3.2vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 680;
}

.stats-wrap h2 span {
    color: var(--blue);
    font-style: normal;
    font-weight: 850;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1040px;
    margin: 0 auto;
    gap: 48px;
}

.stat-card {
    background: linear-gradient(180deg, #f0fff8 0%, #effff8 100%);
    border: 1px solid #dce9fa;
    border-radius: 20px;
    min-height: 170px;
    padding: 38px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(21, 195, 154, 0.07);
}

.stat-card strong {
    font-size: 50px;
    line-height: .95;
    letter-spacing: -0.025em;
    font-weight: 420;
}

.stat-card small {
    margin-top: 20px;
    color: #5d687c;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 730;
}

/* =========================
   Works Section
========================= */

.works-section {
    background:
        radial-gradient(circle at 72% 20%, rgba(54, 220, 163, .14), transparent 34%),
        linear-gradient(110deg, #edf7ff 0%, #eaf4ff 56%, #fcfaff 100%);
    padding: 82px 0;
}

.works-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 78px;
    align-items: center;
    max-width: 1040px;
}

.works-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(38px, 3.6vw, 50px);
    line-height: 1;
    letter-spacing: -0.058em;
    font-weight: 800;
}

.works-copy h2 em,
.benefits-section h2 em,
.options-section h2 em,
.review-section h2 em {
    color: var(--blue);
    font-style: italic;
    font-weight: inherit;
}

.works-copy > p {
    max-width: 350px;
    margin: 0 0 15px;
    color: #25334a;
    font-size: 14px;
    line-height: 1.62;
    font-weight: 650;
}

.text-link {
    display: inline-flex;
    margin: 0 0 22px;
    color: var(--blue-2);
    font-weight: 850;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.payment-steps {
    width: min(100%, 500px);
    display: grid;
    gap: 14px;
}

.payment-step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    align-items: start;
    border-radius: 15px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .48);
    border: 1px solid rgba(145, 178, 224, .30);
    color: rgba(3, 9, 34, .64);
}

.payment-step-active {
    background: #fff;
    color: var(--ink);
    border: 2px solid var(--blue);
    box-shadow: 0 18px 42px rgba(21, 195, 154, .10);
}

.payment-step span {
    width: 29px;
    height: 29px;
    border-radius: 999px;
    background: var(--deep);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    margin-top: 1px;
}

.payment-step strong {
    display: block;
    font-size: 17px;
    line-height: 1.18;
    font-weight: 850;
    margin-bottom: 7px;
}

.payment-step p {
    margin: 0;
    font-size: 13px;
    line-height: 1.48;
    font-weight: 650;
    color: #5d687c;
}

.mobile-preview-wrap {
    justify-self: center;
    width: min(100%, 360px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-preview {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    filter: drop-shadow(0 30px 38px rgba(3, 9, 34, .13));
}

/* =========================
   General Sections
========================= */

.benefits-section,
.options-section,
.review-section,
.faq-section {
    padding: 88px 0;
}

.narrow-center {
    max-width: 900px;
    text-align: center;
}

.benefits-section h2,
.options-section h2,
.review-section h2,
.faq-section h2 {
    margin: 0 0 48px;
    font-size: clamp(34px, 3.7vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.065em;
    font-weight: 540;
}

/* =========================
   Benefits
========================= */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 42px;
}

.benefit-card {
    text-align: center;
    padding: 12px 12px 4px;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: #effff8;
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.benefit-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.035em;
}

.benefit-card p {
    margin: 0;
    color: #5b6679;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 650;
}

.dark-pill {
    min-height: 48px;
    padding: 0 26px;
    font-size: 13px;
}

/* =========================
   Options Section
========================= */

.options-section {
    background:
        radial-gradient(circle at 50% 18%, rgba(54, 220, 163, .05), transparent 34%),
        linear-gradient(180deg, #fbfdff 0%, #fcfaff 100%);
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
}

.option-card {
    position: relative;
    text-align: left;
    border: 1px solid #d5e5f8;
    border-radius: 24px;
    padding: 42px 44px 38px;
    min-height: 250px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    overflow: hidden;
}

.option-card::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -54px;
    top: -58px;
    border-radius: 999px;
    background: rgba(21, 195, 154, .07);
    pointer-events: none;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 55px rgba(21, 195, 154, .11);
    border-color: rgba(54, 220, 163, .24);
}

.option-active {
    background: linear-gradient(145deg, #e6f2ff 0%, #f2f8ff 100%);
}

.option-card:not(.option-active) {
    background: linear-gradient(145deg, #f3f7fc 0%, #eef4fb 100%);
}

.option-icon {
    position: relative;
    z-index: 1;
    color: var(--blue);
    font-size: 44px;
    margin-bottom: 48px;
    line-height: 1;
}

.option-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 850;
}

.option-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #736c88;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
}

.coming-soon {
    position: absolute;
    top: 34px;
    left: 44px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid #cfe0f5;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 850;
    color: #657084;
    z-index: 2;
}

/* =========================
   Reviews
========================= */

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 42px;
}

.review-card {
    border: 1px solid #dce7f5;
    background: #fff;
    border-radius: 10px;
    padding: 30px 28px;
    text-align: left;
    box-shadow: 0 16px 40px rgba(3, 9, 34, .04);
}

.stars {
    color: var(--blue);
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 14px;
}

.review-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 850;
}

.review-card p {
    margin: 0 0 18px;
    color: #3f4a5d;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 650;
}

.review-card small {
    color: #6f7a8d;
    font-size: 12px;
}

.centered {
    margin: 0 auto;
}

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

.faq-wrap {
    max-width: 860px;
}

.faq-wrap h2 {
    text-align: center;
}

.faq-list {
    border-top: 1px solid #dce6f4;
}

.faq-list details {
    border-bottom: 1px solid #dce6f4;
    padding: 21px 0;
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 850;
    font-size: 15px;
}

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

.faq-list summary::after {
    content: "+";
    color: var(--blue);
    font-size: 18px;
    font-weight: 900;
}

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

.faq-list p {
    margin: 14px 0 0;
    color: #736c88;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 650;
}

/* =========================
   Footer
========================= */

.site-footer {
    background: #02051a;
    color: #fff;
    padding: 58px 0;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo {
    width: 158px;
    height: auto;
    filter: none;
    margin-bottom: 24px;
}

.site-footer p {
    margin: 0;
    color: rgba(255,255,255,.62);
    font-size: 12px;
    font-weight: 650;
}

.site-footer nav {
    display: flex;
    gap: 28px;
    font-size: 13px;
    font-weight: 850;
}

/* =========================
   Tablet
========================= */

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero-section {
        padding-top: 76px;
    }

    .hero-grid,
    .works-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image-wrap {
        justify-self: start;
        width: min(100%, 360px);
        height: auto;
    }

    .hero-image {
        height: auto;
        object-fit: contain;
    }

    .works-grid {
        max-width: none;
    }

    .mobile-preview-wrap {
        justify-self: start;
        width: min(100%, 330px);
    }

    .mobile-preview {
        max-height: 570px;
    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 76px;
    }

    .brand img {
        width: 142px;
    }

    .nav-links,
    .login-link {
        display: none;
    }

    .outline-btn {
        padding: 11px 17px;
        font-size: 13px;
    }

    .hero-section {
        padding: 64px 0 54px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
        max-width: 100%;
    }

    .spark {
        display: none;
    }

    .hero-copy {
        margin: 0 auto;
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(37px, 10vw, 52px);
        line-height: 1;
        letter-spacing: -0.042em;
        text-align: center;
    }

    .hero-copy h1 em {
        white-space: normal;
        font-size: .76em;
        letter-spacing: -0.022em;
        text-align: center;
    }

    .hero-subtext {
        max-width: 100%;
        font-size: 15px;
        line-height: 1.65;
        text-align: center;
        margin: 22px auto 34px;
    }

    .primary-btn {
        margin: 0 auto;
    }

    .hero-section .primary-btn {
        min-width: 210px;
        min-height: 56px;
        padding: 0 40px;
        letter-spacing: 0.025em;
    }

    .hero-image-wrap {
        width: min(100%, 292px);
        height: auto;
        min-height: 0;
        justify-self: center;
        margin: 0 auto;
        border-radius: 18px;
        box-shadow: 0 18px 42px rgba(21, 195, 154, .10);
        overflow: visible;
    }

    .hero-image {
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
        border-radius: 18px;
    }

    .stats-grid,
    .benefit-grid,
    .review-grid,
    .option-grid {
        grid-template-columns: 1fr;
    }

    .stats-section,
    .benefits-section,
    .options-section,
    .review-section,
    .faq-section,
    .works-section {
        padding: 68px 0;
    }

    .stats-wrap h2,
    .works-copy h2,
    .benefits-section h2,
    .options-section h2,
    .review-section h2,
    .faq-section h2 {
        font-size: 38px;
    }

    .stats-grid {
        gap: 18px;
    }

    .stat-card {
        min-height: 138px;
        padding: 28px 22px;
    }

    .stat-card strong {
        font-size: 46px;
        font-weight: 420;
    }

    .stat-card small {
        font-size: 15px;
    }

    .payment-step {
        padding: 18px 18px;
        grid-template-columns: 32px 1fr;
    }

    .mobile-preview {
        min-height: auto;
    }

    .option-card {
        min-height: 220px;
        padding: 34px 30px 32px;
    }

    .option-icon {
        margin-bottom: 40px;
    }

    .option-card h3 {
        font-size: 26px;
    }

    .option-card p {
        font-size: 16px;
    }

    .coming-soon {
        top: 28px;
        left: 30px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .site-footer nav {
        flex-wrap: wrap;
    }
}

/* ===== RENTSPLITER PREMIUM UI V3 ===== */
/*
   Final visual-only RentSpliter homepage system.
   No DB, acquisition, service_brand, agreement, payment, PayPal,
   token, admin or routing logic is changed here.
*/

:root {
    --rs-ink: #092f29;
    --rs-ink-2: #143e37;
    --rs-muted: #5f716b;
    --rs-green: #20c98a;
    --rs-green-2: #0da77a;
    --rs-deep: #063f35;
    --rs-deep-2: #0a5145;
    --rs-soft: #edf9f4;
    --rs-soft-2: #f7fcfa;
    --rs-line: #dbeae4;
    --rs-white: #ffffff;
    --rs-shadow: 0 18px 50px rgba(7, 63, 53, .08);
    --rs-shadow-strong: 0 26px 70px rgba(7, 63, 53, .12);
}

html,
body {
    background: #fff;
}

body {
    color: var(--rs-ink);
}

.container {
    width: min(1160px, calc(100% - 48px));
}

/* Header */
.site-header {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(219,234,228,.95);
    box-shadow: 0 1px 0 rgba(7,63,53,.02);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 78px;
}

.brand img {
    width: 176px;
}

.nav-links {
    gap: 50px;
}

.nav-links a,
.header-actions,
.login-link {
    color: #153c35;
}

.nav-links a:hover,
.login-link:hover {
    color: var(--rs-green-2);
}

.outline-btn {
    border: 1.7px solid #123d35;
    color: #123d35;
    background: rgba(255,255,255,.94);
    box-shadow: none;
}

.outline-btn:hover {
    border-color: var(--rs-green-2);
    color: var(--rs-green-2);
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0 52px;
    background:
        radial-gradient(circle at 72% 20%, rgba(32,201,138,.09), transparent 30%),
        radial-gradient(circle at 8% 40%, rgba(91,225,178,.06), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfdfc 72%, #ffffff 100%);
}

.hero-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 480px) minmax(0, 600px);
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.spark {
    color: var(--rs-green);
    margin-bottom: 20px;
}

.hero-copy h1 {
    color: var(--rs-ink);
    font-size: clamp(54px, 4.15vw, 66px);
    line-height: .98;
    letter-spacing: -.04em;
    font-weight: 700;
}

.hero-copy h1 em {
    color: var(--rs-green);
    font-size: .73em;
    line-height: 1.08;
    font-weight: 760;
    letter-spacing: -.025em;
}

.hero-subtext {
    max-width: 455px;
    margin: 22px 0 28px;
    color: #50645e;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 650;
}

.primary-btn,
.dark-pill {
    background: var(--rs-deep);
    color: #fff;
    box-shadow: 0 16px 34px rgba(6,63,53,.16);
}

.primary-btn:hover,
.dark-pill:hover {
    background: var(--rs-deep-2);
    box-shadow: 0 20px 42px rgba(6,63,53,.2);
}

.hero-section .primary-btn {
    min-width: 210px;
    min-height: 56px;
}

.hero-image-wrap {
    position: relative;
    z-index: 1;
    width: min(100%, 600px);
    height: 470px;
    justify-self: end;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.hero-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 67% 48%;
    border-radius: 0;
    filter: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.38) 7%, #000 18%, #000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.38) 7%, #000 18%, #000 100%);
}

/* Stats */
.stats-section {
    padding: 54px 0 84px;
    background: #fff;
}

.stats-wrap h2 {
    margin-bottom: 40px;
    color: var(--rs-ink);
    font-size: clamp(34px, 3vw, 44px);
    font-weight: 720;
}

.stats-wrap h2 span {
    color: var(--rs-green);
}

.stats-grid {
    max-width: 1000px;
    gap: 24px;
}

.stat-card {
    min-height: 148px;
    padding: 30px 26px;
    background: #fff;
    border: 1px solid var(--rs-line);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(7,63,53,.055);
}

.stat-card strong {
    color: #0b3d33;
    font-size: 46px;
    font-weight: 620;
}

.stat-card small {
    margin-top: 13px;
    color: #667772;
    font-size: 15px;
}

/* Works */
.works-section {
    padding: 84px 0;
    background:
        radial-gradient(circle at 76% 22%, rgba(32,201,138,.07), transparent 28%),
        linear-gradient(110deg, #eef9f4 0%, #f7fcfa 56%, #ffffff 100%);
}

.works-grid {
    max-width: 1060px;
    gap: 72px;
}

.works-copy h2,
.benefits-section h2,
.options-section h2,
.review-section h2,
.faq-section h2 {
    color: var(--rs-ink);
}

.works-copy h2 em,
.benefits-section h2 em,
.options-section h2 em,
.review-section h2 em {
    color: var(--rs-green);
}

.works-copy > p,
.payment-step p,
.benefit-card p,
.option-card p,
.review-card p,
.review-card small,
.faq-list p {
    color: var(--rs-muted);
}

.text-link {
    color: #0d8f69;
}

.payment-step {
    background: rgba(255,255,255,.72);
    border: 1px solid #dcebe5;
    color: #63746f;
}

.payment-step-active {
    background: #fff;
    color: var(--rs-ink);
    border: 1.5px solid #26bf88;
    box-shadow: 0 14px 32px rgba(7,63,53,.075);
}

.payment-step span {
    background: #0a4a3e;
}

.mobile-preview {
    filter: drop-shadow(0 28px 36px rgba(7,63,53,.12));
}

/* General sections */
.benefits-section,
.options-section,
.review-section,
.faq-section {
    padding: 84px 0;
}

.benefits-section h2,
.options-section h2,
.review-section h2,
.faq-section h2 {
    font-weight: 650;
}

/* Benefits */
.benefits-section {
    background: #fff;
}

.benefit-grid {
    gap: 28px;
}

.benefit-icon {
    width: 46px;
    height: 46px;
    background: #eaf9f3;
    color: var(--rs-green-2);
    border: 1px solid #d8ede4;
}

.benefit-card h3 {
    color: #173b34;
}

/* Options */
.options-section {
    background: #f8fbf9;
}

.option-grid {
    gap: 22px;
}

.option-card,
.option-active,
.option-card:not(.option-active) {
    background: #fff;
    border: 1px solid #dfece7;
    box-shadow: 0 10px 28px rgba(7,63,53,.045);
}

.option-card::before {
    background: rgba(32,201,138,.055);
}

.option-card:hover {
    border-color: #bfe4d5;
    box-shadow: 0 18px 42px rgba(7,63,53,.08);
}

.option-icon,
.stars,
.faq-list summary::after {
    color: var(--rs-green);
}

.coming-soon {
    background: #f8fbf9;
    border-color: #dceae5;
    color: #61736d;
}

/* Reviews */
.review-section {
    background: #fff;
}

.review-card {
    border: 1px solid #dfeae6;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(7,63,53,.045);
}

/* FAQ */
.faq-section {
    background: #fff;
}

.faq-list,
.faq-list details {
    border-color: #dceae5;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #063f35 0%, #08372f 100%);
    color: #fff;
    border-top: 0;
}

.site-footer p {
    color: rgba(255,255,255,.68);
}

.site-footer nav a {
    color: rgba(255,255,255,.88);
}

.site-footer nav a:hover {
    color: #7ce5bd;
}

/* Tablet */
@media (max-width: 980px) {
    .hero-section {
        padding: 46px 0 52px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 760px;
    }

    .hero-image-wrap {
        width: min(100%, 640px);
        height: 430px;
        justify-self: center;
        order: -1;
    }

    .hero-image {
        object-position: 66% 48%;
        -webkit-mask-image: none;
        mask-image: none;
        border-radius: 26px;
    }

    .hero-copy {
        margin: 0 auto;
        text-align: center;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Mobile */
@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), 1180px);
    }

    .header-inner {
        min-height: 70px;
        gap: 12px;
    }

    .brand img {
        width: 136px;
    }

    .outline-btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .hero-section {
        padding: 20px 0 48px;
        background:
            radial-gradient(circle at 50% 12%, rgba(32,201,138,.08), transparent 32%),
            linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
    }

    .hero-grid {
        gap: 26px;
        text-align: center;
    }

    /* Explicit mobile priority: image first, hero copy second. */
    .hero-image-wrap {
        order: -1;
        width: 100%;
        height: auto;
        aspect-ratio: 1.13 / 1;
        max-width: 430px;
        margin: 0 auto;
        border-radius: 24px;
        overflow: hidden;
        background: #f5fcf9;
        box-shadow: 0 16px 38px rgba(7,63,53,.08);
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 70% 48%;
        border-radius: 24px;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .hero-copy {
        max-width: 100%;
    }

    .spark {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 11vw, 52px);
        line-height: .98;
        text-align: center;
    }

    .hero-copy h1 em {
        font-size: .72em;
        line-height: 1.1;
        white-space: normal;
        text-align: center;
    }

    .hero-subtext {
        margin: 18px auto 28px;
        font-size: 15px;
        line-height: 1.62;
        text-align: center;
    }

    .hero-section .primary-btn {
        width: min(100%, 290px);
        min-width: 0;
        min-height: 54px;
        margin: 0 auto;
    }

    .stats-section {
        padding: 44px 0 64px;
    }

    .stats-wrap h2,
    .works-copy h2,
    .benefits-section h2,
    .options-section h2,
    .review-section h2,
    .faq-section h2 {
        font-size: 34px;
        line-height: 1.05;
    }

    .stats-grid {
        gap: 14px;
    }

    .stat-card {
        min-height: 116px;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .stat-card strong {
        font-size: 40px;
    }

    .works-section,
    .benefits-section,
    .options-section,
    .review-section,
    .faq-section {
        padding: 62px 0;
    }

    .works-grid {
        gap: 38px;
    }

    .mobile-preview-wrap {
        justify-self: center;
    }

    .payment-step {
        padding: 16px;
    }

    .option-card {
        min-height: 190px;
        padding: 30px 26px 28px;
        border-radius: 20px;
    }

    .option-icon {
        margin-bottom: 32px;
    }

    .review-card {
        border-radius: 16px;
    }

    .site-footer {
        padding: 44px 0;
    }
}

@media (max-width: 420px) {
    .brand img {
        width: 124px;
    }

    .outline-btn {
        padding: 9px 12px;
    }

    .hero-image-wrap {
        aspect-ratio: 1.04 / 1;
        border-radius: 20px;
    }

    .hero-image {
        object-position: 71% 48%;
        border-radius: 20px;
    }

    .hero-copy h1 {
        font-size: 40px;
    }

    .hero-copy h1 em {
        font-size: .70em;
    }
}
/* ===== END RENTSPLITER PREMIUM UI V3 ===== */


/* ===== RENTSPLITER MOBILE HERO BOTTOM BLEND ===== */
@media (max-width: 768px) {

    .hero-image-wrap {
        position: relative;
        box-shadow: none !important;
    }

    .hero-image-wrap::after {
        content: "";
        position: absolute;
        z-index: 5;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 105px;
        pointer-events: none;

        background: linear-gradient(
            to bottom,
            rgba(251, 253, 252, 0) 0%,
            rgba(251, 253, 252, .12) 28%,
            rgba(251, 253, 252, .72) 72%,
            #fbfdfc 100%
        );
    }
}

@media (max-width: 420px) {
    .hero-image-wrap::after {
        height: 90px;
    }
}
/* ===== END RENTSPLITER MOBILE HERO BOTTOM BLEND ===== */


/* ===== RENTSPLITER MOBILE HERO IMAGE CENTER ===== */
@media (max-width: 720px) {

    .hero-image-wrap {
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-image-wrap img {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        object-position: center center !important;
    }
}
/* ===== END RENTSPLITER MOBILE HERO IMAGE CENTER ===== */

