:root {
    --pr-border: #dde4d5;
    --pr-text: #1f2a37;
    --pr-muted: #5e6877;
    --pr-shadow: 0 14px 34px rgba(17, 25, 40, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.re-properties {
    margin: 0;
    font-family: 'Source Sans 3', sans-serif;
    color: var(--pr-text);
    background:
        radial-gradient(circle at 0 0, rgba(11, 122, 117, 0.12), transparent 40%),
        radial-gradient(circle at 100% 0, rgba(240, 127, 58, 0.13), transparent 36%),
        var(--re-bg);
}

.pr-container {
    width: min(1240px, 94vw);
    margin: 0 auto;
}

.pr-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 246, 241, 0.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(15, 29, 47, 0.08);
}

.pr-nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pr-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--re-dark);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
}

.pr-brand img {
    max-height: 34px;
    width: auto;
}

.pr-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pr-menu a {
    color: #344254;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
}

.pr-menu a.is-active,
.pr-menu a:hover {
    color: var(--re-primary);
}

.pr-cta {
    border-radius: 999px;
    padding: 0.56rem 1rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    color: #fff;
    background: linear-gradient(120deg, var(--re-secondary), var(--re-secondary-deep));
}

.pr-main {
    padding-bottom: 2rem;
}

.pr-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: var(--re-primary);
}

.pr-hero h1 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.8vw, 2.9rem);
    line-height: 1.08;
}

.pr-copy {
    margin: 0.7rem 0 0;
    color: #3f4c5d;
    max-width: 70ch;
}

.pr-kpis {
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pr-kpis > div {
    border: 1px solid rgba(11, 122, 117, 0.2);
    border-radius: 12px;
    background: rgba(11, 122, 117, 0.08);
    padding: 0.45rem 0.72rem;
    min-width: 156px;
}

.pr-kpis strong {
    display: block;
    font-size: 1.15rem;
    color: var(--re-primary-deep);
}

.pr-kpis span {
    font-size: 0.79rem;
    color: #446278;
    font-weight: 700;
}

.pr-launches {
    padding: 0.12rem 0 0.68rem;
}

.pr-fluid {
    width: 100%;
}

.pr-intro-slider {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: clamp(250px, 33vw, 360px);
    border: 1px solid #c8dccc;
    background:
        linear-gradient(145deg, rgba(11, 122, 117, 0.92), rgba(8, 95, 90, 0.94)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    box-shadow: var(--pr-shadow);
}

.pr-launches.slider-layout-fullscreen_hero .pr-intro-slider {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    min-height: clamp(430px, 72vh, 840px);
}

.pr-intro-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(16px);
    transition: opacity 0.42s ease, transform 0.42s ease, visibility 0.42s ease;
    padding: clamp(24px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #f4fffd;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pr-intro-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.pr-intro-tag {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.pr-intro-slide h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 3.6vw, 3rem);
    max-width: 14ch;
    margin: 0.6rem 0 0.4rem;
    line-height: 1.12;
}

.pr-intro-copy {
    max-width: 60ch;
    font-size: 1.02rem;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.pr-intro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.pr-intro-meta span {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(10, 19, 32, 0.25);
    padding: 0.3rem 0.72rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.pr-intro-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pr-btn-light,
.pr-btn-outline {
    border-radius: 12px;
    padding: 0.66rem 1.04rem;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pr-btn-light {
    background: #fff;
    color: #0d514d;
}

.pr-btn-outline {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.pr-intro-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(8, 20, 35, 0.3);
    color: #fff;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.pr-intro-control.prev {
    left: 14px;
}

.pr-intro-control.next {
    right: 14px;
}

.pr-intro-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 3;
}

.pr-intro-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.38);
}

.pr-intro-dot.is-active {
    width: 28px;
    background: #fff;
}

.pr-toolbar-wrap {
    position: sticky;
    top: 72px;
    z-index: 920;
    padding: 0.15rem 0 0.45rem;
    background: linear-gradient(to bottom, rgba(247, 246, 241, 0.95), rgba(247, 246, 241, 0.82));
    backdrop-filter: blur(4px);
}

.pr-toolbar {
    border: 1px solid #d4dfce;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--pr-shadow);
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.pr-toolbar label {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #334155;
}

.pr-toolbar input,
.pr-toolbar select {
    min-height: 35px;
    border: 1px solid #d5dece;
    border-radius: 9px;
    background: #fff;
    padding: 0.28rem 0.5rem;
    font-size: 0.84rem;
    color: #273447;
}

.pr-toolbar input:focus,
.pr-toolbar select:focus {
    outline: 2px solid rgba(11, 122, 117, 0.24);
    border-color: rgba(11, 122, 117, 0.55);
}

.pr-check {
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.92rem;
}

.pr-check input {
    min-height: 0;
    margin-right: 6px;
}

.pr-check span {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
}

.pr-toolbar-actions {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    justify-content: flex-start;
}

.pr-btn-primary,
.pr-btn-ghost,
.pr-btn-wa {
    border-radius: 10px;
    padding: 0.56rem 0.88rem;
    text-decoration: none;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.88rem;
}

.pr-btn-primary {
    color: #fff;
    background: linear-gradient(120deg, var(--re-primary), var(--re-primary-deep));
}

.pr-btn-ghost {
    color: #223147;
    background: #edf2eb;
    border: 1px solid #d2dbcf;
}

.pr-btn-wa {
    color: #fff;
    background: linear-gradient(120deg, #23b26f, #0f985a);
}

.pr-results {
    padding: 0.1rem 0 0.95rem;
}

.pr-sortbar {
    margin-bottom: 0.72rem;
    border: 1px solid #d8e0d7;
    background: #fff;
    border-radius: 14px;
    padding: 0.65rem 0.85rem;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.pr-sort-copy h2 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
}

.pr-sort-copy p {
    margin: 0.18rem 0 0;
    color: var(--pr-muted);
}

.pr-sort-form label {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #334155;
}

.pr-sort-form select {
    min-height: 40px;
    border: 1px solid #d5dece;
    border-radius: 10px;
    background: #fff;
    padding: 0.38rem 0.6rem;
    font-size: 0.92rem;
    color: #273447;
}

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

.pr-card {
    border: 1px solid var(--pr-border);
    border-radius: 16px;
    overflow: hidden;
    background: var(--re-surface);
    box-shadow: var(--pr-shadow);
}

.pr-card-media {
    position: relative;
    min-height: 148px;
    background:
        linear-gradient(130deg, rgba(15, 29, 47, 0.86), rgba(11, 122, 117, 0.82)),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 10px, transparent 10px, transparent 20px);
}

.pr-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
}

.pr-pill-new {
    left: auto;
    right: 10px;
    color: #6d3f00;
    background: #ffe6b8;
    border-color: transparent;
}

.pr-card-content {
    padding: 0.72rem 0.82rem 0.82rem;
}

.pr-card-content h3 {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    line-height: 1.2;
}

.pr-location {
    margin: 0.25rem 0 0;
    color: var(--pr-muted);
    font-size: 0.84rem;
}

.pr-price {
    margin: 0.4rem 0 0.3rem;
    color: var(--re-primary-deep);
    font-weight: 800;
    font-size: 1.08rem;
}

.pr-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.pr-meta span {
    border: 1px dashed #d3dccd;
    border-radius: 8px;
    padding: 0.23rem 0.38rem;
    font-size: 0.74rem;
    color: #3f4d60;
    font-weight: 600;
}

.pr-actions {
    margin-top: 0.48rem;
    display: flex;
    gap: 8px;
}

.pr-actions .pr-btn-ghost,
.pr-actions .pr-btn-wa {
    flex: 1 1 auto;
}

.pr-empty-state {
    border: 1px solid #d8e4d8;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    padding: 2rem 1rem;
}

.pr-empty-state i {
    font-size: 1.7rem;
    color: var(--re-secondary);
}

.pr-empty-state h3 {
    margin: 0.75rem 0 0.3rem;
    font-family: 'Outfit', sans-serif;
}

.pr-empty-state p {
    margin: 0 0 0.9rem;
    color: var(--pr-muted);
}

.pr-pagination {
    margin-top: 1rem;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.pr-page-link {
    min-width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid #d4dfce;
    background: #fff;
    color: #2a3a4f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 0.7rem;
}

.pr-page-link:hover {
    border-color: var(--re-primary);
}

.pr-page-link.is-active {
    color: #fff;
    background: linear-gradient(120deg, var(--re-primary), var(--re-primary-deep));
    border-color: transparent;
}

.pr-page-link.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.pr-calculators {
    padding: 0.15rem 0 0.95rem;
}

.pr-calc-shell {
    border: 1px solid #d9e3d6;
    border-radius: 22px;
    background:
        radial-gradient(circle at 8% 4%, rgba(11, 122, 117, 0.08), transparent 32%),
        radial-gradient(circle at 94% 6%, rgba(240, 127, 58, 0.1), transparent 24%),
        #fff;
    box-shadow: var(--pr-shadow);
    padding: clamp(0.85rem, 2.2vw, 1.2rem);
}

.pr-calc-head h2 {
    margin: 0.1rem 0 0;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    color: #122133;
}

.pr-calc-head p {
    margin: 0.45rem 0 0;
    color: #4f5f74;
    max-width: 76ch;
}

.pr-calc-tabs {
    margin-top: 0.8rem;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pr-calc-tabs button {
    border: 1px solid #d4dfce;
    background: #f2f6f1;
    color: #2a3b50;
    border-radius: 999px;
    padding: 0.44rem 0.86rem;
    font-weight: 700;
    font-size: 0.86rem;
}

.pr-calc-tabs button.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(120deg, var(--re-primary), var(--re-primary-deep));
}

.pr-calc-panels {
    margin-top: 0.78rem;
}

.pr-calc-panel {
    display: none;
    border: 1px solid #dbe5d8;
    border-radius: 14px;
    padding: 0.72rem;
    background: #fbfdfb;
}

.pr-calc-panel.is-active {
    display: block;
}

.pr-calc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.pr-calc-grid label {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #334155;
    font-size: 0.76rem;
    font-weight: 700;
}

.pr-calc-grid input,
.pr-calc-grid select {
    min-height: 37px;
    border: 1px solid #d2decb;
    border-radius: 10px;
    padding: 0.34rem 0.55rem;
    background: #fff;
    color: #273447;
    font-size: 0.87rem;
}

.pr-calc-actions {
    margin-top: 0.58rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pr-calc-actions .pr-btn-primary {
    padding-inline: 1.08rem;
}

.pr-calc-note {
    margin: 0;
    color: #5c6c80;
    font-size: 0.81rem;
    font-weight: 600;
}

.pr-calc-output {
    margin-top: 0.6rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.pr-calc-output > div {
    border: 1px dashed #cfdbca;
    border-radius: 11px;
    background: #fff;
    padding: 0.45rem 0.56rem;
}

.pr-calc-output span {
    display: block;
    color: #607084;
    font-size: 0.74rem;
    font-weight: 700;
}

.pr-calc-output strong {
    display: block;
    margin-top: 2px;
    color: #13344f;
    font-size: 0.96rem;
    font-family: 'Outfit', sans-serif;
}

.pr-lead-cta {
    padding: 0.65rem 0 1rem;
}

.pr-lead-shell {
    border: 1px solid rgba(22, 52, 87, 0.2);
    border-radius: 24px;
    padding: clamp(1rem, 2.8vw, 1.6rem);
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.16), transparent 44%),
        linear-gradient(132deg, #12314d, #0b7a75);
    color: #e9f6ff;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 14px;
    box-shadow: 0 18px 36px rgba(14, 35, 56, 0.2);
}

.pr-lead-tag {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a9ffd9;
    font-size: 0.75rem;
    font-weight: 800;
}

.pr-lead-copy h2 {
    margin: 0.35rem 0 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.35rem);
}

.pr-lead-copy p {
    margin: 0;
    color: rgba(233, 244, 255, 0.9);
}

.pr-lead-benefits {
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pr-lead-benefits span {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    padding: 0.25rem 0.68rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.pr-lead-form {
    background: rgba(247, 251, 255, 0.96);
    border-radius: 16px;
    padding: 0.95rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pr-lead-form label {
    margin: 0;
    color: #223147;
    font-weight: 700;
    font-size: 0.83rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pr-lead-form input,
.pr-lead-form select {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d4ddcd;
    border-radius: 10px;
    padding: 0.42rem 0.65rem;
    font-size: 0.94rem;
    color: #233144;
    background: #fff;
}

.pr-lead-form .pr-btn-primary {
    grid-column: 1 / -1;
}

.pr-lead-note {
    margin: -2px 0 0;
    grid-column: 1 / -1;
    color: #5b6c80;
    font-size: 0.8rem;
    font-weight: 600;
}

.pr-sort-actions {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.pr-view-toggle {
    display: inline-flex;
    border: 1px solid #d4dfce;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f8f2;
}

.pr-view-toggle button {
    border: 0;
    background: transparent;
    color: #2f4358;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.48rem 0.8rem;
}

.pr-view-toggle button.is-active {
    background: linear-gradient(120deg, var(--re-primary), var(--re-primary-deep));
    color: #fff;
}

.pr-recent-wrap {
    margin-bottom: 0.75rem;
    border: 1px solid #d8e2d4;
    border-radius: 14px;
    background: #fff;
    padding: 0.7rem;
    box-shadow: 0 8px 22px rgba(15, 29, 47, 0.07);
}

.pr-recent-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 0.55rem;
}

.pr-recent-head h3 {
    margin: 0;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}

.pr-recent-head button {
    border: 1px solid #ccd9cb;
    border-radius: 8px;
    background: #f3f7f1;
    color: #354a5d;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.35rem 0.62rem;
}

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

.pr-recent-card {
    border: 1px solid #d9e2d4;
    border-radius: 12px;
    background: #fbfdfb;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 9px;
    align-items: center;
    text-decoration: none;
    overflow: hidden;
}

.pr-recent-media {
    width: 84px;
    height: 64px;
    background: linear-gradient(135deg, rgba(15, 29, 47, 0.9), rgba(11, 122, 117, 0.84));
}

.pr-recent-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pr-recent-copy {
    padding-right: 8px;
    min-width: 0;
}

.pr-recent-copy strong,
.pr-recent-copy small,
.pr-recent-copy em {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pr-recent-copy strong {
    color: #203247;
    font-size: 0.84rem;
    font-family: 'Outfit', sans-serif;
}

.pr-recent-copy small {
    color: #607084;
    font-size: 0.74rem;
}

.pr-recent-copy em {
    color: var(--re-primary-deep);
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 800;
}

.pr-results-shell {
    display: block;
}

.pr-results-shell.is-list .pr-map-panel {
    display: none;
}

.pr-results-shell.is-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr);
    gap: 12px;
    align-items: start;
}

.pr-results-shell.is-split .pr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pr-map-panel {
    position: sticky;
    top: 140px;
    border: 1px solid #d5dfd1;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 29, 47, 0.11);
}

.pr-map-head {
    padding: 0.72rem 0.82rem;
    border-bottom: 1px solid #d9e2d5;
    background: linear-gradient(135deg, rgba(11, 122, 117, 0.1), rgba(240, 127, 58, 0.08));
    display: grid;
    gap: 0.58rem;
}

.pr-map-head-main {
    display: grid;
    gap: 2px;
}

.pr-map-head h3 {
    margin: 0;
    font-size: 1.04rem;
    font-family: 'Outfit', sans-serif;
}

.pr-map-head p {
    margin: 0.2rem 0 0;
    color: #5a6d82;
    font-size: 0.8rem;
}

.pr-map-state-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.pr-map-state-chip {
    border: 1px solid #cfdccc;
    border-radius: 999px;
    padding: 0.24rem 0.62rem;
    font-size: 0.74rem;
    font-weight: 800;
    color: #1c445a;
    background: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pr-map-state-count {
    color: #446078;
    font-size: 0.75rem;
    font-weight: 700;
}

.pr-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pr-map-btn {
    border: 1px solid #cfdccc;
    border-radius: 10px;
    background: #fff;
    color: #25485b;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.34rem 0.62rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pr-map-btn:hover {
    border-color: var(--re-primary);
    color: #0f5f5a;
}

.pr-map-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pr-map-tools label {
    border: 1px solid #cfdccc;
    border-radius: 999px;
    padding: 0.22rem 0.56rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #214153;
    background: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.pr-map-tools input {
    width: 14px;
    height: 14px;
}

.pr-map-canvas {
    width: 100%;
    min-height: 560px;
    background:
        radial-gradient(circle at 20% 20%, rgba(92, 176, 255, 0.22), transparent 34%),
        linear-gradient(180deg, #edf6ff, #dceeff 60%, #eaf5ff);
}

.pr-state-tooltip {
    border: 1px solid #c4d7cc;
    background: rgba(255, 255, 255, 0.95);
    color: #17394d;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(15, 29, 47, 0.2);
    padding: 3px 8px;
}

.pr-cluster-icon {
    background: rgba(15, 121, 115, 0.2);
    border-radius: 999px;
    border: 2px solid rgba(11, 122, 117, 0.5);
}

.pr-cluster-icon div {
    width: 34px;
    height: 34px;
    margin: 3px;
    border-radius: 999px;
    background: linear-gradient(120deg, #0b7a75, #0d5c7f);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
}

.pr-map-legend {
    border: 1px solid #d3dfd1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 18px rgba(15, 29, 47, 0.14);
    padding: 8px 10px;
    display: grid;
    gap: 5px;
}

.pr-map-legend strong {
    color: #16354b;
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
}

.pr-map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #35546a;
    font-size: 0.72rem;
    font-weight: 700;
}

.pr-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    display: inline-block;
}

.pr-dot-metro { background: #0b7a75; }
.pr-dot-school { background: #ea7d1f; }
.pr-dot-hospital { background: #e2475c; }

.pr-map-empty {
    margin: 0;
    padding: 1rem;
    color: #5d6d80;
    font-weight: 600;
}

.pr-list-panel {
    min-width: 0;
}

.pr-list-empty-by-map {
    margin-top: 0.7rem;
    border: 1px dashed #cfdccc;
    border-radius: 12px;
    background: #f6faf7;
    color: #4d6278;
    padding: 0.78rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pr-list-empty-by-map i {
    color: #0b7a75;
    font-size: 1.1rem;
}

.pr-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pr-card:hover {
    transform: translateY(-2px);
}

.pr-card.is-highlight {
    border-color: rgba(11, 122, 117, 0.62);
    box-shadow: 0 0 0 3px rgba(11, 122, 117, 0.2), var(--pr-shadow);
}

.pr-card-utility {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    gap: 6px;
    z-index: 3;
}

.pr-chip-btn {
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(8, 20, 35, 0.46);
    color: #f7fcff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.52rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pr-chip-btn i {
    font-size: 0.76rem;
}

.pr-chip-btn.is-active {
    background: rgba(255, 255, 255, 0.92);
    color: #114f6b;
    border-color: rgba(255, 255, 255, 0.92);
}

.pr-compare-dock {
    margin-top: 0.9rem;
    border: 1px solid #cfdccc;
    border-radius: 14px;
    background: linear-gradient(145deg, #f7fcf8, #f0f7f2);
    padding: 0.72rem 0.84rem;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.pr-compare-copy strong {
    display: block;
    font-size: 0.96rem;
    color: #18314f;
}

.pr-compare-copy p {
    margin: 0.2rem 0 0;
    color: #5d6f82;
    font-size: 0.82rem;
}

.pr-compare-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pr-compare-actions .pr-btn-primary:disabled,
.pr-compare-actions .pr-btn-ghost:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pr-compare-modal .modal-content {
    border-radius: 16px;
    border: 1px solid #d3dfd0;
}

.pr-compare-table-wrap {
    overflow-x: auto;
}

.pr-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 680px;
}

.pr-compare-table th,
.pr-compare-table td {
    border: 1px solid #d7e2d4;
    padding: 0.58rem 0.64rem;
    font-size: 0.86rem;
    vertical-align: top;
}

.pr-compare-table th {
    width: 180px;
    color: #1e354c;
    background: #f0f7f2;
    font-family: 'Outfit', sans-serif;
}

.pr-compare-table td {
    color: #314659;
    background: #fff;
}

.pr-compare-table td a {
    color: #0b625d;
    text-decoration: none;
}

.pr-compare-empty {
    border: 1px dashed #cedacd;
    border-radius: 12px;
    text-align: center;
    padding: 1.1rem;
    color: #5e7184;
}

.pr-compare-empty i {
    font-size: 1.4rem;
    color: var(--re-secondary);
    display: block;
    margin-bottom: 0.38rem;
}

.pr-mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0.58rem 0.68rem calc(0.58rem + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(207, 220, 208, 0.95);
    background: rgba(249, 253, 248, 0.97);
    backdrop-filter: blur(8px);
}

.pr-mobile-cta a {
    border-radius: 10px;
    border: 1px solid #d1dccf;
    background: #fff;
    color: #1f3551;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.82rem;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pr-main.is-map-split .pr-toolbar {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

@media (max-width: 1180px) {
    .pr-toolbar {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 1100px) {
    .pr-menu,
    .pr-cta {
        display: none;
    }

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

    .pr-lead-shell {
        grid-template-columns: 1fr;
    }

    .pr-results-shell.is-split {
        grid-template-columns: 1fr;
    }

    .pr-map-panel {
        position: relative;
        top: 0;
        order: 2;
    }

    .pr-map-canvas {
        min-height: 340px;
    }
}

@media (max-width: 840px) {
    .pr-toolbar-wrap {
        top: 64px;
    }

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

    .pr-toolbar-actions {
        flex-direction: column;
    }

    .pr-sortbar {
        gap: 8px;
    }

    .pr-sort-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 760px) {
    .pr-sortbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .pr-grid,
    .pr-meta,
    .pr-lead-form {
        grid-template-columns: 1fr;
    }

    .pr-actions {
        flex-direction: column;
    }

    .pr-intro-slider {
        border-radius: 16px;
    }

    .pr-intro-control {
        width: 34px;
        height: 34px;
    }

    .pr-calc-grid,
    .pr-calc-output {
        grid-template-columns: 1fr;
    }

    .pr-recent-grid {
        grid-template-columns: 1fr;
    }

    .pr-compare-dock {
        flex-direction: column;
        align-items: flex-start;
    }

    .pr-mobile-cta {
        display: grid;
    }

    .pr-main {
        padding-bottom: 84px;
    }
}
