/* Ste Negosiad — Poisson frais Créteil */

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}
body {
    font-family: 'Poppins', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
    overflow-x: hidden;
}
@supports (overflow: clip) {
    body { overflow-x: clip; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* Header — style Kassapay : fond sombre, nav blanche */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { height: 44px; }
.brand-name { font-size: 1.25rem; font-weight: 700; color: #fff; display: none; }

.header-nav { display: flex; gap: 2.25rem; }
.header-nav a { font-weight: 500; color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.header-nav a:hover { color: #fff; }

.header-right { display: flex; align-items: center; gap: 1.25rem; }

.header-lang { display: flex; gap: 4px; }
.lang-btn {
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    border-radius: 6px;
}
.lang-btn:hover { background: rgba(255,255,255,0.1); }
.lang-btn.active { background: #3b82f6; color: #fff; border-color: #3b82f6; }

.header-cta {
    padding: 0.6rem 1.5rem;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
}
.header-cta:hover { background: #2563eb; }

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -0.25rem;
    min-width: 44px;
    min-height: 44px;
}
.burger span { width: 22px; height: 2px; background: #fff; border-radius: 1px; }
.burger:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 3px;
    border-radius: 6px;
}

/* Hero — aligné header/footer : navy + bleu */
.hero {
    position: relative;
    z-index: 2;
    min-height: 75vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?w=1920&q=80') center/cover;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,23,42,0.65) 0%, rgba(15,23,42,0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-badge {
    font-size: 0.9rem;
    font-weight: 600;
    color: #60a5fa;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.hero-tagline { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-solid {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3b82f6;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}
.btn-solid:hover { background: #2563eb; transform: translateY(-2px); }

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 8px;
    cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-ghost {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: #3b82f6;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    cursor: pointer;
}
.btn-ghost:hover { background: #eff6ff; }

/* Sections — palette header/footer : navy #0f172a, bleu #3b82f6 */
.intro, .values, .featured, .offer-more, .catalog, .import, .demandes, .faq, .contact {
    max-width: 1140px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.intro { background: #f8fafc; }
.intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
}
.intro-text p { color: #475569; margin-bottom: 1rem; }

.intro-list {
    list-style: none;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.intro-list li {
    padding: 0.6rem 1.2rem;
    background: #0f172a;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
}

.intro-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15,23,42,0.12);
}
.intro-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 220px;
    max-height: 420px;
    object-fit: cover;
}

/* Nos valeurs */
.values { background: #fff; }
.values-inner { text-align: center; }
.values h2 { font-size: 2rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.values-desc { color: #64748b; margin-bottom: 2.5rem; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.value-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}
.value-card:hover { border-color: #3b82f6; box-shadow: 0 8px 24px rgba(59,130,246,0.12); }
.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: #3b82f6;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.value-card h3 { font-size: 1.1rem; font-weight: 600; color: #0f172a; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.95rem; color: #64748b; line-height: 1.5; }

/* Produits phares */
.featured { background: #f8fafc; }
.featured-inner { text-align: center; }
.featured h2 { font-size: 2rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.featured-desc { color: #64748b; margin-bottom: 2rem; }
.featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}
.featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.06),
        0 16px 34px -26px rgba(15, 23, 42, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}
.featured-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 2px 6px rgba(15, 23, 42, 0.08),
        0 24px 58px -30px rgba(15, 23, 42, 0.44);
    border-color: #3b82f6;
}
.featured-img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(145deg, #e2e8f0 0%, #f8fafc 100%);
    position: relative;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: saturate(1.02) contrast(1.03);
}
.featured-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 90% at 50% 10%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0) 45%, rgba(15, 23, 42, 0.22) 100%);
    pointer-events: none;
    opacity: 0.85;
    transition: opacity 0.45s ease;
}
.featured-img::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -18px 28px rgba(0, 0, 0, 0.18);
    pointer-events: none;
    opacity: 0.55;
}
.featured-card:hover .featured-img img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.07);
}
.featured-card:hover .featured-img::before {
    opacity: 1;
}
.featured-card h3 { font-size: 1.05rem; font-weight: 600; color: #0f172a; padding: 0.8rem 0.8rem 0; }
.featured-card p { font-size: 0.84rem; color: #64748b; padding: 0.2rem 0.8rem 0.95rem; }

/* Volaille, porc, fruits — complément d’offre */
.offer-more {
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 48%, #f8fafc 100%);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.offer-more-inner {
    margin: 0;
    padding: 0;
}
.offer-more-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}
.offer-more-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 0.65rem;
}
.offer-more-head h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.1rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.85rem;
    line-height: 1.2;
}
.offer-more-lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}
.offer-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
    align-items: stretch;
}
.offer-more-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem 1.4rem 1.35rem;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.05),
        0 18px 40px -28px rgba(15, 23, 42, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.offer-more-card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.07),
        0 26px 50px -32px rgba(37, 99, 235, 0.35);
}
.offer-more-thumb {
    width: calc(100% + 2.8rem);
    height: 142px;
    flex-shrink: 0;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    margin: -1.5rem -1.4rem 1rem -1.4rem;
    border: none;
    background: #f1f5f9;
    box-shadow:
        0 2px 10px rgba(15, 23, 42, 0.08);
}
.offer-more-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}
.offer-more-card:hover .offer-more-thumb img {
    transform: scale(1.02);
}
.offer-more-card h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.offer-more-card p {
    flex: 1;
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b;
}

/* Déploiement exemples — pattern pro : séparateur + contrôle type lien, panneau encadré, lignes sobres */
.offer-more-disclose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    margin: 0 0 0.5rem;
    padding: 0.85rem 0 0.65rem;
    border: none;
    border-top: 1px solid #e8ecf1;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1e293b;
    background: transparent;
    cursor: pointer;
    transition: color 0.2s ease, box-shadow 0.25s ease;
    box-shadow: 0 1px 0 0 transparent;
}
.offer-more-disclose:hover {
    color: #1d4ed8;
    box-shadow: 0 1px 0 0 rgba(37, 99, 235, 0.45);
}
.offer-more-card.examples-open .offer-more-disclose {
    color: #1d4ed8;
    box-shadow: 0 1px 0 0 #2563eb;
}
.offer-more-disclose:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 4px;
    border-radius: 4px;
}
.offer-more-disclose-chevron {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
}
.offer-more-disclose:hover .offer-more-disclose-chevron,
.offer-more-card.examples-open .offer-more-disclose-chevron {
    color: #2563eb;
}
.offer-more-card.examples-open .offer-more-disclose-chevron {
    transform: rotate(180deg);
}
.offer-more-disclose-grid {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.offer-more-card.examples-open .offer-more-disclose-grid {
    grid-template-rows: 1fr;
}
.offer-more-disclose-measure {
    overflow: hidden;
    min-height: 0;
    padding-bottom: 0.65rem;
}
.offer-more-card.examples-open .offer-mini-acc {
    animation: offerMiniAccEnter 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes offerMiniAccEnter {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.offer-mini-acc {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.2rem 0.15rem;
    background: linear-gradient(180deg, #fafbfc 0%, #f4f6f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    overflow: hidden;
}
.offer-mini-item {
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border-bottom: 1px solid #e8ecf1;
}
.offer-mini-item:last-child {
    border-bottom: none;
}
.offer-mini-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.62rem 0.75rem;
    margin: 0;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #334155;
    text-align: left;
    background: transparent;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.offer-mini-trigger:hover {
    background: rgba(59, 130, 246, 0.06);
    color: #0f172a;
}
.offer-mini-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #94a3b8;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
}
.offer-mini-item.open .offer-mini-trigger {
    background: #fff;
    color: #0f172a;
    font-weight: 600;
    box-shadow: inset 3px 0 0 #2563eb;
}
.offer-mini-item.open .offer-mini-chevron {
    color: #2563eb;
    transform: rotate(180deg);
}
.offer-mini-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    border-top: 1px solid transparent;
    background: #fff;
}
.offer-mini-item.open .offer-mini-panel {
    max-height: 16rem;
    border-top-color: #f1f5f9;
}
.offer-mini-panel p {
    margin: 0;
    padding: 0.55rem 0.75rem 0.65rem 0.95rem;
    font-size: 0.78rem;
    line-height: 1.5;
    color: #64748b;
}

.offer-mini-panel-img {
    width: 100%;
    height: 6.4rem;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0;
    border: none;
    background: #f8fafc;
}

.offer-mini-panel-img + p {
    padding-top: 0.35rem;
}

.offer-mini-panel > p:first-child {
    padding-top: 0.85rem;
}

@media (prefers-reduced-motion: reduce) {
    .offer-more-disclose-grid,
    .offer-more-disclose-chevron,
    .offer-mini-panel,
    .offer-mini-chevron {
        transition: none;
    }
    .offer-more-card.examples-open .offer-mini-acc {
        animation: none;
    }
    .offer-more-card.examples-open .offer-more-disclose-grid {
        grid-template-rows: 1fr;
    }
}

.offer-more-cta {
    font-size: 0.88rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    align-self: flex-start;
    padding: 0.35rem 0;
    border-bottom: 2px solid rgba(37, 99, 235, 0.25);
    transition: color 0.2s ease, border-color 0.2s ease;
}
.offer-more-cta:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

/* FAQ */
.faq { background: #fff; }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq h2 { font-size: 2rem; font-weight: 700; color: #0f172a; margin-bottom: 2rem; text-align: center; }
.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.faq-q {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-q:hover { background: #f8fafc; }
.faq-q::after {
    content: '+';
    font-size: 1.25rem;
    color: #3b82f6;
    transition: transform 0.3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-a {
    max-height: 40rem;
}

.faq-a p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    color: #475569;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Catalogue — pas de double padding vertical (section + .catalog-inner) */
.catalog {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 12rem);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.catalog-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

.catalog-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.catalog-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 0.75rem;
}

.catalog-hero h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.catalog-lead {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 36rem;
    margin: 0 auto;
}

.catalog-toolbar {
    margin-bottom: 2rem;
}

.catalog-seg {
    display: inline-flex;
    flex-wrap: wrap;
    max-width: 100%;
    justify-content: center;
    padding: 4px;
    background: #e2e8f0;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.catalog-seg-btn.tab {
    padding: 0.55rem 1.6rem;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.catalog-seg-btn.tab:hover {
    color: #0f172a;
}

.catalog-seg-btn.tab.active {
    background: #fff;
    color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.catalog-note { color: #64748b; font-size: 0.95rem; margin: 0; line-height: 1.5; }
.catalog-note.hidden { display: none; }

.catalog-panel.hidden { display: none; }

.catalog-group {
    margin-bottom: 2.5rem;
}

.catalog-group:last-child {
    margin-bottom: 0;
}

.catalog-group-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.catalog-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prod {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.prod:hover {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.prod--row {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: stretch;
    min-height: 118px;
}

.prod--row .prod-img {
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    min-height: 118px;
    align-self: stretch;
    background: linear-gradient(145deg, #e2e8f0 0%, #f1f5f9 100%);
    color: inherit;
    text-decoration: none;
    outline-offset: 2px;
}

.prod--row .prod-img img {
    width: 100%;
    height: 100%;
    min-height: 118px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.35s ease;
}

.prod--row:hover .prod-img img {
    transform: scale(1.05);
}

.prod-info { padding: 1.15rem 1.35rem; display: flex; flex-direction: column; justify-content: center; }
.prod-info h3 { font-size: 1.1rem; font-weight: 600; color: #0f172a; margin: 0 0 0.35rem; }
.prod-info p { font-size: 0.92rem; color: #64748b; line-height: 1.5; margin: 0; }
.prod-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #3b82f6;
    margin-top: 0.65rem;
    display: inline-block;
}

.catalog-cta {
    text-align: center;
    display: block;
    max-width: 280px;
    margin: 2.5rem auto 0;
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
}

.catalog-cta.btn-solid { background: #3b82f6; color: #fff; }
.catalog-cta.btn-solid:hover { background: #2563eb; }

/* Import & Export — refonte */
.import {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.import-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.import-banner {
    margin-bottom: 2.5rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.import-banner img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    object-position: center;
}

.import-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.import-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.import-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.import-photo {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.2);
}

.import-photo img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.import-photo:hover img {
    transform: scale(1.04);
}

.import-header {
    position: sticky;
    top: 100px;
}

.import-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 0.75rem;
}

.import-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.import-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.import-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.75rem;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: 0.3s;
}

.import-cta:hover {
    background: #60a5fa;
    transform: translateY(-2px);
}

.import-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.import-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: 0.3s;
}

.import-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(96,165,250,0.3);
}

.import-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(59,130,246,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.import-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #60a5fa;
}

.import-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.import-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

/* Demandes — panneau unique, onglets pills, sections lisibles */
.demandes {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.demandes-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.demandes-header {
    text-align: center;
    margin-bottom: 2.25rem;
}

.demandes-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 0.75rem;
}

.demandes-title {
    font-size: clamp(1.65rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.65rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.demandes-desc {
    margin: 0 auto;
    max-width: 32rem;
    color: #64748b;
    font-size: 0.98rem;
    line-height: 1.6;
}

.demandes-b2b {
    margin: 1rem auto 0;
    max-width: 36rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
    color: #1e40af;
    text-align: center;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 12px;
}

.demandes-panel {
    position: relative;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 20px 50px -24px rgba(15, 23, 42, 0.12);
    overflow: hidden;
}

.demandes-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #0ea5e9 100%);
    pointer-events: none;
}

.demandes-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 6px;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.demande-tab {
    padding: 0.85rem 0.75rem;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    line-height: 1.3;
}

.demande-tab:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.6);
}

.demande-tab.active {
    background: #fff;
    color: #0f172a;
    box-shadow:
        0 1px 4px rgba(15, 23, 42, 0.07),
        inset 0 0 0 1px rgba(59, 130, 246, 0.12);
}

.demande-tab:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    z-index: 1;
}

.demande-form-wrap {
    display: none;
    padding: 1.85rem 2rem 2.25rem;
}

.demande-form-wrap.active {
    display: block;
}

.demande-lead {
    margin: 0 0 0.75rem;
    padding: 0 0.15rem;
    font-size: 0.97rem;
    color: #475569;
    line-height: 1.65;
}

.demande-trust {
    margin: 0 0 1.5rem;
    padding: 0.75rem 0.9rem 0.85rem;
    padding-left: 2.35rem;
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.5;
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    border-radius: 10px;
    position: relative;
}

.demande-trust::before {
    content: '';
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.25);
}

.demande-section {
    margin-bottom: 1.15rem;
    padding: 1.25rem 1.35rem 1.35rem;
    background: linear-gradient(165deg, #fafbfd 0%, #f8fafc 100%);
    border: 1px solid #eef2f7;
    border-radius: 14px;
}

.demande-section:last-of-type {
    margin-bottom: 0;
}

.demande-section-title {
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #64748b;
}

.demandes-panel .form-group:has([required]) label::after,
.contact-form-panel .form-group:has([required]) label::after {
    content: ' *';
    color: #f43f5e;
    font-weight: 700;
    font-size: 0.85em;
}

.demandes-panel .form-group,
.contact-form-panel .form-group {
    margin-bottom: 1.1rem;
}

.demandes-panel .form-group:last-child,
.contact-form-panel .form-group:last-child {
    margin-bottom: 0;
}

.demandes-panel .form-group label,
.contact-form-panel .form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.45rem;
}

.demandes-panel .form input,
.demandes-panel .form select,
.demandes-panel .form textarea,
.contact-form-panel .form input,
.contact-form-panel .form select,
.contact-form-panel .form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.97rem;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.demandes-panel .form input::placeholder,
.demandes-panel .form textarea::placeholder,
.contact-form-panel .form input::placeholder,
.contact-form-panel .form textarea::placeholder {
    color: #94a3b8;
}

.demandes-panel .form input:hover,
.demandes-panel .form select:hover,
.demandes-panel .form textarea:hover,
.contact-form-panel .form input:hover,
.contact-form-panel .form select:hover,
.contact-form-panel .form textarea:hover {
    border-color: #cbd5e1;
}

.demandes-panel .form input:focus,
.demandes-panel .form select:focus,
.demandes-panel .form textarea:focus,
.contact-form-panel .form input:focus,
.contact-form-panel .form select:focus,
.contact-form-panel .form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.demandes-panel .form select,
.contact-form-panel .form select {
    cursor: pointer;
    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='%2364748b' 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.25rem;
}

.demandes-panel .form-row.form-grid,
.contact-form-panel .form-row.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.demandes-panel .form textarea,
.contact-form-panel .form textarea {
    resize: vertical;
    min-height: 108px;
    line-height: 1.5;
}

.demande-submit-wrap {
    margin-top: 1.65rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #e2e8f0;
    text-align: center;
}

.btn-demande {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: 260px;
    padding: 0.95rem 2rem 0.95rem 2.25rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow:
        0 2px 0 rgba(15, 23, 42, 0.08) inset,
        0 4px 18px -4px rgba(59, 130, 246, 0.55);
}

.btn-demande::after {
    content: '→';
    font-size: 1.1rem;
    line-height: 1;
    opacity: 0.92;
}

.btn-demande:hover {
    background: linear-gradient(180deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow:
        0 2px 0 rgba(15, 23, 42, 0.08) inset,
        0 8px 24px -6px rgba(59, 130, 246, 0.55);
}

.btn-demande:active {
    transform: translateY(0);
}

.btn-demande:focus-visible {
    outline: 2px solid #1d4ed8;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .demande-tab,
    .btn-demande,
    .header-nav,
    .demandes-panel .form input,
    .demandes-panel .form select,
    .demandes-panel .form textarea,
    .contact-form-panel .form input,
    .contact-form-panel .form select,
    .contact-form-panel .form textarea {
        transition: none;
    }

    .btn-demande:hover {
        transform: none;
    }
}

/* Contact — même esprit que Demandes : fond clair, panneaux, champs bordés */
.contact {
    background: #f8fafc;
}

.contact-inner {
    max-width: 100%;
}

.contact-head {
    text-align: center;
    margin-bottom: 2.25rem;
}

.contact-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3b82f6;
    margin-bottom: 0.65rem;
}

.contact-title {
    margin: 0;
    font-size: clamp(1.65rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-form-panel {
    position: relative;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    padding: 2rem 1.75rem 2.25rem;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 20px 50px -24px rgba(15, 23, 42, 0.12);
}

.contact-form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #0ea5e9 100%);
    pointer-events: none;
}

.contact-submit-wrap {
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px dashed #e2e8f0;
    text-align: center;
}

.contact-aside {
    position: sticky;
    top: 6rem;
    align-self: stretch;
    padding: 1.5rem 1.5rem 1.5rem 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(191, 219, 254, 0.55);
    border-left: 1px solid rgba(59, 130, 246, 0.28);
    background:
        radial-gradient(ellipse 95% 70% at 100% 15%, rgba(59, 130, 246, 0.07) 0%, transparent 58%),
        radial-gradient(ellipse 80% 55% at 0% 85%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
        linear-gradient(165deg, #eef4ff 0%, #f4f7fc 42%, #f8fafc 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contact-info-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 10px 40px -20px rgba(15, 23, 42, 0.12);
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.35rem;
}

.contact-info-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.contact-info-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    color: #3b82f6;
    margin-top: 0.15rem;
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info-row strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.contact-info-row p {
    font-size: 0.98rem;
    color: #0f172a;
    margin: 0;
    line-height: 1.5;
}

.contact-info-row a {
    color: #2563eb;
    font-weight: 500;
}

.contact-info-row a:hover {
    text-decoration: underline;
}

.contact-hours-line {
    font-size: 0.92rem;
    color: #64748b;
    margin: 1.15rem 0 0.75rem;
    line-height: 1.45;
}

.contact-info-maps {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2563eb;
}

.contact-info-maps:hover {
    text-decoration: underline;
}

/* Carte — même forme que la maquette : titre, sous-texte, bloc arrondi, lien */
.location-strip {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 4.25rem 1.75rem 4.75rem;
    position: relative;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.06) 0%, transparent 55%),
        #f5f7fb;
    border-top: 1px solid rgba(226, 232, 240, 0.65);
}

.location-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.location-head {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 2rem;
}

.location-title {
    margin: 0;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.location-sub {
    margin: 0.85rem 0 0;
    font-size: 0.97rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.65;
}

.location-map-shell {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    position: relative;
    z-index: 0;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 2px 8px rgba(15, 23, 42, 0.04),
        0 28px 64px -28px rgba(15, 23, 42, 0.18);
}

.location-map {
    width: 100%;
    height: 420px;
    min-height: 300px;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    position: relative;
    z-index: 0;
}

.location-foot {
    margin: 1.65rem 0 0;
    text-align: center;
}

.location-foot-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-foot-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Contrôles Leaflet — plus soignés */
.location-strip .leaflet-bar {
    border: none !important;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1) !important;
    border-radius: 12px !important;
    overflow: hidden;
}

.location-strip .leaflet-bar a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 17px;
    font-weight: 500;
    color: #475569 !important;
    background: #fff !important;
    border: none !important;
    transition: background 0.15s, color 0.15s;
}

.location-strip .leaflet-bar a:hover {
    background: #f8fafc !important;
    color: #0f172a !important;
}

.location-strip .leaflet-control-zoom {
    margin: 14px !important;
}

.location-strip .leaflet-control-attribution {
    background: rgba(255, 255, 255, 0.94) !important;
    backdrop-filter: blur(8px);
    color: #94a3b8 !important;
    font-size: 10px !important;
    line-height: 1.4 !important;
    padding: 6px 12px !important;
    border-radius: 10px 0 18px 0;
}

.location-strip .leaflet-control-attribution a {
    color: #64748b !important;
}

.location-strip .location-pin-marker {
    background: transparent !important;
    border: none !important;
}

/* Footer — style Kassapay : fond navy, colonnes */
.footer {
    background: #0f172a;
    color: #fff;
    padding: 3rem 2rem 2rem;
}

.footer-top {
    max-width: 1140px;
    margin: 0 auto 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
}
.footer-logo { height: 40px; }

.footer-grid {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
}

.footer-col a {
    display: block;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}
.footer-col a:hover { color: #3b82f6; }

.footer-contact-newsletter {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-contact-newsletter h4 {
    margin: 0 0 0.45rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.footer-contact-newsletter-desc {
    margin: 0 0 0.7rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
}

.footer-contact-newsletter .newsletter-email {
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
}

.footer-contact-newsletter .newsletter-btn {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
}

.footer-contact-newsletter .newsletter-consent {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact-newsletter .newsletter-row {
    gap: 0.55rem;
}

.footer-bottom {
    max-width: 1140px;
    margin: 2.5rem auto 0;
    padding: 2rem 0 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Newsletter (footer) */
.footer-newsletter {
    max-width: 1140px;
    margin: 0 auto 2.5rem;
    padding-top: 1.25rem;
}

.footer-newsletter-inner {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.footer-newsletter h4 {
    margin: 0 0 0.6rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.footer-newsletter-desc {
    margin: 0 0 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 0.9rem;
}

.newsletter-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.newsletter-email {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(15, 23, 42, 0.25);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.newsletter-email::placeholder {
    color: rgba(255,255,255,0.65);
}

.newsletter-email:focus {
    border-color: rgba(96, 165, 250, 0.95);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25);
}

.newsletter-btn {
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.3rem;
    background: #3b82f6;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(59, 130, 246, 0.24);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    user-select: none;
}

.newsletter-consent input[type="checkbox"] {
    margin-top: 0.15rem;
    width: 16px;
    height: 16px;
    accent-color: #3b82f6;
}

/* Responsive */
@media (max-width: 900px) {
    html { scroll-padding-top: 82px; }
    .header { padding: 0.85rem 1.25rem; }
    .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .intro-img { order: -1; }
    .intro-text h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .values-grid { grid-template-columns: 1fr; }
    .values h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .featured-grid { grid-template-columns: 1fr; }
    .featured h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .offer-more-grid { grid-template-columns: 1fr; }
    .offer-more-head h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .catalog-hero h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .import-header h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .faq h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .import-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .import-header { position: static; }
    .import-cards { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-aside {
        position: static;
        border: 1px solid rgba(191, 219, 254, 0.55);
        border-top-color: rgba(59, 130, 246, 0.22);
        padding: 1.35rem 1.25rem;
    }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row.form-grid { grid-template-columns: 1fr; }
    .demandes-panel .form-row.form-grid,
    .contact-form-panel .form-row.form-grid { grid-template-columns: 1fr; }
    .prod--row {
        grid-template-columns: minmax(100px, 120px) 1fr;
    }
    .prod-info { padding: 1rem 1.1rem; }
}

@media (max-width: 600px) {
    html { scroll-padding-top: 76px; }
    .header { padding: 0.65rem 1rem; }
    .brand-logo { height: 38px; }
    .import-banner img { max-height: 200px; }
    .import-photos { grid-template-columns: 1fr; }
    .import-photo img { height: 200px; }
    .intro, .values, .featured, .offer-more, .catalog, .import, .demandes, .faq, .contact {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }
    .catalog-seg-btn.tab {
        padding: 0.5rem 1.1rem;
        font-size: 0.88rem;
    }
    .demandes-inner { padding-left: 1.1rem; padding-right: 1.1rem; }
    .demande-form-wrap { padding: 1.35rem 1.15rem 1.75rem; }
    .demandes-panel .form-row.form-grid,
    .contact-form-panel .form-row.form-grid { grid-template-columns: 1fr; }
    .demande-tab { font-size: 0.8rem; padding: 0.75rem 0.5rem; }
    .demande-section { padding: 1.1rem 1.15rem 1.2rem; }
    .demande-trust { font-size: 0.78rem; padding-left: 2.1rem; }
    .btn-demande { min-width: 0; width: 100%; max-width: 100%; box-sizing: border-box; }
    .contact-form-panel { padding: 1.5rem 1.15rem 1.75rem; }
    .newsletter-row { grid-template-columns: 1fr; }
    .newsletter-btn { width: 100%; }
    .location-strip { padding: 3.25rem 1.15rem 3.75rem; }
    .location-head { margin-bottom: 1.5rem; }
    .location-map {
        height: 280px;
        min-height: 240px;
    }
    #map {
        min-height: 240px;
    }
    /* CTA header masqué sur très petit écran ; langue conservée */
    .header-right .header-cta { display: none; }
    .header-right { display: flex; align-items: center; gap: 0.5rem; }
    .header-lang { gap: 2px; }
    .lang-btn { padding: 0.3rem 0.5rem; font-size: 0.72rem; }
    .header-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 64px;
        height: calc(100vh - 64px);
        height: calc(100dvh - 64px);
        max-height: none;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 1.25rem 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s;
        z-index: 99;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .header-nav a {
        color: #0f172a;
        font-size: 1.05rem;
        padding: 0.9rem 0.25rem;
        border-bottom: 1px solid #e2e8f0;
    }
    .header-nav a:last-of-type { border-bottom: none; }
    .header-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    body.nav-open {
        overflow: hidden;
    }
    .burger { display: flex; }
    .hero { min-height: min(72vh, 620px); padding-left: 1rem; padding-right: 1rem; }
    .hero-content { padding: 1.25rem 0.5rem; }
    .hero h1 { font-size: clamp(1.85rem, 9vw, 2.75rem); }
    .hero-tagline { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-btns .btn-solid,
    .hero-btns .btn-outline { text-align: center; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
    .prod--row {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .prod--row .prod-img {
        aspect-ratio: 16 / 9;
        min-height: 160px;
    }
    .prod--row .prod-img img {
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: cover;
    }
    .import-cards { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .catalog-cta { max-width: none; margin-left: 1rem; margin-right: 1rem; }
    .faq-q { font-size: 0.95rem; padding: 0.9rem 1rem; }
}

/* Scroll reveal (déclenché par IntersectionObserver) */
.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    will-change: opacity, transform;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.hidden { display: none !important; }
