@charset "UTF-8";

/* FixIT'38 — feuille de style unique */

:root {
  --blue: #0077e8;
  --blue-dark: #005fc0;
  --blue-soft: #eaf2fd;
  --blue-line: #cfe1f8;
  --navy: #081433;
  --ink: #101828;
  --muted: #5b6b82;
  --paper: #f5f7fb;
  --line: #e7ebf3;
  --field: #c6d1e2;
  --gold: #f2a417;
  --white: #fff;
  --max: 1120px;
  --header: 76px;
  --sans: ui-sans-serif, "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --display: ui-sans-serif, "Segoe UI Variable Display", "Segoe UI Semibold", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 18px 50px rgba(8, 20, 51, 0.12);
  --shadow-sm: 0 1px 3px rgba(8, 20, 51, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.1rem;
  letter-spacing: -0.012em;
  margin-bottom: 6px;
}

p {
  margin: 0 0 16px;
}

a {
  color: #0a58a8;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--blue);
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.lede {
  font-size: 1.13rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.93rem;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.i {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.i-solid {
  fill: currentColor;
  stroke: none;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 60;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* ===== en-tête ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  position: relative;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  text-decoration: none;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  /* le fichier du logo garde un liseré noir sur son dernier pixel (fond noir de l'export
     d'origine) : on rogne le bord extérieur du cercle plutôt que d'afficher ce liseré */
  clip-path: circle(49%);
}

.logo-word {
  font-family: var(--display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo-word em {
  font-style: normal;
  color: var(--blue);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  position: relative;
  color: #30415c;
  font-size: 0.98rem;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--paper);
  color: var(--navy);
}

.site-nav a[aria-current="page"] {
  color: var(--navy);
  font-weight: 700;
}

.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
}

.site-nav .tel {
  margin-left: 10px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 9px 14px;
  cursor: pointer;
}

/* ===== boutons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 119, 232, 0.28);
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn:hover {
  background: var(--blue-dark);
  color: var(--white);
}

.btn:active {
  transform: translateY(1px);
}

.btn .i {
  width: 20px;
  height: 20px;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.97rem;
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: #dbe6f8;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-line {
  background: var(--white);
  color: #0a58a8;
  border: 1px solid var(--blue-line);
  box-shadow: var(--shadow-sm);
}

.btn-line:hover {
  background: var(--blue-soft);
  color: #0a58a8;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--blue-line);
  padding-bottom: 2px;
}

.arrow-link .i {
  width: 18px;
  height: 18px;
}

.arrow-link:hover {
  border-bottom-color: var(--blue);
}

/* ===== accroche ===== */

.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy) url("../assets/hero-bg.png") no-repeat right bottom / cover;
  color: #e6ecfa;
  padding: 84px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(97deg, #081433 0%, rgba(8, 20, 51, 0.95) 38%, rgba(8, 20, 51, 0.62) 62%, rgba(8, 20, 51, 0.3) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 52px;
}

.hero-inner {
  max-width: 40rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  justify-self: end;
  min-width: 12.5rem;
  padding: 30px 34px;
  border: 1px solid rgba(98, 168, 245, 0.34);
  border-radius: 20px;
  background: rgba(8, 20, 51, 0.74);
  box-shadow: 0 24px 60px rgba(3, 9, 26, 0.38);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.hero-stat:hover {
  border-color: rgba(98, 168, 245, 0.6);
  transform: translateY(-3px);
}

.stat-num {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.4vw, 4.3rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--white);
}

.stat-note {
  margin: 4px 0 0;
  font-size: 0.86rem;
  color: #a7bfe4;
}

.hero h1 {
  color: var(--white);
}

.hero .lede {
  color: #c9d6ee;
  font-size: 1.18rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 30px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.hero-meta li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.97rem;
  color: #d7e1f4;
}

.hero-meta .i {
  width: 20px;
  height: 20px;
  color: #62a8f5;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  font-size: 0.95rem;
  color: #cfdaf0;
}

.hero-trust .stars {
  margin: 0;
}

/* ===== bandeau de réassurance ===== */

.assurance {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.assurance ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.assurance li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.assurance li:first-child {
  padding-left: 0;
}

.assurance li:last-child {
  border-right: 0;
  padding-right: 0;
}

.assurance .i {
  width: 24px;
  height: 24px;
  margin-top: 2px;
  color: var(--blue);
}

.assurance strong {
  display: block;
  font-family: var(--display);
  font-size: 0.99rem;
  color: var(--navy);
}

.assurance span {
  font-size: 0.89rem;
  color: var(--muted);
}

/* ===== sections ===== */

.band {
  padding: 76px 0;
}

section[id] {
  scroll-margin-top: calc(var(--header) + 18px);
}

.band-paper {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-tight {
  padding: 54px 0;
}

.section-head {
  max-width: 44rem;
  margin-bottom: 36px;
}

.section-head .lede {
  margin: 0;
}

/* ===== à domicile / en dépôt ===== */

.modes {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.mode {
  border-radius: 18px;
  padding: 30px 30px 26px;
}

.mode-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}

.mode h3 {
  font-size: 1.32rem;
  margin: 0;
}

.mode p {
  color: var(--muted);
  margin-bottom: 14px;
}

.mode p:last-child {
  margin-bottom: 0;
}

.mode .i-head {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.mode-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  box-shadow: var(--shadow);
}

.mode-main .tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #0a58a8;
  font-size: 0.85rem;
  font-weight: 700;
}

.mode-alt {
  background: var(--white);
  border: 1px solid var(--line);
}

.mode-note {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--field);
  font-size: 0.94rem;
  color: var(--muted);
}

.mode-note .i {
  width: 22px;
  height: 22px;
  color: var(--muted);
}

.mode-note p {
  margin: 0;
  font-size: 0.94rem;
}

.mode-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 30px minmax(0, 22rem) minmax(0, 1fr);
  align-items: center;
  gap: 8px 20px;
  padding: 24px 30px;
  background: var(--white);
  border: 1px solid var(--line);
}

.mode-wide .mode-head {
  margin: 0;
}

.mode-wide .i-head {
  grid-row: 1;
}

.mode-wide h3 {
  font-size: 1.18rem;
}

/* ===== urgence ===== */

.urgent {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 26px;
  padding: 22px 26px;
  border-radius: 18px;
  background: var(--navy);
  color: #ccd8ee;
}

.urgent .i {
  width: 26px;
  height: 26px;
  margin-top: 3px;
  color: #62a8f5;
}

.urgent h3 {
  margin-bottom: 4px;
  color: var(--white);
}

.urgent p {
  margin: 0;
  font-size: 0.98rem;
}

.urgent a {
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

/* ===== zone d'intervention ===== */

.zone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.zone-form {
  display: flex;
  gap: 10px;
  margin: 0 0 16px;
}

.zone-field {
  position: relative;
  flex: 1 1 auto;
}

.zone-field input {
  width: 100%;
}

.zone-form .btn {
  flex: none;
}

.suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 6;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(8, 20, 51, 0.16);
}

.suggest li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 0.97rem;
  color: var(--ink);
}

.suggest li:hover,
.suggest li.is-active {
  background: var(--blue-soft);
  color: #0a4f96;
}

.suggest-km {
  flex: none;
  font-size: 0.85rem;
  color: var(--muted);
}

.zone-answer {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  font-size: 0.98rem;
  color: var(--muted);
}

.zone-answer strong {
  color: var(--navy);
}

.zone-answer.is-yes {
  background: var(--blue-soft);
  border-color: var(--blue-line);
  color: #1d3c66;
}

.zone-answer.is-far {
  background: #fff8ec;
  border-color: #f0dcb4;
  color: #6b5426;
}

.zone-note {
  margin: 16px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.zone details {
  margin-top: 14px;
}

.zone summary {
  cursor: pointer;
  font-size: 0.93rem;
  font-weight: 600;
  color: #0a58a8;
}

.zone summary:hover {
  color: var(--blue);
}

.commune-head {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.commune-list {
  columns: 2;
  column-gap: 24px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.commune-list-wide {
  columns: 3;
  font-size: 0.86rem;
}

.commune-list li {
  break-inside: avoid;
  margin-bottom: 4px;
}

/* ===== carte ===== */

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 30px;
}

.map-placeholder .i {
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.map-placeholder p {
  margin: 0;
}

.map-placeholder .muted {
  font-size: 0.88rem;
}

.map-note {
  margin: 0;
  padding: 12px 18px;
  font-size: 0.89rem;
}

/* ===== paiements ===== */

.pay-title {
  margin-top: 34px;
  font-size: 1.3rem;
}

.pay {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.pay li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.pay li:hover {
  border-color: var(--blue-line);
  transform: translateY(-2px);
}

.pay .i {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

/* ===== questions fréquentes ===== */

.faq {
  max-width: 52rem;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--navy);
  transition: color 0.15s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  color: var(--blue);
}

.faq summary .i {
  width: 22px;
  height: 22px;
  color: var(--blue);
  transition: transform 0.2s ease;
}

.faq details[open] summary .i {
  transform: rotate(180deg);
}

.faq .answer {
  padding: 0 4px 20px;
  max-width: 44rem;
  color: var(--muted);
}

.faq details[open] .answer {
  animation: faq-in 0.22s ease;
}

.faq .answer p {
  margin: 0 0 10px;
}

.faq .answer p:last-child {
  margin: 0;
}

@keyframes faq-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ===== prestations ===== */

.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 46px;
}

.service {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
}

.service .i {
  width: 28px;
  height: 28px;
  margin-top: 2px;
  color: var(--blue);
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.figures {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 20px;
  margin-top: 46px;
}

.figures figure {
  margin: 0;
}

.media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.media img {
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}

figure:hover .media img,
.me-photo:hover .media img,
.price-aside:hover .media img {
  transform: scale(1.045);
}

.figures .tall img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.figures .wide img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.figures figcaption {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===== tarifs ===== */

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.pricelist {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.pricelist li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}

.pricelist .what {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--navy);
}

.pricelist .when {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--muted);
}

.pricelist .amount {
  white-space: nowrap;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.26rem;
  color: var(--blue);
}

.notice {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: #1d3c66;
  font-size: 0.98rem;
}

.notice .i {
  width: 22px;
  height: 22px;
  color: var(--blue);
  margin-top: 3px;
}

.notice p {
  margin: 0;
}

.notice p + p {
  margin-top: 8px;
}

.price-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.price-aside .media {
  margin-bottom: 16px;
  border-radius: 12px;
  box-shadow: none;
}

.price-aside img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.price-aside h2 {
  font-size: 1.18rem;
}

.price-aside p {
  font-size: 0.97rem;
  color: var(--muted);
}

.price-aside strong {
  color: var(--navy);
}

.pack {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.pack-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.pack-head h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 1.4rem;
}

.pack-head h2 .i {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.pack .amount {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--blue);
  white-space: nowrap;
}

.pack .conditions {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.pack .conditions .i {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--muted);
}

.ticks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ticks li {
  display: flex;
  gap: 11px;
  margin-bottom: 8px;
  color: #2c3a52;
}

.ticks li:last-child {
  margin-bottom: 0;
}

.ticks .i {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--blue);
}

/* ===== qui je suis ===== */

.me {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.me-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.me-photo p {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.me-text {
  max-width: 40rem;
}

.pull {
  margin: 24px 0;
  padding: 2px 0 2px 20px;
  border-left: 3px solid var(--blue);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* ===== avis ===== */

.reviews {
  columns: 2;
  column-gap: 20px;
}

.review {
  margin: 0 0 20px;
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}

.reviews-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-size: 0.98rem;
  color: var(--muted);
}

.reviews-score .stars {
  margin: 0;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--gold);
}

.stars .i {
  width: 18px;
  height: 18px;
}

.review p {
  margin: 0 0 12px;
  font-size: 1.03rem;
}

.review-lead p {
  font-size: 1.1rem;
}

.review cite {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ===== appel ===== */

.call {
  position: relative;
  isolation: isolate;
  background: var(--navy) url("../assets/bloom.png") no-repeat right bottom / cover;
  color: #d9e2f4;
  padding: 64px 0;
}

.call::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(95deg, #081433 0%, rgba(8, 20, 51, 0.94) 42%, rgba(8, 20, 51, 0.55) 78%, rgba(8, 20, 51, 0.35) 100%);
}

.call h2 {
  color: var(--white);
}

.call p {
  max-width: 38rem;
  color: #c2cde3;
}

.call-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 18px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  text-decoration: none;
}

.call-number .i {
  width: 28px;
  height: 28px;
  color: #62a8f5;
}

.call-number:hover {
  color: var(--white);
  text-decoration: underline;
}

.call a:not(.call-number):not(.btn) {
  color: #9dc4f6;
}

/* ===== contact ===== */

.contact {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.infos {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 28px;
}

.infos h2 {
  font-size: 1.3rem;
}

.infos h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  font-size: 1rem;
}

.infos h3 .i {
  width: 20px;
  height: 20px;
  color: var(--blue);
}

.infos .big-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-decoration: none;
}

.infos .big-tel .i {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.infos p {
  font-size: 0.97rem;
  color: var(--muted);
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: var(--shadow);
}

form {
  max-width: 38rem;
}

.form-card form {
  max-width: none;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--field);
  border-radius: 12px;
  background: var(--white);
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 119, 232, 0.18);
  outline-offset: 0;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.field {
  margin-bottom: 18px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hp {
  position: absolute;
  left: -9999px;
}

.form-error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fdecec;
  color: #9b1c1c;
  font-size: 0.95rem;
}

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--muted);
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.help {
  margin: 8px 0 0;
  font-size: 0.89rem;
  color: var(--muted);
}

/* ===== pages de contenu ===== */

.page-head {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 46px 0 40px;
}

.page-head h1 {
  margin-bottom: 10px;
}

.page-head p {
  margin: 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.page {
  padding: 66px 0;
}

.legal {
  padding: 48px 0 72px;
}

.legal .wrap {
  width: min(calc(100% - 40px), 46rem);
}

.legal-block {
  margin-top: 30px;
}

.legal h2 {
  margin-top: 34px;
  font-size: 1.24rem;
}

.legal p,
.legal li {
  color: #3c4a60;
}

.legal ul {
  padding-left: 20px;
}

.center-note {
  max-width: 40rem;
}

/* ===== pied de page ===== */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 44px 0 26px;
  font-size: 0.97rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .logo-mark {
  width: 36px;
  height: 36px;
}

.site-footer h2 {
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 7px;
}

.site-footer p {
  margin: 0 0 8px;
}

.footer-contact a {
  font-weight: 600;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.87rem;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--blue);
}

.footer-social .i {
  width: 16px;
  height: 16px;
}

.footer-note {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.87rem;
}

.call-fab {
  display: none;
}

/* ===== survols ===== */

.mode,
.pack,
.review,
.price-aside,
.map-card,
.infos {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pack:hover,
.review:hover,
.mode-alt:hover,
.mode-wide:hover {
  transform: translateY(-3px);
  border-color: var(--blue-line);
  box-shadow: var(--shadow);
}

.mode-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(8, 20, 51, 0.17);
}

.price-aside:hover,
.map-card:hover {
  border-color: var(--blue-line);
}

.service h3 {
  transition: color 0.15s ease;
}

.service:hover h3 {
  color: var(--blue);
}

.service .i {
  transition: transform 0.2s ease;
}

.service:hover .i {
  transform: translateY(-2px);
}

.pricelist li {
  border-radius: 10px;
  transition: background 0.15s ease;
}

.pricelist li:hover {
  background: var(--white);
}

.arrow-link .i {
  transition: transform 0.18s ease;
}

.arrow-link:hover .i {
  transform: translateX(4px);
}

.btn:hover {
  box-shadow: 0 14px 30px rgba(0, 119, 232, 0.32);
}

.btn-sm:hover,
.btn-ghost:hover,
.btn-line:hover {
  box-shadow: none;
}

.logo-mark {
  transition: transform 0.2s ease;
}

.logo:hover .logo-mark {
  transform: scale(1.06);
}

.site-footer a {
  transition: color 0.15s ease;
}

@media (min-width: 961px) {
  .price-aside.sticky {
    position: sticky;
    top: calc(var(--header) + 24px);
  }
}

/* ===== mobile ===== */

@media (max-width: 960px) {
  .price-layout,
  .modes,
  .me,
  .contact,
  .figures,
  .zone,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .zone {
    gap: 32px;
  }

  .commune-list-wide {
    columns: 2;
  }

  .mode-wide {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .mode-wide p {
    grid-column: 1 / -1;
  }

  .assurance ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assurance li {
    padding: 18px 20px;
  }

  .assurance li:nth-child(2n) {
    border-right: 0;
    padding-right: 0;
  }

  .assurance li:nth-child(2n + 1) {
    padding-left: 0;
  }

  .assurance li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .me,
  .contact {
    gap: 34px;
  }

  .me-photo img {
    aspect-ratio: 16 / 10;
    max-height: 320px;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 1.02rem;
  }

  .hero {
    padding: 52px 0 48px;
    background-size: auto 58%;
    background-position: right -70px bottom;
  }

  .hero::before {
    background: linear-gradient(180deg, #081433 0%, rgba(8, 20, 51, 0.95) 40%, rgba(8, 20, 51, 0.72) 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-stat {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    justify-self: stretch;
    padding: 20px 24px;
  }

  .stat-num {
    font-size: 2.7rem;
  }

  .stat-label {
    margin: 0;
  }

  .band {
    padding: 52px 0;
  }

  .band-tight {
    padding: 42px 0;
  }

  .services {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .reviews,
  .commune-list {
    columns: 1;
  }

  .assurance ul {
    grid-template-columns: 1fr;
  }

  .assurance li,
  .assurance li:nth-child(2n) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance li:last-child {
    border-bottom: 0;
  }

  .zone-form {
    flex-direction: column;
  }

  .urgent {
    flex-direction: column;
    gap: 10px;
  }

  .map-card iframe {
    height: 260px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mode,
  .pack,
  .form-card,
  .infos {
    padding: 22px 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--header) - 4px);
    z-index: 50;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a[aria-current="page"]::after {
    display: none;
  }

  .site-nav .tel {
    margin-left: 0;
    margin-top: 6px;
  }

  .call-fab {
    display: inline-flex;
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 30;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}
