/* ===== Why LPPM - Scoped Styles (no global leaks) ===== */
#why-lppm-page {
    --ink: #0e1222;
    --bg: #0a1630; /* deep blue */
    --bg-2: #0f223f;
    --card: #ffffff;
    --muted: #6b7280;
    --gold: #c9a44b; /* warm gold */
    --ring: rgba(201, 164, 75, 0.35);
    --maxw: 1200px;
    --radius: 18px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* page-level defaults without touching <body> */
    color: #111827;
    background: #f7f7fa;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
        Helvetica, sans-serif;
    line-height: 1.55;
}

/* keep resets scoped */
#why-lppm-page *,
#why-lppm-page *::before,
#why-lppm-page *::after {
    box-sizing: border-box;
}

/* Typography */
#why-lppm-page h1,
#why-lppm-page h2,
#why-lppm-page h3 {
    font-family: "Playfair Display", serif;
    color: #0b1224;
    letter-spacing: 0.2px;
    margin: 0;
}
#why-lppm-page h1 {
    font-size: clamp(2.2rem, 3.5vw, 3.6rem);
}
#why-lppm-page h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

/* Layout container */
#why-lppm-page .container-css {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: clamp(16px, 4vw, 28px);
}

/* -------------------- HERO -------------------- */
#why-lppm-page .hero {
    position: relative;
    height: 92vh;
    min-height: 560px;
    overflow: hidden;
    background: #000;
    color: #fff;
    display: grid;
    place-items: center;
}

#why-lppm-page .hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    animation: whyFade 25s infinite;
    filter: saturate(1.05) contrast(1.05);
}
#why-lppm-page .hero-slide:nth-child(1) {
    animation-delay: 0s;
}
#why-lppm-page .hero-slide:nth-child(2) {
    animation-delay: 5s;
}
#why-lppm-page .hero-slide:nth-child(3) {
    animation-delay: 10s;
}
#why-lppm-page .hero-slide:nth-child(4) {
    animation-delay: 15s;
}
#why-lppm-page .hero-slide:nth-child(5) {
    animation-delay: 20s;
}

@keyframes whyFade {
    0%,
    16% {
        opacity: 1;
    }
    20%,
    100% {
        opacity: 0;
    }
}

#why-lppm-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 10, 22, 0.55),
        rgba(5, 10, 22, 0.65)
    );
}
#why-lppm-page .hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}
#why-lppm-page .hero-kicker {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.9;
    color: #e5e7eb;
}
#why-lppm-page .hero h1 {
    margin: 0.4rem 0 1rem;
    color: #fff;
}

#why-lppm-page .hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}
#why-lppm-page .highlight {
    backdrop-filter: blur(6px);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.06)
    );
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 16px 18px;
    text-align: left;
    box-shadow: var(--shadow-soft);
}
#why-lppm-page .highlight h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 0 0 0.3rem;
}
#why-lppm-page .highlight p {
    color: #e5e7eb;
    margin: 0;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    #why-lppm-page .hero {
        height: 82vh;
    }
    #why-lppm-page .hero-highlights {
        grid-template-columns: 1fr;
    }
}

/* ---------------- WHAT SETS US APART ---------------- */
#why-lppm-page section#apart {
    background: #fff;
    padding: 72px 0;
}
#why-lppm-page .section-head {
    text-align: center;
    margin-bottom: 8px;
}
#why-lppm-page .kicker {
    color: #93a0b4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.85rem;
}
#why-lppm-page .gold-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffe9b0, var(--gold));
    margin: 10px auto 0;
    border-radius: 2px;
}

#why-lppm-page .apart-grid {
    margin-top: 28px;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(12, 1fr);
}
#why-lppm-page details.apart-card {
    grid-column: span 4;
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eef0f4;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    isolation: isolate;
}
#why-lppm-page details.apart-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
#why-lppm-page details.apart-card[open] {
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

#why-lppm-page .apart-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
#why-lppm-page .apart-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
}
#why-lppm-page details.apart-card:hover .apart-media img {
    transform: scale(1.06);
}
#why-lppm-page .apart-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 40%,
        rgba(0, 0, 0, 0.55) 100%
    );
}
#why-lppm-page .apart-title {
    position: absolute;
    left: 16px;
    bottom: 12px;
    z-index: 1;
    color: #fff;
    font: 600 1.05rem/1.1 Inter, system-ui;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 8px;
}
#why-lppm-page .apart-chip {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(201, 164, 75, 0.95);
    color: #111;
    font-weight: 600;
    font-size: 0.75rem;
}

#why-lppm-page .apart-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ring), transparent);
}
#why-lppm-page .apart-body {
    padding: 0 18px 16px;
    color: #374151;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease, padding 0.5s ease;
}
#why-lppm-page details[open] .apart-body {
    padding: 16px 18px;
    max-height: 300px;
}

#why-lppm-page .apart-summary {
    list-style: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    display: block;
}
#why-lppm-page .apart-summary::-webkit-details-marker {
    display: none;
}

@media (max-width: 1100px) {
    #why-lppm-page details.apart-card {
        grid-column: span 6;
    }
}
@media (max-width: 700px) {
    #why-lppm-page details.apart-card {
        grid-column: span 12;
    }
}

/* ---------------- LEASING STEPS ---------------- */
#why-lppm-page section#leasing {
    background: linear-gradient(180deg, #f6f7fb 0%, #eef3fb 100%);
    padding: 76px 0;
}
#why-lppm-page .steps-wrap {
    position: relative;
    margin-top: 28px;
}
#why-lppm-page .steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
#why-lppm-page .step {
    background: #fff;
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eef0f4;
    position: relative;
    overflow: hidden;
}
#why-lppm-page .step:before {
    content: attr(data-step);
    position: absolute;
    top: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(
        circle at 30% 30%,
        #ffeec5,
        #f0d183 60%,
        #e6b95a 100%
    );
    color: #111;
    font-weight: 800;
    box-shadow: 0 0 0 6px rgba(201, 164, 75, 0.18);
    transition: transform 0.35s ease;
}
#why-lppm-page .step:hover:before {
    transform: scale(1.08);
}

/* decorative connector */
#why-lppm-page .connector {
    position: absolute;
    left: calc(8% + 12px);
    right: calc(8% + 12px);
    top: 35%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.25;
    border-radius: 2px;
}
/* animated golden progress on load (CSS only) */
#why-lppm-page .progress {
    position: absolute;
    left: calc(8% + 12px);
    top: 35%;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #ffe9b0, var(--gold));
    box-shadow: 0 0 16px rgba(201, 164, 75, 0.55);
    border-radius: 2px;
    animation: whyProgress 1.1s ease-out 0.25s forwards;
}
@keyframes whyProgress {
    to {
        width: calc(84% - 24px);
    }
}

@media (max-width: 900px) {
    #why-lppm-page .steps {
        grid-template-columns: 1fr;
    }
    #why-lppm-page .connector,
    #why-lppm-page .progress {
        display: none;
    }
}

/* ---------------- CONTACT ---------------- */
#why-lppm-page section#contact {
    background: #fff;
    padding: 84px 0;
}
#why-lppm-page .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}
#why-lppm-page .contact-card {
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    padding: 28px;
}
#why-lppm-page .contact-lead {
    color: #374151;
    max-width: 48ch;
}
#why-lppm-page .info-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
#why-lppm-page .info {
    display: flex;
    gap: 12px;
    align-items: center;
    color: #1f2937;
}
#why-lppm-page .info svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

#why-lppm-page form.contact-form {
    display: grid;
    gap: 14px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid #eef0f4;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
}
#why-lppm-page .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
#why-lppm-page .input,
#why-lppm-page textarea,
#why-lppm-page select {
    appearance: none;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e2e6ef;
    background: #fff;
    color: #111;
    outline: none;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
#why-lppm-page .input:focus,
#why-lppm-page textarea:focus,
#why-lppm-page select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 5px var(--ring);
}
#why-lppm-page textarea {
    min-height: 110px;
    resize: none;
}

#why-lppm-page .btn {
    border: none;
    padding: 13px 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    background: linear-gradient(180deg, #0f2c63, #0a1f46);
    color: #fff;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 24px rgba(10, 31, 70, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 0.15s ease, box-shadow 0.3s ease, background 0.3s ease;
}
#why-lppm-page .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(10, 31, 70, 0.45);
}
#why-lppm-page .btn:active {
    transform: translateY(0);
}
#why-lppm-page .btn.gold:hover {
    background: linear-gradient(180deg, #f6d684, #d9b458);
    color: #111;
}

/* ---------------- FAQ ---------------- */
#why-lppm-page section#faq {
    background: #f6f7fb;
    padding: 76px 0;
}
#why-lppm-page details.faq {
    background: #fff;
    border: 1px solid #e9ecf4;
    border-radius: 16px;
    padding: 0;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
#why-lppm-page .faq + .faq {
    margin-top: 14px;
}
#why-lppm-page .faq summary {
    list-style: none;
    padding: 18px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}
#why-lppm-page .faq summary::-webkit-details-marker {
    display: none;
}
#why-lppm-page .faq summary:after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 18px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #f4f6fb;
    color: #111;
}
#why-lppm-page details[open] summary:after {
    content: "–";
    background: #fff0d0;
}
#why-lppm-page .faq .answer {
    padding: 0 20px 18px 20px;
    color: #374151;
}

/* --------- Accessibility & Motion --------- */
@media (prefers-reduced-motion: reduce) {
    #why-lppm-page .hero-slide {
        animation: none;
        opacity: 1;
    }
    #why-lppm-page .progress {
        animation: none;
        width: 0;
    }
}
