/* =========================================================================
   SEESMILE MOVORA — shared.css
   Direction : clinique / technique premium
   Palette : noir profond + rouge-orange Movora + blanc dominant
   Typo : Manrope (titres en 800 serres + corps) — 100% sans-serif
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. VARIABLES
   ------------------------------------------------------------------------- */
:root {
    /* Couleurs marque */
    --c-black:        #14110F;   /* noir profond, presque chaud */
    --c-ink:          #1E1B19;   /* texte principal */
    --c-ink-soft:     #56504B;   /* texte secondaire */
    --c-red:          #E2231A;   /* rouge Movora (accent vif) */
    --c-red-deep:     #B71C16;   /* rouge fonce hover */
    --c-orange:       #F26B21;   /* orange complementaire */
    --c-white:        #FFFFFF;
    --c-paper:        #FAF8F6;   /* fond creme tres leger */
    --c-line:         #E7E2DD;   /* bordures discretes */
    --c-line-strong:  #CFC8C1;

    /* Typographie — tout en Manrope (sans-serif) */
    --font-title: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    /* Layout */
    --container:      1360px;
    --container-text: 760px;
    --radius:         4px;
    --radius-lg:      10px;

    /* Espacements */
    --space-section:  clamp(56px, 8vw, 120px);
    --gutter:         clamp(18px, 4vw, 48px);

    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(20, 17, 15, 0.06);
    --shadow-md: 0 8px 24px rgba(20, 17, 15, 0.08);
    --shadow-lg: 0 18px 48px rgba(20, 17, 15, 0.14);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --t-fast: 0.25s var(--ease);
    --t-med:  0.5s var(--ease);

    /* Nav */
    --nav-h: 84px;
}

/* -------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--c-ink);
    background: var(--c-white);
    font-weight: 400;
}

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

a {
    color: var(--c-red);
    text-decoration: none;
    transition: color var(--t-fast);
}
a:hover { color: var(--c-red-deep); }

ul, ol { margin: 0; padding: 0; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* -------------------------------------------------------------------------
   3. TYPOGRAPHIE
   ------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.14;
    color: var(--c-black);
    margin: 0 0 0.5em;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.7rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.6rem); font-weight: 700; }
h4 { font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 700; }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--c-ink); }

.lead {
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 1.6;
    color: var(--c-ink-soft);
    font-weight: 400;
}

/* Tag de section (sur-titre) */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-red);
    margin-bottom: 18px;
}
.section-tag::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--c-red);
}

/* -------------------------------------------------------------------------
   4. LAYOUT — conteneurs
   ------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.container-fluid {
    width: 100%;
    padding-inline: var(--gutter);
}

.container-text {
    width: 100%;
    max-width: var(--container-text);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section {
    padding-block: var(--space-section);
}

.section--paper { background: var(--c-paper); }
.section--dark {
    background: var(--c-black);
    color: rgba(255, 255, 255, 0.82);
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--c-white); }

/* -------------------------------------------------------------------------
   5. GRILLES
   ------------------------------------------------------------------------- */
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: var(--gutter);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* -------------------------------------------------------------------------
   6. BOUTONS
   ------------------------------------------------------------------------- */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 15px 30px;
    border-radius: var(--radius);
    transition: transform var(--t-fast), background var(--t-fast),
                color var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
}

.btn-primary {
    background: var(--c-red);
    color: var(--c-white);
    box-shadow: 0 4px 14px rgba(226, 35, 26, 0.28);
}
.btn-primary:hover {
    background: var(--c-red-deep);
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(226, 35, 26, 0.34);
}

.btn-secondary {
    background: transparent;
    color: var(--c-black);
    border: 1.5px solid var(--c-line-strong);
}
.btn-secondary:hover {
    border-color: var(--c-black);
    color: var(--c-black);
    transform: translateY(-2px);
}

.section--dark .btn-secondary {
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.35);
}
.section--dark .btn-secondary:hover {
    border-color: var(--c-white);
    color: var(--c-white);
}

/* -------------------------------------------------------------------------
   7. CARTES
   ------------------------------------------------------------------------- */
.card {
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-line-strong);
}

/* -------------------------------------------------------------------------
   8. ANIMATIONS REVEAL (IntersectionObserver)
   ------------------------------------------------------------------------- */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity var(--t-med), transform var(--t-med);
    will-change: opacity, transform;
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none;
    }
    html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------------------
   9. UTILITAIRES
   ------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mb-0 { margin-bottom: 0; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--c-black);
    color: #fff;
    padding: 12px 20px;
    z-index: 100000;
    border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* -------------------------------------------------------------------------
   10. BREAKPOINTS GLOBAUX (les composants ajoutent les leurs)
   ------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body { font-size: 16px; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .card { padding: 24px; }
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 15px 24px;
    }
    :root { --gutter: 18px; }
}

@media (max-width: 380px) {
    h1 { font-size: 1.95rem; }
    h2 { font-size: 1.55rem; }
    body { font-size: 15px; }
}

/* =========================================================================
   11. SCROLL PROGRESS
   ========================================================================= */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    background: var(--c-red);
    z-index: 10000;
    transition: width 0.1s linear;
}

/* =========================================================================
   12. HEADER + NAV
   ========================================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 9000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--c-line);
    transition: box-shadow var(--t-fast), background var(--t-fast);
}
.site-header.is-scrolled {
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: var(--nav-h);
}

/* Logo / marque */
.brand-link { display: inline-flex; align-items: center; gap: 14px; }
.header-brand .custom-logo-link { display: inline-flex; align-items: center; }
.header-brand img,
.brand-logo-main { max-height: 48px; width: auto; }
.brand-logo-advetis { max-height: 40px; width: auto; }
.brand-divider {
    width: 1px;
    height: 34px;
    background: var(--c-line-strong);
    flex-shrink: 0;
}
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-name {
    font-family: var(--font-title);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--c-black);
    letter-spacing: -0.04em;
}
.brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-ink-soft);
}

/* Mega nav */
.header-nav { flex: 1; display: flex; justify-content: center; }
.mega-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.mega-item { position: relative; }
.mega-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-ink);
    border-radius: var(--radius);
    transition: color var(--t-fast), background var(--t-fast);
}
.mega-item > a:hover { color: var(--c-red); }
.mega-caret { transition: transform var(--t-fast); }
.mega-item.has-mega:hover .mega-caret { transform: rotate(180deg); }

/* Mega panel */
.mega-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(900px, 90vw);
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
    z-index: 9500;
}
.mega-item.has-mega:hover .mega-panel,
.mega-item.has-mega:focus-within .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.mega-panel::before {
    content: "";
    position: absolute;
    top: -14px; left: 0; right: 0;
    height: 14px;
}
.mega-panel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 28px;
}
.mega-panel--small { width: min(360px, 90vw); left: 0; transform: translateX(-20%) translateY(10px); }
.mega-item.has-mega:hover .mega-panel--small,
.mega-item.has-mega:focus-within .mega-panel--small { transform: translateX(-20%) translateY(0); }
.mega-panel-inner--small { grid-template-columns: 1fr; padding: 22px; }
.megamenu-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-red);
    margin-bottom: 14px;
}
.mega-col ul { list-style: none; }
.mega-col li { margin-bottom: 4px; }
.mega-col li a {
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius);
    transition: background var(--t-fast);
}
.mega-col li a:hover { background: var(--c-paper); }
.mega-col li a strong {
    display: block;
    color: var(--c-black);
    font-size: 0.96rem;
    font-weight: 600;
}
.mega-col li a em {
    display: block;
    font-style: normal;
    font-size: 0.82rem;
    color: var(--c-ink-soft);
}
.mega-col--visual {
    background: var(--c-paper);
    border-radius: var(--radius);
    padding: 20px;
}
.mega-col--visual p {
    font-size: 0.9rem;
    color: var(--c-ink-soft);
    margin-bottom: 16px;
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-cta { padding: 11px 22px; font-size: 0.9rem; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 10px;
}
.burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--c-black);
    border-radius: 2px;
    transition: transform var(--t-fast), opacity var(--t-fast);
}
.burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   13. MOBILE NAV
   ========================================================================= */
.mobile-nav {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--c-white);
    z-index: 8500;
    transform: translateX(100%);
    transition: transform var(--t-med);
    overflow-y: auto;
    visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
body.nav-locked { overflow: hidden; }
.mobile-nav-inner { padding: 28px var(--gutter) 48px; }
.mobile-menu { list-style: none; }
.mobile-menu > li { border-bottom: 1px solid var(--c-line); }
.mobile-menu > li > a,
.mobile-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 4px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-black);
    text-align: left;
}
.mobile-plus {
    position: relative;
    width: 16px; height: 16px;
    flex-shrink: 0;
}
.mobile-plus::before,
.mobile-plus::after {
    content: "";
    position: absolute;
    background: var(--c-red);
    transition: transform var(--t-fast);
}
.mobile-plus::before { top: 7px; left: 0; width: 16px; height: 2px; }
.mobile-plus::after { left: 7px; top: 0; width: 2px; height: 16px; }
.mobile-has-sub.is-open .mobile-plus::after { transform: rotate(90deg); opacity: 0; }
.mobile-submenu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med);
}
.mobile-has-sub.is-open .mobile-submenu { max-height: 500px; }
.mobile-submenu li a {
    display: block;
    padding: 12px 4px 12px 20px;
    font-size: 1rem;
    color: var(--c-ink-soft);
}
.mobile-cta { margin-top: 28px; width: 100%; }

/* =========================================================================
   14. HERO
   ========================================================================= */
.hero {
    position: relative;
    padding-block: clamp(64px, 11vw, 150px);
    background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-white) 100%);
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-grid-lines {
    position: absolute;
    top: 0; right: -10%;
    width: 55%; height: 100%;
    background-image:
        linear-gradient(var(--c-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-line) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.45;
    -webkit-mask-image: radial-gradient(circle at 80% 30%, #000 0%, transparent 70%);
    mask-image: radial-gradient(circle at 80% 30%, #000 0%, transparent 70%);
}
.hero-inner { position: relative; }
.hero-content { max-width: 760px; }
.hero-content h1 { margin-bottom: 0.4em; }
.hero-content .lead { margin-bottom: 2em; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* =========================================================================
   15. SECTION HEAD
   ========================================================================= */
.section-head { max-width: 720px; margin-bottom: 48px; }

/* =========================================================================
   16. SERVICES GRID
   ========================================================================= */
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
}
.service-card h3 { color: var(--c-black); transition: color var(--t-fast); }
.service-card:hover h3 { color: var(--c-red); }
.service-card p { color: var(--c-ink-soft); font-size: 0.95rem; flex-grow: 1; }
.service-index {
    font-family: var(--font-title);
    font-size: 0.85rem;
    color: var(--c-red);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.service-arrow {
    margin-top: 18px;
    font-size: 1.3rem;
    color: var(--c-red);
    transition: transform var(--t-fast);
}
.service-card:hover .service-arrow { transform: translateX(6px); }

/* =========================================================================
   17. ENGAGEMENT (dark)
   ========================================================================= */
.engagement-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}
.engagement-intro p { color: rgba(255,255,255,0.72); }
.engagement-stats { display: grid; gap: 28px; }
.stat {
    border-left: 2px solid var(--c-red);
    padding-left: 22px;
}
.stat-value {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--c-white);
    line-height: 1;
}
.stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.62);
}

/* =========================================================================
   18. FAQ
   ========================================================================= */
.faq-list { margin-top: 8px; }
.faq-item {
    border-bottom: 1px solid var(--c-line);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 24px 0;
    text-align: left;
}
.faq-question h3 {
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--c-black);
    margin: 0;
}
.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 20px; height: 20px;
}
.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: var(--c-red);
    transition: transform var(--t-fast), opacity var(--t-fast);
}
.faq-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.is-open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t-med);
}
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer p {
    padding-bottom: 24px;
    color: var(--c-ink-soft);
    margin: 0;
}

/* =========================================================================
   19. CTA BAND
   ========================================================================= */
.cta-band { background: var(--c-black); }
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-kicker { color: var(--c-red); font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.cta-title {
    font-family: var(--font-title);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--c-white);
    margin: 0;
    line-height: 1.1;
}
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.35); }
.cta-band .btn-secondary:hover { border-color: #fff; }

/* =========================================================================
   20. PAGE HERO + ENTRY CONTENT + BREADCRUMB
   ========================================================================= */
.page-hero {
    padding-block: clamp(48px, 7vw, 90px) clamp(20px, 3vw, 40px);
    background: var(--c-paper);
}
.page-hero h1 { margin-bottom: 0; }
.page-hero .lead { margin-top: 16px; }

.breadcrumb { background: var(--c-paper); border-bottom: 1px solid var(--c-line); }
.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding-block: 14px;
    font-size: 0.85rem;
    color: var(--c-ink-soft);
}
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 8px; color: var(--c-line-strong); }
.breadcrumb a { color: var(--c-ink-soft); }
.breadcrumb a:hover { color: var(--c-red); }
.breadcrumb li[aria-current="page"] { color: var(--c-black); font-weight: 600; }

.entry-content { font-size: 1.05rem; }
.entry-content h2 { margin-top: 1.6em; }
.entry-content h3 { margin-top: 1.3em; }
.entry-content ul, .entry-content ol { margin: 0 0 1.2em 1.4em; }
.entry-content li { margin-bottom: 0.4em; }
.entry-content img { border-radius: var(--radius-lg); margin: 1.5em 0; }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }

.solution-back { margin-top: 2.5em; padding-top: 1.5em; border-top: 1px solid var(--c-line); font-size: 0.95rem; }

/* =========================================================================
   21. POSTS GRID / ARTICLE
   ========================================================================= */
.post-card { padding: 0; overflow: hidden; }
.post-card-link { display: block; height: 100%; }
.post-card-img { aspect-ratio: 3/2; overflow: hidden; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-med); }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-body { padding: 26px; }
.post-card-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-red);
    margin-bottom: 10px;
}
.post-card-title { font-size: 1.25rem; margin-bottom: 10px; }
.post-card-excerpt { font-size: 0.92rem; color: var(--c-ink-soft); }
.post-card-date { font-size: 0.82rem; color: var(--c-ink-soft); }

.article-featured { margin-block: 32px; }
.article-featured img { width: 100%; border-radius: var(--radius-lg); }
.article-meta { color: var(--c-ink-soft); font-size: 0.9rem; margin-top: 12px; }
.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 32px;
    border-top: 1px solid var(--c-line);
    margin-top: 20px;
}
.article-nav-link { font-weight: 600; font-size: 0.92rem; }
.article-nav-link--next { margin-left: auto; text-align: right; }

.pagination { margin-top: 48px; }
.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px; height: 44px;
    padding: 0 12px;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    color: var(--c-ink);
    font-weight: 600;
}
.pagination .page-numbers.current { background: var(--c-red); color: #fff; border-color: var(--c-red); }
.pagination .page-numbers:hover:not(.current) { border-color: var(--c-black); }

/* =========================================================================
   22. CONTACT
   ========================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}
.contact-address { font-style: normal; line-height: 1.8; margin-bottom: 24px; }
.contact-meta { list-style: none; margin-bottom: 28px; }
.contact-meta li {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid var(--c-line);
}
.contact-meta li span {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-ink-soft);
    margin-bottom: 3px;
}

/* Formulaire */
.contact-form-wrap {
    background: var(--c-paper);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 44px);
}
.contact-form .form-row { margin-bottom: 18px; }
.contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--c-ink);
    margin-bottom: 7px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--c-line-strong);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--c-white);
    color: var(--c-ink);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-red);
    box-shadow: 0 0 0 3px rgba(226,35,26,0.12);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row--checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    font-size: 0.88rem;
    color: var(--c-ink-soft);
    cursor: pointer;
}
.form-row--checkbox input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-row--checkbox a { color: var(--c-red); text-decoration: underline; }
.seesmile-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    font-size: 0.92rem;
}
.form-alert--error { background: #FDECEA; color: #B71C16; border: 1px solid #F5C6C2; }
.form-alert--success { background: #E8F5EC; color: #1A7F37; border: 1px solid #B7E0C4; }

/* =========================================================================
   23. SITEMAP / 404
   ========================================================================= */
.sitemap-content h2 { margin-top: 1.8em; }
.sitemap-list { list-style: none; }
.sitemap-list li { padding: 8px 0; border-bottom: 1px solid var(--c-line); }
.sitemap-list ul { list-style: none; margin-left: 20px; }
.sitemap-list a { color: var(--c-ink); }
.sitemap-list a:hover { color: var(--c-red); }

.error-404 { padding-block: clamp(70px, 12vw, 140px); }
.error-code {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(5rem, 16vw, 11rem);
    font-weight: 800;
    color: var(--c-red);
    line-height: 0.9;
    margin-bottom: 0.1em;
}
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* =========================================================================
   24. FOOTER
   ========================================================================= */
.site-footer { padding-top: clamp(56px, 8vw, 90px); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    padding-bottom: 48px;
}
.footer-brand-name {
    font-family: var(--font-title);
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.footer-brand-name span { color: var(--c-red); }
.footer-tagline { color: rgba(255,255,255,0.7); font-style: italic; margin-bottom: 8px; }
.footer-legacy { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-title {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-red);
    margin-bottom: 18px;
}
.footer-menu, .footer-legal-menu { list-style: none; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.footer-menu a:hover { color: #fff; }
.footer-address { font-style: normal; line-height: 1.8; color: rgba(255,255,255,0.72); font-size: 0.95rem; }
.footer-address a { color: rgba(255,255,255,0.72); }
.footer-address a:hover { color: #fff; }
.footer-hours { margin-top: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.55); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 24px; }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copy, .footer-credit { font-size: 0.84rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-credit a { color: rgba(255,255,255,0.8); }
.footer-legal-menu { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal-menu a { font-size: 0.84rem; color: rgba(255,255,255,0.55); }
.footer-legal-menu a:hover { color: #fff; }

/* =========================================================================
   25. RESPONSIVE — composants
   ========================================================================= */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .burger { display: flex; }
    .header-cta { display: none; }
    .engagement-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .brand-divider, .brand-logo-advetis { display: none; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-actions { width: 100%; }
    .form-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .article-nav { flex-direction: column; }
    .article-nav-link--next { text-align: left; margin-left: 0; }
}

/* =========================================================================
   26. PAGES SOLUTION — fiches produit
   ========================================================================= */
.solution-products { display: flex; flex-direction: column; gap: clamp(40px, 6vw, 80px); }
.product-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}
.product-row--flip .product-media { order: 2; }
.product-media img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: var(--c-white);
}
.product-media-placeholder {
    aspect-ratio: 383/320;
    border: 1px dashed var(--c-line-strong);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    background: var(--c-white);
    color: var(--c-ink-soft);
    font-weight: 600;
}
.product-body h2 { margin-bottom: 0.3em; }
.product-lead {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--c-black);
    margin-bottom: 0.8em;
}
.product-body p { color: var(--c-ink-soft); }
.product-features {
    list-style: none;
    margin: 18px 0 0;
    display: grid;
    gap: 8px;
}
.product-features li {
    position: relative;
    padding-left: 26px;
    font-size: 0.95rem;
    color: var(--c-ink);
}
.product-features li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 12px; height: 2px;
    background: var(--c-red);
}
.product-supplier {
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--c-ink-soft);
}
.product-supplier span {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-red);
    margin-right: 8px;
}
.solution-contact-note {
    margin-top: clamp(48px, 7vw, 80px);
    padding-top: 40px;
    border-top: 1px solid var(--c-line);
    text-align: center;
}
.solution-contact-note p { margin-bottom: 20px; color: var(--c-ink-soft); }
.solution-back {
    margin-top: 40px;
    text-align: center;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .product-row { grid-template-columns: 1fr; }
    .product-row--flip .product-media { order: 0; }
}

/* Contact — mentions complementaires */
.contact-legacy { font-weight: 400; color: var(--c-ink-soft); font-size: 0.92em; }
.contact-orders-intro { font-size: 0.92rem; color: var(--c-ink-soft); margin-bottom: 12px; }
