/* CSS Reset & Variables */
:root {
    --rp-dark-green: #102c27;
    --rp-light-green: #e8f0ec;
    --rp-accent: #b99b6b;
    --rp-accent-hover: #a98b5e;
    --rp-text-dark: #17332d;
    --rp-text-light: #66736e;
    --rp-text-muted: #7b8782;
    --rp-bg-light: #f5f1e9;
    --rp-white: #ffffff;
    --rp-border: rgba(16, 44, 39, 0.12);
    --rp-radius: 10px;
    --rp-shadow: 0 18px 50px rgba(16, 44, 39, 0.12);
    --rp-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--rp-bg-light);
}

body {
    font-family: var(--font-body);
    color: var(--rp-text-light);
    line-height: 1.6;
    background-color: var(--rp-bg-light);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--rp-text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    letter-spacing: 0;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.125rem;
    color: var(--rp-text-light);
}

.section-desc {
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.center-text { text-align: center; }
.center-btn { display: flex; justify-content: center; margin-top: 2rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.nowrap { white-space: nowrap; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Utilities */
.rp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.rp-section {
    padding: 100px 0;
}

section[id] {
    scroll-margin-top: 96px;
}

.bg-light {
    background-color: var(--rp-bg-light);
}

.bg-dark {
    background-color: var(--rp-dark-green);
    color: var(--rp-white);
}

.bg-dark h2, .bg-dark p, .bg-dark .subheading, .bg-dark h3, .bg-dark li {
    color: var(--rp-white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--rp-transition);
    cursor: pointer;
    border: none;
    touch-action: manipulation;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(185, 155, 107, 0.55);
    outline-offset: 3px;
}

.btn-primary {
    background-color: var(--rp-accent);
    color: var(--rp-dark-green);
    letter-spacing: 0;
    border-radius: 100px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--rp-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 126, 0.2);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--rp-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--rp-accent);
    color: var(--rp-dark-green);
    border-color: var(--rp-accent);
    transform: translateY(-3px);
}

.bg-light .btn-secondary,
.why-wongamat .btn-secondary,
.final-cta .btn-secondary {
    background-color: transparent;
    color: var(--rp-dark-green);
    border-color: rgba(16, 44, 39, 0.28);
}

.bg-light .btn-secondary:hover,
.why-wongamat .btn-secondary:hover,
.final-cta .btn-secondary:hover {
    background-color: var(--rp-dark-green);
    color: var(--rp-white);
    border-color: var(--rp-dark-green);
}

.bg-dark .btn-secondary, .rp-hero .btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--rp-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-dark .btn-secondary:hover, .rp-hero .btn-secondary:hover {
    background-color: var(--rp-accent);
    color: var(--rp-dark-green);
    border-color: var(--rp-accent);
}

.btn-outline {
    background-color: transparent;
    color: var(--rp-text-light);
    border: 1px solid var(--rp-border);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--rp-white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

/* Header */
.rp-header {
    position: absolute;
    top: 18px;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 100;
    border-bottom: 0;
    pointer-events: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(calc(100% - 48px), 1160px);
    height: 64px;
    margin: 0 auto;
    padding: 0 18px 0 22px;
    background: rgba(16, 44, 39, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 100px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    pointer-events: auto;
}

.logo {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rp-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    width: 132px;
    height: 46px;
    text-decoration: none;
    flex: 0 0 auto;
}

.brand-logo img,
.footer-logo img {
    display: block;
    width: 132px;
    height: auto;
}

.footer-logo {
    margin-bottom: 8px;
}

.desktop-nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0;
    margin: 0;
    padding: 9px 12px;
    border-radius: 100px;
    white-space: nowrap;
    transition: var(--rp-transition);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
}

.desktop-nav a:hover {
    color: var(--rp-white);
    background: rgba(255, 255, 255, 0.09);
}

.mobile-menu-toggle,
.mobile-menu {
    display: none;
}

.mobile-menu-toggle {
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--rp-white);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: var(--rp-transition);
}

.mobile-menu-toggle i,
.mobile-menu-toggle i::before,
.mobile-menu-toggle i::after {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: var(--rp-transition);
}

.mobile-menu-toggle i {
    position: relative;
}

.mobile-menu-toggle i::before,
.mobile-menu-toggle i::after {
    content: "";
    position: absolute;
    left: 0;
}

.mobile-menu-toggle i::before {
    top: -5px;
}

.mobile-menu-toggle i::after {
    top: 5px;
}

.mobile-menu-toggle[aria-expanded="true"] i {
    background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    background: rgba(16, 44, 39, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: var(--rp-white);
    background: rgba(255, 255, 255, 0.08);
}

.mobile-menu .btn {
    width: 100%;
    min-height: 46px;
    margin-top: 6px;
    padding: 13px 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--rp-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--rp-transition);
    backdrop-filter: blur(5px);
}

.icon-link svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.max-mark {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.icon-link:hover {
    background-color: var(--rp-accent);
    border-color: var(--rp-accent);
    color: var(--rp-dark-green);
}

/* Hero Section */
.rp-hero {
    padding: 0;
    min-height: clamp(760px, 76vh, 860px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/01_PROJECT_EXTERIOR/hero-render.webp') center 52%/cover no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background:
        linear-gradient(90deg, rgba(16, 44, 39, 0.88) 0%, rgba(16, 44, 39, 0.58) 42%, rgba(16, 44, 39, 0.08) 100%),
        linear-gradient(to bottom, rgba(16, 44, 39, 0.12) 0%, rgba(16, 44, 39, 0.56) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
    color: var(--rp-white);
    padding: clamp(132px, 11vh, 156px) 40px 56px;
    margin-left: max(40px, calc((100vw - 1200px) / 2));
}

.hero-title {
    color: var(--rp-white);
    font-size: clamp(2.75rem, 4.7vw, 4.15rem);
    letter-spacing: 0;
    margin-bottom: 20px;
    line-height: 0.98;
    max-width: 720px;
}

/* Glass Badges */
.glass-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--rp-white);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    letter-spacing: -0.02em;
}

.badge-top-right {
    top: 40px;
    right: 40px;
}

.badge-bottom-left {
    bottom: 40px;
    left: 40px;
}

.eyebrow {
    display: inline-block;
    padding: 8px 14px;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--rp-white);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(10px);
}

.subheading {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-weight: 400;
    max-width: 620px;
}

.hero-priority {
    display: inline-grid;
    gap: 4px;
    max-width: 600px;
    margin: 18px 0 16px;
    padding: 14px 16px;
    border: 1px solid rgba(231, 217, 177, 0.36);
    border-radius: 8px;
    background: rgba(16, 44, 39, 0.58);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-priority strong {
    color: var(--rp-white);
    font-size: clamp(1.05rem, 1.45vw, 1.28rem);
    line-height: 1.16;
}

.hero-priority span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.93rem;
    line-height: 1.35;
}

.hero-offer {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    margin: 0;
    max-width: 600px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.hero-bullets li {
    position: relative;
    padding-left: 28px;
    font-weight: 400;
    color: var(--rp-white);
}

.hero-bullets li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--rp-accent);
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.rp-hero .hero-cta-group {
    margin-top: 24px;
}

.disclaimer {
    font-size: 0.875rem;
    color: var(--rp-text-light);
    font-style: italic;
}

/* Quick Facts */
.facts-table-wrap {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--rp-radius);
    box-shadow: var(--rp-shadow);
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.rp-table {
    width: 100%;
    border-collapse: collapse;
}

.rp-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--rp-white);
}

.rp-table tr:last-child td {
    border-bottom: none;
}

.rp-table td:first-child {
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--rp-accent);
    width: 30%;
    background-color: rgba(0, 0, 0, 0.2);
}

/* Location */
.location-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: 52px;
    align-items: center;
}

.location-copy .section-desc {
    margin-bottom: 1.4rem;
}

.location-copy .section-desc:last-of-type {
    margin-bottom: 0;
}

.location-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.location-points span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--rp-white);
    color: var(--rp-text-dark);
    border: 1px solid var(--rp-border);
    font-weight: 600;
    font-size: 0.94rem;
    box-shadow: 0 10px 30px rgba(16, 44, 39, 0.08);
}

.location-btn {
    justify-content: flex-start;
    margin-top: 32px;
}

.location-map-panel {
    position: relative;
    padding: 12px;
    border: 1px solid rgba(185, 155, 107, 0.28);
    border-radius: var(--rp-radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 247, 241, 0.96));
    box-shadow: 0 28px 80px rgba(16, 44, 39, 0.13);
}

.location-map-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px 14px;
}

.location-map-head div {
    min-width: 0;
}

.location-map-head span {
    display: block;
    color: var(--rp-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-map-head strong {
    display: block;
    color: var(--rp-text-dark);
    font-size: 0.98rem;
    line-height: 1.2;
}

.location-map-head a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--rp-white);
    border: 1px solid var(--rp-border);
    color: var(--rp-text-dark);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--rp-transition);
}

.location-map-head a:hover {
    border-color: rgba(185, 155, 107, 0.5);
    color: #0b6b56;
}

.location-map {
    position: relative;
    width: 100%;
    min-height: 390px;
    border-radius: calc(var(--rp-radius) - 8px);
    overflow: hidden;
    border: 1px solid var(--rp-border);
    background: var(--rp-white);
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
}

.location-route-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    max-width: calc(100% - 32px);
    padding: 12px 14px;
    border-radius: 8px;
    background: rgba(16, 44, 39, 0.9);
    color: var(--rp-white);
    box-shadow: 0 14px 34px rgba(16, 44, 39, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.location-route-badge span {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.location-route-badge strong {
    display: block;
    color: var(--rp-white);
    font-size: 0.98rem;
    line-height: 1.2;
}

.location-map-note {
    margin: 12px 12px 4px;
    color: var(--rp-text-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.nearby-panel {
    margin-top: 34px;
    padding: 34px;
    border: 1px solid rgba(26, 60, 52, 0.1);
    border-radius: var(--rp-radius);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 20px 60px rgba(16, 44, 39, 0.06);
}

.nearby-heading {
    max-width: 980px;
    margin-bottom: 24px;
}

.nearby-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 22px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(185, 155, 107, 0.14);
    color: var(--rp-accent-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nearby-heading h3 {
    margin: 0;
    color: var(--rp-text-dark);
    font-size: clamp(2rem, 3.25vw, 3.35rem);
    line-height: 1.14;
}

.nearby-heading p {
    max-width: 790px;
    margin: 16px 0 0;
    color: var(--rp-text-light);
    font-size: 1.08rem;
    line-height: 1.55;
}

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

.nearby-item {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
    min-height: 124px;
    padding: 17px;
    border: 1px solid rgba(26, 60, 52, 0.09);
    border-radius: calc(var(--rp-radius) - 6px);
    background: var(--rp-white);
}

.nearby-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(185, 155, 107, 0.18);
    color: var(--rp-accent-dark);
    font-size: 0.72rem;
    font-weight: 800;
}

.nearby-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--rp-text-dark);
    font-size: 0.98rem;
    line-height: 1.25;
}

.nearby-item p {
    margin: 0;
    color: var(--rp-text-muted);
    font-size: 0.9rem;
    line-height: 1.44;
}

.nearby-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(26, 60, 52, 0.09);
}

.nearby-cta p {
    max-width: 650px;
    margin: 0;
    color: var(--rp-text-light);
    font-size: 0.98rem;
    line-height: 1.48;
}

.nearby-cta .btn {
    flex: 0 0 auto;
}

/* Master Plan */
.master-plan-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
    gap: 44px;
    align-items: center;
}

.master-plan-copy .section-desc {
    margin-bottom: 1.35rem;
}

.master-plan-copy .btn {
    margin-top: 18px;
}

.master-plan-image {
    position: relative;
    isolation: isolate;
    padding: 10px;
    background: var(--rp-white);
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius);
    box-shadow: var(--rp-shadow);
    overflow: hidden;
}

.master-plan-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: #f8f7f1;
    border-radius: calc(var(--rp-radius) - 6px);
}

.master-plan-image.is-pending-plan,
.fp-plan-image.is-pending-plan {
    cursor: default;
}

.is-pending-plan {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.is-pending-plan img {
    filter:
        blur(8px)
        saturate(0.72)
        opacity(0.64)
        drop-shadow(0 14px 24px rgba(16, 44, 39, 0.14));
    transform: scale(1.035);
}

.is-pending-plan::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(245, 241, 233, 0.16), rgba(245, 241, 233, 0.78)),
        radial-gradient(62% 48% at 50% 42%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.12));
    pointer-events: none;
}

.module-dark .is-pending-plan::after {
    background:
        linear-gradient(180deg, rgba(16, 44, 39, 0.08), rgba(16, 44, 39, 0.74)),
        radial-gradient(62% 48% at 50% 44%, rgba(255, 255, 255, 0.6), rgba(16, 44, 39, 0.12));
}

.pending-plan-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    gap: 8px;
    width: min(calc(100% - 44px), 410px);
    padding: 18px 20px;
    border: 1px solid rgba(185, 155, 107, 0.4);
    border-radius: var(--rp-radius);
    background: rgba(255, 255, 255, 0.86);
    color: var(--rp-text-dark);
    text-align: center;
    box-shadow: 0 20px 54px rgba(16, 44, 39, 0.18);
    backdrop-filter: blur(18px) saturate(135%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.pending-plan-badge[hidden] {
    display: none;
}

.pending-plan-badge strong {
    color: var(--rp-text-dark);
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 700;
    line-height: 1.12;
}

.pending-plan-badge span {
    color: var(--rp-text-light);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.38;
}

.module-dark .pending-plan-badge {
    background: rgba(16, 44, 39, 0.86);
    color: var(--rp-white);
    border-color: rgba(185, 155, 107, 0.45);
}

.module-dark .pending-plan-badge strong {
    color: var(--rp-white);
}

.module-dark .pending-plan-badge span {
    color: rgba(255, 255, 255, 0.72);
}

.nowrap {
    white-space: nowrap;
}

/* Why RP */
.why-rp-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1fr);
    gap: 58px;
    align-items: center;
}

.why-rp-copy {
    max-width: 680px;
}

.why-rp-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 24px;
    padding: 8px 13px;
    border: 1px solid rgba(185, 155, 107, 0.38);
    border-radius: 100px;
    color: rgba(231, 217, 177, 0.92);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.why-rp-copy h2 {
    margin-bottom: 24px;
    color: var(--rp-white);
    font-size: clamp(2.15rem, 3.15vw, 3.25rem);
    line-height: 1.12;
}

.why-rp-copy p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.72;
}

.priority-access-note {
    display: grid;
    gap: 5px;
    max-width: 580px;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(231, 217, 177, 0.24);
    border-left: 4px solid var(--rp-accent);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.055);
}

.priority-access-note strong {
    color: var(--rp-white);
    font-size: 1.08rem;
    line-height: 1.24;
}

.priority-access-note span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.96rem;
    line-height: 1.45;
}

.priority-access-note small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    line-height: 1.45;
}

.company-photo {
    position: relative;
    margin: 0;
    border-radius: var(--rp-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.company-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
}

.why-rp-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
}

.why-rp-step {
    min-height: 172px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--rp-radius);
    background: rgba(255, 255, 255, 0.045);
}

.why-rp-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(185, 155, 107, 0.18);
    color: var(--rp-accent);
    font-size: 0.74rem;
    font-weight: 700;
}

.why-rp-step strong {
    display: block;
    margin-bottom: 8px;
    color: var(--rp-white);
    font-size: 1.02rem;
    line-height: 1.28;
}

.why-rp-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.5;
}

.why-rp-action {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.why-rp-action p {
    max-width: 520px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.5;
}

.check-list {
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: var(--rp-accent);
    color: var(--rp-dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
}

/* Developer Trust */
.developer-section {
    background: var(--rp-bg-light);
    padding-top: 76px;
}

.developer-logos-band {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 58px;
    padding: 34px clamp(28px, 5vw, 70px) 32px;
    background: var(--rp-dark-green);
    border: 1px solid rgba(199, 174, 116, 0.42);
    border-radius: 6px;
    box-shadow: 0 26px 72px rgba(23, 42, 38, 0.18);
    overflow: hidden;
}

.developer-logos-band::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    pointer-events: none;
}

.developer-band-kicker {
    margin: 0;
    color: rgba(231, 217, 177, 0.9);
    font-size: 0.72rem;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    z-index: 1;
}

.developer-logo-row {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    justify-content: center;
    gap: 34px;
    position: relative;
    z-index: 1;
}

.developer-logo-card {
    min-width: 260px;
    min-height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.developer-logo-card img {
    display: block;
    max-width: 235px;
    max-height: 82px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.developer-logo-card-global img {
    max-width: 245px;
    max-height: 92px;
}

.developer-logo-divider {
    width: 1px;
    height: 90px;
    background: rgba(199, 174, 116, 0.58);
    display: block;
    position: relative;
    z-index: 1;
}

.developer-trust-strip {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.developer-trust-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(231, 217, 177, 0.24);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    line-height: 1.25;
    white-space: nowrap;
}

.developer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 44px;
    align-items: stretch;
}

.developer-copy {
    align-self: center;
}

.developer-copy h2 {
    margin-bottom: 22px;
}

.developer-copy p {
    max-width: 720px;
}

.developer-copy .btn {
    margin-top: 14px;
}

.developer-check-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #fbf7ef 100%);
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius);
    padding: 38px;
    box-shadow: var(--rp-shadow);
}

.developer-check-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--rp-accent), rgba(185, 155, 107, 0.22));
}

.developer-check-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 16px;
    padding: 6px 11px;
    border: 1px solid rgba(185, 155, 107, 0.28);
    border-radius: 100px;
    color: var(--rp-accent-hover);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.developer-check-card h3 {
    max-width: 520px;
    margin: 0 0 10px;
    font-size: clamp(1.55rem, 2vw, 2rem);
}

.developer-check-lead {
    max-width: 500px;
    margin: 0;
    color: var(--rp-text-light);
    font-size: 0.98rem;
    line-height: 1.55;
}

.developer-check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.developer-check-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border: 1px solid rgba(16, 44, 39, 0.08);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--rp-text-dark);
}

.check-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(185, 155, 107, 0.2);
    color: var(--rp-dark-green);
    font-size: 0.72rem;
    font-weight: 700;
}

.developer-check-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--rp-text-dark);
    font-size: 1rem;
    line-height: 1.25;
}

.developer-check-list small {
    display: block;
    color: var(--rp-text-light);
    font-size: 0.9rem;
    line-height: 1.45;
}

.dark-check-list li {
    color: var(--rp-text-dark);
}

/* Important Start */
.important-start {
    position: relative;
    background: var(--rp-dark-green);
    color: var(--rp-white);
    overflow: hidden;
}

.important-start::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(185, 155, 107, 0.12), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 32%);
    pointer-events: none;
}

.important-start .rp-container {
    position: relative;
    z-index: 1;
}

.important-start-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
    gap: 48px;
    align-items: end;
}

.important-start-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 22px;
    padding: 8px 13px;
    border: 1px solid rgba(185, 155, 107, 0.42);
    border-radius: 999px;
    color: rgba(231, 217, 177, 0.92);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.important-start-copy h2 {
    max-width: 850px;
    margin-bottom: 24px;
    color: var(--rp-white);
    font-size: clamp(2.25rem, 4vw, 4rem);
    line-height: 1.08;
}

.important-start-copy p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.08rem;
    line-height: 1.68;
}

.important-start-note {
    padding: 28px;
    border: 1px solid rgba(185, 155, 107, 0.28);
    border-radius: var(--rp-radius);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}

.important-start-note span {
    display: block;
    margin-bottom: 18px;
    color: rgba(231, 217, 177, 0.88);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.important-start-note strong {
    display: block;
    margin-bottom: 16px;
    color: var(--rp-white);
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.18;
}

.important-start-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.98rem;
    line-height: 1.55;
}

.checklist-box {
    margin-top: 42px;
    padding: 24px;
    border-radius: var(--rp-radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
}

.checklist-box h3 {
    color: var(--rp-white);
    margin-bottom: 24px;
    font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.grid-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.grid-list li {
    min-height: 178px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: calc(var(--rp-radius) - 6px);
    background: rgba(255, 255, 255, 0.05);
}

.grid-list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(185, 155, 107, 0.2);
    color: var(--rp-accent);
    font-size: 0.7rem;
    font-weight: 800;
}

.grid-list li strong {
    display: block;
    margin-bottom: 8px;
    color: var(--rp-white);
    font-size: 1rem;
    line-height: 1.24;
}

.grid-list li p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
    line-height: 1.44;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cards-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.rp-card {
    background: var(--rp-white);
    padding: 30px;
    border-radius: var(--rp-radius);
    box-shadow: var(--rp-shadow);
    transition: var(--rp-transition);
    border: 1px solid var(--rp-border);
}

.rp-card:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 155, 107, 0.34);
    box-shadow: 0 24px 60px rgba(16,44,39,0.16);
}

/* Alternatives */
.alternatives {
    position: relative;
    overflow: hidden;
}

.alternatives::before {
    content: '';
    position: absolute;
    top: 80px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 155, 107, 0.14), rgba(185, 155, 107, 0));
    pointer-events: none;
}

.alternatives-head {
    position: relative;
    max-width: 940px;
    margin-bottom: 42px;
}

.alternatives-head h2 {
    max-width: 840px;
    margin-bottom: 18px;
}

.alternatives-head p {
    max-width: 850px;
    margin-bottom: 18px;
    color: var(--rp-text-light);
}

.alternatives-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: stretch;
}

.love-it-position {
    padding: 34px;
    border-radius: var(--rp-radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        var(--rp-dark-green);
    color: var(--rp-white);
    box-shadow: 0 28px 70px rgba(16, 44, 39, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.love-it-visual {
    position: relative;
    margin: -18px -18px 26px;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.06);
}

.love-it-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(16, 44, 39, 0), rgba(16, 44, 39, 0.22));
    pointer-events: none;
}

.love-it-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.love-it-position > span {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid rgba(185, 155, 107, 0.5);
    color: #d6c397;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.love-it-position h3 {
    max-width: 540px;
    margin-bottom: 28px;
    color: var(--rp-white);
    font-size: clamp(1.55rem, 2.2vw, 2.05rem);
    line-height: 1.18;
}

.position-metrics {
    display: grid;
    gap: 14px;
}

.position-metrics div {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.position-metrics small {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.position-metrics strong {
    display: block;
    color: var(--rp-white);
    font-size: 1.08rem;
    line-height: 1.28;
}

.alternative-reference {
    padding: 28px;
    border-radius: var(--rp-radius);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--rp-border);
    box-shadow: var(--rp-shadow);
}

.alternative-reference h3 {
    margin-bottom: 18px;
    font-size: 1.55rem;
}

.alternative-list {
    display: grid;
    gap: 14px;
}

.alternative-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    padding: 20px;
    border-radius: 8px;
    background: var(--rp-white);
    border: 1px solid rgba(16, 44, 39, 0.08);
    box-shadow: 0 10px 30px rgba(16, 44, 39, 0.06);
}

.alternative-card img {
    width: 118px;
    height: 86px;
    display: block;
    border-radius: 7px;
    object-fit: cover;
    background: rgba(16, 44, 39, 0.08);
    grid-row: 1 / span 2;
}

.alternative-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--rp-text-dark);
    font-size: 1.04rem;
}

.alternative-card p {
    margin: 0;
    color: var(--rp-text-light);
    font-size: 0.98rem;
    line-height: 1.5;
}

.alternative-tags {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -6px;
    padding-left: 138px;
}

.alternative-tags span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(185, 155, 107, 0.12);
    color: #8b7049;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.alternative-tags .price-tag {
    background: rgba(16, 44, 39, 0.92);
    color: var(--rp-white);
}

.alternatives-note {
    position: relative;
    max-width: 850px;
    margin: 24px 0 0;
    padding-left: 18px;
    border-left: 3px solid var(--rp-accent);
    color: var(--rp-text-light);
    font-size: 0.98rem;
}

/* Terms Data Cards */
.data-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.data-card {
    background: var(--rp-white);
    padding: 24px;
    border-radius: var(--rp-radius);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--rp-border);
    box-shadow: var(--rp-shadow);
}

.data-card span {
    font-size: 0.9rem;
    color: var(--rp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.data-card strong {
    font-size: 1.5rem;
    color: var(--rp-text-dark);
    font-weight: 600;
    font-family: var(--font-heading);
}

.data-card.highlight {
    background: linear-gradient(135deg, rgba(200, 169, 126, 0.1) 0%, rgba(200, 169, 126, 0) 100%);
    border-color: rgba(200, 169, 126, 0.3);
}
.data-card.highlight strong, .data-card.highlight span {
    color: var(--rp-accent);
}

/* How We Work - Timeline */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.step {
    position: relative;
    padding-top: 60px;
}

.step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    width: calc(100% - 40px);
    height: 2px;
    background-color: var(--rp-border);
    z-index: 1;
}

.step:last-child::before {
    display: none;
}

.step-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background-color: var(--rp-dark-green);
    color: var(--rp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    z-index: 2;
}

/* Quiz Section */
.quiz-section {
    background-color: var(--rp-dark-green);
    color: var(--rp-white);
}

.quiz-section h2, .quiz-section p {
    color: var(--rp-white);
    text-align: center;
}

.quiz-subheading {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

.rp-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: var(--rp-radius);
    color: var(--rp-white);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.quiz-step {
    display: none;
    animation: fadeIn 0.4s ease forwards;
    text-align: right;
}

.quiz-step.active {
    display: block;
}

.quiz-step h3 {
    margin-bottom: 24px;
    font-size: 1.25rem;
    color: var(--rp-white);
    text-align: left;
}

.quiz-step > .btn + .btn {
    margin-left: 12px;
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.radio-group label {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 8px;
    transition: var(--rp-transition);
}

.radio-group label:hover {
    border-color: var(--rp-accent);
}

.radio-group label:has(input[type="radio"]:checked) {
    border-color: rgba(185, 155, 107, 0.9);
    background: rgba(185, 155, 107, 0.12);
}

.quiz-step.is-auto-advancing .radio-group label:has(input[type="radio"]:checked) {
    box-shadow: 0 0 0 1px rgba(185, 155, 107, 0.25), 0 14px 36px rgba(0, 0, 0, 0.18);
}

.radio-group input[type="radio"] {
    margin-right: 12px;
    accent-color: var(--rp-accent);
    width: 18px;
    height: 18px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.field-label {
    display: block;
    margin-bottom: 7px;
    color: var(--rp-text-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.quiz-section .field-label {
    color: rgba(255, 255, 255, 0.9);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--rp-white);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--rp-transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--rp-accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    margin-top: 10px;
    color: #d64545;
    font-size: 0.92rem;
    font-weight: 700;
}

.hp-field {
    display: none !important;
}

.consent-text {
    font-size: 0.75rem;
    color: var(--rp-text-light);
    margin-bottom: 20px;
    text-align: left;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-success {
    text-align: center;
    padding: 40px 0;
}

.quiz-success h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

/* FAQ section fixes for KI compliance */
.faq-wrapper a:hover {
    text-decoration: none;
}
.uk-accordion-title::before {
    /* Modify default UIkit icon color if needed */
    filter: invert(16%) sepia(16%) saturate(2311%) hue-rotate(113deg) brightness(98%) contrast(92%);
}

/* === NEW UI COMPONENTS (Visual Enhancements) === */

/* Specs Grid (Bento UI) */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
    gap: 20px;
    margin-top: 40px;
}
.spec-item {
    position: relative;
    display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; gap: 15px; padding: 24px;
    background: var(--rp-white); border-radius: var(--rp-radius);
    box-shadow: var(--rp-shadow); border: 1px solid var(--rp-border); transition: var(--rp-transition);
}
.spec-item:hover { transform: translateY(-5px); border-color: rgba(185, 155, 107, 0.34); box-shadow: 0 24px 60px rgba(16,44,39,0.16); }
.spec-icon { color: var(--rp-accent); display: flex; align-items: center; justify-content: center; }
.spec-text { display: flex; flex-direction: column; gap: 5px; }
.spec-label { font-size: 0.85rem; color: var(--rp-text-light); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px;}
.spec-value { font-size: 1.4rem; font-weight: 600; font-family: var(--font-heading); color: var(--rp-text-dark); letter-spacing: 0; line-height: 1.1; }

/* Bento Spans */
.spec-item:nth-child(3) {
    background: #fbfaf6;
    border-color: rgba(185, 155, 107, 0.34);
}

.spec-item:nth-child(3) .spec-value {
    color: var(--rp-accent);
}

/* Benefits List (Bento Alternating Row) */
.benefits-list { display: flex; flex-direction: column; gap: 60px; margin-top: 40px; }
.benefit-row { display: flex; gap: 60px; align-items: center; min-width: 0; }
.benefit-row.reverse { flex-direction: row-reverse; }
.ben-img { flex: 1; min-width: 0; border-radius: var(--rp-radius); overflow: hidden; box-shadow: var(--rp-shadow); border: 1px solid var(--rp-border); padding: 8px; background: var(--rp-white); }
.ben-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; border-radius: calc(var(--rp-radius) - 8px); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.ben-img:hover img { transform: scale(1.03); }
.ben-text { flex: 1; min-width: 0; }
.ben-text h3 { font-size: 2.5rem; color: var(--rp-text-dark); margin-bottom: 20px; font-weight: 700; letter-spacing: 0;}
.ben-text p { font-size: 1.125rem; color: var(--rp-text-light); line-height: 1.6; }

/* Floorplans UI (Bento) */
.format-table-wrap {
    overflow-x: auto;
    margin: 0 auto 32px;
    background: var(--rp-white);
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius);
    box-shadow: var(--rp-shadow);
}

.format-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.format-table th,
.format-table td {
    padding: 18px 22px;
    border-bottom: 1px solid var(--rp-border);
    text-align: left;
    vertical-align: top;
}

.format-table th {
    font-family: var(--font-heading);
    color: var(--rp-dark-green);
    background: var(--rp-bg-light);
    font-weight: 600;
}

.format-table td {
    color: var(--rp-text-dark);
}

.format-table tr:last-child td {
    border-bottom: none;
}

.fp-tabs-nav { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 40px; }
.fp-tab-btn {
    background: transparent; color: var(--rp-text-dark); border: 1px solid var(--rp-border);
    padding: 12px 30px; cursor: pointer; transition: var(--rp-transition); font-size: 1rem;
    border-radius: 100px; font-weight: 400; font-family: var(--font-body);
}
.fp-tab-btn.active, .fp-tab-btn:hover { background: var(--rp-dark-green); color: var(--rp-white); border-color: var(--rp-dark-green); }
.fp-tab-content { display: none; scroll-margin-top: 92px; }
.fp-tab-content.active { display: block; animation: fadeIn 0.5s; }

.fp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; background: var(--rp-white); padding: 30px; border-radius: var(--rp-radius); box-shadow: var(--rp-shadow); border: 1px solid var(--rp-border); }
.fp-left { position: relative; border-radius: calc(var(--rp-radius) - 6px); overflow: hidden; display: flex; flex-direction: column; min-height: 400px; min-width: 0; background: #f6f7f4; align-items: center; justify-content: center; padding: 20px;}
.fp-left img { max-width: 100%; max-height: 400px; object-fit: contain; opacity: 1;}
.fp-plan-image { margin: 0; }
.fp-plan-image .pending-plan-badge {
    width: min(calc(100% - 34px), 360px);
}
.fp-right { display: flex; flex-direction: column; justify-content: center; padding: 20px 0; }
.fp-right h3 { color: var(--rp-accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; font-weight: 400;}
.fp-right h4 { font-size: clamp(2.2rem, 4vw, 3rem); color: var(--rp-text-dark); margin-bottom: 20px; font-family: var(--font-heading); font-weight: 600; letter-spacing: 0;}
.fp-right ul { list-style: none; margin: 0 0 40px 0; display: flex; flex-direction: column; gap: 15px; color: var(--rp-text-dark); font-size: 1.1rem; }
.fp-right li { display: flex; align-items: flex-start; }
.fp-right li::before { content: '✓'; color: var(--rp-dark-green); margin-right: 15px; font-weight: bold; font-size: 0.8em; line-height: 1; background: var(--rp-accent); border-radius: 50%; padding: 0; display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; min-width: 28px; flex: 0 0 28px; margin-top: 2px;}


/* Final CTA */
.final-cta {
    background-color: var(--rp-bg-light);
    padding: 120px 0;
}

.final-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.contact-options {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px auto 0;
    color: var(--rp-text-light);
    font-size: 0.96rem;
}

.contact-options > span {
    margin-right: 2px;
}

.messenger-link {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--rp-text-dark);
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    transition: var(--rp-transition);
}

.messenger-link svg,
.messenger-link img {
    display: block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.messenger-link svg {
    fill: currentColor;
}

.contact-options .messenger-link[data-event="whatsapp_click"] img {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
    transform: none;
}

.whatsapp-icon {
    object-fit: contain;
}

.messenger-link span {
    display: block;
    line-height: 1;
}

.messenger-link:hover {
    color: #0b6b56;
    background: rgba(16, 44, 39, 0.05);
}

.max-messenger-link strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    background: var(--rp-dark-green);
    color: var(--rp-white);
    font-size: 0.54rem;
    line-height: 1;
}

.max-messenger-link:hover strong {
    background: #0b6b56;
}

/* Lead Modal */
.lead-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lead-modal.is-open {
    display: flex;
}

.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 21, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lead-modal-panel {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: var(--rp-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    padding: 30px;
}

.lead-modal-panel h2 {
    font-size: clamp(1.55rem, 3.1vw, 2.05rem);
    line-height: 1.16;
    margin-right: 38px;
    margin-bottom: 10px;
}

.lead-modal-panel > p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 22px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--rp-border);
    border-radius: 50%;
    background: var(--rp-white);
    color: var(--rp-text-dark);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.lead-modal .form-group input {
    background: var(--rp-white);
    border: 1px solid var(--rp-border);
    color: var(--rp-text-dark);
    min-height: 54px;
    padding: 14px 16px;
    font-size: 0.98rem;
}

.lead-modal .form-group input:focus {
    border-color: var(--rp-accent);
    box-shadow: 0 0 0 3px rgba(185, 155, 107, 0.16);
}

.modal-submit {
    width: 100%;
    min-height: 56px;
    margin-top: 2px;
}

.modal-direct-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 9px;
}

.modal-fast-note {
    margin: 15px 0 0;
    color: var(--rp-text-light);
    font-size: 0.84rem;
    text-align: center;
}

.modal-direct-links a {
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid var(--rp-border);
    border-radius: 100px;
    color: var(--rp-text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rp-white);
}

.modal-direct-links a:hover {
    border-color: rgba(185, 155, 107, 0.5);
    color: var(--rp-dark-green);
}

.modal-direct-links svg,
.modal-direct-links img {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.modal-direct-links svg {
    fill: currentColor;
}

.modal-consent {
    max-width: 390px;
    margin: 15px auto 0;
    color: var(--rp-text-light);
    font-size: 0.66rem;
    line-height: 1.45;
    text-align: center;
}

.modal-success {
    margin-top: 18px;
    padding: 0;
    color: var(--rp-text-dark);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.modal-success[hidden] {
    display: none;
}

.modal-success p {
    max-width: 360px;
    margin: 0;
    color: var(--rp-text-dark);
    font-size: 1.12rem;
    line-height: 1.45;
    font-weight: 600;
}

.modal-ok {
    min-width: 140px;
    min-height: 48px;
}

.lead-modal.is-success .lead-modal-panel > h2,
.lead-modal.is-success .lead-modal-panel > p,
.lead-modal.is-success .modal-close,
.lead-modal.is-success .form-group,
.lead-modal.is-success .modal-form-error,
.lead-modal.is-success .modal-submit,
.lead-modal.is-success .modal-fast-note,
.lead-modal.is-success .modal-direct-links,
.lead-modal.is-success .modal-consent {
    display: none;
}

.lead-modal.is-success .lead-modal-panel {
    padding-top: 58px;
    padding-bottom: 44px;
}

body.modal-open {
    overflow: hidden;
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
    outline: 3px solid rgba(185, 155, 107, 0.45);
    outline-offset: 2px;
}

/* SEO Context */
.seo-context {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(245, 241, 233, 0.28)),
        #fffaf0;
    border-top: 1px solid rgba(16, 44, 39, 0.08);
    border-bottom: 1px solid rgba(16, 44, 39, 0.08);
}

.seo-context::before {
    content: '';
    position: absolute;
    left: -180px;
    bottom: -210px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(185, 155, 107, 0.14), rgba(185, 155, 107, 0));
    pointer-events: none;
}

.seo-context-header {
    position: relative;
    max-width: 980px;
    margin-bottom: 32px;
}

.seo-context-header h2 {
    max-width: 850px;
    margin-bottom: 0;
}

.seo-context-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
    gap: 40px;
    align-items: start;
}

.dark-eyebrow {
    background-color: rgba(16, 44, 39, 0.08);
    border-color: rgba(16, 44, 39, 0.12);
    color: var(--rp-text-dark);
    backdrop-filter: none;
}

.context-summary-card {
    padding: 24px;
    border: 1px solid rgba(16, 44, 39, 0.1);
    border-radius: var(--rp-radius);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 48px rgba(16, 44, 39, 0.08);
}

.context-summary-price {
    padding-bottom: 18px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(16, 44, 39, 0.09);
}

.context-summary-price span,
.context-facts span {
    display: block;
    margin-bottom: 4px;
    color: var(--rp-text-muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.context-summary-price strong {
    display: block;
    color: var(--rp-text-dark);
    font-size: 1.25rem;
    line-height: 1.2;
}

.context-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.context-facts div {
    padding: 16px 0;
    border-bottom: 1px solid rgba(16, 44, 39, 0.08);
    background: transparent;
}

.context-facts div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.context-facts strong {
    display: block;
    color: var(--rp-text-dark);
    font-size: 1.05rem;
    line-height: 1.25;
}

.seo-copy p {
    color: var(--rp-text-dark);
    font-size: 1.08rem;
    line-height: 1.75;
}

.seo-copy p:last-child {
    margin-bottom: 0;
}

.context-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 30px 0 0;
    padding: 8px;
    border: 1px solid rgba(16, 44, 39, 0.09);
    border-radius: var(--rp-radius);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 16px 44px rgba(16, 44, 39, 0.06);
}

.context-flow div {
    position: relative;
    min-height: auto;
    padding: 18px 20px;
    border-right: 1px solid rgba(16, 44, 39, 0.08);
    background: transparent;
    box-shadow: none;
}

.context-flow div:last-child {
    border-right: 0;
}

.context-flow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: rgba(185, 155, 107, 0.16);
    color: #8b7049;
    font-size: 0.72rem;
    font-weight: 900;
}

.context-flow strong {
    display: block;
    margin-bottom: 7px;
    color: var(--rp-text-dark);
    font-size: 1.08rem;
    line-height: 1.2;
}

.context-flow p {
    margin: 0;
    color: var(--rp-text-light);
    font-size: 0.9rem;
    line-height: 1.4;
}

.context-bottom {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 28px;
    align-items: start;
    margin-top: 24px;
}

.context-check-panel {
    padding: 24px;
    border: 1px solid rgba(16, 44, 39, 0.09);
    border-radius: var(--rp-radius);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 16px 44px rgba(16, 44, 39, 0.06);
}

.context-check-panel h3 {
    max-width: 620px;
    margin-bottom: 18px;
    color: var(--rp-text-dark);
    font-size: 1.3rem;
    line-height: 1.22;
}

.context-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.context-checks span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(185, 155, 107, 0.12);
    border: 1px solid rgba(185, 155, 107, 0.2);
    color: var(--rp-text-dark);
    font-size: 0.9rem;
    line-height: 1.2;
}

.context-note {
    margin: 0;
    padding-left: 18px;
    border-left: 3px solid var(--rp-accent);
    color: var(--rp-text-dark);
    font-size: 1.02rem;
    line-height: 1.68;
}

/* Footer */
.rp-footer {
    background-color: #111;
    color: rgba(255,255,255,0.6);
    padding: 60px 0;
}

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

.footer-col {
    flex: 1;
}

.logo-light {
    color: #fff;
    margin-bottom: 8px;
}

.footer-note {
    font-size: 0.875rem;
}

.disclaimer-small {
    font-size: 0.75rem;
    text-align: right;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .header-inner {
        height: 60px;
        padding: 0 14px 0 18px;
    }

    .brand-logo {
        width: 118px;
        height: 42px;
    }

    .brand-logo img {
        width: 118px;
    }

    .desktop-nav a {
        padding: 8px 9px;
        font-size: 0.8rem;
    }

    .why-rp-intro {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .why-rp-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .important-start-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

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

    .alternatives-layout {
        grid-template-columns: 1fr;
    }

    .love-it-visual {
        max-width: 620px;
    }

    .cards-grid, .cards-grid.cols-2, .data-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .step::before {
        display: none;
    }

    .specs-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-row, .benefit-row.reverse { flex-direction: column; gap: 30px; }
    .benefit-row,
    .ben-img,
    .ben-text {
        width: 100%;
    }
    .fp-layout { grid-template-columns: 1fr; padding: 20px; }
    .location-layout { grid-template-columns: 1fr; gap: 32px; }
    .location-map, .location-map iframe { min-height: 360px; }
    .nearby-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .master-plan-layout { grid-template-columns: 1fr; gap: 32px; }
    .seo-context-inner { grid-template-columns: 1fr; gap: 22px; }
    .context-summary-card { max-width: 680px; }
    .context-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .context-flow div { border-right: 0; border-bottom: 1px solid rgba(16, 44, 39, 0.08); }
    .context-flow div:nth-last-child(-n + 2) { border-bottom: 0; }
    .context-bottom { grid-template-columns: 1fr; }
    .developer-layout { grid-template-columns: 1fr; gap: 28px; }
    .developer-logos-band { gap: 24px; padding: 30px 28px; }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .rp-header {
        top: 10px;
        overflow: visible;
    }

    .header-inner {
        position: relative;
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        margin: 0 auto;
        height: 56px;
        padding: 0 10px 0 14px;
        gap: 10px;
        justify-content: space-between;
    }

    .logo {
        font-size: 0.9rem;
        letter-spacing: 0.04em;
        max-width: 145px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-logo {
        width: 118px;
        height: 42px;
    }

    .brand-logo img {
        width: 118px;
    }

    .header-actions {
        display: none;
    }

    .icon-link {
        width: 34px;
        height: 34px;
        font-size: 0.75rem;
    }

    .icon-link svg {
        width: 18px;
        height: 18px;
    }

    .max-mark {
        font-size: 0.58rem;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        flex: 0 0 auto;
    }

    .mobile-menu {
        display: flex;
    }

    h1 {
        font-size: 2.25rem;
    }

    .hero-bullets {
        grid-template-columns: 1fr;
    }

    .cards-grid, .cards-grid.cols-2, .data-cards-grid, .steps-timeline, .radio-group {
        grid-template-columns: 1fr;
    }

    .quiz-step {
        text-align: left;
    }

    .quiz-step > .btn {
        width: 100%;
    }

    .quiz-step > .btn + .btn {
        margin-left: 0;
        margin-top: 10px;
    }

    .rp-form.is-auto-advance-ready .quiz-step:not(.final-step) > .next-step {
        display: none;
    }

    .rp-form.is-auto-advance-ready .quiz-step:not(.final-step) > .prev-step {
        width: auto;
        min-height: auto;
        margin: 6px auto 0;
        padding: 8px 12px;
        border: 0;
        background: transparent;
        color: rgba(255, 255, 255, 0.58);
        box-shadow: none;
    }

    .rp-form.is-auto-advance-ready .quiz-step:not(.final-step) > .prev-step:hover {
        color: var(--rp-white);
        background: transparent;
    }

    .radio-group {
        gap: 12px;
        margin-bottom: 14px;
    }

    .radio-group label {
        min-height: 62px;
        padding: 14px 16px;
    }

    .alternatives-head p {
        font-size: 1rem;
    }

    .love-it-position,
    .alternative-reference {
        padding: 24px;
    }

    .love-it-visual {
        margin: -10px -10px 22px;
    }

    .alternative-card {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .alternative-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .alternative-tags {
        grid-column: auto;
        padding-left: 0;
    }

    .alternative-tags span {
        width: fit-content;
    }

    .rp-table td {
        display: block;
        width: 100%;
    }

    .rp-table td:first-child {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .rp-table td:last-child {
        padding-top: 5px;
        padding-bottom: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .why-rp-copy h2 {
        font-size: 2.3rem;
    }

    .why-rp-copy p {
        font-size: 1rem;
    }

    .priority-access-note {
        margin-top: 20px;
        padding: 16px;
    }

    .priority-access-note strong {
        font-size: 1rem;
    }

    .company-photo img {
        aspect-ratio: 4 / 3;
    }

    .why-rp-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-rp-step {
        min-height: auto;
    }

    .why-rp-action {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        text-align: center;
    }

    .why-rp-action p {
        max-width: none;
        font-size: 0.92rem;
    }

    .disclaimer-small {
        text-align: center;
    }

    .rp-hero {
        min-height: auto;
        padding-top: 0;
    }

    .hero-image-wrapper {
        position: relative;
        min-height: clamp(520px, 70vh, 600px);
        width: 100%;
        align-items: flex-start;
        overflow: hidden;
        background-position: 58% center;
    }

    .hero-image-wrapper::before {
        background:
            linear-gradient(90deg, rgba(16, 44, 39, 0.9) 0%, rgba(16, 44, 39, 0.72) 58%, rgba(16, 44, 39, 0.38) 100%),
            linear-gradient(to bottom, rgba(16, 44, 39, 0.16) 0%, rgba(16, 44, 39, 0.72) 100%);
    }

    .hero-content {
        width: 100%;
        max-width: 390px;
        min-width: 0;
        margin-left: 0;
        padding: 96px 22px 40px;
        overflow: hidden;
    }

    .hero-title {
        font-size: 2.18rem;
        line-height: 1.04;
        max-width: 100%;
        overflow-wrap: normal;
    }

    .eyebrow {
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
        padding: 7px 11px;
        font-size: 0.72rem;
        margin-bottom: 1rem;
    }

    .subheading {
        font-size: 0.98rem;
        line-height: 1.5;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-priority {
        width: 100%;
        max-width: 100%;
        margin: 15px 0 14px;
        padding: 12px 13px;
    }

    .hero-priority strong {
        font-size: 1rem;
    }

    .hero-priority span {
        font-size: 0.86rem;
    }

    .hero-offer {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .hero-cta-group {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        flex-direction: column;
        gap: 12px;
        margin-top: 22px;
    }

    .hero-cta-group .btn {
        width: 100%;
    }

    .final-action .btn {
        width: 100%;
    }

    .contact-options {
        gap: 8px 10px;
        margin-top: 18px;
        font-size: 0.9rem;
    }

    .contact-options > span {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .messenger-link {
        min-height: 32px;
        padding: 5px 8px;
    }

    .location-layout {
        gap: 26px;
    }

    .location-points {
        gap: 8px;
        margin-top: 22px;
    }

    .location-points span {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 0.86rem;
    }

    .location-btn {
        margin-top: 24px;
    }

    .location-btn .btn {
        width: 100%;
    }

    .location-map-panel {
        padding: 9px;
    }

    .location-map-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 8px 8px 12px;
    }

    .location-map-head strong {
        text-align: left;
    }

    .location-map-head a {
        width: 100%;
        justify-content: center;
    }

    .location-map,
    .location-map iframe {
        min-height: 320px;
    }

    .location-route-badge {
        left: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
        padding: 10px 12px;
    }

    .location-route-badge strong {
        font-size: 0.88rem;
    }

    .location-map-note {
        margin: 10px 8px 3px;
        font-size: 0.78rem;
    }

    .seo-context-header h2 {
        font-size: 2.2rem;
    }

    .context-summary-card {
        padding: 20px;
    }

    .context-facts div {
        padding: 14px 0;
    }

    .context-flow {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 24px 0 0;
    }

    .context-flow div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(16, 44, 39, 0.08);
    }

    .context-flow div:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(16, 44, 39, 0.08);
    }

    .context-flow div:last-child {
        border-bottom: 0;
    }

    .context-flow span {
        margin-bottom: 14px;
    }

    .context-check-panel {
        padding: 22px;
    }

    .context-check-panel h3 {
        font-size: 1.22rem;
    }

    .context-note {
        padding-left: 14px;
        font-size: 0.96rem;
    }

    .nearby-panel {
        margin-top: 24px;
        padding: 18px;
    }

    .nearby-heading {
        margin-bottom: 18px;
    }

    .nearby-heading h3 {
        font-size: clamp(1.65rem, 8vw, 2.35rem);
    }

    .nearby-heading p {
        font-size: 0.98rem;
    }

    .nearby-grid {
        grid-template-columns: 1fr;
    }

    .nearby-item {
        min-height: auto;
        padding: 16px;
    }

    .nearby-cta {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
        margin-top: 18px;
        padding-top: 18px;
    }

    .nearby-cta .btn {
        width: 100%;
    }

    .developer-section {
        padding-top: 60px;
    }

    .developer-logos-band {
        gap: 18px;
        margin-bottom: 36px;
        padding: 30px 20px 28px;
    }

    .developer-band-kicker {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
    }

    .developer-logo-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .developer-logo-card {
        width: 100%;
        min-width: 0;
        min-height: 76px;
    }

    .developer-logo-card img {
        max-width: min(230px, 82vw);
        max-height: 70px;
    }

    .developer-logo-card-global img {
        max-height: 82px;
    }

    .developer-logo-divider {
        width: min(220px, 62vw);
        height: 1px;
        margin: 2px auto 4px;
    }

    .developer-trust-strip {
        gap: 8px;
    }

    .developer-trust-strip span {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
        font-size: 0.8rem;
    }

    .developer-copy .btn {
        width: 100%;
    }

    .developer-check-card {
        padding: 24px;
    }

    .master-plan-image img {
        aspect-ratio: 4 / 3;
    }

    .lead-modal {
        align-items: flex-end;
        padding: 12px;
    }

    .lead-modal-panel {
        width: 100%;
        max-height: calc(100vh - 24px);
        padding: 24px 18px 18px;
        border-radius: 14px 14px 0 0;
    }

    .lead-modal-panel h2 {
        margin-right: 42px;
        font-size: 1.62rem;
        line-height: 1.18;
    }

    .lead-modal-panel > p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .modal-consent {
        max-width: 300px;
        font-size: 0.62rem;
    }

    .rp-section {
        padding: 60px 0;
    }

    .important-start-copy h2 {
        font-size: 2.35rem;
    }

    .important-start-note,
    .checklist-box {
        padding: 20px;
    }

    .grid-list {
        grid-template-columns: 1fr;
    }

    .specs-grid { grid-template-columns: 1fr; }
    .fp-tabs-nav {
        position: sticky;
        top: 0;
        z-index: 30;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
        margin: 0 -4px 22px;
        padding: 10px 4px 12px;
        overflow: visible;
        background: rgba(245, 241, 233, 0.94);
        border-bottom: 1px solid rgba(16, 44, 39, 0.08);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .fp-tab-btn {
        width: 100%;
        min-width: 0;
        padding: 11px 8px;
        white-space: normal;
        font-size: 0.82rem;
        line-height: 1.15;
    }

    .fp-tab-content {
        scroll-margin-top: 96px;
    }

    .fp-layout {
        gap: 20px;
        padding: 16px;
    }

    .fp-left {
        min-height: auto;
        padding: 14px;
    }

    .fp-left img {
        max-height: 290px;
    }

    .fp-right {
        padding: 4px 0 0;
    }

    .fp-right h3 {
        margin-bottom: 8px;
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }

    .fp-right h4 {
        font-size: clamp(1.88rem, 8.2vw, 2.08rem);
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .fp-right ul {
        gap: 14px;
        margin-bottom: 26px;
        font-size: 1rem;
        line-height: 1.4;
    }

    .fp-right li {
        align-items: flex-start;
        gap: 12px;
    }

    .fp-right li::before {
        width: 26px;
        height: 26px;
        min-width: 26px;
        flex-basis: 26px;
        margin-right: 0;
        margin-top: 1px;
        font-size: 0.78rem;
    }

    .fp-right .btn {
        min-height: 54px;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 0.95rem;
    }

    /* Mobile Sticky CTA */
    .d-mobile-only {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--rp-white);
        padding: 15px;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        z-index: 90;
        gap: 15px;
        align-items: center;
    }

    .d-mobile-only.is-visible {
        display: flex;
    }

    .d-mobile-only .btn {
        flex: 1;
        margin: 0;
        padding: 14px 20px;
    }

    .icon-btn {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--rp-white);
        text-decoration: none;
    }

    .icon-btn svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .wa-icon {
        background-color: #25D366;
    }

    body {
        padding-bottom: 80px; /* Space for sticky CTA */
    }
}
