.project-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    background-color: #0f172a;
    background-image:
        linear-gradient(90deg, rgba(15, 23, 42, .8) 0%, rgba(15, 23, 42, .36) 48%, rgba(0, 0, 0, .04) 100%),
        var(--project-cover);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.floating-price-cta {
    position: fixed;
    right: 22px;
    top: 42%;
    z-index: 1028;
    display: inline-flex;
    align-items: center;
    gap: .88rem;
    color: #fff;
    background: linear-gradient(135deg, #0ea5e9, var(--realtor-green));
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px 0 0 999px;
    padding: 1rem 1.28rem 1rem 1.05rem;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.05;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 20px 42px rgba(2, 8, 23, .28);
    animation: projectSideFloat 1.65s ease-in-out infinite;
}

.floating-price-cta::after {
    content: "";
    position: absolute;
    inset: -7px -4px -7px -9px;
    z-index: -1;
    border-radius: 999px 0 0 999px;
    border: 2px solid rgba(14, 165, 233, .42);
    animation: projectSidePulse 1.65s ease-out infinite;
}

.floating-price-cta:hover,
.floating-price-cta:focus {
    color: #fff;
    transform: translateX(-4px);
    box-shadow: 0 24px 50px rgba(2, 8, 23, .34);
}

.floating-price-cta-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    color: var(--realtor-blue);
    background: #fff;
    border-radius: 50%;
    font-size: 1.22rem;
}

@keyframes projectSideFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-7px); }
}

@keyframes projectSidePulse {
    0% {
        opacity: .86;
        transform: scale(.96);
    }
    75%, 100% {
        opacity: 0;
        transform: scale(1.18);
    }
}

.project-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 26vh;
    background: linear-gradient(180deg, transparent, #fff);
    pointer-events: none;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 140px;
    padding-bottom: 88px;
}

.project-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #bbf7d0;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.project-hero h1 {
    max-width: 780px;
    font-size: clamp(2.8rem, 6vw, 6.5rem);
    line-height: .92;
    font-weight: 900;
    margin: 1rem 0 1.1rem;
    text-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.project-hero .lead {
    max-width: 720px;
    color: rgba(255, 255, 255, .86);
    font-weight: 500;
}

.initial-offer-badge {
    position: relative;
    isolation: isolate;
    width: fit-content;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.25rem;
    padding: .72rem 1rem;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 20px 44px rgba(239, 68, 68, .3);
    animation: initialOfferFloat 1.75s ease-in-out infinite;
}

.initial-offer-badge::after {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border: 2px solid rgba(245, 158, 11, .45);
    border-radius: 24px;
    animation: initialOfferPulse 1.75s ease-out infinite;
}

.initial-offer-badge span,
.initial-offer-badge small {
    display: block;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.initial-offer-badge strong {
    display: block;
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 900;
    line-height: 1;
}

.initial-offer-badge:hover {
    color: #fff;
    transform: translateY(-3px);
}

@keyframes initialOfferFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes initialOfferPulse {
    0% {
        opacity: .85;
        transform: scale(.96);
    }
    75%, 100% {
        opacity: 0;
        transform: scale(1.14);
    }
}

.project-summary-card {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    padding: 1.1rem;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
}

.project-summary-card span {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.project-summary-card strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 900;
}

.sticky-action-bar {
    position: relative;
    z-index: 3;
    margin-top: -42px;
}

.action-panel {
    border: 0;
    border-radius: 30px;
    padding: 1.05rem 1.15rem;
    background: #fff;
    box-shadow: 0 24px 55px rgba(15, 23, 42, .16);
}

.project-action-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
}

.project-action-copy {
    flex: 1 1 auto;
    min-width: 260px;
    padding-left: .15rem;
}

.project-action-copy strong {
    line-height: 1.15;
}

.project-action-copy span {
    display: block;
    margin-top: .25rem;
}

.project-action-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .7rem;
    flex: 0 0 auto;
}

.project-cta {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: 999px;
    padding: .72rem 1.1rem;
    border: 1px solid transparent;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}

.project-cta:hover {
    transform: translateY(-2px);
}

.project-cta-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    font-size: .9rem;
}

.project-cta-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--realtor-green), #05a973);
    box-shadow: 0 16px 30px rgba(16, 185, 129, .24);
}

.project-cta-primary:hover {
    color: #fff;
    box-shadow: 0 20px 36px rgba(16, 185, 129, .32);
}

.project-cta-primary .project-cta-icon {
    background: rgba(255, 255, 255, .18);
}

.project-cta-initial {
    color: #fff;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 16px 30px rgba(239, 68, 68, .24);
    animation: initialOfferFloat 1.75s ease-in-out infinite;
}

.project-cta-initial:hover {
    color: #fff;
    box-shadow: 0 20px 36px rgba(239, 68, 68, .32);
}

.project-cta-initial .project-cta-icon {
    color: #ef4444;
    background: #fff;
}

.project-cta-outline {
    color: var(--realtor-blue);
    background: #f8fbff;
    border-color: rgba(0, 46, 110, .24);
    box-shadow: 0 12px 24px rgba(0, 46, 110, .08);
}

.project-cta-outline:hover {
    color: #fff;
    background: var(--realtor-blue);
    border-color: var(--realtor-blue);
}

.project-cta-outline .project-cta-icon {
    color: #fff;
    background: var(--realtor-blue);
}

.project-cta-whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #128c5a, #0f7b4d);
    box-shadow: 0 16px 30px rgba(15, 123, 77, .22);
}

.project-cta-whatsapp:hover {
    color: #fff;
    box-shadow: 0 20px 36px rgba(15, 123, 77, .3);
}

.project-cta-whatsapp .project-cta-icon {
    background: rgba(255, 255, 255, .18);
}

.project-section {
    padding: 88px 0;
}

.project-lead-section {
    background:
        radial-gradient(circle at 8% 8%, rgba(16, 185, 129, .08), transparent 28%),
        #fff;
}

.callback-card,
.video-card {
    border: 1px solid var(--realtor-border);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
    overflow: hidden;
}

.callback-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 12% 8%, rgba(16, 185, 129, .24), transparent 32%),
        linear-gradient(145deg, #001a3d 0%, #071225 58%, #020617 100%);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 24px 58px rgba(2, 8, 23, .28);
}

.callback-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 29px;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .08);
}

.callback-card .project-kicker {
    color: #6ee7b7 !important;
}

.callback-card h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    font-weight: 900;
    line-height: 1.02;
    margin: .9rem 0 1rem;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.callback-card p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
}

.callback-card .form-label {
    color: rgba(255, 255, 255, .9);
}

.callback-card .form-control {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
}

.callback-card .form-control::placeholder {
    color: rgba(255, 255, 255, .56);
}

.callback-card .form-control:focus {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(16, 185, 129, .8);
    box-shadow: 0 0 0 .22rem rgba(16, 185, 129, .18);
}

.callback-card .btn-realtor {
    box-shadow: 0 18px 36px rgba(16, 185, 129, .32);
}

.video-card {
    display: flex;
    flex-direction: column;
}

.video-header {
    padding: 1.35rem 1.35rem 1rem;
}

.video-header h3 {
    color: var(--realtor-blue);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 900;
    margin: .65rem 0 0;
}

.video-frame {
    position: relative;
    flex: 1;
    min-height: 360px;
    background: #0f172a;
    overflow: hidden;
}

.video-frame img,
.video-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    object-fit: cover;
}

.video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(2, 8, 23, .58));
    pointer-events: none;
}

.video-placeholder {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: #fff;
    font-weight: 900;
    background: rgba(2, 8, 23, .62);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: .7rem 1rem;
    backdrop-filter: blur(10px);
}

.video-placeholder i {
    color: var(--realtor-green);
    font-size: 1.3rem;
}

.benefit-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
}

.benefit-tile {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, #06b45f, #03a355);
    border-radius: 22px;
    padding: 1rem;
    font-size: clamp(1.05rem, 1.8vw, 1.55rem);
    font-weight: 900;
    line-height: 1.05;
    box-shadow: 0 16px 30px rgba(3, 163, 85, .22);
}

.benefit-card {
    height: 100%;
    border: 1px solid var(--realtor-border);
    border-radius: 24px;
    padding: 1.35rem;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.benefit-card .icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--realtor-blue);
    background: #dbeafe;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.gallery-strip img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .1);
}

.gallery-showcase {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--realtor-shadow);
    background: #fff;
}

.gallery-showcase img {
    height: min(58vh, 520px);
    min-height: 320px;
    object-fit: cover;
    background: #e2e8f0;
}

.project-wide-image {
    min-height: clamp(360px, 38vw, 560px);
    background-color: #eef3ef;
    background-image: var(--wide-image);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.project-mini-card {
    border: 0;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    background: #f1f8f4;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.project-mini-card span {
    color: var(--realtor-green);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.project-mini-card h3 {
    color: var(--realtor-blue);
    font-size: 1.7rem;
    font-weight: 900;
    margin: .7rem 0 .4rem;
}

.project-mini-card p {
    color: #334155;
    margin: 0;
}

.project-map-card {
    min-height: 360px;
    border-radius: 24px;
    overflow: hidden;
    background: #e2e8f0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.project-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.map-empty {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: var(--realtor-muted);
}

.map-empty i {
    color: var(--realtor-green);
    font-size: 2.4rem;
    margin-bottom: .8rem;
}

.map-empty h3 {
    color: var(--realtor-blue);
    font-weight: 900;
}

.project-info-band {
    border-radius: 34px;
    color: #fff;
    background: linear-gradient(135deg, var(--realtor-blue), #075985 58%, var(--realtor-green));
    padding: clamp(1.5rem, 4vw, 3rem);
}

.brochure-page {
    background: #f1f5f9;
    color: #0f172a;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brochure-toolbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    gap: .75rem;
    padding: .9rem;
    background: rgba(241, 245, 249, .86);
    backdrop-filter: blur(12px);
}

.brochure-sheet {
    max-width: 980px;
    margin: 1.2rem auto 2rem;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

.brochure-cover {
    min-height: 360px;
    color: #fff;
    background-image:
        linear-gradient(90deg, rgba(15, 23, 42, .78) 0%, rgba(15, 23, 42, .34) 52%, rgba(0, 0, 0, .04) 100%),
        var(--project-cover);
    background-size: cover;
    background-position: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.brochure-cover img {
    max-width: 190px;
}

.brochure-cover h1 {
    max-width: 780px;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: .96;
    font-weight: 900;
    margin: 1rem 0;
}

.brochure-cover p {
    max-width: 680px;
    color: rgba(255, 255, 255, .86);
    font-size: 1rem;
    margin: 0;
}

.brochure-body {
    padding: 1.6rem 2rem 1.3rem;
}

.brochure-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.brochure-metrics div {
    border-radius: 18px;
    padding: .85rem 1rem;
    background: #f8fafc;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.brochure-metrics small {
    display: block;
    color: #475569;
    font-weight: 900;
}

.brochure-metrics strong {
    display: block;
    color: #0f172a;
    font-size: 1.28rem;
    font-weight: 900;
}

.brochure-body h2 {
    color: var(--realtor-blue);
    font-size: 1.8rem;
    font-weight: 900;
}

.brochure-body h3 {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 900;
}

.brochure-lead,
.brochure-body li,
.brochure-body p {
    color: #475569;
}

.brochure-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.1rem;
}

.brochure-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
}

.brochure-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #fff;
    background: var(--realtor-blue);
    padding: 1rem 2rem;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.brochure-footer strong,
.brochure-footer span {
    display: block;
}

.brochure-footer strong {
    font-weight: 900;
}

.brochure-footer span {
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
}

.brochure-footer div:last-child {
    text-align: right;
}

.brochure-plan-page {
    padding: 1.5rem 2rem 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.brochure-plan-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.brochure-plan-header span {
    color: var(--realtor-green);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.brochure-plan-header h2 {
    color: var(--realtor-blue);
    font-size: 1.9rem;
    font-weight: 900;
    margin: .25rem 0 0;
}

.brochure-plan-legend {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .55rem;
}

.brochure-plan-legend span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: .35rem .65rem;
    font-size: .76rem;
    letter-spacing: 0;
    text-transform: none;
}

.status-dot {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
}

.status-available {
    background: #10b981;
}

.status-separated {
    background: #2563eb;
}

.status-sold {
    background: #ef4444;
}

.brochure-plan-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 1rem;
    align-items: stretch;
}

.brochure-map-box,
.brochure-price-box {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #f8fafc;
    overflow: hidden;
}

.brochure-map-box {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .75rem;
}

.brochure-map-box img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
}

.brochure-map-empty {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: .35rem;
    padding: 2rem;
    color: #64748b;
}

.brochure-map-empty i {
    color: var(--realtor-green);
    font-size: 2.4rem;
}

.brochure-map-empty strong {
    color: var(--realtor-blue);
    font-size: 1.15rem;
    font-weight: 900;
}

.brochure-price-box {
    padding: 1rem;
}

.brochure-price-box h3 {
    color: var(--realtor-blue);
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0 0 .75rem;
}

.brochure-price-table-wrap {
    max-height: 470px;
    overflow: auto;
}

.brochure-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .78rem;
}

.brochure-price-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: #fff;
    background: var(--realtor-blue);
    padding: .55rem .45rem;
    font-weight: 900;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

.brochure-price-table td {
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    background: #fff;
    padding: .5rem .45rem;
    vertical-align: middle;
}

.brochure-price-table td:first-child {
    color: #0f172a;
}

.brochure-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: .22rem .5rem;
    font-size: .68rem;
    font-weight: 900;
    white-space: nowrap;
}

.brochure-status-available {
    color: #047857;
    background: #d1fae5;
}

.brochure-status-separated {
    color: #1d4ed8;
    background: #dbeafe;
}

.brochure-status-sold {
    color: #b91c1c;
    background: #fee2e2;
}

.brochure-status-neutral {
    color: #475569;
    background: #e2e8f0;
}

.brochure-plan-footer {
    margin: 1rem -2rem 0;
}

@page {
    size: A4;
    margin: 0;
}

@media print {
    html,
    body {
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .no-print,
    .navbar-shell,
    .footer-corporate {
        display: none !important;
    }

    .brochure-page {
        background: #fff;
    }

    .brochure-sheet {
        margin: 0;
        max-width: none;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .brochure-cover {
        min-height: 92mm;
        page-break-inside: avoid;
        padding: 12mm 14mm;
    }

    .brochure-cover img {
        max-width: 50mm;
    }

    .brochure-cover h1 {
        font-size: 34pt;
        line-height: .95;
        margin: 7mm 0 4mm;
    }

    .brochure-cover p {
        font-size: 10.5pt;
    }

    .brochure-body {
        flex: 1 1 auto;
        padding: 10mm 14mm 8mm;
        font-size: 9.5pt;
    }

    .brochure-body h2 {
        font-size: 20pt;
        margin-bottom: 3mm;
    }

    .brochure-body h3 {
        font-size: 11.5pt;
    }

    .brochure-body p,
    .brochure-body li {
        font-size: 9.5pt;
        line-height: 1.45;
    }

    .brochure-metrics {
        gap: 3mm;
        margin-bottom: 7mm;
    }

    .brochure-metrics div {
        background: #f1f5f9 !important;
        border-radius: 5mm;
        padding: 4mm;
    }

    .brochure-metrics small {
        font-size: 8pt;
    }

    .brochure-metrics strong {
        font-size: 14pt;
    }

    .brochure-gallery img {
        height: 34mm;
        border-radius: 5mm;
    }

    .brochure-footer {
        padding: 5mm 14mm;
        page-break-inside: avoid;
    }

    .brochure-footer span {
        font-size: 8pt;
    }

    .brochure-footer strong {
        font-size: 9pt;
    }

    .brochure-plan-page {
        min-height: 100vh;
        page-break-before: always;
        padding: 9mm 10mm 0;
        display: flex;
        flex-direction: column;
    }

    .brochure-plan-header {
        align-items: flex-start;
        margin-bottom: 5mm;
    }

    .brochure-plan-header h2 {
        font-size: 17pt;
    }

    .brochure-plan-legend {
        gap: 2mm;
    }

    .brochure-plan-legend span {
        padding: 1.5mm 2.5mm;
        font-size: 7.5pt;
    }

    .brochure-plan-grid {
        flex: 1 1 auto;
        grid-template-columns: 1fr;
        gap: 4mm;
    }

    .brochure-map-box {
        min-height: 118mm;
        max-height: 124mm;
        border-radius: 5mm;
        padding: 3mm;
        page-break-inside: avoid;
    }

    .brochure-map-box img {
        max-height: 118mm;
    }

    .brochure-price-box {
        border-radius: 5mm;
        padding: 4mm;
        page-break-inside: avoid;
    }

    .brochure-price-box h3 {
        font-size: 10pt;
        margin-bottom: 2mm;
    }

    .brochure-price-table-wrap {
        max-height: none;
        overflow: visible;
    }

    .brochure-price-table {
        font-size: 7.2pt;
    }

    .brochure-price-table th,
    .brochure-price-table td {
        padding: 1.5mm 1.6mm;
    }

    .brochure-status {
        padding: .8mm 1.6mm;
        font-size: 6.4pt;
    }

    .brochure-plan-footer {
        margin: 4mm -10mm 0;
    }
}

@media (max-width: 767.98px) {
    .project-hero {
        min-height: auto;
        align-items: flex-start;
        background-position: center top;
    }

    .project-hero::after {
        height: 18vh;
    }

    .project-hero-content {
        padding: 112px 14px 76px;
    }

    .project-kicker {
        max-width: 100%;
        font-size: .72rem;
        line-height: 1.2;
    }

    .project-hero h1 {
        max-width: 100%;
        font-size: clamp(2.35rem, 12vw, 3.2rem);
        line-height: .95;
        margin: .75rem 0 .85rem;
        overflow-wrap: anywhere;
    }

    .project-hero .lead {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 0;
    }

    .initial-offer-badge {
        width: 100%;
        min-height: 58px;
        display: grid;
        grid-template-columns: .78fr 1.05fr 1fr;
        gap: .45rem;
        margin-top: 1.05rem;
        padding: .7rem .85rem;
        border-radius: 18px;
    }

    .initial-offer-badge span,
    .initial-offer-badge small {
        font-size: .64rem;
        line-height: 1.08;
    }

    .initial-offer-badge strong {
        font-size: 1.08rem;
        line-height: 1.05;
        white-space: normal;
    }

    .project-summary-card {
        min-height: 96px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: .95rem;
        border-radius: 20px;
    }

    .project-summary-card span {
        font-size: .68rem;
        line-height: 1.05;
    }

    .project-summary-card strong {
        margin-top: .35rem;
        font-size: clamp(1.22rem, 6.8vw, 1.58rem);
        line-height: 1.12;
        overflow-wrap: normal;
        word-break: normal;
    }

    .project-section {
        padding: 64px 0;
    }

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

    .floating-price-cta {
        left: 50%;
        right: auto;
        top: auto;
        bottom: 88px;
        width: min(calc(100vw - 32px), 320px);
        justify-content: center;
        border-radius: 999px;
        padding: .78rem 1rem;
        font-size: .86rem;
        transform: translateX(-50%);
        animation: mobileProjectCtaFloat 1.65s ease-in-out infinite;
    }

    .floating-price-cta:hover,
    .floating-price-cta:focus {
        transform: translateX(-50%) translateY(-2px);
    }

    .floating-price-cta::after {
        inset: -6px;
        border-radius: 999px;
    }

    .floating-price-cta-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .sticky-action-bar {
        margin-top: -30px;
    }

    .action-panel {
        border-radius: 22px;
        padding: 1rem;
    }

    @keyframes mobileProjectCtaFloat {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(-6px); }
    }
}

@media (max-width: 991.98px) {
    .project-action-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .project-action-buttons {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .project-cta {
        flex: 1 1 190px;
    }

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

@media (max-width: 575.98px) {
    .initial-offer-badge strong {
        font-size: 1rem;
    }

    .project-summary-card strong {
        font-size: clamp(1.14rem, 6.4vw, 1.48rem);
    }

    .project-hero-content .row {
        --bs-gutter-x: .75rem;
        --bs-gutter-y: .75rem;
    }

    .project-action-copy {
        min-width: 0;
    }

    .project-action-copy strong {
        font-size: 1.05rem !important;
    }

    .project-action-copy span {
        font-size: .9rem;
    }

    .project-action-buttons {
        gap: .55rem;
    }

    .project-cta {
        min-height: 48px;
        flex: 1 1 100%;
        padding: .75rem .85rem;
        border-radius: 16px;
        font-size: .9rem;
    }

    .project-cta-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .benefit-strip {
        grid-template-columns: 1fr;
    }
}
