/* ==========================================================================
   Supprimo.com – CSS principal
   Mobile-first, vanilla, pas de framework
   ========================================================================== */

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, picture, video, svg { max-width: 100%; height: auto; display: block; }
a { color: #042e33; text-decoration: none; transition: color .15s ease; }
a:hover { color: #0a5c66; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

/* Variables */
:root {
    --primary: #042e33;
    --secondary: #0a5c66;
    --accent: #10b981;
    --accent-dark: #059669;
    --bg: #fafafa;
    --bg-alt: #f1f5f5;
    --text: #1a1a1a;
    --text-muted: #4b5563;
    --border: #e5e7eb;
    --white: #ffffff;
    --danger: #dc2626;
    --warning: #f59e0b;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 14px rgba(4,46,51,0.08);
    --shadow-lg: 0 10px 30px rgba(4,46,51,0.12);
    --container: 1140px;
}

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Typo */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--primary); }
h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); margin-bottom: 1rem; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.125rem); margin-bottom: 1rem; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; color: var(--text); }
ul, ol { margin: 0 0 1rem 1.5rem; }
li { margin-bottom: 0.4rem; }
strong { font-weight: 700; }

/* Skip link a11y */
.skip-link { position: absolute; left: -9999px; top: 0; padding: 8px 12px; background: var(--primary); color: #fff; }
.skip-link:focus { left: 8px; top: 8px; z-index: 9999; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.site-logo { display: flex; align-items: center; gap: 10px; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.site-logo svg { width: 28px; height: 28px; }

.nav-toggle { display: block; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; stroke: var(--primary); }

.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    box-shadow: var(--shadow);
}
.main-nav.open { display: block; }
.main-nav ul { list-style: none; margin: 0; padding: 0; }
.main-nav li { margin: 0; }
.main-nav a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-weight: 500;
}
.main-nav .has-children > a::after { content: '▾'; margin-left: 6px; font-size: 0.8em; }
.main-nav .submenu { display: none; padding-left: 14px; }
.main-nav .submenu.open { display: block; }
.main-nav .submenu a { font-weight: 400; font-size: 0.95rem; }

.btn-header {
    display: inline-block;
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 12px;
}
.btn-header:hover { background: var(--accent-dark); color: #fff !important; }

@media (min-width: 992px) {
    .nav-toggle { display: none; }
    .main-nav { display: block; position: static; padding: 0; box-shadow: none; border: none; background: transparent; }
    .main-nav > ul { display: flex; gap: 6px; align-items: center; }
    .main-nav > ul > li { position: relative; }
    .main-nav a { padding: 10px 14px; border: none; }
    .main-nav .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        min-width: 280px;
        padding: 8px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    .main-nav .has-children:hover .submenu,
    .main-nav .has-children:focus-within .submenu { display: block; }
    .main-nav .submenu a { padding: 8px 12px; border-radius: 6px; }
    .main-nav .submenu a:hover { background: var(--bg-alt); }
    .btn-header { margin-top: 0; margin-left: 8px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all .15s ease;
    cursor: pointer;
    line-height: 1.2;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--secondary); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    height: 40px;
    background: var(--bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.hero h1 { color: var(--white); }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,0.92); max-width: 640px; margin-bottom: 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.hero-meta span { display: flex; align-items: center; gap: 6px; }
.hero-meta svg { width: 18px; height: 18px; stroke: var(--accent); flex-shrink: 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

@media (min-width: 768px) {
    .hero { padding: 90px 0 110px; }
    .hero p.lead { font-size: 1.25rem; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 60px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary); color: rgba(255,255,255,0.92); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark li, .section-dark span { color: rgba(255,255,255,0.88); }
.section-dark a { color: var(--accent); }
.section-dark a:hover { color: #fff; }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-title p { color: var(--text-muted); font-size: 1.05rem; }
.section-dark .section-title p { color: rgba(255,255,255,0.85); }

@media (min-width: 768px) {
    .section { padding: 80px 0; }
}

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 24px 0; }
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-item svg { width: 32px; height: 32px; stroke: var(--accent); }
.trust-item strong { color: var(--primary); font-size: 0.95rem; }
.trust-item span { color: var(--text-muted); font-size: 0.85rem; }
@media (min-width: 768px) {
    .trust-bar-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all .2s ease;
    display: flex;
    flex-direction: column;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card .icon { width: 44px; height: 44px; background: var(--bg-alt); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card .icon svg { width: 24px; height: 24px; stroke: var(--primary); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; flex: 1; }
.service-card .price { color: var(--accent-dark); font-weight: 600; font-size: 0.9rem; margin: 12px 0 14px; }
.service-card a.card-link { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.service-card a.card-link::after { content: ' →'; }

@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   How it works
   ========================================================================== */
.steps-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
.step {
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
.step-num {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.25rem;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.pricing-table th { background: var(--bg-alt); font-weight: 600; color: var(--primary); }
.pricing-table td:last-child { text-align: right; font-weight: 600; color: var(--accent-dark); white-space: nowrap; }
.pricing-table tr:last-child td { border-bottom: none; }

.pricing-note {
    text-align: center;
    margin-top: 24px;
    padding: 18px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
    background: var(--white);
}
.faq-question:hover { background: var(--bg-alt); }
.faq-question .icon { transition: transform .2s ease; flex-shrink: 0; margin-left: 12px; font-size: 1.4rem; line-height: 1; color: var(--accent); }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; }
.faq-item.open .faq-answer { padding: 0 20px 18px; max-height: 600px; }
.faq-answer p { color: var(--text-muted); margin-bottom: 8px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.testimonial {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
}
.testimonial .stars { color: #f59e0b; margin-bottom: 8px; font-size: 1rem; }
.testimonial p { color: var(--text); font-style: italic; margin-bottom: 14px; }
.testimonial .author { color: var(--text-muted); font-size: 0.9rem; font-weight: 600; }

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Form
   ========================================================================== */
.form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    max-width: 720px;
    margin: 0 auto;
}
.form-wrap h2 { margin-bottom: 8px; }
.form-wrap .form-intro { color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 16px; }
@media (min-width: 640px) { .form-row.two-cols { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; color: var(--primary); }
.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}
.form-group textarea { min-height: 110px; resize: vertical; font-family: inherit; }
.phone-group { display: flex; gap: 6px; }
.phone-group select { flex: 0 0 88px; padding-left: 8px; padding-right: 22px; min-width: 0; }
.phone-group input { flex: 1; min-width: 0; }

.form-rgpd { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--text-muted); margin: 8px 0 18px; }
.form-rgpd input { margin-top: 4px; flex-shrink: 0; }

.honeypot { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; overflow: hidden; }

.form-feedback { padding: 12px 14px; border-radius: var(--radius); margin-bottom: 14px; font-size: 0.95rem; display: none; }
.form-feedback.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.form-feedback.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

.form-mini { padding: 16px; }
.form-mini h3 { font-size: 1.15rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.8); padding: 60px 0 28px; margin-top: 60px; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-col p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-brand .site-logo { color: var(--white); margin-bottom: 12px; }
.footer-brand .site-logo svg path { stroke: var(--accent); }
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.footer-bottom a { color: rgba(255,255,255,0.75); }

@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ==========================================================================
   CTA sticky mobile
   ========================================================================== */
.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    display: flex;
    gap: 8px;
    z-index: 90;
    box-shadow: 0 -4px 14px rgba(0,0,0,0.08);
}
.cta-sticky a { flex: 1; padding: 12px 14px; border-radius: var(--radius); font-weight: 600; text-align: center; font-size: 0.95rem; }
.cta-sticky a.tel { background: var(--bg-alt); color: var(--primary); }
.cta-sticky a.devis { background: var(--accent); color: var(--white); }
@media (min-width: 992px) { .cta-sticky { display: none; } }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    z-index: 200;
    box-shadow: 0 -6px 18px rgba(0,0,0,0.15);
    display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner-inner { max-width: var(--container); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.cookie-banner p { margin: 0; color: rgba(255,255,255,0.9); font-size: 0.92rem; flex: 1 1 320px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-banner .cb-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner button {
    padding: 10px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
}
.cookie-banner .cb-accept { background: var(--accent); color: var(--white); }
.cookie-banner .cb-refuse { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }

/* ==========================================================================
   Article (blog & content pages)
   ========================================================================== */
.article-hero { padding: 50px 0 30px; background: var(--white); border-bottom: 1px solid var(--border); }
.article-hero .container { max-width: 820px; }
.article-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.article-meta a { color: var(--accent-dark); font-weight: 600; }

.article-content { max-width: 820px; margin: 0 auto; padding: 40px 20px 60px; font-size: 1.02rem; line-height: 1.75; }
.article-content h2 { margin-top: 2.2em; margin-bottom: 0.8em; padding-top: 0.4em; }
.article-content h3 { margin-top: 1.6em; margin-bottom: 0.6em; }
.article-content p, .article-content ul, .article-content ol { margin-bottom: 1.2em; }
.article-content ul li { list-style: disc; margin-left: 1.4em; }
.article-content ol li { list-style: decimal; margin-left: 1.4em; }
.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 12px 18px;
    background: var(--bg-alt);
    margin: 1.4em 0;
    color: var(--text);
    font-style: italic;
}
.article-content a { color: var(--accent-dark); text-decoration: underline; font-weight: 500; }
.article-content a:hover { color: var(--primary); }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.4em 0; }
.article-content th, .article-content td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border); }
.article-content th { background: var(--bg-alt); font-weight: 600; color: var(--primary); }

.toc {
    background: var(--bg-alt);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 0 0 32px;
    font-size: 0.95rem;
}
.toc strong { color: var(--primary); display: block; margin-bottom: 6px; }
.toc ul { list-style: none; margin: 0; padding: 0; }
.toc li { margin-bottom: 4px; }
.toc a { color: var(--secondary); text-decoration: none; }

/* ==========================================================================
   Misc & utilities
   ========================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }

.callout {
    background: var(--bg-alt);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 24px 0;
}
.callout.warning { border-left-color: var(--warning); background: #fffbeb; }
.callout.danger { border-left-color: var(--danger); background: #fef2f2; }
.callout strong { color: var(--primary); }

.badge { display: inline-block; background: var(--accent); color: var(--white); padding: 4px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.badge-soft { background: rgba(16,185,129,0.12); color: var(--accent-dark); }
.badge-urgent { background: var(--danger); color: var(--white); }

.breadcrumbs { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span.sep { margin: 0 6px; opacity: 0.5; }

.two-col { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 992px) { .two-col { grid-template-columns: 1.4fr 1fr; gap: 48px; } }

.cta-block {
    background: var(--primary);
    color: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
}
.cta-block h2 { color: var(--white); }
.cta-block p { color: rgba(255,255,255,0.88); margin-bottom: 18px; }

/* Intern links related */
.related-services {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    margin: 28px 0;
}
.related-services a {
    display: block;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 600;
    transition: all .15s ease;
}
.related-services a:hover { border-color: var(--accent); background: var(--bg-alt); }
@media (min-width: 640px) { .related-services { grid-template-columns: repeat(2, 1fr); } }

/* LP specific */
.lp-page .site-header,
.lp-page .site-footer-full,
.lp-page .cta-sticky { display: none; }
.lp-page .lp-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.lp-page .lp-header .container { display: flex; align-items: center; justify-content: space-between; }
.lp-page .lp-header a.tel { color: var(--primary); font-weight: 700; font-size: 1.05rem; }
.lp-page .lp-footer {
    text-align: center;
    padding: 24px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--border);
}
.lp-trust {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    background: var(--bg-alt);
    padding: 22px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
}
.lp-trust div { display: flex; gap: 12px; align-items: flex-start; }
.lp-trust svg { flex-shrink: 0; width: 22px; height: 22px; stroke: var(--accent); margin-top: 2px; }
.lp-trust strong { color: var(--primary); display: block; }
.lp-trust span { color: var(--text-muted); font-size: 0.9rem; }
@media (min-width: 768px) { .lp-trust { grid-template-columns: repeat(3, 1fr); } }

/* Spacer pour CTA mobile sticky */
.has-sticky-cta { padding-bottom: 76px; }
@media (min-width: 992px) { .has-sticky-cta { padding-bottom: 0; } }

/* Print */
@media print {
    .site-header, .site-footer, .cta-sticky, .cookie-banner, .form-wrap { display: none; }
}
