/* ── reset de base (identique à home.css) ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    /* min-height (et non height:100%) : évite de transformer le body en conteneur
       de défilement de hauteur fixe sur cette page longue → scroll natif du
       document, plus fluide sur mobile (barre d'URL qui se replie). */
    min-height: 100%;
}

body.partenaires-immo-page {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Tahoma, Arial, sans-serif;
    overflow-x: hidden;
}

:root {
    /* variable utilisée par navbar.css pour border-bottom */
    --border: rgba(11, 18, 32, .12);

    --pp-bg: #f0fdfa;
    --pp-surface: rgba(255, 255, 255, 0.9);
    --pp-surface-strong: #ffffff;
    --pp-text: #0f172a;
    --pp-muted: #64748b;
    --pp-border: rgba(15, 23, 42, 0.08);
    --pp-primary: #0f766e;
    --pp-primary-2: #14b8a6;
    --pp-dark: #06302c;
    --pp-shadow: 0 22px 54px rgba(15, 23, 42, 0.10);
    --pp-shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.16);
    --pp-radius-xl: 30px;
    --pp-radius-lg: 24px;
    --pp-radius-md: 18px;
}

.partenaires-immo-page {
    min-height: 100vh;
    color: var(--pp-text);
    background:
        radial-gradient(1200px 500px at 50% -10%, rgba(15, 118, 110, 0.08), transparent 60%),
        radial-gradient(900px 420px at 10% 20%, rgba(15, 118, 110, 0.06), transparent 60%),
        linear-gradient(180deg, #f0fdfa 0%, #eaf7f3 44%, #dff4f0 100%);
}

.partenaires-immo-page .container {
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
}

/* topbar container full-width — identique à home.css */
.partenaires-immo-page header.topbar .container {
    width: auto;
    max-width: none;
    margin-inline: 0;
    padding-inline: 0;
}


/* =========================================================
   HERO
========================================================= */
.pp-hero {
    position: relative;
    padding: 62px 0 20px;
}

.pp-hero-box {
    padding: 38px 32px;
    border-radius: var(--pp-radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: center;
}

.pp-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.16);
    color: var(--pp-primary-2);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.08);
}

.pp-hero-box h1 {
    margin: 16px 0 12px;
    color: var(--pp-dark);
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.pp-hero-box p {
    margin: 0 auto;
    max-width: 860px;
    color: var(--pp-muted);
    font-size: 16px;
    line-height: 1.95;
}

/* =========================================================
   SECTION
========================================================= */
.pp-section {
    padding: 18px 0 42px;
}

.pp-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.pp-card {
    overflow: hidden;
    border-radius: var(--pp-radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--pp-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .2s ease, box-shadow .2s ease;
}

.pp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--pp-shadow-strong);
}

/* =========================================================
   MEDIA
========================================================= */
.pp-card-media {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    background: linear-gradient(135deg, #dfe9f6 0%, #eaf1f8 55%, #d7e3f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.pp-card--owner .pp-card-media::before,
.pp-card--promoter .pp-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: scale(1.14);
    filter: blur(22px) saturate(1.08);
    opacity: 0.56;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.pp-card--owner .pp-card-media::before {
    background-image: url("../assets/img/pro/proprietere.webp");
}

.pp-card--promoter .pp-card-media::before {
    background-image: url("../assets/img/pro/promoteur.webp");
}

.pp-card-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    padding: 18px 18px 0;
}

.pp-card--owner .pp-card-media img,
.pp-card--promoter .pp-card-media img {
    object-position: center bottom;
}

.pp-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(2, 6, 23, .06) 0%, rgba(2, 6, 23, .12) 32%, rgba(2, 6, 23, .24) 100%);
    pointer-events: none;
}

.pp-card-badge {
    position: absolute;
    inset: 18px auto auto 18px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, .26);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pp-card--owner .pp-card-badge {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
}

.pp-card--promoter .pp-card-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.pp-card-body {
    padding: 24px 22px 22px;
}

.pp-card-body h2 {
    margin: 0 0 12px;
    color: var(--pp-dark);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
}

.pp-card-body p {
    margin: 0;
    color: var(--pp-muted);
    font-size: 15px;
    line-height: 1.95;
}

.pp-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.pp-list li {
    position: relative;
    padding-right: 22px;
    color: var(--pp-text);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 700;
}

.pp-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--pp-primary);
    font-weight: 900;
}

/* =========================================================
   CTA PRO
========================================================= */
.pp-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pp-actions .btn {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 270px);
    min-width: 240px;
    min-height: 60px;
    padding: 0 34px;
    margin-inline: auto;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0;
    box-shadow:
        0 22px 46px rgba(15, 23, 42, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        filter .22s ease,
        border-color .22s ease;
}

/* effet lumière premium */
.pp-actions .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.18) 34%,
            transparent 68%);
    transform: translateX(-130%);
    transition: transform .8s ease;
}

/* bouton carte propriétaire */
.pp-card--owner .pp-actions .btn {
    background:
        linear-gradient(135deg, #0f766e 0%, #0891b2 45%, #0f766e 100%);
    box-shadow:
        0 24px 50px rgba(15, 118, 110, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* bouton carte promoteur */
.pp-card--promoter .pp-actions .btn {
    background:
        linear-gradient(135deg, #d97706 0%, #f59e0b 48%, #f97316 100%);
    box-shadow:
        0 24px 50px rgba(249, 115, 22, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.pp-actions .btn:hover {
    transform: translateY(-3px) scale(1.015);
    filter: saturate(1.05) brightness(1.02);
    border-color: rgba(255, 255, 255, 0.28);
}

.pp-actions .btn:hover::before {
    transform: translateX(130%);
}

.pp-card--owner .pp-actions .btn:hover {
    box-shadow:
        0 28px 58px rgba(15, 118, 110, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.pp-card--promoter .pp-actions .btn:hover {
    box-shadow:
        0 28px 58px rgba(249, 115, 22, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.pp-actions .btn:focus-visible {
    outline: none;
}

.pp-card--owner .pp-actions .btn:focus-visible {
    box-shadow:
        0 0 0 4px rgba(15, 118, 110, 0.14),
        0 24px 52px rgba(15, 118, 110, 0.24);
}

.pp-card--promoter .pp-actions .btn:focus-visible {
    box-shadow:
        0 0 0 4px rgba(249, 115, 22, 0.14),
        0 24px 52px rgba(249, 115, 22, 0.24);
}

.pp-actions .btn:active {
    transform: translateY(-1px) scale(0.995);
}

.pp-actions .btn.primary {
    color: #fff;
}

/* =========================================================
   TRUST
========================================================= */
.pp-trust {
    padding: 0 0 46px;
}

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

.pp-trust-item {
    padding: 18px 16px;
    border-radius: var(--pp-radius-lg);
    background: var(--pp-surface);
    border: 1px solid rgba(255, 255, 255, .84);
    box-shadow: var(--pp-shadow);
    text-align: center;
}

.pp-trust-item strong {
    display: block;
    color: var(--pp-dark);
    font-size: 18px;
    font-weight: 900;
}

.pp-trust-item span {
    display: block;
    margin-top: 6px;
    color: var(--pp-muted);
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   FOOTER
========================================================= */
.pp-footer {
    padding: 0 0 26px;
}

.pp-footer-shell {
    padding: 26px 24px 20px;
    border-radius: var(--pp-radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .90), rgba(248, 250, 252, .94));
    border: 1px solid rgba(255, 255, 255, .82);
    box-shadow: var(--pp-shadow);
    display: grid;
    grid-template-columns: 1.3fr .9fr .9fr;
    gap: 24px;
}

.pp-footer-col h3,
.pp-footer-col h4 {
    margin: 0 0 12px;
    color: var(--pp-dark);
    font-weight: 900;
}

.pp-footer-col h3 {
    font-size: 28px;
}

.pp-footer-col h4 {
    font-size: 18px;
}

.pp-footer-col p {
    margin: 0;
    color: var(--pp-muted);
    font-size: 14px;
    line-height: 1.95;
}

.pp-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.pp-footer-col a,
.pp-footer-col span {
    color: var(--pp-muted);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.8;
}

.pp-footer-shell>.pp-footer-col:nth-child(2) a {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 12px;
    transition: color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.pp-footer-shell>.pp-footer-col:nth-child(2) a:hover,
.pp-footer-shell>.pp-footer-col:nth-child(2) a:focus-visible {
    color: var(--pp-dark);
    background: rgba(15, 118, 110, 0.08);
    box-shadow: 0 10px 22px rgba(15, 118, 110, 0.10);
    transform: translateX(-4px);
}

.pp-footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 6px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.pp-footer-copy {
    color: var(--pp-muted);
    font-size: 13px;
    line-height: 1.8;
}

.pp-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pp-footer-socials a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    color: var(--pp-dark);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.pp-footer-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.14);
}

.pp-footer-socials a[aria-label="فيسبوك"] {
    color: #1877F2;
}

.pp-footer-socials a[aria-label="فيسبوك"]:hover {
    background: #1877F2;
    color: #fff;
}

.pp-footer-socials a[aria-label="إنستغرام"] {
    color: #E4405F;
}

.pp-footer-socials a[aria-label="إنستغرام"]:hover {
    color: #fff;
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.pp-footer-socials a[aria-label="تيك توك"] {
    color: #111111;
}

.pp-footer-socials a[aria-label="تيك توك"]:hover {
    background: #111111;
    color: #fff;
}

/* =========================================================
   HERO STATS
========================================================= */
.pp-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 28px;
    flex-wrap: wrap;
}

.pp-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 28px;
}

.pp-stat-num {
    font-size: clamp(18px, 2.4vw, 26px);
    font-weight: 900;
    color: var(--pp-dark);
    line-height: 1;
}

.pp-stat-label {
    font-size: 13px;
    color: var(--pp-muted);
    font-weight: 600;
}

.pp-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(15, 23, 42, 0.13);
    flex: 0 0 auto;
}

/* =========================================================
   SECTION HEAD (kicker + title + sub)
========================================================= */
.pp-section-head {
    text-align: center;
    margin-bottom: 28px;
}

.pp-section-kicker {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--pp-primary-2);
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(20, 184, 166, 0.14));
    border: 1px solid rgba(15, 118, 110, 0.14);
    margin-bottom: 12px;
}

.pp-section-title {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 900;
    color: var(--pp-dark);
    margin: 0 0 10px;
    line-height: 1.25;
}

.pp-hero-box h1,
.pp-section-title,
.pp-card-body h2 {
    text-decoration: underline;
    text-decoration-color: #0f766e;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.pp-section-sub {
    color: var(--pp-muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    max-width: 580px;
    margin-inline: auto;
}

/* =========================================================
   LIST SVG ICONS
========================================================= */
.pp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 0;
    font-weight: 600;
}

.pp-list li::before {
    display: none;
}

.pp-list-icon {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.pp-list-icon svg {
    width: 14px;
    height: 14px;
}

.ppi-teal {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(20, 184, 166, 0.18));
    color: #0f766e;
}

.ppi-amber {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.12), rgba(245, 158, 11, 0.18));
    color: #d97706;
}

.ppi-blue {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.10), rgba(20, 184, 166, 0.16));
    color: #0f766e;
}

/* =========================================================
   TRUST — with icons
========================================================= */
.pp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.pp-trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.pp-trust-icon svg {
    width: 26px;
    height: 26px;
}

/* =========================================================
   CTA PREMIUM
========================================================= */
.pp-cta-premium {
    margin: 0 0 46px;
}

.pp-cta-premium .container {
    width: min(1280px, calc(100% - 32px));
    margin-inline: auto;
}

.pp-cta-inner {
    padding: 54px 40px;
    border-radius: var(--pp-radius-xl);
    background: linear-gradient(135deg, #06302c 0%, #0f766e 55%, #0f766e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pp-cta-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255, 255, 255, 0.07), transparent),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(96, 165, 250, 0.10), transparent);
    pointer-events: none;
}

.pp-cta-kicker {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 18px;
    position: relative;
}

.pp-cta-inner h2 {
    margin: 0 0 14px;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    position: relative;
}

.pp-cta-inner p {
    margin: 0 auto 32px;
    max-width: 620px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    position: relative;
}

.pp-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}

.pp-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    background: #ffffff;
    color: #0f766e;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
    transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.pp-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.28);
    filter: brightness(1.02);
}

.pp-cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.42);
    transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.pp-cta-btn-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
}

/* =========================================================
   SCROLL REVEAL
========================================================= */
.partenaires-immo-page .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.60s ease, transform 0.60s ease;
}

.partenaires-immo-page .reveal.revealed {
    opacity: 1;
    transform: none;
}

/* =========================================================
   WHATSAPP
========================================================= */
.partenaires-immo-page .whatsapp-float {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    left: auto;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 9999;
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: radial-gradient(circle at center, #25d366 0 58%, rgba(255, 255, 255, 0.30) 59% 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow:
        0 18px 40px rgba(37, 211, 102, 0.28),
        0 0 0 10px rgba(37, 211, 102, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.partenaires-immo-page .whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 22px 46px rgba(37, 211, 102, 0.34),
        0 0 0 12px rgba(37, 211, 102, 0.18);
    filter: saturate(1.04);
}

.partenaires-immo-page .whatsapp-float:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 5px rgba(37, 211, 102, 0.20),
        0 18px 40px rgba(37, 211, 102, 0.34);
}

.partenaires-immo-page .whatsapp-float svg {
    width: 30px;
    height: 30px;
    display: block;
    flex: 0 0 auto;
}

html[lang="fr"] .partenaires-immo-page .whatsapp-float {
    left: max(18px, env(safe-area-inset-left));
    right: auto;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1080px) {
    .pp-grid {
        grid-template-columns: 1fr;
    }

    .pp-footer-shell {
        grid-template-columns: 1fr 1fr;
    }

    .pp-footer-col:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {

    /* ── topbar-h identique à index.html → gap naturel de ~22px sous la navbar ── */
    .partenaires-immo-page {
        --topbar-h: 74px;
    }

    /* ── menu burger : fond opaque + ombre nette ── */
    .partenaires-immo-page .topbar .links {
        background: #ffffff !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: 0 24px 54px rgba(15, 23, 42, 0.28) !important;
        border: 1px solid rgba(15, 23, 42, 0.10) !important;
        border-radius: 18px !important;
    }

    .partenaires-immo-page .container {
        width: min(100%, calc(100% - 24px));
    }

    .partenaires-immo-page .topbar .brand {
        max-width: 150px !important;
    }

    .partenaires-immo-page .topbar .logo-img,
    .partenaires-immo-page .topbar .brand-logo {
        max-width: 150px !important;
        height: 40px !important;
    }

    .pp-hero {
        padding-top: calc(var(--topbar-h) + 18px);
    }

    .pp-hero-box {
        padding: 26px 18px;
        border-radius: 22px;
    }

    .pp-hero-box h1 {
        font-size: 30px;
    }

    .pp-hero-box p {
        font-size: 14px;
    }

    .pp-card-media {
        min-height: 320px;
    }

    .pp-card-media img {
        padding: 14px 14px 0;
    }

    .pp-card-body {
        padding: 20px 16px 18px;
    }

    .pp-card-body h2 {
        font-size: 24px;
    }

    .pp-card-body p {
        font-size: 14px;
    }

    .pp-actions {
        justify-content: center;
        margin-top: 24px;
    }

    .pp-actions .btn {
        width: min(100%, 250px);
        min-width: 0;
        min-height: 54px;
        padding: 0 24px;
        font-size: 14px;
    }

    .pp-trust-grid {
        grid-template-columns: 1fr;
    }

    .pp-footer-shell {
        grid-template-columns: 1fr;
        border-radius: 22px;
        padding: 20px 16px 16px;
    }

    .pp-footer-col h3 {
        font-size: 22px;
    }

    .pp-footer-col h4 {
        font-size: 17px;
    }

    .pp-footer-shell>.pp-footer-col:nth-child(2) a {
        padding: 6px 8px;
    }

    .pp-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding-top: 18px;
        padding-bottom: 86px;
    }

    .pp-footer-copy {
        width: 100%;
        text-align: center;
        font-size: 12.8px;
        line-height: 1.9;
    }

    .pp-footer-socials {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .partenaires-immo-page .topbar .brand {
        max-width: 138px !important;
    }

    .partenaires-immo-page .topbar .logo-img,
    .partenaires-immo-page .topbar .brand-logo {
        max-width: 138px !important;
        height: 36px !important;
    }
}

@media (max-width: 560px) {
    .pp-kicker {
        font-size: 11px;
    }

    .pp-hero-box h1 {
        font-size: 26px;
    }

    .pp-card {
        border-radius: 20px;
    }

    .pp-card-media {
        min-height: 260px;
    }

    .pp-card-body h2 {
        font-size: 22px;
    }

    .pp-list li {
        font-size: 13.5px;
    }

    .partenaires-immo-page .whatsapp-float {
        right: max(14px, env(safe-area-inset-right));
        left: auto;
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 64px;
        height: 64px;
    }

    html[lang="fr"] .partenaires-immo-page .whatsapp-float {
        left: max(14px, env(safe-area-inset-left));
        right: auto;
    }

    .partenaires-immo-page .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .pp-footer-socials a {
        width: 42px;
        height: 42px;
    }

    .pp-actions .btn {
        width: min(100%, 230px);
        min-height: 50px;
        padding: 0 20px;
        font-size: 13.5px;
    }
}

/* =========================================================
   DESKTOP – IMAGES COMPLÈTES + FOND PREMIUM
========================================================= */
@media (min-width: 1025px) {
    .partenaires-immo-page .pp-grid {
        align-items: stretch;
        gap: 28px;
    }

    .partenaires-immo-page .pp-card {
        display: flex;
        flex-direction: column;
    }

    .partenaires-immo-page .pp-card .pp-card-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .partenaires-immo-page .pp-card-media {
        min-height: 0;
        height: clamp(360px, 31vw, 430px);
        padding: 20px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(226, 234, 244, 0.96), rgba(209, 221, 236, 0.96));
    }

    .partenaires-immo-page .pp-card-media::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background:
            radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.34), transparent 42%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    }

    .partenaires-immo-page .pp-card-media img {
        position: relative;
        z-index: 2;
        width: auto;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        padding: 0;
        object-fit: contain;
        object-position: center center;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.72);
        box-shadow: 0 24px 54px rgba(15, 23, 42, 0.18);
        background: rgba(255, 255, 255, 0.14);
    }

    .partenaires-immo-page .pp-card--owner .pp-card-media img,
    .partenaires-immo-page .pp-card--promoter .pp-card-media img {
        object-position: center center;
    }

    .partenaires-immo-page .pp-card-overlay {
        background:
            linear-gradient(180deg,
                rgba(2, 6, 23, .03) 0%,
                rgba(2, 6, 23, .06) 42%,
                rgba(2, 6, 23, .12) 100%);
    }

    .partenaires-immo-page .pp-card-body {
        padding-top: 22px;
    }
}

@media (min-width: 1025px) and (max-width: 1100px) {
    .partenaires-immo-page .pp-card-media {
        height: clamp(340px, 40vw, 410px);
        padding: 18px;
    }
}

@media (min-width: 1101px) {
    .partenaires-immo-page .pp-card-media {
        height: clamp(380px, 29vw, 420px);
    }
}

/* =========================================================
   FOOTER MOBILE OPTIMISÉ
========================================================= */
@media (max-width: 1024px) {
    .pp-hero-stat {
        padding: 0 18px;
    }

    .pp-stat-num {
        font-size: 22px;
    }

    .pp-cta-inner {
        padding: 38px 24px;
        border-radius: 24px;
    }

    .pp-cta-btn-primary,
    .pp-cta-btn-ghost {
        min-height: 48px;
        padding: 0 24px;
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .pp-hero-stats {
        gap: 4px;
    }

    .pp-hero-stat {
        padding: 0 14px;
    }

    .pp-stat-num {
        font-size: 20px;
    }

    .pp-stat-sep {
        height: 28px;
    }

    .pp-cta-inner {
        padding: 32px 18px;
    }

    .pp-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pp-cta-btn-primary,
    .pp-cta-btn-ghost {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .partenaires-immo-page .pp-footer-shell {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 14px;
        align-items: start;
    }

    .partenaires-immo-page .pp-footer-shell>.pp-footer-col:first-child {
        grid-column: 1 / -1;
    }

    .partenaires-immo-page .pp-footer-shell>.pp-footer-col:nth-child(2),
    .partenaires-immo-page .pp-footer-shell>.pp-footer-col:nth-child(3) {
        grid-column: auto;
        min-width: 0;
    }

    .partenaires-immo-page .pp-footer-shell>.pp-footer-bottom {
        grid-column: 1 / -1;
    }

    .partenaires-immo-page .pp-footer-col h4 {
        margin-bottom: 10px;
    }

    .partenaires-immo-page .pp-footer-col ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .partenaires-immo-page .pp-footer-col li {
        margin-bottom: 8px;
    }

    .partenaires-immo-page .pp-footer-col a,
    .partenaires-immo-page .pp-footer-col span {
        display: inline-block;
        line-height: 1.7;
        word-break: break-word;
    }
}