/* ==========================================================
   MINUTE PARE BRISE — Charte issue du logo
   Bleu : #16338E · Rouge : #E11D26 · Blanc
   ========================================================== */

:root {
  --blue: #16338e;
  --blue-dark: #0e2161;
  --blue-deep: #0a1a4a;
  --blue-light: #eef2fb;
  --red: #e11d26;
  --red-dark: #b8121a;
  --red-light: #ff5a61;
  --white: #ffffff;
  --grey: #5b6478;
  --dark: #172038;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 33, 97, 0.10);
  --shadow-lg: 0 20px 50px rgba(14, 33, 97, 0.18);
  --font-title: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 92%); margin: 0 auto; }
.container--narrow { width: min(860px, 92%); }

h1, h2, h3 { font-family: var(--font-title); line-height: 1.15; }
h1 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -0.5px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }

.txt-blue { color: var(--blue); }
.txt-red { color: var(--red); }
.txt-red-light { color: var(--red-light); }

/* ===== Icônes SVG ===== */
.icon {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0; vertical-align: middle;
}
.icon--sm { width: 16px; height: 16px; }
.icon--lg { width: 26px; height: 26px; }
.icon--fill { fill: currentColor; stroke: none; }
.icon--bold { stroke-width: 3; }
.icon-gold { color: #f5b301; }

/* ===== Bandeau tricolore ===== */
.tricolore { display: flex; height: 5px; }
.tricolore span { flex: 1; }
.tricolore span:nth-child(1) { background: var(--blue); }
.tricolore span:nth-child(2) { background: var(--white); }
.tricolore span:nth-child(3) { background: var(--red); }

/* ===== Top bar ===== */
.topbar { background: var(--blue-dark); color: #cdd7f3; font-size: 0.83rem; padding: 7px 0; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.topbar__note { display: inline-flex; align-items: center; gap: 7px; }
.topbar__phone { display: inline-flex; align-items: center; gap: 7px; color: var(--white); font-weight: 700; white-space: nowrap; }
.topbar__phone:hover { color: var(--red-light); }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  transition: box-shadow 0.25s;
}
.header.is-scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; gap: 20px; }
.header__logo img { height: 72px; width: auto; }

.nav { display: flex; align-items: center; gap: 26px; font-weight: 600; font-size: 0.95rem; }
.nav a:not(.btn) { color: var(--dark); position: relative; padding: 4px 0; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transition: width 0.25s;
}
.nav a:not(.btn):hover::after { width: 100%; }

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

/* ===== Boutons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px; border-radius: 50px;
  font-family: var(--font-title); font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--red { background: var(--red); color: var(--white); box-shadow: 0 8px 20px rgba(225, 29, 38, 0.35); }
.btn--red:hover { background: var(--red-dark); }
.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 8px 20px rgba(22, 51, 142, 0.30); }
.btn--blue:hover { background: var(--blue-dark); }
.btn--outline { border-color: var(--blue); color: var(--blue); background: var(--white); }
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--white { background: var(--white); color: var(--blue); }
.btn--white:hover { background: var(--blue-light); }
.btn--lg { padding: 15px 30px; font-size: 1.02rem; }
.btn--full { width: 100%; }

/* ===== Sections communes ===== */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section-head p { color: var(--grey); margin-top: 12px; }
.section-tag {
  display: inline-block; margin-bottom: 14px; padding: 6px 16px;
  border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  background: var(--blue-light); color: var(--blue);
}
.section-tag--light { background: rgba(255, 255, 255, 0.14); color: var(--white); }

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(ellipse at 85% 15%, rgba(225, 29, 38, 0.07), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(22, 51, 142, 0.08), transparent 55%),
    linear-gradient(180deg, var(--blue-light), var(--white));
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero__inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  margin-bottom: 18px; padding: 7px 16px;
  background: var(--white); border: 1.5px solid var(--blue);
  color: var(--blue); border-radius: 50px; font-size: 0.83rem; font-weight: 700;
}
.badge .icon { color: var(--red); }
.hero__sub { margin: 20px 0 28px; font-size: 1.15rem; color: var(--grey); }
.hero__sub strong { color: var(--dark); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__points { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 26px; font-weight: 600; font-size: 0.93rem; color: var(--blue-dark); width: fit-content; }
.hero__points li { display: flex; align-items: center; gap: 9px; }
.hero__points .icon { color: var(--red); }

.hero__visual { position: relative; }
.hero__photo {
  border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border-bottom: 6px solid var(--red);
  transform: rotate(-1.5deg);
}
.hero__photo img { display: block; width: 100%; height: auto; }
.hero__float {
  position: absolute; display: flex; align-items: center; gap: 7px;
  background: var(--white); padding: 10px 18px;
  border-radius: 50px; font-size: 0.88rem; box-shadow: var(--shadow-lg);
  white-space: nowrap;
}
.hero__float strong { color: var(--red); }
.hero__float--1 { top: -18px; right: 4px; border: 1.5px solid rgba(225, 29, 38, 0.25); animation: float 4s ease-in-out infinite; }
.hero__float--1 .icon { color: var(--red); }
.hero__float--2 { bottom: -16px; left: 10px; border: 1.5px solid rgba(22, 51, 142, 0.25); animation: float 4s 1.2s ease-in-out infinite; }
.hero__float--2 strong, .hero__float--2 .icon { color: var(--blue); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ===== Assurances ===== */
.assurances { padding: 34px 0; border-top: 1px solid #e6eaf5; border-bottom: 1px solid #e6eaf5; }
.assurances__title { text-align: center; color: var(--grey); margin-bottom: 20px; font-size: 0.95rem; }
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: scroll 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: var(--white); border: 1px solid #e6eaf5; border-radius: var(--radius);
  padding: 14px 22px; min-width: 132px; margin-right: 18px;
  box-shadow: 0 4px 14px rgba(14, 33, 97, 0.06);
}
.marquee__item img { height: 44px; width: auto; object-fit: contain; }
.marquee__item figcaption {
  font-weight: 700; font-size: 0.8rem; color: var(--blue-dark); white-space: nowrap;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ===== Loi Hamon ===== */
.hamon { background: linear-gradient(135deg, var(--blue-dark), var(--blue) 60%, #1d43b5); color: var(--white); }
.hamon__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.hamon__text p { color: #d4ddf6; margin-top: 16px; font-size: 1.05rem; }
.hamon__text strong { color: var(--white); }
.hamon__cards { display: grid; gap: 14px; }
.hamon__card {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--red-light);
  padding: 16px 20px; border-radius: var(--radius); backdrop-filter: blur(4px);
}
.hamon__card .icon { color: var(--white); }
.hamon__card p { font-weight: 700; }

/* ===== Services ===== */
.services { background: var(--white); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  background: var(--white); border: 1px solid #e6eaf5; border-radius: var(--radius);
  padding: 28px 24px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column; gap: 10px;
}
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(22, 51, 142, 0.3); }
.service__icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--blue-light); border-radius: 14px; color: var(--blue);
}
.service p { color: var(--grey); font-size: 0.93rem; flex: 1; }
.service__time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.83rem; font-weight: 700; color: var(--blue);
  background: var(--blue-light); padding: 5px 12px; border-radius: 50px; width: fit-content;
}
.service--cta { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); border: none; justify-content: center; text-align: center; align-items: center; }
.service--cta p { color: rgba(255, 255, 255, 0.9); flex: 0; }

/* ===== Avantages ===== */
.avantages { background: var(--blue-light); }
.avantages__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.avantage {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px;
  box-shadow: var(--shadow); border-top: 4px solid var(--blue);
  transition: transform 0.25s, box-shadow 0.25s;
}
.avantage:nth-child(even) { border-top-color: var(--red); }
.avantage:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.avantage__icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--blue-light); border-radius: 14px; color: var(--blue);
  margin-bottom: 14px;
}
.avantage:nth-child(even) .avantage__icon { background: rgba(225, 29, 38, 0.08); color: var(--red); }
.avantage h3 { margin-bottom: 8px; }
.avantage p { color: var(--grey); font-size: 0.93rem; }
.avantages__garantie {
  margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 12px;
  text-align: center; background: var(--white);
  border: 2px dashed var(--blue); border-radius: var(--radius);
  padding: 18px; font-size: 1.05rem; color: var(--blue-dark);
}
.avantages__garantie .icon { color: var(--blue); }

/* ===== Process ===== */
.process { background: linear-gradient(160deg, var(--blue-deep), var(--blue-dark)); color: var(--white); }
.process .section-head p { color: #c2cdec; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius); padding: 26px 22px; position: relative;
}
.step__num {
  display: grid; place-items: center; width: 44px; height: 44px;
  background: var(--red); color: var(--white); border-radius: 50%;
  font-family: var(--font-title); font-weight: 800; font-size: 1.2rem;
  margin-bottom: 14px; box-shadow: 0 6px 16px rgba(225, 29, 38, 0.4);
}
.step h3 { margin-bottom: 8px; }
.step p { color: #c2cdec; font-size: 0.92rem; }
.process__cta { text-align: center; margin-top: 40px; }

/* ===== Avis ===== */
.stars { color: #f5b301; letter-spacing: 2px; }
.avis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.avis__card {
  background: var(--white); border: 1px solid #e6eaf5; border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.avis__card p { margin: 12px 0 14px; color: var(--dark); font-size: 0.95rem; font-style: italic; }
.avis__card footer { font-weight: 700; color: var(--blue); font-size: 0.9rem; }

/* ===== Zones d'intervention (SEO IDF & PACA) ===== */
.zones { background: var(--blue-light); }
.zones__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.zone-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 26px;
  box-shadow: var(--shadow); border-top: 4px solid var(--blue);
}
.zone-card--paca { border-top-color: var(--red); }
.zone-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 1.25rem; }
.zone-card h3 .icon { color: var(--blue); }
.zone-card--paca h3 .icon { color: var(--red); }
.zone-card > p { color: var(--grey); font-size: 0.95rem; margin-bottom: 16px; }
.zone-card__villes { display: flex; flex-wrap: wrap; gap: 8px; }
.zone-card__villes li {
  background: var(--blue-light); color: var(--blue-dark);
  padding: 5px 12px; border-radius: 50px; font-size: 0.82rem; font-weight: 600;
}
.zone-card--paca .zone-card__villes li { background: rgba(225, 29, 38, 0.07); color: var(--red-dark); }
.zones__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 30px; }
.zones__cta { text-align: center; margin-top: 34px; }
.stat {
  background: var(--white); border-radius: var(--radius); padding: 26px 20px;
  text-align: center; box-shadow: var(--shadow);
}
.stat strong { display: block; font-family: var(--font-title); font-size: 2rem; font-weight: 900; color: var(--red); }
.stat:nth-child(odd) strong { color: var(--blue); }
.stat span { color: var(--grey); font-size: 0.88rem; }

/* ===== FAQ ===== */
.faq__item { border: 1px solid #e6eaf5; border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: var(--white); }
.faq__q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font-title); font-weight: 700; font-size: 1rem; text-align: left; color: var(--dark);
}
.faq__q:hover { color: var(--blue); }
.faq__chevron { display: inline-flex; transition: transform 0.3s; color: var(--red); }
.faq__item.is-open .faq__chevron { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__a p { padding: 0 22px 20px; color: var(--grey); font-size: 0.95rem; }
.faq__item.is-open { border-color: var(--blue); box-shadow: var(--shadow); }

/* ===== Contact ===== */
.contact { background: linear-gradient(135deg, var(--blue-dark), var(--blue) 55%, #1d43b5); color: var(--white); }
.contact__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }
.contact__text > p { color: #d4ddf6; margin: 14px 0 28px; font-size: 1.05rem; }
.contact__moyens { display: grid; gap: 14px; }
.contact__moyen {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 14px 18px; border-radius: var(--radius); transition: background 0.2s, transform 0.2s;
}
.contact__moyen:hover { background: rgba(255, 255, 255, 0.16); transform: translateX(4px); }
.contact__moyen-ico {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255, 255, 255, 0.13); display: grid; place-items: center;
  color: var(--white);
}
.contact__moyen > span:last-child { font-size: 0.92rem; line-height: 1.4; color: #d4ddf6; }
.contact__moyen strong { color: var(--white); font-size: 1.02rem; }

.contact__form {
  background: var(--white); color: var(--dark); border-radius: 20px;
  padding: 30px; box-shadow: var(--shadow-lg); display: grid; gap: 14px;
  border-top: 6px solid var(--red);
}
.contact__form h3 { color: var(--blue-dark); font-size: 1.25rem; }
.contact__form label { font-weight: 600; font-size: 0.88rem; display: grid; gap: 6px; }
.contact__form input, .contact__form select {
  padding: 12px 14px; border: 1.5px solid #dbe2f2; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.95rem; background: #fafbfe;
  transition: border-color 0.2s;
}
.contact__form input:focus, .contact__form select:focus { outline: none; border-color: var(--blue); }
.contact__note { text-align: center; font-size: 0.8rem; color: var(--grey); }
.champ-invisible { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-success { text-align: center; color: #0a7d33; font-weight: 700; padding: 8px; }

/* ===== Footer ===== */
.footer { background: var(--blue-deep); color: #b9c4e6; font-size: 0.92rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  padding: 56px 0 40px;
}
.footer__logo { background: var(--white); border-radius: 12px; padding: 10px 14px; width: fit-content; margin-bottom: 16px; }
.footer__logo img { height: 52px; width: auto; }
.footer h4 { color: var(--white); font-family: var(--font-title); margin-bottom: 14px; font-size: 1rem; }
.footer ul { display: grid; gap: 9px; }
.footer a:hover { color: var(--white); }
.footer__contact li { display: flex; align-items: center; gap: 9px; }
.footer__contact a { display: inline-flex; align-items: center; gap: 9px; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 18px 0; font-size: 0.8rem; text-align: center; }

/* ===== Pop-up de confirmation ===== */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__fond {
  position: absolute; inset: 0;
  background: rgba(10, 26, 74, 0.6);
  backdrop-filter: blur(3px);
}
.modal__carte {
  position: relative; background: var(--white); border-radius: 20px;
  padding: 36px 30px 30px; max-width: 430px; width: 100%;
  text-align: center; box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--red);
  animation: modalPop 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
  display: grid; gap: 14px; justify-items: center;
}
@keyframes modalPop {
  from { opacity: 0; transform: translateY(24px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__icone {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue), #1d43b5);
  box-shadow: 0 10px 24px rgba(22, 51, 142, 0.35);
}
.modal__icone .icon { width: 30px; height: 30px; color: var(--white); stroke-width: 3; }
.modal__carte h3 { font-size: 1.35rem; color: var(--blue-dark); }
.modal__carte p { color: var(--grey); font-size: 0.96rem; }
.modal__carte p strong { color: var(--dark); }
.modal__tel { font-size: 0.9rem; }
.modal__tel a {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; color: var(--blue); margin-top: 4px;
}
.modal__tel a:hover { color: var(--red); }

/* ===== Barre mobile fixe ===== */
.mobile-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--white); padding: 10px 14px; gap: 10px;
  box-shadow: 0 -6px 24px rgba(14, 33, 97, 0.18);
}
.mobile-cta .btn { flex: 1; padding: 12px 10px; font-size: 0.9rem; }

/* ===== Animations d'apparition ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive : tablette (≤ 980px) ===== */
@media (max-width: 980px) {
  html { scroll-padding-top: 78px; }
  section { padding: 60px 0; }

  /* Menu burger dès la tablette : le menu complet serait trop serré */
  .burger { display: block; position: relative; z-index: 100; }
  .nav {
    position: fixed; inset: 0; z-index: 99;
    background: linear-gradient(165deg, var(--white) 30%, var(--blue-light));
    flex-direction: column; justify-content: center; align-items: center;
    gap: 26px; font-size: 1.25rem;
    transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.is-open { transform: translateX(0); }
  .nav .nav__cta { margin-top: 10px; padding: 14px 36px; font-size: 1.05rem; }

  .hero { padding: 48px 0 64px; }
  .hero__inner { grid-template-columns: 1fr; gap: 42px; }
  .hero__content { text-align: center; }
  .hero__ctas { justify-content: center; }
  .hero__points { margin: 0 auto; }
  .hero__visual { max-width: 560px; width: 100%; margin: 6px auto 0; }

  .hamon__inner, .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .zones__grid { grid-template-columns: 1fr; }
  .services__grid, .avantages__grid, .avis__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Responsive : smartphone (≤ 720px) ===== */
@media (max-width: 720px) {
  html { scroll-padding-top: 70px; }
  section { padding: 48px 0; }
  .section-head { margin-bottom: 34px; }

  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }
  .header__inner { padding: 8px 0; }
  .header__logo img { height: 58px; }

  h1 { letter-spacing: 0; }
  .hero { padding: 38px 0 56px; }
  .hero__sub { font-size: 1.02rem; }
  .hero__ctas { gap: 10px; }
  .hero__ctas .btn { width: 100%; }
  .hero__points { grid-template-columns: 1fr; width: fit-content; }
  .hero__photo { transform: none; border-radius: 18px; }
  .hero__float { font-size: 0.8rem; padding: 8px 14px; box-shadow: var(--shadow); }
  .hero__float--1 { top: -14px; right: 0; }
  .hero__float--2 { bottom: -12px; left: 0; }

  .marquee__item { min-width: 118px; padding: 12px 16px; margin-right: 12px; }
  .marquee__item img { height: 38px; }

  .services__grid, .avantages__grid, .avis__grid, .process__grid { grid-template-columns: 1fr; gap: 16px; }
  .service, .avantage { padding: 24px 20px; }

  .zone-card { padding: 22px 18px; }
  .zones__stats { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
  .stat { padding: 20px 12px; }
  .stat strong { font-size: 1.6rem; }

  .hamon__card { padding: 14px 16px; }
  .avantages__garantie { flex-direction: column; gap: 8px; padding: 16px; font-size: 0.98rem; }

  .faq__q { padding: 16px 18px; font-size: 0.95rem; }
  .faq__a p { padding: 0 18px 18px; }

  .contact__form { padding: 24px 20px; }
  .contact__moyen { padding: 12px 14px; }
  .contact__moyen strong { overflow-wrap: anywhere; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 32px; }

  .mobile-cta { display: flex; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); }
  body { padding-bottom: 78px; }
}

/* ===== Très petits écrans (≤ 400px) ===== */
@media (max-width: 400px) {
  .container { width: 94%; }
  .badge { font-size: 0.76rem; padding: 6px 12px; }
  .btn--lg { padding: 14px 20px; font-size: 0.95rem; }
  .hero__float { font-size: 0.74rem; padding: 7px 11px; }
  .stat strong { font-size: 1.45rem; }
}

/* ===== Accessibilité : mouvement réduit ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track, .hero__float--1, .hero__float--2 { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .service, .avantage, .btn, .contact__moyen { transition: none; }
}
