/* ═══════════════════════════════════════════════════
   Amaze Manors — Property Management Landing Page
   File: assets/css/pm-landing.css
   ═══════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────── */
.pm-hero {
    position: relative;
    height: 100svh;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

.pm-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pm-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: amHeroZoom 8s ease-out forwards;
}

/* Same warm brown overlay as homepage */
.pm-hero__overlay-h {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.55), transparent);
    z-index: 1;
}

.pm-hero__overlay-v {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(90 64 33 / 92%), rgb(90 64 33 / 50%));
    z-index: 1;
}

.pm-hero__content {
    position: relative;
    z-index: 2;
    padding: 14rem 3rem 8rem;
}

.pm-hero__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

/* Eyebrow label */
.pm-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: amFadeLeft 1s ease 0.4s both;
}

.pm-hero__eyebrow-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-weight: 500;
    font-family: var(--font-sans);
}

/* Main heading */
.pm-hero__heading {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: clamp(36px, 7vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    max-width: 1000px;
    font-weight: 400;
    animation: amFadeUp 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s both;
}

/* Subtext paragraph */
.pm-hero__subtext {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 1.0625rem;
    max-width: 1000px;
    line-height: 1.75;
    margin-bottom: 3rem;
    font-family: var(--font-sans);
    animation: amFadeUp 1s ease 0.8s both;
}

/* Buttons row */
.pm-hero__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: amFadeUp 1s ease 1s both;
}

/* Outline button color override inside hero */
.pm-hero__actions .am-btn--outline {
    border-color: var(--white) !important;
    color: var(--white);
}

.pm-hero__actions .am-btn--outline:hover {
    background: var(--white) !important;
    color: var(--dark);
}

/* Scroll indicator (same as homepage) */
.pm-hero__scroll {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.pm-hero__scroll-label {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.6);
    writing-mode: vertical-rl;
    font-family: var(--font-sans);
}

.pm-hero__scroll-line {
    width: 1px;
    height: 4rem;
    background: rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.pm-hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    animation: amScrollLine 2s linear infinite;
}

/* ── Trust Bar ────────────────────────────────────── */
.pm-trust-bar {
    width: 100%;
    background: var(--brown);
    border-top: 1px solid rgba(140,110,76,0.25);
    border-bottom: 1px solid rgba(140,110,76,0.25);
    padding: 0;
}

.pm-trust-bar__inner {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.pm-trust-bar__item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 24px;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: background 0.25s;
}

.pm-trust-bar__item:last-child {
    border-right: none;
}

.pm-trust-bar__item:hover {
    background: rgba(140,110,76,0.1);
}

.pm-trust-bar__check {
    display: none;
}

.pm-trust-bar__label {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
    line-height: 1.4;
    text-align: center;
}

@media (max-width: 1200px) {
    .pm-trust-bar__inner {
        grid-template-columns: repeat(3, 1fr);
    }
    .pm-trust-bar__item:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 640px) {
    .pm-trust-bar__inner {
        grid-template-columns: 1fr 1fr;
    }
    .pm-trust-bar__item:nth-child(3n) {
        border-right: 1px solid rgba(255,255,255,0.12);
    }
    .pm-trust-bar__item:nth-child(2n) {
        border-right: none;
    }
    .pm-trust-bar__item {
        padding: 16px 12px;
    }
}

/* ── Section Base ─────────────────────────────────── */
.pm-section {
    padding: 96px 3rem;
}

.pm-section--white { background: var(--white); }
.pm-section--light {
    background: var(--light) !important;
}
.pm-section--dark  { background: #1a1108; }

.pm-inner {
    max-width: 56rem !important;
    margin-inline: auto;
}

/* Eyebrow label */
.pm-eyebrow {
    display: block;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-family: var(--font-sans);
    border-left: none;
    padding-left: 0;
}

.pm-center .pm-eyebrow {
    border-left: none;
    padding-left: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.am-label {
    display: block;
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Section heading */
.pm-heading {
    font-family: var(--font-serif) !important;
    font-size: 40px !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    line-height: 1.2 !important;
    margin-bottom: 50px !important;
}

.pm-heading--white { color: #fff !important; }

/* Sub paragraph */
.pm-sub {
    font-size: 0.97rem;
    color: #666;
    line-height: 1.75;
    font-family: var(--font-sans);
    margin-bottom: 48px;
}

.pm-sub--light { color: rgba(255,255,255,0.65); }

.pm-center { text-align: center; }
.pm-center .pm-sub { max-width: 620px; margin-left: auto; margin-right: auto; }

/* Gold divider */
.pm-gold-divider {
    width: 40px;
    height: 1px;
    background: var(--primary);
    margin-bottom: 28px;
}

.pm-center .pm-gold-divider { margin-left: auto; margin-right: auto; }

/* ── Trust Elements Section ───────────────────────── */
.pm-trust {
    padding: 6rem 3rem 0rem;
    background: #ffffff;
}

.pm-trust__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.pm-trust__header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pm-trust__title {
    font-family: var(--font-serif) !important;
    font-size: 40px !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

.pm-trust__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pm-trust__item {
    background: var(--light);
    border: 1px solid rgb(140 110 76 / 28%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.pm-trust__item:hover {
    box-shadow: none;
    border-color: rgb(140 110 76);
}

.pm-trust__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgb(140 110 76);
    border: 1px solid rgba(140,110,76,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.pm-trust__label {
    font-family: var(--font-serif);
    font-size: 16px;
    color: #000000;
    line-height: 1.45;
    padding-top: 0px;
}

@media (max-width: 1024px) {
    .pm-trust__row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .pm-trust { padding: 4rem 1.5rem; }
    .pm-trust__row { grid-template-columns: 1fr; }
}

/* ── Stats Section ────────────────────────────────── */
.pm-stats {
    padding: 5rem 3rem;
    background: var(--white);
}

.pm-stats__inner {
    max-width: var(--max-w);
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    border: 1px solid rgba(140,110,76,0.25);
}

.pm-stats__intro {
    padding: 52px 44px;
    background: #f5f3f0;
    border-right: 1px solid rgba(140,110,76,0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pm-stats__line {
    width: 32px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 28px;
}

.pm-stats__heading {
    font-family: var(--font-serif) !important;
    font-size: clamp(22px, 2.5vw, 34px) !important;
    font-weight: 400 !important;
    color: var(--primary) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
}

.pm-stats__desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: rgba(17,17,17,0.55);
    line-height: 1.7;
    margin: 0;
}

.pm-stats__item {
    padding: 52px 40px;
    border-right: 1px solid rgba(140,110,76,0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.pm-stats__item:last-child {
    border-right: none;
}

.pm-stats__number {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 400;
    color: var(--primary);
    line-height: 1;
    opacity: 0.75;
}

.pm-stats__label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17,17,17,0.55);
}

@media (max-width: 1024px) {
    .pm-stats__inner { grid-template-columns: 1fr 1fr; }
    .pm-stats__intro { border-right: 1px solid rgba(140,110,76,0.25); border-bottom: 1px solid rgba(140,110,76,0.25); grid-column: 1 / -1; }
    .pm-stats__item { border-bottom: 1px solid rgba(140,110,76,0.25); }
    .pm-stats__item:nth-child(even) { border-right: none; }
}

@media (max-width: 640px) {
    .pm-stats { padding: 3rem 1.5rem; }
    .pm-stats__inner { grid-template-columns: 1fr; }
    .pm-stats__item { border-right: none; }
}

/* ── Features Section ─────────────────────────────── */
.pm-features {
    padding: 6rem 3rem;
    background: var(--white);
    border-bottom: 1px solid rgba(140,110,76,0.1);
}

.pm-features__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.pm-features__header {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.pm-features__header .am-divider {
    margin: 0;
}

.pm-features__title {
    font-family: var(--font-serif) !important;
    color: var(--brown) !important;
    font-size: clamp(26px, 3.5vw, 42px) !important;
    font-weight: 400 !important;
    line-height: 1.2 !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
    max-width: 600px;
}

.pm-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(140,110,76,0.08);
}

.pm-feat-card {
    background: var(--white);
    padding: 44px 36px;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    border-bottom: 3px solid transparent;
    overflow: hidden;
}

.pm-feat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.pm-feat-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.09);
    transform: translateY(-4px);
    z-index: 1;
}

.pm-feat-card:hover::after {
    transform: scaleX(1);
}

.pm-feat-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(140,110,76,0.08);
    border: 1px solid rgba(140,110,76,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: background 0.3s;
}

.pm-feat-card:hover .pm-feat-card__icon {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pm-feat-card__title {
    font-family: var(--font-serif) !important;
    font-size: 1.1rem !important;
    font-weight: 400 !important;
    color: var(--brown) !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
}

.pm-feat-card__text {
    font-size: 0.88rem;
    color: rgba(17,17,17,0.6);
    line-height: 1.75;
    font-family: var(--font-sans);
    margin: 0;
}

@media (max-width: 1024px) {
    .pm-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .pm-features { padding: 4rem 1.5rem; }
    .pm-features__grid { grid-template-columns: 1fr; }
    .pm-feat-card { padding: 32px 24px; }
}

/* ── Why / About Style Section ────────────────────── */
.pm-about {
    padding: 5rem 3rem 9rem 3rem;
    background: var(--white);
    overflow: hidden;
}

.pm-about__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.pm-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Eyebrow */
.pm-about__eyebrow {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Heading — same as .am-home-about__heading */
.pm-about__heading {
    font-family: var(--font-serif) !important;
    color: var(--primary) !important;
    font-size: 40px !important;
    line-height: 1.15 !important;
    margin-bottom: 2rem !important;
    font-weight: 500 !important;
}

/* Body text — same as .am-home-about__body */
.pm-about__body {
    color: #333;
    font-weight: 300;
    line-height: 1.9;
    font-size: 1.0645rem;
    max-width: 540px;
    font-family: var(--font-sans);
}

.pm-about__body p + p {
    margin-top: 1.5rem;
}

/* Right: Image */
.pm-about__image {
    position: relative;
}

.pm-about__img-wrap {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.pm-about__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    min-height: 480px;
}

.pm-about__img-wrap:hover img {
    transform: scale(1.03);
}

@media (max-width: 900px) {
    .pm-about { padding: 4rem 2rem 6rem; }
    .pm-about__grid { grid-template-columns: 1fr; }
    .pm-about__img-wrap img { min-height: 300px; }
}

@media (max-width: 640px) {
    .pm-about { padding: 3rem 1.5rem 4rem; }
}

/* ── Why Section ──────────────────────────────────── */
.pm-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.pm-why__dark-box {
    background: linear-gradient(145deg, #2e1f0e, #1a1108);
    border: 1px solid rgba(140,110,76,0.2);
    padding: 44px;
}

.pm-feature-list { display: flex; flex-direction: column; gap: 20px; }

.pm-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(140,110,76,0.08);
    border-left: 2px solid var(--primary);
}

.pm-feature-item__icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    background: rgba(140,110,76,0.15);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
}

.pm-feature-item__title {
    color: #fff;
    font-weight: 600;
    font-size: 0.93rem;
    margin-bottom: 4px;
    font-family: var(--font-sans);
}

.pm-feature-item__text {
    color: rgba(255,255,255,0.6);
    font-size: 0.83rem;
    font-family: var(--font-sans);
    line-height: 1.6;
}

.pm-checklist { list-style: none; display: flex; flex-direction: column; gap: 13px; }

.pm-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.93rem;
    color: #444;
    font-family: var(--font-sans);
}

.pm-checklist li svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* ── Services Section ─────────────────────────────── */
.pm-services {
    padding: 6rem 3rem;
    background: var(--light);
}

.pm-services__wrap {
    max-width: var(--max-w);
    margin-inline: auto;
}

.pm-services__header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pm-services__title {
    font-family: var(--font-serif) !important;
    font-size: clamp(28px, 4vw, 48px) !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    color: var(--primary);
}

.pm-services__desc {
    max-width: 100%;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pm-services__desc p {
    margin: 0;
    color: #333;
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.0625rem;
    text-align: center;
}

.pm-services__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid rgba(140,110,76,0.15);
}

.pm-svc {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid rgba(140,110,76,0.15);
    border-bottom: 1px solid rgba(140,110,76,0.15);
    background: var(--white);
    transition: background 0.3s;
}

.pm-svc { grid-column: span 2; }
.pm-svc:nth-child(3n) { border-right: none; }
.pm-svc:last-child { border-right: none; border-bottom: none; }
.pm-svc:nth-child(4),
.pm-svc:nth-child(5),
.pm-svc:nth-child(6) { border-bottom: 1px solid rgba(140,110,76,0.15); }

.pm-svc:hover { background: #fdfaf7; }

.pm-svc__icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 20px;
}

.pm-svc__body { flex: 1; }

.pm-svc__title {
    font-family: var(--font-serif) !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    color: #a38263 !important;
    line-height: 1.3 !important;
    margin: 0 0 20px !important;
}

.pm-svc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pm-svc__list li {
    font-family: var(--font-sans);
    font-size: 16px;
    color: rgb(0 0 0 / 55%);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    padding: 5px 0;
    border-bottom: none;
}

.pm-svc__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* CTA box — last card */
.pm-svc--cta {
    background: var(--brown) !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
    border-right: none !important;
}

.pm-svc--cta:hover {
    background: #3d2810 !important;
}

.pm-svc-cta__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.pm-svc-cta__text {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
}

.pm-svc-cta__btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ffffff;
    color: var(--brown);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.3s, color 0.3s;
}

.pm-svc-cta__btn:hover {
    background: var(--primary);
    color: #ffffff;
}

@media (max-width: 1024px) {
    .pm-services__grid { grid-template-columns: repeat(2, 1fr); }
    .pm-svc:nth-child(3n) { border-right: 1px solid rgba(140,110,76,0.15); }
    .pm-svc:nth-child(2n) { border-right: none; }
    .pm-svc:nth-last-child(-n+3) { border-bottom: 1px solid rgba(140,110,76,0.15); }
    .pm-svc:nth-last-child(-n+2) { border-bottom: none; }
    .pm-svc:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
    .pm-services__grid { grid-template-columns: 1fr; }
    .pm-svc { border-right: none !important; border-bottom: 1px solid rgba(140,110,76,0.15) !important; }
    .pm-svc:last-child { border-bottom: none !important; }
}

@media (max-width: 640px) {
    .pm-services { padding: 4rem 1.5rem; }
    .pm-svc { padding: 28px 24px; }
}

/* ── Revenue Section (Dark) ───────────────────────── */
.pm-revenue {
    background: #ffffff;
    padding: 6rem 3rem;
}

.pm-revenue__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

/* Top: full width */
.pm-revenue__top {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 0rem;
}

.pm-revenue__divider {
    width: 100%;
    height: 1px;
    background: rgba(140,110,76,0.3);
    margin-bottom: 4rem;
}

/* Bottom: 2 columns */
.pm-revenue__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.pm-revenue__title {
    font-family: var(--font-serif) !important;
    font-size: clamp(26px, 3vw, 40px) !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    line-height: 1.2 !important;
    margin: 1rem 0 1.5rem !important;
}

.pm-revenue__para {
    font-family: var(--font-sans);
    margin-bottom: 1rem;
    color: #333;
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.pm-revenue__para p {
    margin-bottom: 1rem;
}

.pm-revenue__para p:last-child {
    margin-bottom: 0;
}

.pm-revenue__goal {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--brown);
    font-weight: 500;
    margin-top: 0.5rem;
    line-height: 1.6;
}

.pm-revenue__worrylist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(140,110,76,0.2);
}

.pm-revenue__worrylist li {
    font-family: var(--font-sans);
    font-size: 0.93rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(140,110,76,0.15);
    line-height: 1.4;
}

.pm-revenue__worrylist li:last-child { border-bottom: none; }

.pm-revenue__worrylist li::before {
    content: '✕';
    font-size: 0.7rem;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(140,110,76,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .pm-revenue__bottom { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
    .pm-revenue { padding: 4rem 1.5rem; }
}

.pm-revenue__card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(140,110,76,0.3);
    padding: 44px;
}

.pm-revenue__card-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    text-align: center;
    margin-bottom: 32px;
}

.pm-revenue__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(140,110,76,0.2);
}

.pm-rev-stat {
    padding: 32px 24px;
    text-align: center;
    background: rgba(255,255,255,0.03);
}

.pm-rev-stat__num {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    color: var(--primary);
    line-height: 1;
    opacity: 0.9;
}

.pm-rev-stat__lbl {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
    font-family: var(--font-sans);
    letter-spacing: 0.04em;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .pm-revenue__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
    .pm-revenue { padding: 4rem 1.5rem; }
    .pm-revenue__card { padding: 28px 20px; }
}

/* ── No Worry Section ─────────────────────────────── */
.pm-noworry {
    background: #f8f6f3;
}

.pm-noworry__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.pm-noworry__left {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.pm-noworry__left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
}

.pm-noworry__left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(140,110,76,0);
    transition: background 0.4s ease;
    z-index: 1;
}

.pm-noworry__left:hover img {
    transform: scale(1.05);
}

.pm-noworry__left:hover::after {
    background: rgba(140,110,76,0.15);
}

.pm-noworry__right {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 5rem 5rem;
    background: var(--light);
}

.pm-noworry__title {
    font-family: var(--font-serif) !important;
    font-size: clamp(24px, 2.8vw, 38px) !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    line-height: 1.25 !important;
    margin: 0.75rem 0 1rem !important;
}

.pm-noworry__sub {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: rgba(17,17,17,0.55);
    line-height: 1.75;
    margin: 0 0 1.75rem;
}

.pm-noworry__items {
    display: flex;
    flex-direction: column;
}

.pm-nw-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    color: #111;
}

.pm-nw-dot {
    display: none;
}

.pm-nw-row svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pm-noworry__footer {
    margin-top: 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    color: rgba(17,17,17,0.45);
    line-height: 1.7;
    font-style: italic;
}

@media (max-width: 960px) {
    .pm-noworry__wrap { grid-template-columns: 1fr; }
    .pm-noworry__left { min-height: 360px; }
    .pm-noworry__right { padding: 3.5rem 2rem; }
}

/* ── For Whom Section ─────────────────────────────── */
.pm-forwhom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    background: var(--light);
}

.pm-forwhom__left {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.pm-forwhom__title {
    font-family: var(--font-serif) !important;
    font-size: clamp(22px, 2.8vw, 36px) !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    line-height: 1.25 !important;
    margin: 0 !important;
}

.pm-forwhom__right {
    overflow: hidden;
    position: relative;
}

.pm-forwhom__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pm-forwhom__right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(140,110,76,0);
    transition: background 0.4s ease;
}

.pm-forwhom__right:hover img {
    transform: scale(1.05);
}

.pm-forwhom__right:hover::after {
    background: rgba(140,110,76,0.15);
}

.pm-forwhom__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pm-fw-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 12px;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    color: #111;
    cursor: default;
}

.pm-fw-item:hover {
    background: none;
    color: #111;
    padding-left: 12px;
}

.pm-fw-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pm-fw-item:hover svg {
    transform: none;
}

/* ── Why Trust Section ────────────────────────────── */
.pm-whytrust {
    background: #ffffff;
    padding: 7rem 3rem;
    overflow: visible;
}

.pm-whytrust__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.pm-whytrust__header { display: none; }

/* Split layout */
.pm-whytrust__grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
}

.pm-whytrust__left {
    position: -webkit-sticky;
    position: sticky;
    top: 8rem;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pm-whytrust__title {
    font-family: var(--font-serif) !important;
    font-size: 40px !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    line-height: 1.25 !important;
    margin: 0 !important;
}

.pm-whytrust__sub {
    font-family: var(--font-sans);
    padding: 0;
    color: #333;
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.0625rem;
    padding-top: 1.5rem;
    margin: 0;
}

.pm-whytrust__right {
    display: flex;
    flex-direction: column;
}

.pm-wt-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: start;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(140,110,76,0.12);
    background: transparent;
    transition: background 0.3s;
}

.pm-wt-card:first-child {
    border-top: none;
    padding-top: 0;
}

.pm-wt-card:hover {
    background: none;
    padding-left: 0;
    padding-right: 0;
    transition: all 0.3s;
}

.pm-wt-card__num {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: rgba(140,110,76,0.25);
    line-height: 1.3;
    display: block;
}

.pm-wt-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2px;
}

.pm-wt-card__title {
    font-family: var(--font-serif) !important;
    font-size: 26px !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}

.pm-wt-card__desc {
    font-family: var(--font-sans);
    padding: 0;
    color: #333;
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.0625rem;
    padding-top: 0.5rem;
    margin: 0;
}

@media (max-width: 900px) {
    .pm-forwhom { grid-template-columns: 1fr; }
    .pm-forwhom__right { height: 340px; }
    .pm-whytrust__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
    .pm-forwhom__left { padding: 3rem 1.5rem; }
    .pm-forwhom__grid { grid-template-columns: 1fr; }
    .pm-fw-item:nth-child(odd) { padding-right: 0; border-right: none; }
}

/* ── Properties Section ──────────────────────────── */
.pm-properties {
    padding: 7rem 3rem;
    background: #fff;
}

.pm-properties__inner {
    max-width: var(--max-w);
    margin-inline: auto;
}

.pm-properties__header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pm-properties__title {
    font-family: var(--font-serif) !important;
    font-size: 40px !important;
    font-weight: 500 !important;
    color: var(--primary) !important;
    line-height: 1.2 !important;
    margin: 0 !important;
}

/* Featured layout: first card tall left, others stacked right */
.pm-properties__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pm-prop-card {
    display: block;
    text-decoration: none;
    overflow: hidden;
    position: relative;
    background: #111;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.pm-prop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.pm-prop-card__img {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.pm-prop-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.pm-prop-card:hover .pm-prop-card__img img {
    transform: scale(1.07);
}

.pm-prop-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(40 25 7) 0%, rgb(15 8 2 / 0%) 69%, #00000000 100%);
}

.pm-prop-card__noimg {
    width: 100%;
    height: 100%;
    min-height: inherit;
    background: linear-gradient(145deg, #3d2a12, #1e1208);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pm-prop-card__noimg::after {
    content: '';
    width: 64px;
    height: 64px;
    border: 1px solid rgba(140,110,76,0.45);
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='rgba(140,110,76,0.7)' stroke-width='1.5'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") center/28px no-repeat;
}

.pm-prop-card__loc-badge {
    display: none;
}

/* Title + CTA overlaid on image bottom */
.pm-prop-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.pm-prop-card__title {
    font-family: var(--font-serif) !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}


.pm-prop-card__cta {
    display: none;
}

@media (max-width: 900px) {
    .pm-properties__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
    .pm-properties { padding: 4rem 1.5rem; }
    .pm-properties__grid { grid-template-columns: 1fr; }
}

/* ── Comparison Table ────────────────────────────── */
.pm-compare {
    padding: 7rem 3rem;
    background: #4a3621;
    position: relative;
}

.pm-compare::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(140,110,76,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.pm-compare__inner {
    max-width: var(--max-w);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.pm-compare__header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pm-compare__title {
    font-family: var(--font-serif) !important;
    font-size: 40px !important;
    font-weight: 500 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.pm-compare__table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(140,110,76,0.2);
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    background: #fff;
}

.pm-compare__table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    table-layout: auto;
    min-width: 600px;
    border-right: none;
}

.pm-compare__table thead tr {
    background: #120a02;
}

.pm-compare__table thead th {
    padding: 22px 28px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgb(255 255 255);
    text-align: center;
}

.pm-compare__table thead th:first-child {
    text-align: left;
    color: rgb(255 255 255);
    width: 35%;
}

.pm-compare__table thead th.pm-compare__us {
    background: var(--primary);
    color: #fff;
    letter-spacing: 0.14em;
}

.pm-compare__table thead th.pm-compare__us span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pm-compare__table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: background 0.2s;
}

.pm-compare__table tbody tr:nth-child(even) {
    background: #faf8f5;
}

.pm-compare__table tbody tr:last-child {
    border-bottom: none;
}

.pm-compare__table tbody tr:hover {
    background: rgba(140,110,76,0.06);
}

.pm-compare__table tbody td {
    padding: 20px 28px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-align: center;
    color: #888;
}

.pm-compare__feat {
    text-align: left !important;
    font-weight: 600 !important;
    color: #1a1208 !important;
    font-size: 0.95rem !important;
}

.pm-compare__table tbody td.pm-compare__us {
    background: rgba(140,110,76,0.07);
    border-left: 2px solid rgba(140,110,76,0.3);
    border-right: none;
}

.pm-compare__table tbody tr:nth-child(even) td.pm-compare__us {
    background: rgba(140,110,76,0.11);
}

.pm-compare__table thead th.pm-compare__us {
    border-right: none;
}

.pm-cmp-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    background: var(--primary);
    border-radius: 50px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.pm-cmp-no {
    color: #606060;
    font-size: 16px;
    font-weight: 400;
}

.pm-cmp-partial {
    font-style: normal;
    color: #606060;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 680px) {
    .pm-compare { padding: 4rem 1rem; }
}

/* ── For Whom Grid ────────────────────────────────── */

.pm-forwhom-card {
    background: var(--white);
    padding: 32px 24px; text-align: center;
    border-bottom: 2px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.pm-forwhom-card:hover { border-color: var(--primary); box-shadow: 0 6px 24px rgba(0,0,0,0.07); }
.pm-forwhom-card__emoji { font-size: 2rem; margin-bottom: 14px; }
.pm-forwhom-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--brown); font-family: var(--font-sans); }

/* ── Trust Cards ──────────────────────────────────── */
.pm-trust__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

.pm-trust-card {
    background: var(--white);
    padding: 36px 28px;
    position: relative; overflow: hidden;
    transition: box-shadow 0.3s;
}

.pm-trust-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); }

.pm-trust-card__num {
    font-family: var(--font-serif);
    font-size: 4rem; font-weight: 400;
    color: rgba(140,110,76,0.1);
    position: absolute; top: 12px; right: 20px;
    line-height: 1;
}

.pm-trust-card svg  { color: var(--primary); margin-bottom: 18px; }
.pm-trust-card h3   { font-size: 0.93rem; font-weight: 700; color: var(--brown); margin-bottom: 10px; font-family: var(--font-sans); }
.pm-trust-card p    { font-size: 0.83rem; color: #666; line-height: 1.65; font-family: var(--font-sans); }

/* ── Comparison Table ─────────────────────────────── */
.pm-table-wrap { overflow-x: auto; }

.pm-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-sans);
    font-size: 0.88rem;
}

.pm-table thead tr { background: #2e1f0e; }

.pm-table thead th {
    color: #fff;
    padding: 18px 20px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.pm-table thead th:first-child { text-align: left; }
.pm-table thead th:last-child  { background: var(--primary); }

.pm-table tbody tr:nth-child(even) { background: rgba(140,110,76,0.04); }
.pm-table tbody tr { border-bottom: 1px solid rgba(140,110,76,0.1); transition: background 0.2s; }
.pm-table tbody tr:hover { background: rgba(140,110,76,0.08); }

.pm-table tbody td { padding: 15px 20px; text-align: center; color: #555; }
.pm-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--brown); }

.pm-check   { color: #5a8c4c; font-size: 1.15rem; }
.pm-cross   { color: #c0392b; }
.pm-partial { color: #c87941; font-size: 0.82rem; font-weight: 600; }

/* ── FAQ ──────────────────────────────────────────── */
.pm-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pm-faq-item {
    background: #ffffff;
    border: none;
    border-bottom: none;
}

.pm-faq-q {
    gap: 16px;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--dark);
    padding-right: 2rem;
    transition: color 0.3s;
    text-transform: capitalize;
}

.pm-faq-q__icon { color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
.pm-faq-q.is-open .pm-faq-q__icon { transform: rotate(45deg); }

.pm-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
}

.pm-faq-a.is-open { max-height: 1000px; }

.pm-faq-a-inner {
    padding: 0 2rem 2rem 2rem;
    color: #333;
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.0625rem;
    border-top: 1px solid rgba(29, 35, 39, 0.05);
    padding-top: 1.5rem;
}

/* ── CTA Banner ───────────────────────────────────── */
.pm-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--brown) 100%);
    padding: 96px 3rem;
    text-align: center;
}

.pm-cta h2 {
    font-family: var(--font-serif) !important;
    font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
    color: #fff !important;
    font-weight: 400 !important;
    margin-bottom: 18px !important;
}

.pm-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto; margin-right: auto;
    font-family: var(--font-sans);
}

.pm-cta__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1100px) {
    .pm-services__grid  { grid-template-columns: repeat(2, 1fr); }
    .pm-trust__grid     { grid-template-columns: repeat(3, 1fr); }
    .pm-forwhom__grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .pm-why__grid,
    .pm-revenue__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .pm-section         { padding: 64px 1.5rem; }
    .pm-services__grid  { grid-template-columns: 1fr; }
    .pm-trust__grid     { grid-template-columns: 1fr 1fr; }
    .pm-forwhom__grid   { grid-template-columns: repeat(2, 1fr); }
    .pm-hero__content   { padding: 10rem 1.5rem 6rem; }
    .pm-hero__actions   { flex-direction: column; align-items: flex-start; }
    .pm-hero__actions .am-btn { width: 100%; justify-content: center; }
}


/* ── Mobile Fixes (≤ 768px) ───────────────────────── */
@media (max-width: 768px) {

    /* Hero */
    .pm-hero { min-height: 100svh; }
    .pm-hero__heading { font-size: clamp(28px, 8vw, 48px) !important; }
    .pm-hero__subtext { font-size: 0.95rem; }
    .pm-hero__content { padding: 9rem 1.25rem 5rem; }
    .pm-hero__scroll  { display: none; }

    /* About / Why Amaze */
    .pm-about { padding: 3rem 1.25rem 3rem; }
    .pm-about__grid { grid-template-columns: 1fr; gap: 2rem; }
    .pm-about__heading { font-size: 28px !important; }
    .pm-about__img-wrap img { min-height: 240px; }

    /* Services */
    .pm-services { padding: 3rem 1.25rem; }
    .pm-services__grid { grid-template-columns: 1fr; }
    .pm-svc { grid-column: span 1; border-right: none !important; }
    .pm-services__title { font-size: clamp(24px, 6vw, 36px) !important; }
    .pm-svc--cta { grid-column: span 1; }

    /* Revenue */
    .pm-revenue { padding: 3rem 1.25rem; }
    .pm-revenue__title { font-size: clamp(22px, 6vw, 32px) !important; }

    /* No Worry */
    .pm-noworry__wrap { grid-template-columns: 1fr; }
    .pm-noworry__left { min-height: 280px; }
    .pm-noworry__right { padding: 2.5rem 1.25rem; }
    .pm-noworry__title { font-size: clamp(22px, 6vw, 32px) !important; }

    /* For Whom */
    .pm-forwhom { grid-template-columns: 1fr; }
    .pm-forwhom__left { padding: 2.5rem 1.25rem; }
    .pm-forwhom__right { height: 260px; }
    .pm-forwhom__title { font-size: clamp(20px, 6vw, 30px) !important; }

    /* Why Trust */
    .pm-whytrust { padding: 3.5rem 1.25rem; }
    .pm-whytrust__grid { grid-template-columns: 1fr; gap: 2rem; }
    .pm-whytrust__left { position: static; }
    .pm-whytrust__title { font-size: 26px !important; }
    .pm-wt-card__title { font-size: 20px !important; }

    /* Comparison Table */
    .pm-compare { padding: 3rem 1rem; }
    .pm-compare__title { font-size: 26px !important; }
    .pm-compare__table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .pm-compare__table { min-width: 520px; }
    .pm-compare__table thead th,
    .pm-compare__table tbody td { padding: 14px 12px; font-size: 0.78rem; }

    /* Properties */
    .pm-properties { padding: 3rem 1.25rem; }
    .pm-properties__grid { grid-template-columns: 1fr; }
    .pm-properties__title { font-size: 28px !important; }
    .pm-prop-card__img { height: 240px; }

    /* FAQ */
    .pm-section.pm-section--light { padding: 3rem 1.25rem; }
    .pm-heading { font-size: 26px !important; margin-bottom: 28px !important; }
    .pm-faq-q { padding: 1rem 1rem; font-size: 0.97rem; }
    .pm-faq-a-inner { padding: 0 1rem 1.25rem 1rem; padding-top: 1rem; }

    /* General */
    .pm-svc { grid-column: span 6 !important; }
}
.pm-compare__content { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; }
.pm-compare__closing { text-align: center; margin-top: 2rem; color: rgba(255,255,255,.85); font-size: 1rem; font-style: italic; }
/* ── JS-injected row fixes ─────────────────────────── */
.pm-compare__table tbody td:first-child {
    text-align: left !important;
    font-weight: 600 !important;
    color: #1a1208 !important;
    font-size: 0.95rem !important;
}
.pm-compare__table tbody td:last-child {
    background: rgba(140,110,76,0.07);
    border-left: 2px solid rgba(140,110,76,0.3);
    text-align: center;
}
.pm-compare__table tbody tr:nth-child(even) td:last-child {
    background: rgba(140,110,76,0.11);
}
.pm-compare__table tbody td:last-child span,
.pm-compare__table tbody td.pm-compare__us > span:not([class]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: var(--primary, #8c6e4c);
    border-radius: 50px;
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
/* ── Inline Contact Form Section ──────────────────── */
.pm-contact-inline {
    background: #f9f6f1;
    padding: 5rem 1.5rem;
}
.pm-contact-inline__inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.pm-contact-inline__text {
    text-align: center;
    width: 100%;
}
.pm-contact-inline__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #1a1208;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}
.pm-contact-inline__sub {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}
.pm-contact-inline__form {
    width: 100%;
}
.pm-contact-inline__form .wpcf7 {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
    .pm-contact-inline__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .pm-contact-inline { padding: 3rem 1.25rem; }
}