/* ============================================================
   SDI GLOBAL — PC sur mesure, Paris
   Style e-commerce classique : fond clair, accents rouges
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --line: #e3e3e3;
  --ink: #222222;
  --muted: #767676;
  --dark: #262626;
  --dark-2: #1d1d1d;
  --accent: #d63c2a;
  --accent-dark: #b52f20;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --radius: 4px;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 130px; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { width: min(1200px, 94%); margin-inline: auto; }
.container--narrow { width: min(860px, 94%); }

.accent { color: var(--accent); }
.reveal { /* animations retirées : contenu toujours visible */ }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--dark-2);
  color: #f2f2f2;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.45rem 1rem;
}
.topbar i { margin-inline: 0.9rem; font-style: normal; color: var(--accent); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.logo { flex-shrink: 0; }
.logo__text {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: var(--dark);
  text-transform: uppercase;
}
.logo__text em { font-style: normal; color: var(--accent); }

.search {
  flex: 1;
  display: flex;
  max-width: 560px;
  margin-inline: auto;
  border: 1px solid #cfcfcf;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.search input {
  flex: 1;
  border: none;
  font-family: var(--sans);
  font-size: 0.92rem;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
}
.search input:focus { outline: none; }
.search input::placeholder { color: #9a9a9a; }
.search button {
  border: none;
  background: #fff;
  padding: 0 0.9rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--muted);
}
.search button:hover { color: var(--accent); }

.header__contact {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-shrink: 0;
}
.header__phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  white-space: nowrap;
}

/* ---------- Barre de navigation ---------- */
.nav-bar { background: var(--dark); }
.nav {
  display: flex;
  align-items: stretch;
}
.nav > a {
  color: #e8e8e8;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 1.3rem;
  transition: background 0.15s, color 0.15s;
}
.nav > a:hover { background: #333; color: #fff; }
.nav > a.nav__promo { background: var(--accent); color: #fff; }
.nav > a.nav__promo:hover { background: var(--accent-dark); }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.burger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn--big { padding: 0.95rem 2.1rem; font-size: 1rem; }
.btn--nav { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-dark); }
.btn--ghost { border-color: var(--dark); color: var(--dark); background: transparent; }
.btn--ghost:hover { background: var(--dark); color: #fff; }
.btn--outline { border-color: #cfcfcf; color: var(--dark); background: #fff; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.hero__kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
.hero__title {
  font-weight: 800;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--dark);
}
.hero__title span { display: block; }
.hero__sub {
  max-width: 540px;
  margin-top: 1.2rem;
  color: #555;
  font-size: 1.05rem;
}
.hero__sub strong { color: var(--dark); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.8rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.hero__stats span { color: var(--muted); font-size: 0.82rem; }
.hero__media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Marques ---------- */
.brands {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.brands__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 3rem;
}
.brands__row span {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: #b5b5b5;
}
.brands__row span:hover { color: var(--dark); }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.section--dark { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section__kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
  text-align: center;
}
.section__title {
  font-weight: 800;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  margin-bottom: 0.8rem;
}
.section__title .accent { color: var(--accent); }
.section__sub {
  max-width: 680px;
  color: var(--muted);
  margin: 0 auto 1rem;
  text-align: center;
}

/* ---------- Univers cards ---------- */
.grid { display: grid; gap: 1.2rem; margin-top: 2.2rem; }
.grid--univers { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow); border-color: #cfcfcf; }
.card__icon { font-size: 1.8rem; }
.card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--dark); }
.card p { color: #666; font-size: 0.94rem; flex: 1; }
.card__link { color: var(--accent); font-weight: 700; font-size: 0.9rem; }
.card__link:hover { color: var(--accent-dark); text-decoration: underline; }

/* ---------- Configs ---------- */
.grid--configs { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); align-items: stretch; }

.config {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.config:hover { box-shadow: var(--shadow); border-color: #cfcfcf; }
.config--star { border-color: var(--accent); }
.config__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
  z-index: 1;
}
.config__head h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
}
.config__head p { color: var(--muted); font-size: 0.88rem; }
.config__specs { display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.config__specs li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 0.45rem;
}
.config__specs b {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 110px;
  padding-top: 3px;
}
.config__foot { display: flex; flex-direction: column; gap: 0.7rem; }
.config__price { font-size: 0.9rem; color: var(--muted); }
.config__price strong { font-size: 1.45rem; font-weight: 800; color: var(--accent); margin-inline: 0.2rem; }

.config__visual {
  display: grid;
  place-items: center;
  height: 195px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  overflow: hidden;
}
.config__visual svg { height: 92%; width: auto; max-width: 100%; }
.config__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.config__top { display: flex; flex-direction: column; gap: 1rem; }
.config__top:hover .config__visual img { transform: scale(1.04); }
.config__top:hover h3 { color: var(--accent); }
.config__top h3 { transition: color 0.15s; }
.config.hidden { display: none; }

/* ---------- Catalogue ---------- */
.catalog { min-height: 70vh; }
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.filter {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--dark);
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 99px;
  padding: 0.5rem 1.15rem;
  cursor: pointer;
  transition: all 0.15s;
}
.filter:hover { border-color: var(--accent); color: var(--accent); }
.filter.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.grid--catalog { margin-top: 1.8rem; }
.catalog__empty { text-align: center; color: var(--muted); margin-top: 2.2rem; }
.catalog__cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}
.catalog__cta p { color: var(--muted); margin-bottom: 1.2rem; }

/* ---------- Fiche produit ---------- */
.fiche { min-height: 70vh; }
.fiche .section__kicker, .fiche .section__title { text-align: left; }
.fiche__breadcrumb { margin-bottom: 1.6rem; }
.fiche__breadcrumb a { color: var(--muted); font-weight: 700; font-size: 0.88rem; }
.fiche__breadcrumb a:hover { color: var(--accent); }
.fiche__hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}
.fiche__art {
  position: sticky;
  top: 150px;
  display: grid;
  place-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  min-height: 400px;
}
.fiche__art svg { width: min(70%, 320px); height: auto; }
.fiche__art .config__visual {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  border-radius: 0;
  background: none;
}
.fiche__art img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; }
.fiche__cat {
  display: inline-block;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  margin-bottom: 0.9rem;
}
.fiche__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.05;
  color: var(--dark);
}
.fiche__tagline { color: var(--muted); font-size: 1.05rem; margin-top: 0.4rem; }
.fiche__desc { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.9rem; }
.fiche__desc p { color: #444; }
.fiche__ideal { margin-top: 1.1rem; color: #444; font-size: 0.94rem; }
.fiche__ideal b { color: var(--accent); }
.fiche__buy {
  margin-top: 1.5rem;
  padding: 1.4rem;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.fiche__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.2rem;
  margin-top: 2.6rem;
}
.fiche__block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.6rem;
}
.fiche__block h2, .fiche__included h2, .fiche__others h2 {
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 1.1rem;
}
.fiche__forts { display: flex; flex-direction: column; gap: 0.8rem; }
.fiche__forts li { display: flex; gap: 0.6rem; align-items: baseline; color: #444; font-size: 0.95rem; }
.fiche__forts li::before { content: '✓'; color: var(--accent); font-weight: 700; }
.fiche__specs { width: 100%; border-collapse: collapse; font-size: 0.93rem; }
.fiche__specs th {
  text-align: left;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1rem 0.6rem 0;
  vertical-align: top;
  white-space: nowrap;
}
.fiche__specs td { color: #444; padding: 0.6rem 0; }
.fiche__specs tr + tr { border-top: 1px dashed var(--line); }
.fiche__included { margin-top: 2.6rem; }
.fiche__others { margin-top: 3rem; }
.config--mini { padding: 1.2rem; gap: 0.9rem; }
.config--mini .config__visual { height: 155px; }
.config--mini:hover { border-color: var(--accent); }
.config--mini .config__head h3 { font-size: 1.15rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.step h3 { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--dark); }
.step p { color: #666; font-size: 0.94rem; }
.steps__cta { text-align: center; margin-top: 2.4rem; }

/* ---------- Réassurance ---------- */
.assurance {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 2.4rem 0;
}
.grid--assurance { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 0; }
.assure { text-align: center; }
.assure span { font-size: 1.7rem; }
.assure h3 {
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.5rem 0 0.3rem;
  color: var(--dark);
}
.assure p { color: var(--muted); font-size: 0.86rem; }

/* ---------- Avis ---------- */
.grid--avis { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.avis {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.avis__stars { color: #f5a623; letter-spacing: 0.15em; font-size: 0.95rem; }
.avis p:not(.avis__stars) { color: #444; font-size: 0.93rem; flex: 1; }
.avis footer { color: var(--muted); font-size: 0.8rem; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 0.7rem; margin-top: 2rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--dark);
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  position: relative;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.2rem; color: #555; font-size: 0.95rem; }
.faq__more { text-align: center; margin-top: 2rem; }
.faq__more p:first-child { color: var(--muted); }
.faq__phone { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-top: 0.3rem; }

/* ---------- CTA final ---------- */
.cta-final {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.cta-final h2 {
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.cta-final .accent { color: var(--accent); }
.cta-final p { color: #b5b5b5; margin: 1rem 0 1.6rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-2);
  color: #b5b5b5;
  padding-top: 3rem;
  font-size: 0.92rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.2rem;
  padding-bottom: 2.4rem;
}
.footer__brand p:not(.logo__text) { font-size: 0.9rem; margin-top: 0.8rem; }
.footer__brand .logo__text { color: #fff; }
.footer__note { color: #8a8a8a; font-size: 0.8rem !important; }
.footer h4 {
  font-weight: 800;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer ul a:hover { color: #fff; text-decoration: underline; }
.footer__contact li { color: #b5b5b5; }
.footer__bottom {
  border-top: 1px solid #333;
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: #8a8a8a;
}
.footer__bottom a { color: #cfcfcf; text-decoration: underline; }
.footer__bottom a:hover { color: #fff; }

/* ---------- Page devis ---------- */
.devis-page {
  background: var(--bg-alt);
  min-height: 70vh;
  padding: clamp(2.5rem, 5vw, 4rem) 0 4rem;
}
.devis__wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.8rem;
  align-items: start;
}
.devis__intro { position: sticky; top: 150px; }
.devis__intro .section__kicker, .devis__intro .section__title { text-align: left; }
.devis__intro > p { color: #555; margin-top: 0.8rem; max-width: 420px; }
.devis__points { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.8rem; }
.devis__points li { display: flex; gap: 0.6rem; align-items: baseline; color: #444; font-size: 0.95rem; }
.devis__points li::before { content: '✓'; color: var(--accent); font-weight: 700; }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  box-shadow: var(--shadow);
}
.form fieldset { border: none; display: flex; flex-direction: column; gap: 0.8rem; }
.form legend {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.form legend b { color: var(--accent); margin-right: 0.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form label.field, .form p.field { display: flex; flex-direction: column; gap: 0.3rem; font-size: 0.86rem; font-weight: 700; color: var(--dark); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: #a5a5a5; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214, 60, 42, 0.12);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d63c2a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.field textarea { resize: vertical; min-height: 110px; }

.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips label { position: relative; cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border: 1px solid #cfcfcf;
  border-radius: 99px;
  font-size: 0.86rem;
  font-weight: 500;
  color: #444;
  transition: all 0.15s;
  user-select: none;
}
.chips input:checked + span { background: var(--accent); border-color: var(--accent); color: #fff; }
.chips input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.form__consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.83rem; color: var(--muted); font-weight: 400; }
.form__consent input { margin-top: 4px; accent-color: var(--accent); }
.form__submit { align-self: flex-start; }
.form__hint { font-size: 0.8rem; color: var(--muted); }

/* Succès */
.success { display: none; text-align: center; padding: 2.6rem 1.4rem; }
.success.visible { display: block; }
.success__icon {
  display: inline-grid;
  place-items: center;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
}
.success h3 { font-weight: 800; font-size: 1.4rem; text-transform: uppercase; margin-bottom: 0.6rem; color: var(--dark); }
.success p { color: var(--muted); max-width: 420px; margin: 0 auto 1.6rem; }

/* ---------- Mentions légales ---------- */
.legal { min-height: 70vh; }
.legal .section__kicker, .legal .section__title { text-align: left; }
.legal__block { margin-top: 2.2rem; }
.legal__block h2 {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.legal__block p { color: #444; margin-bottom: 0.6rem; }
.legal__back { margin-top: 2.6rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .header__phone { display: none; }
}

@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .devis__wrap, .fiche__hero, .fiche__grid { grid-template-columns: 1fr; }
  .devis__intro { position: static; }
  .fiche__art { position: static; min-height: 300px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}

@media (max-width: 820px) {
  .topbar span:last-of-type { display: none; }
  .topbar i:last-of-type { display: none; }
  .search { display: none; }
  .burger { display: block; }
  .nav-bar { display: none; }
  .nav-bar.open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(29, 29, 29, 0.98);
    z-index: 90;
    padding-top: 5rem;
  }
  .nav-bar.open .nav { flex-direction: column; align-items: center; gap: 0.4rem; }
  .nav-bar.open .nav > a { font-size: 1.05rem; padding: 0.9rem 1.5rem; }
  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; }
  .header__contact .btn { padding: 0.55rem 0.9rem; font-size: 0.8rem; }
}
