/* ══════════════════════════════════════════════════════════════
   robot-page.css — Styles dédiés landing Robot Tondeuse
   Réutilise : .container, .btn*, variables de style.css
   ══════════════════════════════════════════════════════════════ */


/* ── 0. VARIABLES LANDING ── */

:root {
    /* Layout tokens */
    --lp-section-py: clamp(3.5rem, 8vw, 6rem);
    --lp-section-py-sm: clamp(2.5rem, 5vw, 4rem);
    --lp-gap: clamp(1rem, 2.5vw, 1.5rem);
    --lp-radius: 14px;
    --lp-radius-sm: 8px;
    --lp-radius-pill: 50px;

    /* Couleurs manquantes (style.css ne les définit pas) */
    --forest-light: #2d4a23;
    --gold-dark: #b8883d;
    --mint-dark: #40916c;
    --mint-light: #74c69d;
}


/* ── 1. HEADER — Styles gérés par style.css (.site-header, .nav, .nav-links, .hamburger) ── */


/* ── 2. HERO ── */

.hero {
    position: relative;
    min-height: clamp(500px, 65vh, 720px);
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    padding-top: var(--header-h, 72px);
}

/* Background — image + dégradé forêt */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(135deg,
            rgba(15, 26, 10, .88) 0%,
            rgba(15, 26, 10, .55) 45%,
            rgba(15, 26, 10, .75) 100%),
        url('image robot tondeuse/Belle pelouse Isère avec montagnes.png') center / cover no-repeat;
    filter: saturate(1.1);
}

/* Grid 2 colonnes */
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Colonne gauche — texte */
.hero__text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero__title {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.08;
    letter-spacing: -.02em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}

.hero__sub {
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, .8);
    max-width: 460px;
}

.hero__ctas {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

/* Trust micro-bar */
.hero__trust {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    padding: 0;
    margin: .5rem 0 0;
}

.hero__trust li {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    white-space: nowrap;
}

.hero__trust li::before {
    content: '✓';
    color: var(--mint-light);
    font-weight: 700;
}

/* Colonne droite — product card */
.hero__card {
    display: flex;
    justify-content: center;
}

.hero-product {
    position: relative;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .4s, box-shadow .4s;
}

.hero-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

/* Badges flottants dans la card */
.hero-product__badges {
    display: flex;
    gap: .4rem;
}

/* Image produit */
.hero-product__img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    padding: .75rem;
}

/* Info produit */
.hero-product__info {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.hero-product__name {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
}

/* Specs chips en blanc */
.hero-product .rp-specs span {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .85);
    border-color: rgba(255, 255, 255, .15);
}

/* Prix */
.hero-product__price .rp-price {
    color: var(--gold-light);
    font-size: 1.6rem;
}

.hero-product__price .rp-price small {
    color: var(--mint-light);
}

/* CTA dans la card */
.hero-product .btn {
    margin-top: .25rem;
}


/* ── 2b. PROOF BAR ── */

.proof {
    background: var(--forest);
    padding: clamp(1.5rem, 3vw, 2rem) 0 clamp(2.5rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(200, 164, 85, .1);
}

.proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(.75rem, 2vw, 1.25rem);
}

.proof__pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .85rem 1rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--lp-radius);
    color: #fff;
    font-size: clamp(.78rem, 1.4vw, .88rem);
    font-weight: 600;
    white-space: nowrap;
    transition: background .25s, border-color .25s, transform .25s;
}

.proof__pill:hover {
    background: rgba(200, 164, 85, .1);
    border-color: rgba(200, 164, 85, .25);
    transform: translateY(-2px);
}

.proof__icon {
    flex-shrink: 0;
    color: var(--gold);
}

/* Cartes valeur */
.proof__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin-top: clamp(1.5rem, 3.5vw, 2.5rem);
}

.proof-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--lp-radius);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: background .3s, border-color .3s, transform .3s;
}

.proof-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(200, 164, 85, .25);
    transform: translateY(-4px);
}

.proof-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 164, 85, .15), rgba(212, 164, 85, .06));
    border: 1px solid rgba(212, 164, 85, .2);
    color: var(--gold);
    flex-shrink: 0;
}

.proof-card__title {
    font-family: var(--ff-display);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: #fff;
    line-height: 1.2;
}

.proof-card__sub {
    font-size: .88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .7);
}

.proof-card__list {
    list-style: none;
    padding: 0;
    margin: .25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.proof-card__list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
}

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


/* ── 2c. CATALOGUE FILTERS ── */

.cat-filters {
    display: flex;
    align-items: flex-end;
    gap: clamp(.6rem, 1.5vw, 1rem);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--lp-radius);
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    flex-wrap: wrap;
}

.cat-filters__field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    flex: 1;
    min-width: 140px;
}

.cat-filters__label {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--forest-light);
    padding-left: .15rem;
}

.cat-filters__select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: var(--lp-radius-sm);
    padding: .65rem .9rem;
    padding-right: 2.2rem;
    font-family: var(--ff-body);
    font-size: .82rem;
    font-weight: 500;
    color: var(--forest);
    cursor: pointer;
    transition: border-color .25s, box-shadow .25s;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231a2e12' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    width: 100%;
}

.cat-filters__select:hover {
    border-color: var(--gold);
}

.cat-filters__select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 164, 85, .15);
}

.cat-filters__btn {
    flex-shrink: 0;
    padding: .65rem 1.5rem;
    white-space: nowrap;
    align-self: flex-end;
}

/* Chips catégories */
.cat-chips {
    display: flex;
    gap: .5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem 1.1rem;
    border: 1.5px solid rgba(0, 0, 0, .1);
    border-radius: var(--lp-radius-pill);
    background: #fff;
    font-family: var(--ff-body);
    font-size: .82rem;
    font-weight: 600;
    color: var(--forest);
    cursor: pointer;
    transition: background .25s, border-color .25s, color .25s, box-shadow .25s, transform .2s;
}

.cat-chip span {
    font-weight: 400;
    font-size: .74rem;
    color: #6b7280;
    transition: color .25s;
}

.cat-chip:hover {
    border-color: var(--gold);
    background: rgba(212, 164, 85, .06);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.cat-chip.active {
    background: var(--forest);
    border-color: var(--forest);
    color: #fff;
    box-shadow: 0 2px 10px rgba(26, 46, 18, .2);
}

.cat-chip.active span {
    color: rgba(255, 255, 255, .7);
}

.cat-chips--brands {
    margin-top: .5rem;
}

.cat-count {
    font-size: .78rem;
    color: #6b7280;
    margin-top: 1rem;
    font-weight: 500;
}

/* Badge filtre marque actif (injecté par JS) */
.active-filter-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    padding: .4rem .75rem .4rem 1rem;
    background: var(--forest, #2d5016);
    color: #fff;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    line-height: 1;
}

.active-filter-badge__label {
    white-space: nowrap;
}

.active-filter-badge__label strong {
    text-transform: capitalize;
}

.active-filter-badge__clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s;
    padding: 0;
}

.active-filter-badge__clear:hover {
    background: rgba(255,255,255,.4);
}


/* ── 2d. CATALOGUE GRID & PRODUCT CARD ── */

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
    margin-top: 2rem;
}

/* Product card — composant réutilisable */
.prod-card {
    display: flex;
    flex-direction: column;
}

/* ── Filter animations (pop in / pop out) ── */
@keyframes cardPopIn {
    0%   { opacity: 0; transform: scale(.85) translateY(12px); }
    60%  { opacity: 1; transform: scale(1.02) translateY(-2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.prod-card.card-pop {
    animation: cardPopIn .35s cubic-bezier(.34, 1.56, .64, 1) both;
}

.prod-card.card-hidden {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .prod-card.card-pop { animation: none; }
    .rp-badge--promo { animation: none; }
    .rp-badge--best::after { animation: none; }
}

/* Image zone — 16:9 */
.prod-card__img {
    aspect-ratio: 16 / 9;
    position: relative;
}

.prod-card__img img {
    object-fit: cover;
}

/* Badges — positionnés en overlay */
.prod-card__badges {
    position: absolute;
    top: .5rem;
    left: .5rem;
    display: flex;
    gap: .3rem;
    z-index: 1;
}

/* Body */
.prod-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem 1.25rem;
}

.prod-card__brand {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-dark);
}

.prod-card__name {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    line-height: 1.2;
    color: var(--forest);
}

.prod-card__body .rp-specs {
    margin-top: .15rem;
}

/* Footer — prix + CTA */
.prod-card__footer {
    flex-direction: column;
    align-items: stretch;
    gap: .6rem;
    padding: 1rem 1.25rem;
}

.prod-card__pricing {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.prod-card__price {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    color: var(--gold-dark);
    line-height: 1.2;
}

.prod-card__incl {
    font-size: .72rem;
    font-weight: 500;
    color: var(--mint-dark);
}

.prod-card__actions {
    display: flex;
    gap: .5rem;
}

.prod-card__actions .btn {
    flex: 1;
    text-align: center;
    justify-content: center;
}

/* Ghost button override — fond blanc des prod-card */
.prod-card__actions .btn--ghost {
    color: var(--forest);
    border-color: rgba(26, 46, 18, .2);
}

.prod-card__actions .btn--ghost:hover {
    background: var(--forest);
    border-color: var(--forest);
    color: #fff;
}


/* ── 2e. PRODUCT DRAWER ── */

/* Overlay */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 26, 10, .55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s, visibility .35s;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Drawer panel */
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(480px, 92vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    color: var(--forest);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .2);
}

.drawer.open {
    transform: translateX(0);
}

/* Header */
.drawer__header {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 1.25rem .5rem;
    flex-shrink: 0;
}

.drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 50%;
    background: #fff;
    color: var(--forest);
    cursor: pointer;
    transition: background .2s, border-color .2s;
}

.drawer__close:hover {
    background: var(--cream);
    border-color: rgba(0, 0, 0, .2);
}

/* Body — scrollable */
.drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 0 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

/* Image */
.drawer__img {
    border-radius: var(--lp-radius);
    overflow: hidden;
    background: var(--cream);
    margin-bottom: .25rem;
}

.drawer__img img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    padding: 1rem;
}

/* Brand & name */
.drawer__brand {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-dark);
}

.drawer__name {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    line-height: 1.15;
    color: var(--forest-deep);
    margin-top: -.25rem;
}

/* Specs */
.drawer__specs {
    margin-top: .25rem;
}

/* 3 points forts */
.drawer__fortes {
    list-style: none;
    padding: 0;
    margin: .75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    background: linear-gradient(135deg, rgba(26, 46, 18, .04), rgba(82, 183, 136, .05));
    border: 1px solid rgba(82, 183, 136, .12);
    border-radius: var(--lp-radius);
    padding: 1.15rem 1.25rem;
}

.drawer__fortes li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--forest);
    line-height: 1.4;
}

.drawer__fortes li::before {
    content: '';
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2352b788' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Inclus bar */
.drawer__incl {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    background: rgba(82, 183, 136, .08);
    border-radius: var(--lp-radius-sm);
    color: var(--mint-dark);
    font-size: .82rem;
    font-weight: 600;
}

.drawer__incl svg {
    flex-shrink: 0;
    color: var(--mint);
}

/* Price */
.drawer__price {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    color: var(--gold-dark);
    margin-top: .25rem;
}

/* Description */
.drawer__desc {
    font-size: .9rem;
    line-height: 1.55;
    color: #4b5563;
    margin: -.15rem 0 .25rem;
}

/* CTAs */
.drawer__ctas {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-top: .5rem;
}

/* Fiche technique */
.drawer__section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.drawer__section-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--forest);
    margin: 0 0 .75rem;
}

.drawer-spec-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drawer-spec {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    font-size: .84rem;
}

.drawer-spec:last-child {
    border-bottom: none;
}

.drawer-spec__label {
    color: #6b7280;
    font-weight: 500;
}

.drawer-spec__value {
    color: var(--forest);
    font-weight: 600;
    text-align: right;
}

/* WhatsApp button */
.btn--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    border-radius: var(--lp-radius-sm);
    transition: background .25s, transform .25s;
}

.btn--whatsapp:hover {
    background: #1fb855;
    transform: translateY(-1px);
}

/* Body scroll lock */
body.drawer-open {
    overflow: hidden;
}


/* ── 2f. HOW TO CHOOSE — TECHNO CARDS ── */

.techno-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.techno-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--lp-radius);
    padding: clamp(1.25rem, 3vw, 1.75rem);
    display: flex;
    flex-direction: column;
    gap: .65rem;
    transition: background .3s, border-color .3s, transform .3s;
}

.techno-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-3px);
}

/* Featured card (recommended) */
.techno-card--featured {
    background: rgba(212, 164, 85, .08);
    border-color: rgba(212, 164, 85, .25);
    position: relative;
}

.techno-card--featured:hover {
    background: rgba(212, 164, 85, .12);
    border-color: rgba(212, 164, 85, .4);
}

/* Icon */
.techno-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--gold);
}

.techno-card--featured .techno-card__icon {
    background: linear-gradient(135deg, rgba(212, 164, 85, .2), rgba(212, 164, 85, .08));
    border-color: rgba(212, 164, 85, .3);
}

/* Label */
.techno-card__label {
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .6);
}

.techno-card--featured .techno-card__label {
    color: var(--gold);
}

/* Title */
.techno-card__title {
    font-family: var(--ff-display);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #fff;
    line-height: 1.2;
}

/* Desc */
.techno-card__desc {
    font-size: .85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .7);
}

/* Pros list */
.techno-card__pros {
    list-style: none;
    padding: 0;
    margin: .25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.techno-card__pros li {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .8);
}

.techno-card__pros li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2374c69d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Cons list */
.techno-card__cons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.techno-card__cons li {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .6);
}

.techno-card__cons li::before {
    content: '–';
    flex-shrink: 0;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    width: 16px;
    text-align: center;
}

/* Ideal for */
.techno-card__ideal {
    margin-top: auto;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.5;
}

.techno-card__ideal strong {
    color: var(--gold-light);
    font-weight: 600;
}

.techno-card--featured .techno-card__ideal {
    border-top-color: rgba(212, 164, 85, .15);
}

/* CTA conseil */
.techno-cta {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.techno-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .7);
}


/* ── 2g. PRICING CARDS — SERVICES ── */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: start;
}

/* Card base — override style.css green bg */
.pricing-card {
    position: relative;
    background: #fff;
    color: var(--forest);
    border: 1.5px solid rgba(0, 0, 0, .08);
    border-radius: var(--lp-radius);
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: transform .35s, box-shadow .35s, border-color .35s, background .35s;
}

.pricing-card:hover {
    background: #fff;
    color: var(--forest);
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .1);
    border-color: rgba(200, 164, 85, .3);
}

/* Featured card — Pack populaire */
.pricing-card--featured {
    border-color: var(--gold);
    border-width: 2px;
    box-shadow: 0 8px 28px rgba(212, 164, 85, .15);
    z-index: 1;
    /* Slightly larger to stand out */
    transform: scale(1.03);
}

.pricing-card--featured:hover {
    background: #fff;
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 16px 44px rgba(212, 164, 85, .22);
}

/* Badge "Le + populaire" */
.pricing-card__badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--forest);
    padding: .3rem 1.1rem;
    border-radius: var(--lp-radius-pill);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(212, 164, 85, .3);
}

/* Header — icon + name + desc */
.pricing-card__header {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-align: center;
}

.pricing-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 164, 85, .1), rgba(212, 164, 85, .04));
    border: 1px solid rgba(212, 164, 85, .15);
    color: var(--gold-dark);
    margin: 0 auto;
}

.pricing-card--featured .pricing-card__icon {
    background: linear-gradient(135deg, rgba(212, 164, 85, .2), rgba(212, 164, 85, .08));
    border-color: rgba(212, 164, 85, .3);
    color: var(--gold);
}

.pricing-card__name {
    font-family: var(--ff-display);
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--forest);
    line-height: 1.2;
}

.pricing-card__desc {
    font-size: .85rem;
    line-height: 1.5;
    color: #6b7280;
}

/* Price block */
.pricing-card__price-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, .06);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.pricing-card__from {
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #6b7280;
}

.pricing-card__price {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    line-height: 1.1;
    color: var(--forest);
}

.pricing-card__price small {
    font-family: var(--ff-body);
    font-size: .42em;
    font-weight: 600;
    color: var(--gold-dark);
    vertical-align: baseline;
}

.pricing-card--featured .pricing-card__price {
    color: var(--gold-dark);
}

.pricing-card__note {
    font-size: .72rem;
    font-weight: 500;
    color: #6b7280;
    font-style: italic;
}

/* Features list */
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .84rem;
    font-weight: 500;
    color: var(--forest);
    line-height: 1.35;
}

.pricing-card__features li::before {
    content: '';
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2352b788' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* CTA */
.pricing-card__cta {
    margin-top: auto;
}

/* Ghost button override — fond blanc des pricing-card */
.pricing-card .btn--ghost {
    color: var(--forest);
    border-color: rgba(26, 46, 18, .25);
}

.pricing-card .btn--ghost:hover {
    background: var(--forest);
    border-color: var(--forest);
    color: #fff;
}

/* Failsafe : si le fond vert de style.css bleed → tous les textes restent lisibles */
.pricing-card:hover .pricing-card__name,
.pricing-card:hover .pricing-card__price,
.pricing-card:hover .pricing-card__features li {
    color: var(--forest);
}

.pricing-card:hover .pricing-card__desc,
.pricing-card:hover .pricing-card__from,
.pricing-card:hover .pricing-card__note {
    color: #6b7280;
}

/* Disclaimer */
.pricing-disclaimer {
    text-align: center;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
    font-size: .82rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* À la carte */
.alacarte {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--lp-radius);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.alacarte__title {
    font-family: var(--ff-display);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--forest);
    text-align: center;
    margin-bottom: .35rem;
}

.alacarte__sub {
    font-size: .88rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.alacarte__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.alacarte__item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: clamp(.85rem, 2vw, 1.15rem) clamp(.75rem, 2vw, 1.25rem);
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    transition: background .2s;
}

/* Bordure droite pour les items de gauche */
.alacarte__item:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, .05);
}

/* Enlever la bordure du bas sur les 2 derniers items */
.alacarte__item:nth-last-child(-n+2) {
    border-bottom: none;
}

.alacarte__item:hover {
    background: rgba(212, 164, 85, .04);
}

.alacarte__item:hover .alacarte__icon {
    color: var(--gold-dark);
}

.alacarte__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(212, 164, 85, .12);
    border: 1px solid rgba(212, 164, 85, .22);
    color: var(--forest);
    flex-shrink: 0;
    transition: color .25s;
}

.alacarte__info {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    flex: 1;
    min-width: 0;
}

.alacarte__name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--forest);
}

.alacarte__desc {
    font-size: .75rem;
    color: #6b7280;
    line-height: 1.35;
}

.alacarte__price-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .05rem;
    flex-shrink: 0;
}

.alacarte__from {
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6b7280;
}

.alacarte__price {
    font-family: var(--ff-display);
    font-size: 1.2rem;
    color: var(--gold-dark);
    line-height: 1.1;
}

.alacarte__note {
    text-align: center;
    margin-top: clamp(1rem, 2vw, 1.5rem);
    font-size: .78rem;
    color: #6b7280;
    line-height: 1.5;
}

.alacarte__note strong {
    color: var(--gold-dark);
    font-weight: 700;
}


/* ── 2h. FINITIONS BORDURES ── */

.finishes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: start;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* Card base */
.finish-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--lp-radius);
    padding: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: .85rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    transition: background .3s, border-color .3s, transform .35s, box-shadow .35s;
}

.finish-card:hover {
    background: #fff;
    border-color: rgba(0, 0, 0, .12);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

/* Featured card */
.finish-card--featured {
    background: rgba(212, 164, 85, .05);
    border-color: rgba(212, 164, 85, .4);
    z-index: 1;
    transform: scale(1.03);
}

.finish-card--featured:hover {
    background: rgba(212, 164, 85, .08);
    border-color: rgba(212, 164, 85, .5);
    transform: scale(1.03) translateY(-4px);
}

/* Badge "Recommandé" */
.finish-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--forest);
    padding: .25rem 1rem;
    border-radius: var(--lp-radius-pill);
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(212, 164, 85, .35);
}

/* Top — icon + label */
.finish-card__top {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.finish-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 46, 18, .04);
    border: 1px solid rgba(26, 46, 18, .08);
    color: var(--forest-light);
    flex-shrink: 0;
}

.finish-card--featured .finish-card__icon {
    background: linear-gradient(135deg, rgba(212, 164, 85, .15), rgba(212, 164, 85, .06));
    border-color: rgba(212, 164, 85, .3);
    color: var(--gold-dark);
}

.finish-card__label {
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(26, 46, 18, .55);
}

.finish-card--featured .finish-card__label {
    color: var(--gold);
}

/* Name */
.finish-card__name {
    font-family: var(--ff-display);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--forest);
    line-height: 1.2;
}

/* Desc */
.finish-card__desc {
    font-size: .84rem;
    line-height: 1.55;
    color: rgba(26, 46, 18, .72);
}

/* Price row */
.finish-card__price-row {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    padding: .75rem 0;
    border-top: 1px solid rgba(0, 0, 0, .06);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.finish-card--featured .finish-card__price-row {
    border-top-color: rgba(212, 164, 85, .15);
    border-bottom-color: rgba(212, 164, 85, .15);
}

.finish-card__from {
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(26, 46, 18, .55);
}

.finish-card__price {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--gold-dark);
    line-height: 1.1;
}

.finish-card__price small {
    font-family: var(--ff-body);
    font-size: .4em;
    font-weight: 600;
    color: rgba(26, 46, 18, .55);
    vertical-align: baseline;
}

/* Features list */
.finish-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    flex: 1;
}

.finish-card__list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    font-weight: 500;
    color: rgba(26, 46, 18, .72);
    line-height: 1.35;
}

.finish-card__list li::before {
    content: '';
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2374c69d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Note */
.finish-card__note {
    font-size: .7rem;
    font-weight: 500;
    color: rgba(26, 46, 18, .65);
    font-style: italic;
}

/* CTA */
.finish-card__cta {
    margin-top: auto;
}

/* Bottom CTA */
.finishes-cta {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.finishes-cta p {
    font-size: 1.05rem;
    color: rgba(26, 46, 18, .72);
}


/* ── 2i. TIMELINE — PROCESS ── */

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Step */
.timeline__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 clamp(.5rem, 1.5vw, 1rem);
}

/* Number circle */
.timeline__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--gold);
    font-family: var(--ff-display);
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(26, 46, 18, .2);
}

/* Connector line */
.timeline__connector {
    position: absolute;
    top: 22px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    height: 2px;
    background: linear-gradient(90deg, var(--forest) 0%, rgba(26, 46, 18, .15) 100%);
    z-index: 1;
}

/* Content block */
.timeline__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    margin-top: 1.25rem;
}

/* Icon */
.timeline__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    color: var(--forest-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

/* Title */
.timeline__title {
    font-family: var(--ff-display);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--forest);
    line-height: 1.2;
}

/* Desc */
.timeline__desc {
    font-size: .84rem;
    line-height: 1.55;
    color: #6b7280;
    max-width: 220px;
}

/* Detail tag */
.timeline__detail {
    display: inline-block;
    padding: .2rem .7rem;
    background: rgba(26, 46, 18, .06);
    border: 1px solid rgba(26, 46, 18, .08);
    border-radius: var(--lp-radius-pill);
    font-size: .7rem;
    font-weight: 600;
    color: var(--forest-light);
    margin-top: .15rem;
}

/* Bottom CTA */
.timeline-cta {
    text-align: center;
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.timeline-cta p {
    font-size: 1.05rem;
    color: var(--forest-light);
}


/* ── 2j. MARQUES PARTENAIRES ── */

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.5rem);
}

/* ── Brand Card ── */
.brand-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--lp-radius, 12px);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
}

/* Header avec accent couleur */
.brand-card__header {
    padding: 1.25rem 1.25rem .75rem;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
    position: relative;
}

.brand-card__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--forest, #2d5016);
}

.brand-card__badge {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .2rem .55rem;
    border-radius: 4px;
    background: rgba(45, 80, 22, .08);
    color: var(--forest, #2d5016);
    margin-bottom: .5rem;
}

.brand-card__logo {
    display: block;
    max-height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: .5rem;
}

.brand-card__name {
    font-family: var(--ff-display, 'DM Serif Display', serif);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    color: var(--forest, #2d5016);
    margin: 0 0 .2rem;
    line-height: 1.2;
}

.brand-card__origin {
    font-size: .72rem;
    font-weight: 500;
    color: #8a8a8a;
}

/* Description */
.brand-card__desc {
    padding: 1rem 1.25rem;
    font-size: .82rem;
    line-height: 1.65;
    color: #555;
    flex: 1;
}

/* Tags specs */
.brand-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    padding: 0 1.25rem .75rem;
}

.brand-card__tags span {
    font-size: .65rem;
    font-weight: 600;
    padding: .2rem .5rem;
    border-radius: 50px;
    background: var(--cream, #f5f0e8);
    color: #5a5a5a;
    white-space: nowrap;
}

/* Lien catalogue */
.brand-card__link {
    display: block;
    padding: .85rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, .04);
    font-size: .78rem;
    font-weight: 700;
    color: var(--forest, #2d5016);
    text-decoration: none;
    transition: background .25s, color .25s;
}

.brand-card__link::after {
    content: ' \2192';
    transition: transform .25s;
    display: inline-block;
}

.brand-card__link:hover {
    background: var(--forest, #2d5016);
    color: #fff;
}

.brand-card__link:hover::after {
    transform: translateX(4px);
}

/* ── Accents par marque ── */
.brand-card--husqvarna .brand-card__header::before { background: #374151; }
.brand-card--husqvarna .brand-card__badge { background: rgba(55, 65, 81, .08); color: #374151; }

.brand-card--segway .brand-card__header::before { background: #059669; }
.brand-card--segway .brand-card__badge { background: rgba(5, 150, 105, .08); color: #059669; }

.brand-card--dreame .brand-card__header::before { background: #2563eb; }
.brand-card--dreame .brand-card__badge { background: rgba(37, 99, 235, .08); color: #2563eb; }

.brand-card--mammotion .brand-card__header::before { background: #d97706; }
.brand-card--mammotion .brand-card__badge { background: rgba(217, 119, 6, .08); color: #d97706; }

.brand-card--gardena .brand-card__header::before { background: #0891b2; }
.brand-card--gardena .brand-card__badge { background: rgba(8, 145, 178, .08); color: #0891b2; }

.brand-card--worx .brand-card__header::before { background: #ea580c; }
.brand-card--worx .brand-card__badge { background: rgba(234, 88, 12, .08); color: #ea580c; }


/* ── 2k. OBJECTIONS — Q/R ── */

.objections-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.objection-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--lp-radius);
    overflow: hidden;
    transition: background .3s, border-color .3s, transform .35s;
}

.objection-card:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-3px);
}

/* Question row */
.objection-card__q {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.objection-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(212, 164, 85, .1);
    border: 1px solid rgba(212, 164, 85, .2);
    color: var(--gold);
    flex-shrink: 0;
}

.objection-card__question {
    font-family: var(--ff-display);
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    color: #fff;
    line-height: 1.3;
    padding-top: .3rem;
}

/* Answer row */
.objection-card__a {
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.objection-card__a p {
    font-size: .86rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .6);
}

.objection-card__a p strong {
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

.objection-card__tag {
    display: inline-flex;
    align-self: flex-start;
    padding: .2rem .7rem;
    background: rgba(82, 183, 136, .1);
    border: 1px solid rgba(82, 183, 136, .2);
    border-radius: var(--lp-radius-pill);
    font-size: .68rem;
    font-weight: 700;
    color: var(--mint-light);
    text-transform: uppercase;
    letter-spacing: .04em;
}


/* ── 2l. REVIEWS — Avis clients ────────────────────────── */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--lp-radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    position: relative;
    transition: transform .3s, box-shadow .3s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card--featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-sm);
}

.review-card__stars {
    display: flex;
    gap: .15rem;
}

.review-card__text {
    font-family: var(--ff-body);
    font-size: .88rem;
    line-height: 1.65;
    color: var(--forest);
    margin: 0;
    padding: 0;
    border: none;
    font-style: normal;
    flex: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding-top: .5rem;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.review-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--forest);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .02em;
    flex-shrink: 0;
}

.review-card__name {
    display: block;
    font-size: .82rem;
    font-weight: 700;
    color: var(--forest);
}

.review-card__location {
    display: block;
    font-size: .72rem;
    color: rgba(26, 46, 18, .65);
}

.review-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--mint-dark);
    background: rgba(82, 183, 136, .08);
    border: 1px solid rgba(82, 183, 136, .15);
    padding: .15rem .55rem;
    border-radius: var(--lp-radius-pill);
}

/* Note globale */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 2.5rem;
}

.reviews-summary__score {
    font-family: var(--ff-display);
    font-size: 2rem;
    color: var(--forest);
    line-height: 1;
}

.reviews-summary__score span {
    font-size: 1rem;
    color: rgba(26, 46, 18, .65);
}

.reviews-summary__stars {
    display: flex;
    gap: .15rem;
    margin-bottom: .15rem;
}

.reviews-summary__info {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.reviews-summary__info span {
    font-size: .78rem;
    color: rgba(26, 46, 18, .65);
    font-weight: 500;
}


/* ── 2m. INSTALL GALLERY — Photos installations ──────── */

.install-gallery {
    border-top: 1px solid rgba(0, 0, 0, .06);
    padding-top: 2.5rem;
}

.install-gallery__title {
    font-family: var(--ff-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--forest);
    text-align: center;
    margin-bottom: 1.5rem;
}

.install-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.install-gallery__item {
    margin: 0;
}

.install-gallery__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--lp-radius);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform .3s;
}

.install-gallery__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.install-gallery__item:hover .install-gallery__img {
    transform: scale(1.02);
}

.install-gallery__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 26, 10, .55) 100%);
    border-radius: var(--lp-radius);
    transition: opacity .3s;
}

.install-gallery__label {
    position: absolute;
    bottom: .6rem;
    left: .7rem;
    z-index: 2;
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.install-gallery__item figcaption {
    text-align: center;
    font-size: .72rem;
    color: rgba(26, 46, 18, .65);
    margin-top: .4rem;
    font-weight: 500;
}


/* ── 2n. LOCATION TEASER ────────────────────────────────── */

.location-teaser {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(255, 255, 255, .03);
    border: 1px dashed rgba(255, 255, 255, .12);
    border-radius: var(--lp-radius);
    position: relative;
}

.location-teaser__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .6);
    margin: 0 auto 1rem;
}

.location-teaser__tag {
    display: inline-block;
    padding: .2rem .8rem;
    background: rgba(212, 164, 85, .1);
    border: 1px solid rgba(212, 164, 85, .2);
    border-radius: var(--lp-radius-pill);
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.location-teaser__title {
    font-family: var(--ff-display);
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, .9);
    line-height: 1.2;
    margin-bottom: .75rem;
}

.location-teaser__desc {
    font-size: .88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 1.5rem;
}

.location-teaser__cta {
    opacity: .85;
    transition: opacity .25s, background .25s, color .25s;
}

.location-teaser__cta:hover {
    opacity: 1;
}


/* ── 2n-bis. LOCATION FULL (hidden par défaut) ──────────── */

.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--lp-gap);
    margin-top: 2.5rem;
}

.location-card {
    position: relative;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--lp-radius);
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}

.location-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

/* Featured card — gold accent */
.location-card--featured {
    border-color: var(--gold);
    background: rgba(212, 164, 85, .06);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(212, 164, 85, .15);
}

.location-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 10px 28px rgba(212, 164, 85, .25);
}

.location-card .rp-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Duration pill */
.location-card__duration {
    display: inline-block;
    align-self: flex-start;
    padding: .3rem .8rem;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--lp-radius-pill);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--mint-light);
    margin-bottom: .75rem;
}

.location-card--featured .location-card__duration {
    background: rgba(212, 164, 85, .15);
    color: var(--gold-light);
}

.location-card__name {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    color: #fff;
    margin: 0 0 1rem;
}

/* Price */
.location-card__price {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    margin-bottom: 1.25rem;
}

.location-card__amount {
    font-family: var(--ff-display);
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}

.location-card__period {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
}

/* Perks list */
.location-card__perks {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.location-card__perks li {
    position: relative;
    padding-left: 1.5rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.45;
}

.location-card__perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: 700;
}

.location-card--featured .location-card__perks li::before {
    color: var(--gold);
}

/* Conditions note */
.location-conditions {
    text-align: center;
    font-size: .78rem;
    color: rgba(255, 255, 255, .65);
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


/* ── 2o. FAQ — Accordion ─────────────────────────────────── */

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Override style.css green bg/border/radius sur .faq-item */
.faq-item {
    background: transparent;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 0;
    margin: 0;
}

.faq-item[open] {
    background: rgba(255, 255, 255, .03);
    border-bottom-color: var(--gold-dark);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

/* Question — summary */
.faq-item__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: clamp(1rem, 2.5vw, 1.35rem) .5rem;
    cursor: pointer;
    list-style: none;
    font-family: var(--ff-body);
    font-size: clamp(.9rem, 1.5vw, 1rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    transition: color .25s, background .25s;
    border-radius: var(--lp-radius-sm);
}

.faq-item[open] .faq-item__q {
    color: var(--gold);
}

/* Remove default marker */
.faq-item__q::-webkit-details-marker {
    display: none;
}

.faq-item__q::marker {
    content: '';
}

.faq-item__q:hover {
    color: var(--gold);
}

/* Chevron */
.faq-item__chevron {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform .3s ease;
}

.faq-item[open] .faq-item__chevron {
    transform: rotate(180deg);
}

/* Answer */
.faq-item__a {
    padding: 0 .5rem clamp(1rem, 2.5vw, 1.35rem) .5rem;
}

.faq-item__a p {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .74);
    max-width: 640px;
}

.faq-item__a p strong {
    color: #fff;
    font-weight: 700;
}

.faq-item__a p a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: color .2s;
}

.faq-item__a p a:hover {
    color: var(--gold);
}

/* Bottom CTA */
.faq-cta {
    text-align: center;
    margin-top: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.faq-cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .7);
}


/* ══════════════════════════════════════════════════════════════
   2p. CONTACT — Fond terre/sable nature
   ══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ── */
.rp-contact {
    position: relative;
    padding: clamp(4rem, 10vw, 7rem) 0;
    overflow: hidden;
    color: #3a3026;
}

.rp-contact__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 70% 55% at 75% 90%, rgba(45, 80, 22, .06) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 15% 25%, rgba(212, 164, 85, .08) 0%, transparent 50%),
        linear-gradient(170deg, #e8dcc8 0%, #dfd1ba 50%, #d8c9af 100%);
}

/* Liseré forêt + gold en haut de section */
.rp-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest, #2d5016), var(--gold, #d4a455), var(--forest, #2d5016));
    z-index: 1;
}

.rp-contact .container {
    position: relative;
    z-index: 1;
}

/* ── Header ── */
.rp-contact__header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.rp-contact__tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--forest, #2d5016);
    margin-bottom: .75rem;
    padding: .4rem 1rem;
    border: 1px solid rgba(45, 80, 22, .25);
    border-radius: 50px;
    background: rgba(45, 80, 22, .08);
}

.rp-contact__title {
    font-family: var(--ff-display, 'DM Serif Display', serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--forest, #2d5016);
    margin: 0 0 1rem;
}

.rp-contact__intro {
    max-width: 540px;
    margin: 0 auto;
    font-size: .95rem;
    line-height: 1.7;
    color: #6b5d4e;
}

/* ── Grid 2 colonnes ── */
.rp-contact__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

/* ── Colonne infos (droite) ── */
.rp-contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Bloc "Inclus dans votre devis" — carte forêt */
.rp-contact__inclus {
    background: linear-gradient(145deg, var(--forest, #2d5016), #1e3a0e);
    border-radius: 14px;
    padding: 1.5rem;
    color: #fff;
    box-shadow: 0 6px 24px rgba(45, 80, 22, .2);
}

.rp-contact__inclus-title {
    font-family: var(--ff-display, 'DM Serif Display', serif);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--gold-light, #dcc07e);
    margin: 0 0 1rem;
}

.rp-contact__inclus-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.rp-contact__inclus-list li {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .9);
    font-weight: 500;
}

.rp-contact__inclus-list li svg {
    color: var(--gold-light, #dcc07e);
    flex-shrink: 0;
}

/* Bloc "Contact direct" — boutons */
.rp-contact__direct {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.rp-contact__direct-title {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #8a7a68;
    margin: 0 0 .25rem;
}

.rp-contact__direct-btn {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1.1rem;
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(45, 80, 22, .12);
    border-radius: 12px;
    text-decoration: none;
    transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}

.rp-contact__direct-btn:hover {
    background: rgba(255, 255, 255, .85);
    border-color: var(--forest, #2d5016);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(45, 80, 22, .1);
}

.rp-contact__direct-btn svg {
    flex-shrink: 0;
    color: var(--forest, #2d5016);
}

.rp-contact__direct-btn div {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.rp-contact__direct-btn strong {
    font-size: .8rem;
    font-weight: 700;
    color: #3a3026;
}

.rp-contact__direct-btn span {
    font-size: .78rem;
    color: #8a7a68;
}

/* WhatsApp vert */
.rp-contact__direct-btn--wa {
    border-color: rgba(37, 211, 102, .2);
    background: rgba(37, 211, 102, .08);
}

.rp-contact__direct-btn--wa:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, .14);
    box-shadow: 0 4px 16px rgba(37, 211, 102, .1);
}

.rp-contact__direct-btn--wa svg {
    color: #1da851;
}

/* Horaires */
.rp-contact__horaires {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    color: #8a7a68;
    padding-top: .5rem;
}

.rp-contact__horaires svg {
    color: #a69880;
    flex-shrink: 0;
}

/* ── Colonne formulaire ── */
.rp-contact__form-wrap {
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(45, 80, 22, .1);
    border-top: 3px solid var(--forest, #2d5016);
    border-radius: 16px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 40px rgba(60, 45, 20, .1);
}

/* Badge au-dessus du form */
.rp-form__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .55rem 1rem;
    margin-bottom: 1.25rem;
    background: rgba(45, 80, 22, .08);
    border: 1px solid rgba(45, 80, 22, .18);
    border-radius: 50px;
    font-size: .76rem;
    font-weight: 600;
    color: var(--forest, #2d5016);
    letter-spacing: .02em;
}

.rp-form__badge svg {
    flex-shrink: 0;
    color: var(--forest, #2d5016);
}

.rp-contact__form {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

/* Rows */
.rp-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Fields */
.rp-form__field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: .75rem;
}

.rp-form__field--full {
    grid-column: 1 / -1;
}

.rp-form__field label {
    font-size: .74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #6b5d4e;
}

.rp-form__field input,
.rp-form__field select,
.rp-form__field textarea {
    width: 100%;
    padding: .75rem 1rem;
    background: rgba(255, 255, 255, .6);
    border: 1px solid rgba(45, 80, 22, .12);
    border-radius: 10px;
    color: #3a3026;
    font-family: var(--ff-body, 'Inter', sans-serif);
    font-size: .88rem;
    transition: border-color .25s, background .25s, box-shadow .25s;
    outline: none;
}

.rp-form__field input::placeholder,
.rp-form__field textarea::placeholder {
    color: #a69880;
}

.rp-form__field input:focus,
.rp-form__field select:focus,
.rp-form__field textarea:focus {
    border-color: var(--forest, #2d5016);
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, .1);
}

.rp-form__field textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

/* Select custom arrow */
.rp-form__field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232d5016' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.rp-form__field select option {
    background: #f0e5d1;
    color: #3a3026;
}

/* Options conditionnelles (finitions + pack) */
.rp-form__options-box {
    grid-column: 1 / -1;
    background: rgba(45, 80, 22, .06);
    border: 1px solid rgba(45, 80, 22, .15);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-top: -.25rem;
}

.rp-form__options-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--forest, #2d5016);
    margin: 0 0 .75rem;
}

.rp-form__options-title svg {
    flex-shrink: 0;
    color: var(--gold, #d4a455);
}

.rp-form__option-check {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .35rem .65rem;
    padding: .6rem .75rem;
    margin-bottom: .35rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
}

.rp-form__option-check:hover {
    background: rgba(45, 80, 22, .07);
}

.rp-form__option-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--forest, #2d5016);
    cursor: pointer;
    flex-shrink: 0;
}

.rp-form__option-label {
    font-size: .88rem;
    font-weight: 600;
    color: #3a3026;
}

.rp-form__option-desc {
    width: 100%;
    padding-left: calc(18px + .65rem);
    font-size: .78rem;
    color: #6b6156;
    margin-top: -.15rem;
}

/* Upload */
.rp-form__upload {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1rem 1.2rem;
    border: 2px dashed rgba(45, 80, 22, .15);
    border-radius: 10px;
    background: rgba(255, 255, 255, .35);
    cursor: pointer;
    transition: border-color .25s, background .25s;
    font-size: .82rem;
    color: #8a7a68;
}

.rp-form__upload:hover {
    border-color: var(--forest, #2d5016);
    background: rgba(255, 255, 255, .55);
}

.rp-form__upload svg {
    color: var(--forest, #2d5016);
    flex-shrink: 0;
}

.rp-form__upload strong {
    color: #4a3f32;
}

/* Submit button */
.rp-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    width: 100%;
    padding: 1.1rem 2rem;
    margin-top: .5rem;
    background: linear-gradient(135deg, var(--forest, #2d5016), #3a6b1e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--ff-body, 'Inter', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .25s;
    box-shadow: 0 4px 20px rgba(45, 80, 22, .25);
}

.rp-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(45, 80, 22, .35);
    background: linear-gradient(135deg, #3a6b1e, #4a8528);
}

.rp-form__submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(45, 80, 22, .15);
}

.rp-form__submit svg {
    flex-shrink: 0;
}

/* Legal */
.rp-form__legal {
    font-size: .72rem;
    line-height: 1.5;
    color: #a69880;
    text-align: center;
    margin-top: .75rem;
}

/* ── Responsive contact ── */
@media (max-width: 768px) {
    .rp-contact__grid {
        grid-template-columns: 1fr;
    }

    .rp-form__row {
        grid-template-columns: 1fr;
    }

    .rp-contact__info {
        order: 2;
    }

    .rp-contact__form-wrap {
        order: 1;
    }
}


/* ── 2q. MOBILE STICKY BAR ──────────────────────────────── */

.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: rgba(15, 26, 10, .95);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-top: 1px solid rgba(200, 164, 85, .15);
    padding: .5rem .75rem;
    padding-bottom: calc(.5rem + env(safe-area-inset-bottom, 0px));
    gap: .5rem;
}

.mobile-bar__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    padding: .55rem .25rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: background .2s;
}

.mobile-bar__btn svg {
    flex-shrink: 0;
}

/* Appeler */
.mobile-bar__btn--tel {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.mobile-bar__btn--tel:hover {
    background: rgba(255, 255, 255, .1);
}

/* WhatsApp */
.mobile-bar__btn--wa {
    color: #25d366;
    background: rgba(37, 211, 102, .08);
}

.mobile-bar__btn--wa:hover {
    background: rgba(37, 211, 102, .15);
}

/* Devis — CTA principal */
.mobile-bar__btn--cta {
    color: var(--forest);
    background: var(--gold);
    font-weight: 800;
}

.mobile-bar__btn--cta:hover {
    background: var(--gold-light);
}


/* ── 3. SECTIONS ── */

.lp-section {
    padding: var(--lp-section-py) 0;
    position: relative;
}

.lp-section--sm {
    padding: var(--lp-section-py-sm) 0;
}

.lp-section--dark {
    background: var(--forest);
    color: #fff;
}

.lp-section--light {
    background: var(--cream);
    color: var(--forest);
}

.lp-section--accent {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    color: var(--forest);
}

.lp-section__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.lp-section__tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--forest);
    padding: .3rem .9rem;
    border-radius: var(--lp-radius-pill);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .75rem;
}

.lp-section--dark .lp-section__tag {
    background: rgba(200, 164, 85, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(200, 164, 85, 0.2);
}

.lp-section__title {
    font-family: var(--ff-display);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    line-height: 1.15;
    margin-bottom: .6rem;
    text-wrap: balance;
}

.lp-section--dark .lp-section__title {
    color: #fff;
}

.lp-section--dark .lp-section__intro {
    color: rgba(255, 255, 255, .8);
}

.lp-section__intro {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto;
    opacity: .8;
}


/* ── 3. CARDS ── */

.rp-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: var(--lp-radius);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}

.rp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 85, .25);
}

/* Card sur fond sombre */
.lp-section--dark .rp-card {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .08);
    color: #fff;
}

.lp-section--dark .rp-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(200, 164, 85, .3);
}

/* Card image zone */
.rp-card__img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f8f7, #eeeeec);
    margin: .6rem;
    width: calc(100% - 1.2rem);
    border-radius: var(--lp-radius);
}

.rp-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.25, .46, .45, .94);
}

.rp-card:hover .rp-card__img img {
    transform: scale(1.06);
}

/* Card body */
.rp-card__body {
    padding: 1.25rem;
}

.rp-card__body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .4rem;
}

.rp-card__body p {
    font-size: .88rem;
    line-height: 1.5;
    color: #6b7280;
}

.lp-section--dark .rp-card__body p {
    color: rgba(255, 255, 255, .6);
}

/* Card footer (prix / CTA) */
.rp-card__footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, .05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.lp-section--dark .rp-card__footer {
    border-top-color: rgba(255, 255, 255, .06);
}

/* Override rp-card pour les prod-cards (catalogue) —
   .prod-card__* et .rp-card__* sont sur le même élément,
   .rp-card__* apparaît plus tard → on force les bonnes valeurs ici */

.prod-card .rp-card__img {
    aspect-ratio: 16 / 9;
    margin: .5rem;
    width: calc(100% - 1rem);
    border-radius: 12px;
}

.prod-card .rp-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 1rem 1.25rem;
}

.prod-card .rp-card__footer {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .6rem;
}


/* ── 4. BADGES ── */

.rp-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .3rem .7rem;
    border-radius: var(--lp-radius-pill);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .03em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
}

/* EN STOCK — vert */
.rp-badge--stock {
    background: #e6f7ef;
    color: #15803d;
    border: 1px solid #86efac;
}

/* BEST / POPULAIRE — gold + reflet doré */
.rp-badge--best {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--forest);
    position: relative;
    overflow: hidden;
}

.rp-badge--best::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, .5) 45%,
        rgba(255, 255, 255, .8) 50%,
        rgba(255, 255, 255, .5) 55%,
        transparent 60%
    );
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0%, 100% { left: -75%; }
    50%      { left: 125%; }
}

/* PROMO / NOUVEAU — rouge + pulse */
.rp-badge--promo {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: #fff;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(220, 38, 38, .25); }
    50%      { transform: scale(1.08); box-shadow: 0 4px 16px rgba(220, 38, 38, .4); }
}

/* BIENTÔT — gris neutre */
.rp-badge--soon {
    background: rgba(0, 0, 0, .06);
    color: #6b7280;
    border: 1px solid rgba(0, 0, 0, .08);
}

/* SUR DEMANDE — fond visible */
.rp-badge--request {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}


/* ── 5. BOUTONS — compléments landing ── */
/* .btn, .btn--primary, .btn--ghost, .btn--lg etc. viennent de style.css */

.btn--outline-gold {
    background: transparent;
    border: 1.5px solid var(--gold-dark);
    color: var(--gold-dark);
}

.btn--outline-gold:hover {
    background: var(--gold);
    color: var(--forest);
}

.btn--full { width: 100%; }


/* ── 6. UTILITAIRES ── */

.lp-container--narrow {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Specs chips */
.rp-specs {
    display: flex;
    gap: .35rem;
    flex-wrap: wrap;
}

.rp-specs span {
    font-size: .7rem;
    font-weight: 600;
    padding: .2rem .55rem;
    border-radius: var(--lp-radius-pill);
    background: rgba(26, 46, 18, .05);
    color: var(--forest-light);
    border: 1px solid rgba(26, 46, 18, .08);
}

/* Price block */
.rp-price {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.rp-price small {
    display: block;
    font-family: var(--ff-body);
    font-size: .78rem;
    font-weight: 500;
    color: var(--mint-dark);
    margin-top: .15rem;
}


/* ── 7. SCROLL OFFSET ── */

[id] {
    scroll-margin-top: calc(var(--header-h) + 16px);
}


/* ── 8. REVEAL ── */

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .55s cubic-bezier(.4, 0, .2, 1),
                    transform .55s cubic-bezier(.4, 0, .2, 1);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
}


/* ── 9. RESPONSIVE ── */

/* ── 9a. Tablet landscape (1024) ── */
@media (max-width: 1024px) {
    /* 3-col grids → 2-col to avoid cramped cards */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card--featured {
        grid-column: 1 / -1;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    /* finishes-grid: already 2-col at base, no change needed at tablet */

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

    .techno-card--featured {
        grid-column: 1 / -1;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .review-card--featured {
        grid-column: 1 / -1;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

    .location-card--featured {
        grid-column: 1 / -1;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── 9b. Tablet portrait (768) ── */
@media (max-width: 768px) {
    /* Header mobile — géré par style.css */

    /* Hero mobile — stack */
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__ctas {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: .75rem;
    }

    .hero-product {
        max-width: 320px;
    }

    /* Proof mobile — 2x2 pills */
    .proof__grid {
        grid-template-columns: 1fr 1fr;
    }

    .proof__pill {
        font-size: .76rem;
        padding: .7rem .6rem;
    }

    /* Proof cards mobile — stack */
    .proof__cards {
        grid-template-columns: 1fr;
    }

    /* Techno cards mobile — stack */
    .techno-grid {
        grid-template-columns: 1fr;
    }

    /* Featured card on top on mobile */
    .techno-card--featured {
        order: -1;
    }

    /* Catalogue grid mobile */
    .cat-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Catalogue chips mobile — scroll horizontal */
    .cat-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-left: -1rem;
        margin-right: -1rem;
        padding: 0 1rem .25rem;
    }

    .cat-chips::-webkit-scrollbar { display: none; }

    .cat-chip {
        flex-shrink: 0;
        font-size: .78rem;
    }

    /* Catalogue filters mobile */
    .cat-filters {
        padding: 1rem;
    }

    .cat-filters__field {
        min-width: calc(50% - .5rem);
        flex: none;
        width: calc(50% - .5rem);
    }

    .cat-filters__btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-top: .25rem;
    }

    /* Pricing cards mobile — stack */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card--featured {
        transform: none;
        order: -1;
    }

    .pricing-card--featured:hover {
        background: #fff;
        transform: translateY(-5px);
    }

    /* À la carte mobile — single col */
    .alacarte__grid {
        grid-template-columns: 1fr;
    }

    .alacarte__item:nth-child(odd) {
        border-right: none;
    }

    .alacarte__item:nth-last-child(2) {
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    /* Finishes mobile — stack */
    .finishes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .finish-card--featured {
        transform: none;
        order: -1;
    }

    .finish-card--featured:hover {
        background: rgba(212, 164, 85, .08);
        transform: translateY(-4px);
    }

    /* Timeline mobile — vertical */
    .timeline {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .timeline__step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 0 2rem 0;
        position: relative;
    }

    /* Vertical connector */
    .timeline__connector {
        position: absolute;
        top: 44px;
        left: 21px;
        width: 2px;
        height: calc(100% - 44px);
        background: linear-gradient(180deg, var(--forest) 0%, rgba(26, 46, 18, .1) 100%);
    }

    .timeline__number {
        flex-shrink: 0;
    }

    .timeline__content {
        align-items: flex-start;
        margin-top: 0;
        padding-top: .35rem;
    }

    .timeline__desc {
        max-width: none;
    }

    /* Brands mobile — 2 colonnes */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Objections mobile — stack */
    .objections-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Location cards mobile — stack */
    .location-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .location-card--featured {
        transform: none;
        order: -1;
    }

    .location-card--featured:hover {
        transform: translateY(-4px);
    }

    /* Reviews mobile — stack */
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .review-card--featured {
        order: -1;
    }

    /* Gallery mobile — 2 cols */
    .install-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Mobile sticky bar — show */
    .mobile-bar {
        display: flex;
    }

    /* Padding bottom pour ne pas masquer le footer */
    body {
        padding-bottom: 72px;
    }

    /* Cards stack */
    .rp-card__footer {
        flex-direction: column;
        text-align: center;
    }
}

/* ── 9c. Small mobile (480) ── */
@media (max-width: 480px) {
    /* Hero — relax line-height for multi-line title */
    .hero__title {
        line-height: 1.18;
    }

    /* Header gap géré par style.css (.site-header) */

    /* Gallery — single col */
    .install-gallery__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Brands — single col on very small */
    .brands-grid {
        grid-template-columns: 1fr;
    }

    /* Catalogue filters — stack */
    .cat-filters__field {
        min-width: 100%;
        width: 100%;
    }
}
