/* ==========================================================================
   TK Services — DISTRICOOL
   Identité : noir, blanc, orange · Montserrat (titres) · Open Sans (textes)
   ========================================================================== */
:root {
  --black: #111111;
  --orange: #ff6b00;        /* accents, débuts de titres */
  --orange-btn: #e35a00;    /* fonds de boutons (meilleur contraste avec le blanc) */
  --orange-soft: #fff1e6;
  --white: #ffffff;
  --grey-light: #f3f3f3;
  --grey-mid: #e4e4e4;
  --grey-text: #555555;
  --text: #1f1f1f;
  --wa: #25d366;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --container: 1200px;
  --header-h: 76px;
  --font-title: 'Montserrat', system-ui, sans-serif;
  --font-text: 'Open Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.15; margin: 0 0 0.6em; color: var(--black); }
h3 { font-size: 1.1rem; }
.h3 { font-size: 1.25rem; font-weight: 700; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }

.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; vertical-align: -0.25em; }
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 1000; background: var(--black); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 8px; }

.title { font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(1.6rem, 4.2vw, 2.7rem); }
h2.title { font-size: clamp(1.45rem, 3.4vw, 2.2rem); }
h3.title { font-size: 1.25rem; }
.accent { color: var(--orange); }
.title.light { color: #fff; }
.eyebrow { font-family: var(--font-title); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.12em; color: var(--orange-btn); margin-bottom: 0.8em; }
.lead { font-size: 1.1rem; color: var(--grey-text); max-width: 60ch; }
.small { font-size: 0.85rem; color: var(--grey-text); }
.center { text-align: center; }
.center.actions, .actions.center { justify-content: center; }
.mt { margin-top: 2rem; }
.narrow { max-width: 820px; margin: 0 auto; }
p.center { margin-top: 2rem; }

/* --- Boutons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-title); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 0.85em 1.6em; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; line-height: 1.2; transition: background .2s, color .2s, border-color .2s, transform .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange-btn); color: #fff; }
.btn-primary:hover { background: #c94f00; }
.btn-outline { border-color: var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-ghost { background: var(--white); color: var(--black); border-color: var(--grey-mid); }
.btn-ghost .icon { color: #1da851; }
.btn-ghost:hover { border-color: var(--black); }
.btn-light { background: #fff; color: var(--black); }
.btn-light .icon { color: #1da851; }
.btn-sm { font-size: 0.85rem; padding: 0.65em 1.2em; }
.btn-lg { font-size: 1.05rem; padding: 1em 2em; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.5rem; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-title); font-weight: 700; font-size: 0.9rem; color: var(--orange-btn); text-decoration: none; }
.link-arrow .icon { transition: transform .2s; }
a:hover .link-arrow .icon, .link-arrow:hover .icon { transform: translateX(4px); }

/* --- En-tête --------------------------------------------------------------- */
.topbar { background: var(--black); color: #cfcfcf; font-size: 0.8rem; }
.topbar-inner { display: flex; justify-content: space-between; gap: 16px; padding-top: 6px; padding-bottom: 6px; }
.topbar a { color: #cfcfcf; text-decoration: none; margin-left: 18px; }
.topbar a:hover { color: #fff; }
.topbar .icon { color: var(--orange); }
@media (max-width: 767px) { .topbar-links a:first-child { display: none; } .topbar-inner > span:first-child { display: none; } .topbar-inner { justify-content: center; } }

.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 1px 0 var(--grey-mid); }
.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--black); flex-shrink: 0; }
.logo-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--black); color: #fff; font-family: var(--font-title); font-weight: 800; font-size: 1.1rem; position: relative; overflow: hidden; }
.logo-mark::after { content: ''; position: absolute; right: -8px; bottom: -8px; width: 18px; height: 18px; background: var(--orange); transform: rotate(45deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--font-title); }
.logo-text strong { font-size: 1.05rem; font-weight: 800; letter-spacing: 0.02em; }
.logo-text small { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; }
.logo-text small span { color: var(--orange); }
.logo-light { color: #fff; }
.logo-light .logo-mark { background: #fff; color: var(--black); }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 4px; justify-content: center; }
.nav-top {
  background: none; border: 0; padding: 10px 12px; border-radius: 999px;
  font-family: var(--font-title); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.01em; color: var(--black);
  white-space: nowrap;
}
.nav-top:hover, .nav-top[aria-expanded="true"] { background: var(--grey-light); }
.nav-top.is-current { color: var(--orange-btn); }
.header-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.burger { display: none; background: var(--grey-light); border: 0; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; }
.burger .icon { width: 22px; height: 22px; }

@media (max-width: 1180px) {
  .main-nav { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 420px) {
  .btn-contact { padding: 0.7em 1em; font-size: 0.78rem; }
  .logo-text strong { font-size: 0.9rem; }
  .logo-mark { width: 38px; height: 38px; }
  .header-inner { gap: 10px; }
}

/* --- Grand panneau (mega menu) ------------------------------------------ */
.mega { position: absolute; left: 0; right: 0; top: 100%; z-index: 101; padding-top: 12px; }
.mega-backdrop { position: fixed; inset: 0; top: 0; background: rgba(0, 0, 0, 0.35); z-index: 99; }
.mega-panel {
  position: relative; background: var(--grey-light); border-radius: 28px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: minmax(280px, 1.1fr) 1fr; gap: 40px; padding: 48px 56px 36px;
  max-height: calc(100vh - var(--header-h) - 60px); overflow: auto; animation: megaIn .2s ease-out;
}
@keyframes megaIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.mega-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: #fff; display: grid; place-items: center; }
.mega-rubs li + li { margin-top: 4px; }
.mega-rub {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left;
  background: none; border: 0; padding: 8px 0; color: var(--black);
  font-family: var(--font-title); font-weight: 800; text-transform: uppercase; font-size: clamp(1.25rem, 2.4vw, 2rem); line-height: 1.15;
}
.mega-rub .icon { opacity: 0; transition: opacity .2s, transform .2s; color: var(--orange); }
.mega-rub:hover, .mega-rub.is-active { color: var(--orange); }
.mega-rub.is-active .icon { opacity: 1; }
.mega-right { border-left: 1px solid var(--grey-mid); padding-left: 40px; }
.mega-group { display: none; }
.mega-group.is-active { display: block; animation: megaIn .2s ease-out; }
.mega-links li a {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--grey-mid);
  text-decoration: none; color: var(--text); font-size: 1.02rem;
}
.mega-links li a .icon { color: var(--orange); opacity: 0; transition: opacity .2s, transform .2s; }
.mega-links li a:hover { color: var(--orange-btn); }
.mega-links li a:hover .icon { opacity: 1; transform: translateX(4px); }
.mega-links a.strong { font-weight: 700; color: var(--black); }
.mega-links-mobile { display: none; }
.mega-foot { grid-column: 1 / -1; display: flex; gap: 12px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--grey-mid); }

@media (max-width: 1180px) {
  .mega { position: fixed; top: 0; bottom: 0; padding: 0; overflow: auto; background: var(--grey-light); }
  .mega .container { padding: 0; }
  .mega-panel { display: block; border-radius: 0; box-shadow: none; padding: 72px 20px 28px; max-height: none; min-height: 100vh; }
  .mega-right { display: none; }
  .mega-rub { font-size: 1.3rem; padding: 14px 0; border-bottom: 1px solid var(--grey-mid); }
  .mega-rub .icon { opacity: 1; transform: rotate(90deg); color: var(--grey-text); }
  .mega-rub.is-active .icon { transform: rotate(-90deg); color: var(--orange); }
  .mega-rub.is-active + .mega-links-mobile { display: block; padding: 4px 0 12px 12px; }
  .mega-links-mobile a { display: block; padding: 10px 0; text-decoration: none; }
  .mega-links-mobile a.strong { font-weight: 700; }
  .mega-foot { border-top: 0; }
  .mega-foot .btn { flex: 1; }
}

/* --- Fil d'Ariane -------------------------------------------------------- */
.breadcrumb { padding-top: 16px; font-size: 0.85rem; color: var(--grey-text); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 4px 0; }
.breadcrumb li + li::before { content: '›'; margin: 0 8px; color: #aaa; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: var(--orange-btn); text-decoration: underline; }

/* --- Hero ------------------------------------------------------------------ */
.hero { padding: 40px 0 48px; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.hero-noimg { grid-template-columns: 1fr; }
.hero-noimg .hero-text { max-width: 820px; }
.hero-media { position: relative; display: flex; justify-content: center; }
.hero-media img { position: relative; max-height: 480px; width: auto; filter: drop-shadow(0 24px 30px rgba(0,0,0,.2)); }
.diamond { position: absolute; width: 72%; aspect-ratio: 1; background: var(--orange); transform: rotate(45deg); border-radius: 32px; top: 50%; left: 50%; translate: -50% -50%; opacity: .95; }
.hero-media .diamond { width: 62%; }
@media (max-width: 860px) {
  .hero { padding: 24px 0 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-media img { max-height: 320px; }
}

/* --- Bandeau de confiance ---------------------------------------------- */
.trust { background: var(--black); color: #fff; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-top: 20px; padding-bottom: 20px; font-size: 0.92rem; }
.trust-inner > div { display: flex; align-items: center; gap: 10px; }
.trust .icon { color: var(--orange); width: 28px; height: 28px; }
@media (max-width: 860px) { .trust-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .trust-inner { grid-template-columns: 1fr; } }

/* --- Sections ------------------------------------------------------------ */
.section { padding: 72px 0; }
.section-tight { padding: 32px 0; }
.bg-light { background: var(--grey-light); }
.bg-dark { background: var(--black); color: #ddd; }
.bg-dark .title, .bg-dark h3 { color: #fff; }
.bg-dark .lead, .bg-dark p, .bg-dark .features p { color: #c4c4c4; }
.section-head { margin-bottom: 36px; }
@media (max-width: 767px) { .section { padding: 48px 0; } }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-machines { grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: var(--white); border: 1px solid var(--grey-mid); border-radius: var(--radius); overflow: hidden; }
.bg-light .card { border-color: transparent; }
.tile { display: flex; flex-direction: column; gap: 6px; padding: 26px; text-decoration: none; color: var(--text); transition: box-shadow .2s, transform .2s, border-color .2s; }
a.tile:hover, a.offer:hover, a.sector-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: var(--orange); }
.tile h3 { margin: 8px 0 2px; }
.tile p { color: var(--grey-text); font-size: 0.95rem; margin: 0 0 8px; flex: 1; }
.tile .link-arrow { margin-top: auto; }
.tile-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--orange-soft); color: var(--orange-btn); }
.tile-icon .icon { width: 28px; height: 28px; }
.tile-icon a { color: inherit; }

.offer { position: relative; display: flex; flex-direction: column; gap: 8px; padding: 32px; text-decoration: none; color: var(--text); transition: box-shadow .2s, transform .2s, border-color .2s; }
.offer h3 { font-size: 1.5rem; text-transform: uppercase; margin-top: 10px; }
.offer p { color: var(--grey-text); flex: 1; }
.offer-badge { position: absolute; top: 20px; right: 20px; background: var(--black); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.offers .offer:first-child { border: 2px solid var(--orange); }

/* Cartes machines */
.machine-card { display: grid; grid-template-columns: 42% 1fr; }
.machine-card-img { background: var(--grey-light); display: grid; place-items: center; padding: 20px; position: relative; }
.bg-light .machine-card-img { background: #fafafa; }
.machine-card-img img { max-height: 280px; width: auto; }
.card-body { padding: 24px; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.2rem; }
.card-body h3 a { text-decoration: none; }
.card-body h3 a:hover { color: var(--orange-btn); }
.card-body > p { color: var(--grey-text); font-size: 0.95rem; }
.tag { display: inline-block; align-self: flex-start; background: var(--orange-soft); color: var(--orange-btn); font-weight: 700; font-size: 0.75rem; padding: 3px 10px; border-radius: 999px; text-transform: uppercase; margin-bottom: 10px; }
.mini-specs { display: grid; gap: 6px; margin-bottom: 18px; font-size: 0.9rem; }
.mini-specs .icon { color: var(--orange); }
.card-actions { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
@media (max-width: 520px) { .machine-card { grid-template-columns: 1fr; } .machine-card-img img { max-height: 220px; } }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-top { align-items: start; }
.split-faq { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
.split-media { position: relative; display: flex; justify-content: center; padding: 20px 0; }
.split-media img { position: relative; max-height: 460px; width: auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,.2)); }
@media (max-width: 860px) { .split, .split-faq { grid-template-columns: 1fr; gap: 32px; } .split-media img { max-height: 340px; } }

.highlights { display: grid; gap: 12px; margin: 20px 0; }
.highlights li { display: flex; gap: 14px; align-items: flex-start; }
.highlights .icon { width: 40px; height: 40px; padding: 9px; border-radius: 12px; background: var(--orange-soft); color: var(--orange-btn); }
.highlights strong { display: block; font-family: var(--font-title); font-size: 0.95rem; }
.highlights span { color: var(--grey-text); font-size: 0.92rem; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 32px; }
.features li { display: flex; gap: 16px; }
.feature-icon { flex-shrink: 0; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--orange); color: #fff; }
.features h3 { margin: 4px 0 4px; font-size: 1.05rem; }
.features p { margin: 0; color: var(--grey-text); font-size: 0.95rem; }
@media (max-width: 960px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.steps li { position: relative; background: var(--white); border-radius: var(--radius); padding: 28px 24px; }
.section:not(.bg-light) .steps li { background: var(--grey-light); }
.step-num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--black); color: #fff; font-family: var(--font-title); font-weight: 800; margin-bottom: 14px; }
.steps li:first-child .step-num { background: var(--orange-btn); }
.steps p { color: var(--grey-text); font-size: 0.95rem; margin: 0; }
@media (max-width: 960px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

.checklist { display: grid; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist .icon { color: var(--orange); margin-top: 3px; }
.checklist-inline { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.checklist-inline li { background: var(--grey-light); padding: 16px 18px; border-radius: var(--radius-sm); font-weight: 600; }
@media (max-width: 860px) { .checklist-inline { grid-template-columns: 1fr; } }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--grey-mid); }
.bg-light .faq-item { border-color: transparent; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-family: var(--font-title); font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { color: var(--orange); transition: transform .2s; }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 18px; color: var(--grey-text); }
.faq-answer p { margin: 0; }

/* Encart « Avez-vous trouvé… » */
.found-it { background: var(--grey-light); border-radius: var(--radius); padding: 28px 32px; border-left: 6px solid var(--orange); }
.found-it-q { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.found-it-q > div:nth-child(2) { flex: 1; min-width: 200px; }
.found-it-q h2 { margin: 0 0 4px; }
.found-it-q p { margin: 0; color: var(--grey-text); }
.found-it-icon .icon { width: 44px; height: 44px; color: var(--orange); }
.found-it-buttons { display: flex; gap: 10px; }
.found-it-a { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--grey-mid); }
.found-it-a .actions { margin-top: 12px; }

/* Bandeaux d'appel */
.cta-band { background: var(--black); color: #ddd; padding: 56px 0; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; width: 260px; height: 260px; background: var(--orange); transform: rotate(45deg); right: -90px; bottom: -150px; border-radius: 40px; opacity: .9; }
.cta-band-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-band p { margin: 0; color: #bdbdbd; }
.cta-band .actions { margin: 0; }
.quote-band { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; background: var(--white); border: 2px solid var(--orange); border-radius: var(--radius); padding: 32px; }
.quote-band p { margin: 0; color: var(--grey-text); }
.quote-band .title { margin-bottom: 8px; }

/* Produit */
.product { padding-top: 32px; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-main { background: var(--grey-light); border-radius: var(--radius); padding: 32px; display: grid; place-items: center; min-height: 420px; }
.product-main img { max-height: 500px; width: auto; }
.product-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.product-thumbs button { width: 100%; background: var(--grey-light); border: 2px solid transparent; border-radius: var(--radius-sm); padding: 10px; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--grey-text); }
.product-thumbs button img { height: 80px; width: auto; }
.product-thumbs button.is-active, .product-thumbs button:hover { border-color: var(--orange); color: var(--black); }
.product-type { font-weight: 700; color: var(--grey-text); margin-top: -0.4em; }
.product-info .small { margin-top: 12px; }
@media (max-width: 860px) { .product-grid { grid-template-columns: 1fr; gap: 28px; } .product-main { min-height: 0; } .product-main img { max-height: 360px; } }

.specs { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-sm); overflow: hidden; font-size: 0.95rem; }
.specs th, .specs td { text-align: left; padding: 11px 16px; border-bottom: 1px solid var(--grey-light); vertical-align: top; }
.specs th { width: 42%; font-weight: 600; color: var(--grey-text); }
.specs tr:last-child th, .specs tr:last-child td { border-bottom: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chips li { background: var(--white); border: 1px solid var(--grey-mid); padding: 6px 14px; border-radius: 999px; font-size: 0.9rem; font-weight: 600; }
.datasheet { position: relative; display: block; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--grey-mid); }
.datasheet span { position: absolute; right: 12px; bottom: 12px; background: var(--black); color: #fff; font-size: 0.8rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; }
.info-box { display: flex; gap: 16px; align-items: flex-start; background: var(--orange-soft); border-radius: var(--radius-sm); padding: 18px 20px; margin-top: 20px; }
.info-box > .icon { width: 32px; height: 32px; color: var(--orange-btn); }
.info-box p { margin: 0; }
.info-box-lg { padding: 28px; }
.info-box-lg .actions { margin-top: 12px; }

.table-wrap { overflow-x: auto; }
.compare { width: 100%; min-width: 520px; border-collapse: separate; border-spacing: 0; border: 1px solid var(--grey-mid); border-radius: var(--radius); overflow: hidden; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--grey-mid); }
.compare thead th { background: var(--black); color: #fff; font-family: var(--font-title); text-transform: uppercase; font-size: 0.9rem; }
.compare thead th:nth-child(2) { background: var(--orange-btn); }
.compare tbody th { font-weight: 600; color: var(--grey-text); }
.compare tr:last-child > * { border-bottom: 0; }
.compare .icon { color: var(--orange); }

.id-card { background: var(--grey-light); border-radius: var(--radius); padding: 32px; }
.id-card dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; margin: 0; }
.id-card dt { font-weight: 600; color: var(--grey-text); }
.id-card dd { margin: 0; font-weight: 600; word-break: break-word; }
@media (max-width: 480px) { .id-card dl { grid-template-columns: 1fr; gap: 2px; } .id-card dd { margin-bottom: 10px; } }

.sector-card { display: flex; gap: 20px; padding: 28px; text-decoration: none; color: var(--text); transition: box-shadow .2s, transform .2s, border-color .2s; }
.sector-card p { color: var(--grey-text); font-size: 0.95rem; }
.empty-state { text-align: center; background: var(--white); border-radius: var(--radius); padding: 40px; }
.empty-state > .icon { width: 44px; height: 44px; color: var(--orange); margin: 0 auto 12px; }
.testimonial { padding: 28px; margin: 0; }
.testimonial blockquote { margin: 0 0 16px; font-style: italic; }

/* Galerie + visionneuse */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: 20px; }
.gallery a { display: grid; place-items: center; aspect-ratio: 4 / 3; background: var(--grey-light); border-radius: var(--radius-sm); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .3s; }
.gallery a:hover img { transform: scale(1.04); }
.gallery p { font-size: 0.9rem; color: var(--grey-text); margin: 8px 0 0; }
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.88); display: grid; place-items: center; padding: 24px; }
.lightbox img { max-height: 84vh; width: auto; border-radius: 8px; background: #fff; }
.lightbox p { color: #fff; text-align: center; margin-top: 12px; }
.lightbox button { position: absolute; top: 16px; right: 16px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: #fff; display: grid; place-items: center; }

/* Carte */
.map { border-radius: var(--radius); overflow: hidden; background: var(--grey-mid); min-height: 360px; display: grid; }
.bg-light .map { background: var(--white); }
.map iframe { width: 100%; height: 420px; border: 0; }
.map-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 8px; padding: 32px; background-image: radial-gradient(var(--grey-mid) 1px, transparent 1px); background-size: 18px 18px; }
.map-pin { width: 48px; height: 48px; color: var(--orange); }
.map-placeholder p { margin: 0; }

/* --- Formulaire « Travaillons ensemble ! » ------------------------------- */
.contact-section { background: var(--white); border-top: 1px solid var(--grey-light); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: stretch; }
.contact-intro { background: var(--grey-light); border-radius: 28px; padding: 40px 36px 0; display: flex; flex-direction: column; overflow: hidden; }
.contact-intro .title { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.contact-intro > p { color: var(--grey-text); font-size: 1.05rem; }
.contact-direct { display: grid; gap: 8px; margin: 8px 0 24px; font-weight: 600; font-size: 0.95rem; }
.contact-direct a { text-decoration: none; }
.contact-direct a:hover { color: var(--orange-btn); }
.contact-direct .icon { color: var(--orange); }
.contact-direct li:nth-child(2) .icon { color: #1da851; }
.portrait { position: relative; margin-top: auto; display: flex; justify-content: center; align-items: flex-end; min-height: 260px; }
.portrait .diamond { width: 230px; top: 62%; }
.portrait img { position: relative; width: 240px; }
.contact-form { align-self: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.9rem; }
.req { color: var(--orange-btn); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--text);
  padding: 13px 16px; border: 1.5px solid #cfcfcf; border-radius: var(--radius-sm); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 107, 0, .15); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c62828; }
.field-error { color: #c62828; font-size: 0.82rem; }
.checks { gap: 10px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 400 !important; font-size: 0.9rem !important; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--orange-btn); flex-shrink: 0; }
.checks.has-error .check:last-child { color: #c62828; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.form-foot p { margin: 0; }
.form-foot .btn[disabled] { opacity: .6; pointer-events: none; }
.form-status { margin-top: 20px; padding: 18px 20px; border-radius: var(--radius-sm); }
.form-status.ok { background: #e8f5e9; color: #1b5e20; }
.form-status.err { background: #fdecea; color: #8a1c1c; }
.form-status .actions { margin-top: 12px; }
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-intro { padding: 32px 24px 0; }
  .portrait { min-height: 200px; }
  .portrait img { width: 190px; }
  .portrait .diamond { width: 180px; }
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } .form-foot .btn { width: 100%; } }

/* --- Pied de page -------------------------------------------------------- */
.site-footer { background: var(--black); color: #cfcfcf; padding-top: 64px; font-size: 0.93rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 2.2fr; gap: 56px; padding-bottom: 48px; }
.footer-title { color: #fff; font-size: 1.2rem; text-transform: uppercase; font-weight: 800; margin: 24px 0 18px; }
.footer-contact { display: flex; align-items: center; gap: 14px; background: #222; border-radius: var(--radius-sm); padding: 16px 18px; text-decoration: none; color: #fff; transition: background .2s; }
.footer-contact:hover { background: #2c2c2c; }
.footer-contact-icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--orange-btn); color: #fff; flex-shrink: 0; }
.footer-contact strong { font-family: var(--font-title); letter-spacing: .03em; }
.footer-coords { display: grid; gap: 8px; margin-top: 20px; }
.footer-coords li { display: flex; gap: 10px; align-items: flex-start; }
.footer-coords .icon { color: var(--orange); margin-top: 2px; }
.footer-coords a { text-decoration: none; }
.footer-coords a:hover, .footer-col a:hover { color: #fff; text-decoration: underline; }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #222; color: #fff; }
.socials a:hover { background: var(--orange-btn); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer-col h2 { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col li + li { margin-top: 10px; }
.footer-col a { text-decoration: none; color: #cfcfcf; }
.footer-bottom { border-top: 1px solid #2a2a2a; padding: 20px 0; font-size: 0.85rem; }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-bottom a { text-decoration: none; color: #cfcfcf; }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 700px) { .footer-cols { grid-template-columns: 1fr 1fr; } .site-footer { padding-bottom: 80px; } }
@media (max-width: 400px) { .footer-cols { grid-template-columns: 1fr; } }

/* --- Bouton WhatsApp flottant ------------------------------------------ */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 200;
  display: inline-flex; align-items: center; gap: 8px; height: 58px; padding: 0 20px 0 16px;
  background: var(--wa); color: #fff; border-radius: 999px; text-decoration: none;
  font-family: var(--font-title); font-weight: 700; box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.05); }
.wa-float .icon { width: 30px; height: 30px; }
@media (max-width: 700px) { .wa-float { width: 58px; padding: 0; justify-content: center; } .wa-float span { display: none; } }

/* Pages légales */
.legal h2 { font-size: 1.2rem; margin-top: 2em; }
.legal ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; }
.legal a { color: var(--orange-btn); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
@media print {
  .site-header, .wa-float, .contact-section, .site-footer, .mega { display: none !important; }
}
body.no-scroll .wa-float { display: none; }
.mega-rub { border-radius: 8px; }
