/* ═══════════════════════════════════════
   MOULIN JÉRÉMIE PAYSAGE — REFONTE TOTALE
   Design Organique & Immersif
   ═══════════════════════════════════════ */

/* ─── PALETTE FORÊT & TERRE ─── */
:root {
    /* Verts — charbon profond, vert très subtil */
    --forest: #0C120E;
    --forest-deep: #070A08;
    --green: #1e3a16;
    --sage: #3d6b4a;
    --leaf: #7da85e;
    --mint: #a8cc8a;

    /* Tons chauds — or champagne, moins orangé */
    --gold: #C9A76A;
    --gold-light: #F3E2BF;
    --terracotta: #b8734a;

    /* Neutres */
    --cream: #faf7f2;
    --sand: #f0ebe3;
    --stone: #e2ddd5;
    --white: #ffffff;
    --dark: #1c1c18;
    --text-dark: #2d3228;
    --text-light: #F5F2ED;
    --text-muted: #7a7a72;

    /* Typography */
    --ff-display: 'DM Serif Display', Georgia, serif;
    --ff-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;

    /* Spacing */
    --header-h: 72px;
    --section-py: clamp(64px, 10vw, 120px);
    --space-xs: clamp(0.5rem, 2vw, 0.75rem);
    --space-sm: clamp(1rem, 3vw, 1.5rem);
    --space-md: clamp(2rem, 5vw, 3rem);
    --space-lg: clamp(3rem, 8vw, 5rem);
    --space-xl: clamp(5rem, 12vw, 8rem);

    /* Radius */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-full: 50px;
    --radius-soft: 20px;
    --radius-round: 40px;

    /* Easing */
    --ease: cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-natural: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-smooth: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,.1);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.14);

    /* Effects */
    --blur-glass: blur(30px) saturate(180%);

    /* Gradients */
    --grad-forest: linear-gradient(160deg, var(--forest-deep) 0%, var(--forest) 50%, var(--green) 100%);
    --grad-leaf: linear-gradient(120deg, var(--leaf) 0%, var(--sage) 100%);
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    font-family: var(--ff-body);
    background: var(--forest);
    color: var(--text-light);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* Texture organique globale avec bruit */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(143, 188, 143, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(107, 142, 111, 0.04) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 100;
    animation: subtleShift 30s ease-in-out infinite;
}

@keyframes subtleShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ═══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════
   LOADER
   ═══════════════════════════════════════ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--forest-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.loader-logo {
    width: 80px;
    height: 80px;
    animation: loaderPulse 1.6s ease-in-out infinite;
    filter: drop-shadow(0 8px 20px rgba(140, 179, 105, 0.3));
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

/* Barre de progression */
.loader-progress-bar {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.loader-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--leaf);
    border-radius: 3px;
    animation: loaderProgress 1.5s ease-out forwards;
    box-shadow: 0 0 10px rgba(140, 179, 105, 0.5);
}

@keyframes loaderProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* ═══════════════════════════════════════
   BANDEAU PROMO
   ═══════════════════════════════════════ */

.promo-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(90deg, var(--green), var(--sage));
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.promo-banner.hidden {
    display: none;
}

.promo-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.promo-text {
    font-size: 0.85rem;
    color: white;
    text-align: center;
    font-weight: 500;
    line-height: 1.4;
}

.promo-link {
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: underline;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.promo-link:hover {
    color: var(--gold);
}

.promo-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.promo-close:hover {
    opacity: 1;
}

/* Ajuster le header pour compenser le bandeau */
body:not(.promo-hidden) .site-header {
    top: 36px;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .promo-text {
        font-size: 0.8rem;
        padding-right: 2rem;
    }

    .promo-close {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 1000;
    background: rgba(12, 18, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(140, 179, 105, 0.08);
    transition: transform 0.4s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(7, 10, 8, 0.96);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

/* Container */
.site-header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: var(--space-md);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    display: block;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-logo-name {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1;
}

.nav-logo-tagline {
    font-family: var(--ff-body);
    font-size: 0.65rem;
    color: var(--leaf);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(245, 242, 237, 0.7);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

/* Soulignement doré animé */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after {
    transform: scaleX(1);
}

/* Nav right */
.nav-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Téléphone */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-phone svg {
    width: 18px;
    height: 18px;
}

.nav-phone:hover {
    color: var(--gold);
}

/* Bouton CTA */
.nav-cta {
    display: inline-block;
    padding: 0.5rem 1.3rem;
    background: var(--gold);
    color: var(--forest-deep);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: var(--r-full);
    transition: all 0.3s var(--ease);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 164, 92, 0.4);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile - Masquer nav et phone sous 960px */
@media (max-width: 960px) {
    .nav-links,
    .nav-phone,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Menu mobile fullscreen */
    .nav-links.show {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: rgba(7, 10, 8, 0.98);
        backdrop-filter: blur(24px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.show a {
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--text-light);
    }
}

/* ═══════════════════════════════════════
   HERO PREMIUM — PLEIN ÉCRAN
   ═══════════════════════════════════════ */

#hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-h) + var(--space-lg)) var(--space-md) var(--space-xl);
}

/* Couche 1 — Image de fond avec zoom lent */
.hero-bg {
    position: absolute;
    inset: -30px;
    background: url('images/gardenner.jpg.jpeg') center/cover no-repeat;
    filter: brightness(0.35) saturate(1.15);
    animation: heroZoom 30s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

/* Couche 2 — Overlay dégradé */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 8, 0.35) 0%, rgba(12, 18, 14, 0.65) 50%, rgba(7, 10, 8, 0.94) 100%);
    z-index: 1;
}

/* Couche 3 — Grain SVG */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)"/></svg>');
    background-repeat: repeat;
}

/* Container et contenu */
#hero .container {
    position: relative;
    z-index: 4;
    max-width: 1400px;
    width: 100%;
}

.hero-content {
    max-width: 720px;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(74, 124, 89, 0.15);
    border: 1px solid rgba(140, 179, 105, 0.3);
    border-radius: var(--r-full);
    color: var(--leaf);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-md);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.7s var(--ease) 0.4s forwards;
}

/* Titre */
.hero-title {
    font-family: var(--ff-display);
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s var(--ease) 0.6s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--leaf);
    display: block;
    font-weight: 400;
}

/* Sous-titre */
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.7s var(--ease) 0.85s forwards;
}

.hero-subtitle--mobile {
    display: none;
}

/* Boutons */
.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 0.8s var(--ease) 1.1s forwards;
}

.hero-actions .btn svg {
    transition: transform 0.3s ease;
}

.hero-actions .btn:hover svg {
    transform: translateX(4px);
}

/* Barre de confiance */
.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    opacity: 1;
    margin-top: var(--space-md);
}

.hero-trust-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-shadow: 0 3px 15px rgba(200, 164, 92, 0.8);
    filter: drop-shadow(0 0 8px rgba(200, 164, 92, 0.5));
}

.hero-trust-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-fiscal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--forest-deep);
    background: var(--gold);
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.hero-fiscal-badge svg {
    flex-shrink: 0;
}

/* Indicateur de scroll */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: heroReveal 0.8s var(--ease) 1.8s forwards;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.scroll-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--leaf);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--leaf);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(250%); opacity: 0; }
}

/* Animation d'entrée commune */
@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    .hero-trust {
        justify-content: flex-start;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* Hero court (pour page robot-tondeuse) */
.hero--short {
    min-height: 60vh;
}

.hero--short .hero-content {
    padding-top: calc(var(--header-h) + 2rem);
}

/* ═══════════════════════════════════════
   STEPS TIMELINE (Comment ça marche)
   ═══════════════════════════════════════ */

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}

/* Ligne de connexion */
.steps-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--stone);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--forest-deep);
    font-family: var(--ff-display);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(200, 164, 92, 0.3);
}

.step h3 {
    font-family: var(--ff-display);
    font-size: 1.1rem;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-timeline::before {
        display: none;
    }
}

/* ═══════════════════════════════════════
   BENEFITS GRID (Avantages)
   ═══════════════════════════════════════ */

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

.benefit-card {
    background: rgba(140, 179, 105, 0.06);
    border: 1px solid rgba(140, 179, 105, 0.12);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s var(--ease);
}

.benefit-card:hover {
    background: rgba(140, 179, 105, 0.12);
    transform: translateY(-4px);
}

.benefit-card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.benefit-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.8;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   PRICING GRID (Tarifs détaillés)
   ═══════════════════════════════════════ */

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

.price-card {
    background: white;
    border: 1px solid var(--stone);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s var(--ease);
}

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

.price-card--popular {
    border: 2px solid var(--gold);
    box-shadow: 0 8px 30px rgba(200, 164, 92, 0.15);
    transform: scale(1.03);
}

.price-card--popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.price-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--forest-deep);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.price-card-header h3 {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    color: var(--forest);
    margin-bottom: 0.25rem;
}

.price-surface {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.price-amount {
    font-family: var(--ff-display);
    font-size: 2.8rem;
    color: var(--gold);
    margin: 1.5rem 0;
    line-height: 1;
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--ff-body);
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    padding: 0;
}

.price-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--leaf);
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-style: italic;
}

@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .price-card--popular {
        transform: none;
    }

    .price-card--popular:hover {
        transform: translateY(-4px);
    }
}

/* ═══════════════════════════════════════
   BARRE DE CONFIANCE
   ═══════════════════════════════════════ */

.trust-bar {
    background: var(--forest-deep);
    border-top: 1px solid rgba(140, 179, 105, 0.2);
    border-bottom: 1px solid rgba(140, 179, 105, 0.2);
    padding: 2.5rem var(--space-md);
    position: relative;
    z-index: 1;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-item > span:first-child {
    display: flex;
    align-items: baseline;
}

.trust-number {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(200, 164, 92, 0.3);
}

.trust-plus,
.trust-percent,
.trust-unit {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold);
    opacity: 0.9;
}

.trust-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(140, 179, 105, 0.3);
}

/* Mobile responsive */
@media (max-width: 640px) {
    .trust-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg) var(--space-md);
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        gap: 0.4rem;
    }
}

/* ═══════════════════════════════════════
   SYSTÈME DE BOUTONS
   ═══════════════════════════════════════ */

/* Base commune */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--r-full);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

/* Effet shine - bande lumineuse qui traverse */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.btn:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Bouton primary - Doré */
.btn--primary {
    background: var(--gold);
    color: var(--forest-deep);
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 164, 92, 0.35);
}

/* Bouton ghost - Transparent */
.btn--ghost {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(245, 242, 237, 0.35);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

/* Bouton accent - Vert */
.btn--accent {
    background: var(--leaf);
    color: var(--forest-deep);
}

.btn--accent:hover {
    background: var(--mint);
    transform: translateY(-2px);
}

/* Tailles */
.btn--lg {
    padding: 1rem 2.2rem;
    font-size: 0.95rem;
}

.btn--sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

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

/* ═══════════════════════════════════════
   SECTIONS COMMUNES
   ═══════════════════════════════════════ */

/* Section base */
.section {
    padding: var(--section-py) 0;
    position: relative;
}

/* Variantes de fond */
.section--dark {
    background: var(--forest);
    color: var(--text-light);
}

.section--light {
    background: var(--cream);
    color: var(--text-dark);
}

.section--accent {
    background: linear-gradient(160deg, var(--forest-deep), #0A0F0B);
    color: var(--text-light);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.container--narrow {
    max-width: 820px;
}

/* Section header */
.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    position: relative;
}

/* Section tag (petit label au-dessus du titre) */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--leaf);
    margin-bottom: var(--space-xs);
}

/* Tag sur fond clair */
.section--light .section-tag {
    color: var(--sage);
}

/* Section title */
.section-title {
    font-family: var(--ff-display);
    font-size: clamp(2.125rem, 4vw, 2.75rem); /* 34-44px selon guidelines dépliant */
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

/* Title sur fond clair */
.section--light .section-title {
    color: var(--forest);
}

/* Section intro (paragraphe sous le titre) */
.section-intro {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.7;
    opacity: 0.75;
}

/* Intro sur fond clair */
.section--light .section-intro {
    color: var(--text-muted);
}

/* Value Items - Premium avec animations */
.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm);
    border-radius: var(--radius-soft);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: pointer;
}

.value-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(143, 188, 143, 0.15) 0%, transparent 70%);
    border-radius: var(--radius-soft);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Icône générique (emoji) - utilisé en dehors de la section À propos */
.value-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 12px rgba(143, 188, 143, 0.3));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.value-item:hover .value-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 8px 20px rgba(143, 188, 143, 0.5));
}

.value-item span:last-child {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.value-item:hover span:last-child {
    color: var(--sage);
    transform: scale(1.1);
}

/* ═══════════════════════════════════════
   SERVICES — GRILLE MODERNE
   ═══════════════════════════════════════ */

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

/* Service Card */
.svc-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease);
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Zone image */
.svc-card-img {
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--sand), var(--stone));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.svc-card-img img {
    width: 55%;
    max-width: 160px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.svc-card:hover .svc-card-img img {
    transform: scale(1.1);
}

/* Overlay au hover */
.svc-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 94, 30, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.svc-card:hover .svc-card-overlay {
    opacity: 1;
}

/* Corps de carte */
.svc-card-body {
    padding: 1.5rem;
}

.svc-card-body h3 {
    font-family: var(--ff-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.svc-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Tags */
.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.svc-tags span {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--sand);
    color: var(--sage);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 50px;
    white-space: nowrap;
}

.svc-tag--fiscal {
    background: var(--gold) !important;
    color: var(--forest-deep) !important;
}

/* CTA vers page services complète */
.services-cta {
    text-align: center;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(140, 179, 105, 0.12);
}

.services-cta p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 960px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   HERO SERVICE CARDS (index teaser)
   ═══════════════════════════════════════ */

/* -- Card container -- */
.svc-card--hero {
    position: relative;
    min-height: 420px;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--forest);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.5s var(--ease),
                box-shadow 0.5s var(--ease);
}

.svc-card--hero:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* -- Background image (full bleed) -- */
.svc-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s var(--ease-natural),
                filter 0.5s ease;
    z-index: 0;
}

.svc-card--hero:hover .svc-card__bg {
    transform: scale(1.06);
    filter: brightness(0.95);
}

/* -- Gradient overlay (bottom → top for readability) -- */
.svc-card--hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(7, 10, 8, 0.92) 0%,
        rgba(7, 10, 8, 0.62) 35%,
        rgba(7, 10, 8, 0.2) 60%,
        transparent 100%
    );
    z-index: 1;
    pointer-events: none;
    transition: background 0.4s ease;
}

.svc-card--hero:hover::after {
    background: linear-gradient(to top,
        rgba(7, 10, 8, 0.96) 0%,
        rgba(7, 10, 8, 0.7) 40%,
        rgba(7, 10, 8, 0.24) 65%,
        transparent 100%
    );
}

/* -- Gold accent line (appears on hover) -- */
.svc-card--hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.svc-card--hero:hover::before {
    transform: scaleX(1);
}

/* -- Content overlay (positioned at bottom) -- */
.svc-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: transform 0.4s var(--ease);
}

.svc-card--hero:hover .svc-card__content {
    transform: translateY(-4px);
}

/* -- Title -- */
.svc-card__title {
    font-family: var(--ff-display);
    font-size: clamp(1.35rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* -- Description -- */
.svc-card__desc {
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    margin: 0;
    max-width: 320px;
    transition: color 0.3s ease;
}

.svc-card--hero:hover .svc-card__desc {
    color: rgba(255, 255, 255, 0.95);
}

/* -- Chips -- */
.svc-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.svc-chip {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: var(--r-full);
    border: 1px solid rgba(200, 164, 92, 0.25);
    white-space: nowrap;
    letter-spacing: 0.02em;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.svc-card--hero:hover .svc-chip {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(200, 164, 92, 0.45);
}

/* -- CTA button inside card -- */
.svc-card__cta {
    align-self: flex-start;
    margin-top: 0.25rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s var(--ease) 0.05s,
                transform 0.4s var(--ease) 0.05s;
}

.svc-card--hero:hover .svc-card__cta {
    opacity: 1;
    transform: translateY(0);
}

/* -- Hero cards: keep 3 cols on tablet -- */
@media (max-width: 960px) {
    .svc-card--hero {
        min-height: 360px;
    }

    .services-grid:has(.svc-card--hero) {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

/* ═══════════════════════════════════════
   CITATION PARALLAXE
   ═══════════════════════════════════════ */

.quote-parallax {
    position: relative;
    min-height: 400px;
    padding: clamp(60px, 12vw, 140px) var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background image with filter */
.quote-parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/gardenner.jpg.jpeg') center 40% / cover no-repeat;
    background-attachment: fixed;
    filter: brightness(0.3) saturate(1.2);
    z-index: 0;
}

/* Dark overlay gradient */
.quote-parallax::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 18, 14, 0.5) 0%, rgba(7, 10, 8, 0.75) 100%);
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
}

.quote-text {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    color: var(--white);
    line-height: 1.4;
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.quote-author {
    display: block;
    font-size: 0.9rem;
    color: var(--leaf);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.05em;
}

/* Fallback for browsers that don't support fixed backgrounds */
@media (max-width: 768px) {
    .quote-parallax::before {
        background-attachment: scroll;
    }
}

/* ═══════════════════════════════════════
   À PROPOS — 2 COLONNES AVEC BADGE
   ═══════════════════════════════════════ */

.about-layout {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

/* Photo avec badge — sticky sur desktop */
.about-photo {
    position: sticky;
    top: 120px;
}

.about-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 28px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .25),
        0 0 0 1px rgba(255, 255, 255, .06);
    display: block;
    transition: transform .6s ease, box-shadow .6s ease;
}

.about-photo:hover img {
    transform: scale(1.015);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, .3),
        0 0 0 1px rgba(255, 255, 255, .08);
}

/* Badge overlay */
.about-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gold);
    color: var(--forest-deep);
    border-radius: 14px;
    padding: 0.9rem 1.3rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.badge-number {
    display: block;
    font-family: var(--ff-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.1rem;
}

.badge-region {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Contenu texte */
.about-content {
    color: var(--cream);
}

.about-content .section-tag {
    margin-bottom: var(--space-sm);
}

.about-content .section-title {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

/* Sous-titre "Paysagiste diplômé" — accroche forte */
.about-lead {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1.75rem !important;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .95) !important;
}

.about-lead strong {
    color: var(--gold);
    font-weight: 700;
}

/* Desktop / Mobile toggle */
.about-text--mobile {
    display: none;
}

/* Paragraphes histoire */
.about-content p {
    font-size: .98rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.1rem;
}

/* Dernier paragraphe — promesse — plus visible */
.about-content p:last-of-type {
    color: rgba(255, 255, 255, .9);
}

.about-content p strong {
    color: var(--gold);
    font-weight: 600;
}

/* 3 valeurs — horizontal sur desktop */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.25rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .75rem;
    padding: 1.25rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: all .35s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(197, 165, 114, .2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

/* Icônes de la section À propos */
.about-values .value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(140, 179, 105, 0.12);
    border: 1px solid rgba(140, 179, 105, 0.2);
    border-radius: 14px;
    flex-shrink: 0;
    transition: all .35s ease;
}

.value-item:hover .value-icon {
    background: rgba(197, 165, 114, .15);
    border-color: rgba(197, 165, 114, .3);
}

.about-values .value-icon svg {
    stroke: var(--leaf);
    width: 22px;
    height: 22px;
    transition: stroke .35s ease;
}

.value-item:hover .value-icon svg {
    stroke: var(--gold);
}

.value-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.value-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   ZONE D'INTERVENTION
   ═══════════════════════════════════════ */

/* Section — fond dégradé riche avec décoration */
.section--zone {
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(140, 179, 105, .12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 85% 20%, rgba(197, 165, 114, .08) 0%, transparent 50%),
        linear-gradient(170deg, #0d1f05 0%, #1a3a0e 40%, #162e0a 100%);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Décoration subtile — cercle lumineux */
.section--zone::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 165, 114, .06) 0%, transparent 70%);
    pointer-events: none;
}

.section--zone .section-tag {
    color: var(--gold);
}

.section--zone .section-title {
    color: var(--white);
}

/* Barre info : badge zone + rayon */
.zone-info-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1.5rem;
    margin-bottom: 2.5rem;
}

.zone-badge,
.zone-rayon {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 600;
    padding: .6rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.zone-badge {
    background: rgba(197, 165, 114, .12);
    color: var(--gold);
    border: 1px solid rgba(197, 165, 114, .25);
    box-shadow: 0 2px 12px rgba(197, 165, 114, .1);
}

.zone-rayon {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .1);
}

/* Layout grille : carte + villes */
.zone-layout {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
}

/* Carte Leaflet — avec glow */
.zone-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, .3),
        0 0 0 1px rgba(255, 255, 255, .08);
}

.zone-map::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
    pointer-events: none;
    z-index: 401;
}

#zoneMap {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: 1;
}

/* Bouton "Nous localiser" — recentrer la carte */
.zone-recenter {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 402;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .5rem 1rem;
    background: rgba(12, 18, 14, .94);
    backdrop-filter: blur(8px);
    color: var(--gold);
    font-family: var(--ff-body);
    font-size: .78rem;
    font-weight: 600;
    border: 1px solid rgba(197, 165, 114, .3);
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .3);
}

.zone-recenter:hover {
    background: var(--gold);
    color: var(--forest);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, .35);
}

.zone-recenter svg {
    flex-shrink: 0;
}

/* Pill active — quand une ville est sélectionnée */
.commune-pill.active {
    background: var(--gold);
    color: var(--forest);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(197, 165, 114, .3);
}

.commune-pill.active::before {
    background: var(--forest);
}

/* Pill hors zone */
.commune-pill.hors-zone {
    opacity: .5;
    cursor: not-allowed;
}

/* Leaflet popup personnalisé */
.leaflet-popup-content-wrapper {
    background: rgba(12, 18, 14, .96);
    backdrop-filter: blur(8px);
    color: var(--cream);
    border: 1px solid rgba(197, 165, 114, .25);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.leaflet-popup-content {
    margin: 10px 14px;
    font-family: var(--ff-body);
    font-size: .85rem;
    line-height: 1.5;
}

.leaflet-popup-content strong {
    color: var(--gold);
    font-family: var(--ff-heading);
    font-size: 1rem;
}

.leaflet-popup-tip {
    background: rgba(12, 18, 14, .96);
    border: 1px solid rgba(197, 165, 114, .25);
}

/* Panneau villes — glassmorphism */
.zone-villes {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 1.5rem;
}

.zone-villes-label {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

/* Pills cliquables — style amélioré */
.zone-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.commune-pill {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .45rem .95rem;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .88);
    font-family: var(--ff-body);
    font-size: .8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* Icône pin subtile avant le texte */
.commune-pill::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(140, 179, 105, .5);
    flex-shrink: 0;
    transition: all .3s ease;
}

.commune-pill:hover {
    background: var(--gold);
    color: var(--forest);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, .35);
}

.commune-pill:hover::before {
    background: var(--forest);
}

/* Note bas */
.zone-note {
    font-size: .82rem;
    color: rgba(255, 255, 255, .45);
    font-style: italic;
    line-height: 1.6;
    margin-top: auto;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.zone-note a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: color .3s ease;
}

.zone-note a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Boutons CTA zone — séparateur subtil */
.zone-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    position: relative;
}

.zone-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 165, 114, .4), transparent);
}

/* Ghost button — adapté fond sombre */
.section--zone .btn--ghost {
    color: rgba(255, 255, 255, .85);
    border-color: rgba(255, 255, 255, .2);
}

.section--zone .btn--ghost:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .35);
    color: var(--white);
}

/* Responsive zone */
@media (max-width: 768px) {
    .section--zone::before {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -40px;
    }

    .zone-layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .zone-map {
        height: 300px;
        border-radius: 16px;
    }

    .zone-map::after {
        border-radius: 16px;
    }

    #zoneMap {
        border-radius: 16px;
    }

    .zone-recenter {
        bottom: 10px;
        right: 10px;
        font-size: .72rem;
        padding: .4rem .8rem;
    }

    .zone-villes {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .zone-info-bar {
        flex-direction: column;
        align-items: center;
        gap: .5rem;
        margin-bottom: 1.5rem;
    }

    .zone-cta {
        flex-direction: column;
        align-items: center;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .zone-cta .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

/* ═══════════════════════════════════════
   RÉALISATIONS / PORTFOLIO
   ═══════════════════════════════════════ */

/* Filtres */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.filter-btn {
    padding: 0.65rem 1.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--ff-body);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(.25,.46,.45,.94);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    backdrop-filter: blur(6px);
}

.filter-btn:hover {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(140, 179, 105, 0.15);
    border-color: rgba(140, 179, 105, 0.35);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--forest-deep);
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(200, 164, 92, .25);
    transform: translateY(-2px);
}

/* Grille portfolio — centrage automatique */
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    width: calc((100% - 3rem) / 3);
    transition: transform 0.5s cubic-bezier(.25,.46,.45,.94),
                box-shadow 0.5s cubic-bezier(.25,.46,.45,.94),
                opacity 0.4s ease;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.portfolio-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3), 0 0 0 1px rgba(140, 179, 105, .15);
}

/* Animation pop-in */
@keyframes portfolioPopIn {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation pop-out */
@keyframes portfolioPopOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.6);
    }
}

.portfolio-item.pop-in {
    animation: portfolioPopIn 0.45s cubic-bezier(.34,1.56,.64,1) forwards;
}

.portfolio-item.pop-out {
    animation: portfolioPopOut 0.3s cubic-bezier(.55,.06,.68,.19) forwards;
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
}

/* Placeholder avec dégradé */
.placeholder-gradient {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.7s cubic-bezier(.25,.46,.45,.94), filter .5s ease;
}

.portfolio-item:hover .placeholder-gradient {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.placeholder-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(8px);
}

/* Voile dégradé permanent (titre toujours lisible) */
.portfolio-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(0, 0, 0, .7) 0%,
        rgba(0, 0, 0, .25) 35%,
        transparent 65%
    );
    z-index: 1;
    pointer-events: none;
    transition: opacity .4s ease;
}

.portfolio-item:hover .portfolio-image::after {
    background: linear-gradient(to top,
        rgba(0, 0, 0, .85) 0%,
        rgba(0, 0, 0, .35) 45%,
        transparent 70%
    );
}

/* Info — toujours visible en bas */
.portfolio-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1.5rem 1.25rem;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s var(--ease);
}

.portfolio-info h3 {
    font-family: var(--ff-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    transition: transform .35s ease;
}

.portfolio-item:hover .portfolio-info h3 {
    transform: translateY(-4px);
}

.portfolio-info p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color .35s ease, transform .35s ease;
}

.portfolio-item:hover .portfolio-info p {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Bouton afficher plus */
.portfolio-showmore-wrap {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.portfolio-showmore-wrap.hidden {
    display: none;
}

.portfolio-showmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--ff-body);
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
    backdrop-filter: blur(6px);
}

.portfolio-showmore-btn:hover {
    color: #fff;
    background: rgba(140, 179, 105, 0.15);
    border-color: rgba(140, 179, 105, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(140, 179, 105, 0.15);
}

.portfolio-showmore-btn svg {
    transition: transform 0.3s ease;
}

.portfolio-showmore-btn:hover svg {
    transform: translateY(3px);
}

/* CTA en bas */
.portfolio-cta {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(140, 179, 105, 0.15);
}

.portfolio-cta-text {
    font-family: var(--ff-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--text-light);
    margin-bottom: var(--space-md);
    font-style: italic;
}

/* ─── LIGHTBOX PORTFOLIO ─── */
.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: background 0.4s ease, opacity 0.4s ease, visibility 0s 0.4s;
}

.portfolio-lightbox.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.85);
    transition: background 0.4s ease, opacity 0.4s ease, visibility 0s;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.8rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    backdrop-filter: blur(8px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-content {
    display: flex;
    gap: 2.5rem;
    max-width: 1100px;
    width: 90%;
    max-height: 85vh;
    transform: scale(0.85) translateY(30px);
    transition: transform 0.45s cubic-bezier(.34, 1.56, .64, 1);
}

.portfolio-lightbox.active .lightbox-content {
    transform: scale(1) translateY(0);
}

.lightbox-visual {
    flex: 1.4;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 350px;
    max-height: 75vh;
}

.lightbox-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 16px;
    overflow: hidden;
}

.lightbox-img-wrap .placeholder-gradient {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Before/After Slider ─── */
.lightbox-ba {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 16px;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
}

.lightbox-ba.hidden {
    display: none;
}

.ba-before,
.ba-after {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ba-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
}

.ba-after {
    z-index: 1;
}

.ba-before .placeholder-gradient,
.ba-after .placeholder-gradient {
    width: 100%;
    height: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    inset: 0;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    pointer-events: none;
}

.ba-handle-line {
    width: 3px;
    flex: 1;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 0 8px rgba(0,0,0,.4);
}

.ba-handle-circle {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
    color: var(--forest-deep, #070A08);
    flex-shrink: 0;
}

.ba-label {
    position: absolute;
    bottom: 1rem;
    z-index: 4;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(0,0,0,.5);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.ba-label--before { left: 1rem; }
.ba-label--after { right: 1rem; }

/* ─── Lightbox Details Panel ─── */
.lightbox-details {
    flex: 0.6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.lightbox-title {
    font-family: var(--ff-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: #fff;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.lightbox-location {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.lightbox-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--forest-deep);
    background: var(--gold);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.lightbox-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* Responsive lightbox */
@media (max-width: 960px) {
    .lightbox-content {
        flex-direction: column;
        gap: 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }

    .lightbox-visual {
        max-height: 45vh;
    }

    .lightbox-details {
        padding: 0 0.5rem 1.5rem;
    }
}

/* ─── Responsive grid ─── */
@media (max-width: 960px) {
    .portfolio-item {
        width: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 640px) {
    .portfolio-item {
        width: 100%;
    }

    .portfolio-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }
}

/* ═══════════════════════════════════════
   ROBOTS TONDEUSES
   ═══════════════════════════════════════ */

#robot-tondeuse {
    background: linear-gradient(160deg, var(--forest-deep), #0A0F0B);
}

.robot-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: var(--space-lg);
    align-items: center;
}

/* Colonne texte */
.robot-content {
    max-width: 600px;
}

.robot-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

/* Avantages */
.robot-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(140, 179, 105, 0.3));
}

.benefit-text strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.benefit-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Tarifs */
.robot-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: var(--space-md);
}

.pricing-card {
    background: rgba(140, 179, 105, 0.08);
    border: 1px solid rgba(140, 179, 105, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s var(--ease);
    position: relative;
}

.pricing-card:hover {
    background: rgba(140, 179, 105, 0.12);
    border-color: rgba(140, 179, 105, 0.3);
    transform: translateY(-4px);
}

/* Carte populaire */
.pricing-card--popular {
    background: rgba(200, 164, 92, 0.15);
    border: 2px solid var(--gold);
}

.pricing-card--popular:hover {
    background: rgba(200, 164, 92, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--forest-deep);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.pricing-surface {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--leaf);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
}

.pricing-price span {
    font-size: 0.9rem;
    font-family: var(--ff-body);
    opacity: 0.8;
}

.robot-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

/* Colonne visuel */
.robot-visual {
    position: relative;
}

.robot-placeholder {
    min-height: 400px;
    background: linear-gradient(135deg, var(--green) 0%, var(--sage) 50%, var(--leaf) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.robot-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
}

.robot-placeholder .placeholder-label {
    position: relative;
    z-index: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(8px);
}

/* Responsive */
@media (max-width: 960px) {
    .robot-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .robot-visual {
        order: -1;
    }

    .robot-content {
        max-width: 100%;
    }

    .robot-pricing {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .robot-benefits {
        gap: var(--space-sm);
    }

    .benefit-icon {
        font-size: 1.5rem;
    }

    .benefit-text strong {
        font-size: 0.95rem;
    }

    .benefit-text p {
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════
   TÉMOIGNAGES CLIENTS
   ═══════════════════════════════════════ */

#temoignages {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

/* Testimonial Card */
.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--ease);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 0 1.5rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sand);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--forest);
}

.author-details {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Google Reviews Link */
.testimonials-cta {
    text-align: center;
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: var(--white);
    border-radius: var(--r-full);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

.google-reviews-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.google-reviews-link svg {
    flex-shrink: 0;
}

.google-reviews-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: flex-start;
}

.google-reviews-text > span:first-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.google-rating {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 960px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

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

    .google-reviews-link {
        padding: 0.85rem 1.5rem;
    }

    .google-reviews-text {
        align-items: center;
    }
}

/* ═══════════════════════════════════════
   FAQ — ACCORDÉON NATIF
   ═══════════════════════════════════════ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(140, 179, 105, 0.06);
    border: 1px solid rgba(140, 179, 105, 0.1);
    border-radius: 12px;
    transition: border-color 0.3s var(--ease);
}

.faq-item[open] {
    border-color: rgba(140, 179, 105, 0.25);
}

/* Question (summary) */
.faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: color 0.3s ease;
    user-select: none;
}

/* Hide native marker */
.faq-question::-webkit-details-marker {
    display: none;
}

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

/* Custom + icon using pseudo-elements */
.faq-question::before,
.faq-question::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    width: 12px;
    height: 2px;
    background: var(--leaf);
    transition: transform 0.3s var(--ease);
}

.faq-question::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-question::before {
    transform: translateY(-50%);
}

/* When open, rotate vertical bar to create minus */
.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(0deg);
}

/* Answer */
.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* ═══════════════════════════════════════
   CONTACT — FORMULAIRE COMPLET
   ═══════════════════════════════════════ */

/* Callout fiscal */
.fiscal-callout {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(140, 179, 105, 0.1) 0%, rgba(200, 164, 92, 0.08) 100%);
    border: 1px solid rgba(140, 179, 105, 0.25);
    border-left: 4px solid var(--sage);
    padding: 1rem 1.5rem;
    border-radius: 0 12px 12px 0;
    margin-top: 1.5rem;
}

.fiscal-callout svg {
    flex-shrink: 0;
    color: var(--sage);
}

.fiscal-callout p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin: 0;
}

/* Layout 2 colonnes : infos 38% + formulaire 62% */
.contact-layout {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 2.5rem;
    margin-top: 3rem;
}

/* ─── COLONNE INFOS ─── */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Cartes infos */
.info-card {
    background: white;
    border: 1px solid var(--stone);
    border-radius: 12px;
    padding: 1.3rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s var(--ease);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-text strong {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-text span {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.info-subtext {
    font-size: 0.8rem !important;
    color: var(--sage) !important;
    font-weight: 400 !important;
}

/* Réseaux sociaux */
.contact-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--stone);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    transition: all 0.3s var(--ease);
}

.social-circle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-circle:hover {
    color: var(--leaf);
    border-color: var(--leaf);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(140, 179, 105, 0.15);
}

/* ─── COLONNE FORMULAIRE ─── */
.contact-form-column {
    background: white;
    border: 1px solid var(--stone);
    border-radius: 16px;
    padding: 2rem;
}

/* Rangées de 2 champs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Champs individuels */
.form-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-field label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--sage);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    background: white;
    border: 1px solid var(--stone);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.3s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--sage);
    background: rgba(140, 179, 105, 0.03);
}

/* Focus visible pour l'accessibilité */
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 2px;
}

/* Select personnalisé avec flèche custom */
.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='%234a7c59' 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;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Upload photos avec label custom */
.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    border: 2px dashed var(--stone);
    border-radius: 12px;
    background: rgba(140, 179, 105, 0.02);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.file-upload-label:hover {
    border-color: var(--sage);
    background: rgba(140, 179, 105, 0.05);
}

.file-upload-label svg {
    width: 32px;
    height: 32px;
    stroke: var(--sage);
    flex-shrink: 0;
}

.file-upload-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.file-upload-text strong {
    font-size: 0.9rem;
    color: var(--forest);
}

.file-upload-text small {
    font-size: 0.75rem;
    color: var(--sage);
}

/* Bouton submit */
.contact-form button[type="submit"] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    background: var(--gold);
    color: var(--forest-deep);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    margin-top: 0.5rem;
}

.contact-form button[type="submit"] svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.contact-form button[type="submit"]:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 92, 0.3);
}

.contact-form button[type="submit"]:active {
    transform: translateY(0);
}

/* Texte légal */
.form-legal {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--sage);
    margin-top: 1rem;
    text-align: center;
}

.form-legal a {
    color: var(--forest);
    text-decoration: none;
}

.form-legal a:hover {
    text-decoration: underline;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-column {
        padding: 1.5rem;
    }
}

/* ═══════════════════════════════════════
   FOOTER COMPLET
   ═══════════════════════════════════════ */

.site-footer {
    background: var(--forest-deep);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem var(--space-md) 2rem;
    position: relative;
}

/* Bordure haute 1px vert transparent */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(140, 179, 105, 0.15);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* ─── ZONE HAUTE — 4 COLONNES ─── */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
}

/* Colonne 1 : Logo + Description */
.footer-col--brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 4px 12px rgba(140, 179, 105, 0.25));
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo-text strong {
    font-family: var(--ff-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

/* Titres des colonnes */
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Liens de navigation */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--leaf);
    opacity: 1;
    transform: translateX(3px);
}

/* Contact links */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact-link:hover {
    color: var(--leaf);
    opacity: 1;
}

.footer-contact-link:hover svg {
    opacity: 1;
}

/* ─── BANDEAU FISCAL FOOTER ─── */
.footer-fiscal {
    text-align: center;
    padding: 1rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-fiscal p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-fiscal strong {
    color: var(--gold);
}

/* ─── ZONE BASSE — COPYRIGHT & LÉGAL ─── */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-copyright,
.footer-legal,
.footer-links-legal {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    margin: 0;
}

.footer-links-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-legal a:hover {
    color: var(--leaf);
    text-decoration: underline;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-col--brand .footer-logo {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col h4 {
        font-size: 0.8rem;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        gap: 0.75rem;
    }

    .footer-copyright,
    .footer-legal,
    .footer-links-legal {
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════
   SCROLL TO TOP BUTTON
   ═══════════════════════════════════════ */

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--grad-leaf);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s var(--ease-natural);
    z-index: 999;
    box-shadow:
        0 6px 25px rgba(143, 188, 143, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow:
        0 12px 40px rgba(143, 188, 143, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.3) inset,
        0 0 30px rgba(143, 188, 143, 0.4);
}

.scroll-top-btn:active {
    transform: translateY(-3px) scale(1.05);
}


/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

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


/* ═══════════════════════════════════════
   MEDIA QUERIES
   ═══════════════════════════════════════ */

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .about-photo {
        position: relative;
        top: auto;
    }

    .about-photo img {
        aspect-ratio: 16/10;
    }

    .about-badge {
        bottom: auto;
        top: 1rem;
        right: 1rem;
    }

    .about-values {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --space-xs: 0.5rem;
        --space-sm: 1rem;
        --space-md: 1.5rem;
        --space-lg: 2.5rem;
        --space-xl: 3.5rem;
    }

    .site-header {
        border-radius: var(--radius-soft);
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }
}

/* Préférence de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .leaf {
        display: none;
    }
}


/* ══════════════════════════════════════════════════════════════════════
   Modale plein écran — suggestion catalogue robots (partagé index + robot)
   ══════════════════════════════════════════════════════════════════════ */

/* ── Overlay sombre plein écran ── */
.rp-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(10, 22, 6, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .35s ease;
}

.rp-modal-overlay--visible {
    opacity: 1;
}

/* ── Conteneur modal (centrage flex) ── */
.rp-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
}

.rp-modal--visible {
    opacity: 1;
    pointer-events: auto;
}

.rp-modal--visible .rp-modal__card {
    transform: scale(1) translateY(0);
}

.rp-modal--closing .rp-modal__card {
    transform: scale(.92) translateY(16px);
    opacity: 0;
}

/* ── Card modale ── */
.rp-modal__card {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(200, 164, 92, .25);
    box-shadow:
        0 25px 80px rgba(10, 22, 6, .35),
        0 8px 32px rgba(200, 164, 92, .12),
        0 0 0 1px rgba(255, 255, 255, .6) inset;
    transform: scale(.9) translateY(24px);
    transition: transform .4s cubic-bezier(.16, 1, .3, 1),
                opacity .35s ease;
}

/* Scrollbar discrète */
.rp-modal__card::-webkit-scrollbar {
    width: 4px;
}
.rp-modal__card::-webkit-scrollbar-track {
    background: transparent;
}
.rp-modal__card::-webkit-scrollbar-thumb {
    background: rgba(200, 164, 92, .25);
    border-radius: 4px;
}

/* ── Bouton fermer ── */
.rp-modal__close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    z-index: 5;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 50%;
    color: var(--forest, #0C120E);
    opacity: .65;
    cursor: pointer;
    transition: opacity .2s, background .2s, transform .2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
}

.rp-modal__close:hover {
    opacity: 1;
    background: #fff;
    transform: scale(1.12) rotate(90deg);
}

/* ── Hero (illustration + badge) ── */
.rp-modal__hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.25rem 2rem 1.25rem;
    background: linear-gradient(160deg,
        var(--forest, #0C120E) 0%,
        #243a18 45%,
        #2d4a1e 100%);
    border-radius: 24px 24px 0 0;
    overflow: hidden;
}

/* Cercles décoratifs */
.rp-modal__hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.rp-modal__hero-deco::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -25%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 92, .15) 0%, transparent 65%);
}

.rp-modal__hero-deco::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140, 179, 105, .12) 0%, transparent 60%);
}

/* Icône robot */
.rp-modal__hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1.5px solid rgba(255, 255, 255, .15);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

/* Badge */
.rp-modal__badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem 1rem;
    border-radius: 20px;
    background: rgba(200, 164, 92, .2);
    border: 1px solid rgba(200, 164, 92, .35);
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold, #C9A76A);
    letter-spacing: .02em;
    position: relative;
    z-index: 1;
}

/* ── Body ── */
.rp-modal__body {
    padding: 1.75rem 2rem 1rem;
}

.rp-modal__title {
    font-family: 'DM Serif Display', serif;
    font-size: 1.45rem;
    color: var(--forest, #0C120E);
    line-height: 1.25;
    margin: 0 0 .55rem;
    text-align: center;
}

.rp-modal__desc {
    font-size: .88rem;
    color: var(--forest, #0C120E);
    opacity: .65;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    text-align: center;
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
}

/* ── Checklist ── */
.rp-modal__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.rp-modal__checklist li {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .6rem .85rem;
    border-radius: 12px;
    background: linear-gradient(135deg,
        rgba(140, 179, 105, .06) 0%,
        rgba(200, 164, 92, .04) 100%);
    border: 1px solid rgba(140, 179, 105, .12);
    font-size: .86rem;
    font-weight: 500;
    color: var(--forest, #0C120E);
    transition: background .2s, border-color .2s, transform .15s;
}

.rp-modal__checklist li:hover {
    background: rgba(140, 179, 105, .1);
    border-color: rgba(140, 179, 105, .2);
    transform: translateX(4px);
}

.rp-modal__checklist li svg {
    flex-shrink: 0;
}

/* ── Brands strip ── */
.rp-modal__brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .25rem;
}

.rp-modal__brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem .6rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: #fff;
    transition: transform .15s, border-color .2s, box-shadow .2s;
}

.rp-modal__brand img {
    display: block;
    height: 20px;
    width: auto;
    object-fit: contain;
    filter: grayscale(.3);
    transition: filter .2s;
}

.rp-modal__brand:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.rp-modal__brand:hover img {
    filter: grayscale(0);
}

/* ── Actions (CTAs) ── */
.rp-modal__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    padding: 1.25rem 2rem 1.75rem;
}

.rp-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    width: 100%;
    border-radius: 14px;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background .25s, transform .2s, box-shadow .25s;
}

.rp-modal__btn--primary {
    padding: .95rem 1.5rem;
    background: linear-gradient(135deg, var(--gold, #C9A76A) 0%, #d4b578 60%, #C9A76A 100%);
    color: #fff;
    box-shadow:
        0 4px 18px rgba(200, 164, 92, .4),
        0 1px 3px rgba(200, 164, 92, .2);
    position: relative;
    overflow: hidden;
}

/* Reflet subtil */
.rp-modal__btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.2) 50%, transparent 100%);
    transition: left .5s ease;
}

.rp-modal__btn--primary:hover::before {
    left: 100%;
}

.rp-modal__btn--primary:hover {
    background: linear-gradient(135deg, #b89a4a 0%, #C9A76A 100%);
    transform: translateY(-2px);
    box-shadow:
        0 8px 28px rgba(200, 164, 92, .5),
        0 2px 6px rgba(200, 164, 92, .25);
}

.rp-modal__btn--primary:active {
    transform: translateY(0);
}

.rp-modal__btn--primary svg {
    opacity: .85;
}

.rp-modal__btn--ghost {
    padding: .65rem 1rem;
    background: transparent;
    color: var(--forest, #0C120E);
    opacity: .45;
    font-weight: 500;
    font-size: .82rem;
    border-radius: 10px;
}

.rp-modal__btn--ghost:hover {
    opacity: .75;
    background: rgba(12, 18, 14, .03);
}

/* ── Modale — Responsive mobile ── */
@media (max-width: 768px) {
    .rp-modal {
        padding: .75rem;
        align-items: flex-end;
    }

    .rp-modal__card {
        max-width: none;
        max-height: 92vh;
        border-radius: 20px 20px 0 0;
        transform: scale(1) translateY(100%);
    }

    .rp-modal--visible .rp-modal__card {
        transform: scale(1) translateY(0);
    }

    .rp-modal--closing .rp-modal__card {
        transform: scale(1) translateY(100%);
    }

    .rp-modal__close {
        top: .65rem;
        right: .65rem;
        width: 32px;
        height: 32px;
    }

    .rp-modal__hero {
        padding: 1.75rem 1.25rem 1rem;
    }

    .rp-modal__hero-icon {
        width: 60px;
        height: 60px;
        margin-bottom: .75rem;
    }

    .rp-modal__hero-icon svg {
        width: 38px;
        height: 38px;
    }

    .rp-modal__badge {
        font-size: .74rem;
        padding: .3rem .85rem;
    }

    .rp-modal__body {
        padding: 1.25rem 1.25rem .85rem;
    }

    .rp-modal__title {
        font-size: 1.2rem;
    }

    .rp-modal__desc {
        font-size: .82rem;
        margin-bottom: 1rem;
    }

    .rp-modal__checklist {
        gap: .4rem;
        margin-bottom: 1rem;
    }

    .rp-modal__checklist li {
        padding: .5rem .7rem;
        font-size: .8rem;
        gap: .6rem;
        border-radius: 10px;
    }

    .rp-modal__checklist li svg {
        width: 16px;
        height: 16px;
    }

    .rp-modal__brands {
        gap: .4rem;
    }

    .rp-modal__brand {
        padding: .25rem .45rem;
        border-radius: 6px;
    }

    .rp-modal__brand img {
        height: 16px;
    }

    .rp-modal__actions {
        padding: 1rem 1.25rem 1.25rem;
        gap: .5rem;
    }

    .rp-modal__btn--primary {
        min-height: 48px;
        font-size: .88rem;
        border-radius: 12px;
    }

    .rp-modal__btn--ghost {
        font-size: .76rem;
        padding: .5rem;
    }
}

@media (max-width: 380px) {
    .rp-modal__hero {
        padding: 1.5rem 1rem .85rem;
    }

    .rp-modal__hero-icon {
        width: 52px;
        height: 52px;
    }

    .rp-modal__body {
        padding: 1rem 1rem .75rem;
    }

    .rp-modal__title {
        font-size: 1.08rem;
    }

    .rp-modal__checklist li {
        font-size: .76rem;
        padding: .45rem .6rem;
    }

    .rp-modal__actions {
        padding: .85rem 1rem 1rem;
    }
}
