/* ==========================================================
   Swiss Piscine — design system
   ========================================================== */
:root {
  --navy: #0b2e3f;
  --deep: #07212e;
  --aqua: #1fa9b8;
  --aqua-dark: #15808c;
  --aqua-soft: #e3f4f6;
  --sand: #f5f1e8;
  --ink: #1c2b33;
  --muted: #5b6e77;
  --line: #e3e8ea;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 10px 40px rgba(7, 33, 46, .10);
  --shadow-lg: 0 24px 60px rgba(7, 33, 46, .18);
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--aqua-dark); text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.018em;
  color: var(--navy);
}
/* couche luxe : grands titres en sérif élégant (Sora reste pour h3, labels, corps) */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.7rem, 6vw, 4.9rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.15rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
/* gros chiffres en sérif fin (statistiques, note avis, badges héros) */
.statband .stat strong, .review-score strong, .hero-badge strong {
  font-family: var(--font-serif);
  font-weight: 500;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--aqua-dark);
  margin-bottom: 1rem;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 64ch; }

section { padding: clamp(3.4rem, 6.5vw, 5.75rem) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.bg-sand { background: var(--sand); }
.bg-navy { background: var(--navy); color: #d7e3e8; }
.bg-navy h2, .bg-navy h3 { color: var(--white); }

/* ---------- boutons ---------- */
.btn {
  display: inline-block;
  padding: .85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--aqua); color: var(--white); box-shadow: 0 8px 24px rgba(31, 169, 184, .35); }
.btn-primary:hover { background: var(--aqua-dark); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-outline { border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-outline-light { border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 1.05rem 2.4rem; font-size: 1.05rem; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(11,46,63,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  transition: box-shadow .25s, background .25s;
}
.site-header.scrolled { background: rgba(9,38,52,.97); box-shadow: 0 6px 24px rgba(7,33,46,.28); }
.site-header .container { width: min(1360px, 95%); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 1.5rem;
}
.logo img { height: 48px; width: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 1.15rem; }
.main-nav a { color: #e9f3f5; font-weight: 500; font-size: .9rem; white-space: nowrap; }
.main-nav > ul > li > a:hover { color: var(--aqua); }
.nav-cta .btn { padding: .58rem 1.3rem; }
.nav-cta .btn:hover { filter: brightness(1.08); }

.has-dropdown { position: relative; }
.has-dropdown > a::after { content: " ▾"; font-size: .7em; }
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: -1rem;
  min-width: 240px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .7rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .22s;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.dropdown a {
  display: block;
  padding: .55rem 1.4rem;
  color: var(--ink);
  font-size: .92rem;
}
.dropdown a:hover { background: var(--aqua-soft); color: var(--aqua-dark); }

.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto; transition: .25s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(105deg, rgba(7,33,46,.86) 0%, rgba(7,33,46,.6) 45%, rgba(7,33,46,.32) 100%);
}
.hero .container { position: relative; z-index: 2; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero h1 { color: var(--white); max-width: 16ch; font-size: clamp(2.1rem, 5.2vw, 4.2rem); overflow-wrap: break-word; }
.hero .lead { color: rgba(255,255,255,.88); margin: 1.4rem 0 2rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: .6rem 1.3rem; flex-wrap: wrap; margin-top: 1.6rem; color: rgba(255,255,255,.9); font-size: .92rem; font-weight: 500; }
.hero-trust .stars { color: #ffc940; letter-spacing: 1px; }
.hero-trust b { color: #fff; }
.hero-trust .sep { opacity: .4; }
.hero-badges { display: flex; gap: 2.5rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-badge strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--white); }
.hero-badge span { font-size: .85rem; color: rgba(255,255,255,.75); }

/* hero interne (pages) */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 60px;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,33,46,.35) 0%, rgba(7,33,46,.78) 100%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.85); margin-top: 1rem; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 1.8rem; }
.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-5 { grid-template-columns: repeat(5, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card-body p { color: var(--muted); font-size: .95rem; flex: 1; }
.card-body h3 { margin-bottom: .5rem; }
.card-link { margin-top: 1.2rem; font-weight: 600; font-size: .92rem; }
.card-link::after { content: " →"; transition: margin .2s; }
.card:hover .card-link::after { margin-left: 4px; }

/* feature (sans image) — traitement éditorial, pas une carte SaaS */
.feature {
  background: transparent;
  border: none;
  border-top: 1.5px solid var(--line);
  border-radius: 0;
  padding: 1.5rem 0 0;
  position: relative;
}
.feature::before {
  content: "";
  position: absolute;
  top: -1.5px; left: 0;
  width: 34px; height: 3px;
  background: var(--aqua);
  transition: width .3s cubic-bezier(.22,.61,.36,1);
}
.feature:hover::before { width: 60px; }
.feature .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--aqua-soft);
  color: var(--aqua-dark);
  margin-bottom: 1rem;
}
.ic { width: 28px; height: 28px; display: block; }
.feature .icon .ic { color: var(--aqua-dark); }
.feature .icon.icon-img { background: linear-gradient(135deg, var(--aqua-soft), #f3faf5); }
.feature .icon.icon-img img { width: 34px; height: 34px; }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .95rem; }
.feature-aqua { border-top-color: var(--aqua); }
.bg-navy .feature { background: transparent; border-top-color: rgba(255,255,255,.16); }
.bg-navy .feature::before { background: #7fd6df; }
.bg-navy .feature .icon { background: rgba(127,214,223,.15); }
.bg-navy .feature .icon .ic { color: #7fd6df; }
.bg-navy .feature p { color: #aebfc7; }
.bg-navy .split-body p,
.bg-navy .checklist li { color: #cfe1e6; }
.bg-navy .lead { color: #cfe1e6; }

/* ---------- split (texte + image) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.reverse > .split-img { order: 2; }
.split-img { position: relative; }
.split-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--aqua); color: #fff;
  font-size: .8rem; font-weight: 700; letter-spacing: .03em;
  padding: .5rem 1rem; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(31,169,184,.4);
}
.trust-soft { opacity: .8; font-weight: 400; }
.ax-shot { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--navy); }
.ax-shot img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.ax-shot figcaption { padding: .7rem 1rem; font-size: .85rem; color: #cfe1e6; background: var(--navy); }
.swatch-gamme { margin-bottom: 2.6rem; }
.swatch-gamme > h3 { font-size: 1.35rem; color: var(--navy); }
.swatch-gamme > h3 span { color: var(--muted); font-weight: 500; font-size: .95rem; }
.swatch-gamme .swatch-intro { color: var(--muted); margin: .2rem 0 1rem; }
.swatchgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
.swatch-tile { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: transform .25s, box-shadow .25s; }
.swatch-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.swatch-tile img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.swatch-tile figcaption { padding: .55rem .6rem; font-size: .85rem; font-weight: 600; color: var(--navy); text-align: center; }
.price-from {
  display: inline-flex; align-items: baseline; gap: .5rem;
  margin-top: 1.6rem; padding: .7rem 1.2rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px; backdrop-filter: blur(4px);
}
.price-from .pf-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.85); }
.price-from .pf-amount { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; }
.price-from .pf-note { font-size: .82rem; color: rgba(255,255,255,.7); }
.split-body .eyebrow { margin-bottom: .8rem; }
.split-body p { color: var(--muted); margin: 1rem 0; }
.checklist li {
  padding-left: 1.9rem;
  position: relative;
  margin: .55rem 0;
  color: var(--ink);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 700;
}

/* ---------- timeline déroulement projet ---------- */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; counter-reset: step; }
.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--aqua);
  display: block;
  margin-bottom: .6rem;
}
.step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.step p { font-size: .88rem; color: var(--muted); }

/* ---------- vidéo responsive (embed) ---------- */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--deep);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- schéma composition coque (couches) ---------- */
.layers { display: flex; flex-direction: column; gap: .5rem; }
.layers .layer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1.2rem;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.layers .layer .swatch {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.layers .layer b { display: block; color: var(--white); font-size: .98rem; font-weight: 600; }
.layers .layer span { font-size: .84rem; color: #aebfc7; }

/* ---------- vignette type (petit schéma produit) ---------- */
.type-img {
  height: 160px;
  display: grid; place-items: center;
  background: var(--sand);
  border-radius: 10px;
  margin-bottom: 1.1rem;
  overflow: hidden;
}
.type-img img { max-height: 140px; width: auto; border-radius: 6px; }

/* ---------- formes de bassins (CSS) ---------- */
.shapes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
.shape-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.4rem 1.8rem;
}
.shape-ico-wrap { height: 96px; display: grid; place-items: center; margin-bottom: 1.2rem; }
.shape-ico { width: 88px; height: 88px; background: linear-gradient(135deg, var(--aqua), var(--aqua-dark)); box-shadow: 0 8px 20px rgba(31,169,184,.3); }
.shape-hexa { clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); }
.shape-octo { clip-path: polygon(30% 0, 70% 0, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0 70%, 0 30%); }
.shape-oval { width: 112px; height: 80px; border-radius: 50%; }
.shape-rect { width: 112px; height: 78px; border-radius: 10px; }
.shape-card h3 { margin-bottom: .35rem; }
.shape-card .dim { color: var(--muted); font-size: .85rem; }

/* ---------- nuancier coloris ---------- */
.colorgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
.color { text-align: center; }
.color .chip {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.10), var(--shadow);
  margin-bottom: .7rem;
}
.color b { display: block; font-size: .92rem; color: var(--navy); }
.color span { font-size: .76rem; color: var(--muted); letter-spacing: .02em; }

/* ---------- bande de stats (grands chiffres) ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.statband .stat {
  text-align: center;
  padding: .8rem 1.4rem;
  background: transparent;
  border: none;
  border-left: 1px solid var(--line);
  min-width: 0;
}
.statband .stat:first-child { border-left: none; }
.bg-navy .statband .stat { border-left-color: rgba(255,255,255,.14); }
.statband .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1;
  color: var(--aqua-dark);
  letter-spacing: -.02em;
  overflow-wrap: break-word;
}
.bg-navy .statband .stat strong { color: #7fd6df; }
.statband .stat span { font-size: .88rem; color: var(--muted); margin-top: .3rem; display: block; }
@media (max-width: 680px) {
  .statband { grid-template-columns: 1fr 1fr; gap: 1.4rem 0; }
  .statband .stat:nth-child(odd) { border-left: none; }
  .statband .stat { padding: .6rem .5rem; }
  .statband .stat strong { font-size: clamp(1.8rem, 8vw, 2.4rem); }
}

/* ---------- tags / pills ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.6rem; }
.tag-row .tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  background: var(--aqua-soft);
  color: var(--aqua-dark);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
}
.tag-row a.tag:hover { background: var(--aqua); color: var(--white); }

/* ---------- tableaux specs ---------- */
.spec-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.spec-table th, .spec-table td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.spec-table th { color: var(--navy); font-weight: 600; background: var(--sand); }

/* ---------- FAQ accordion ---------- */
.accordion { max-width: 820px; margin: 0 auto; }
.accordion details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: .9rem;
  overflow: hidden;
}
.accordion summary {
  padding: 1.2rem 1.6rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; font-size: 1.4rem; color: var(--aqua); transition: transform .2s; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion details > div { padding: 0 1.6rem 1.3rem; color: var(--muted); }

/* ---------- formulaires ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 4vw, 3rem);
  max-width: 760px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: .88rem; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--sand);
  transition: border .2s, background .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--aqua); background: var(--white);
}
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form-success {
  display: none;
  background: var(--aqua-soft);
  border: 1px solid var(--aqua);
  color: var(--aqua-dark);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  margin-top: 1.2rem;
  font-weight: 500;
}

/* ---------- bande CTA ---------- */
.cta-band { background: linear-gradient(120deg, var(--navy), #11475f); color: var(--white); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.8); margin-top: .4rem; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer { background: var(--deep); color: #9fb4bd; font-size: .92rem; padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-logo { filter: brightness(0) invert(1); opacity: .9; margin-bottom: 1.2rem; height: 56px; width: auto; }
.footer-col h3 { color: var(--white); font-family: var(--font-body); font-size: .95rem; font-weight: 600; margin-bottom: 1.1rem; letter-spacing: .04em; }
.footer-col ul li { margin: .5rem 0; }
.footer-col a { color: #9fb4bd; }
.footer-col a:hover { color: var(--white); }
.footer-zones { margin-top: 1.4rem; font-size: .82rem; color: #6c838d; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.4rem 0; font-size: .82rem; color: #6c838d; }
.footer-social { display: flex; gap: .7rem; margin: 1.4rem 0 1rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: #cfdde3;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--aqua, #7fd6df); color: var(--deep); transform: translateY(-3px); }
.footer-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .82rem; color: #9fb4bd;
  border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
  padding: .4rem .9rem;
}
.footer-badge strong { color: var(--white); font-weight: 600; }
.footer-badge img { display: block; border-radius: 4px; }
.footer-badge:hover { border-color: var(--aqua, #7fd6df); }
/* badge Membre Aqua Suisse (réassurance pages) */
.aqua-badge { display: inline-flex; align-items: center; gap: .9rem; text-decoration: none; }
.aqua-badge img { height: 58px; width: auto; border-radius: 6px; box-shadow: 0 3px 14px rgba(7,33,46,.14); }
.aqua-badge .t strong { display: block; color: var(--navy); font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.aqua-badge .t span { color: var(--muted); font-size: .9rem; }

/* ---------- équipe (Qui sommes-nous) ---------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.member {
  background: var(--white); border-radius: var(--radius, 14px);
  padding: 2.2rem 1.8rem; text-align: center; box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.member-avatar {
  width: 84px; height: 84px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 600;
  color: var(--white); background: linear-gradient(135deg, var(--navy), #2c6f86);
  letter-spacing: .04em;
}
.member h3 { margin-bottom: .2rem; }
.member-role { color: var(--aqua-dark, #2c6f86); font-weight: 600; font-size: .92rem; margin-bottom: .8rem; }

/* ---------- cartes de prix (entretien) ---------- */
.price-card { display: flex; flex-direction: column; }
.price-card .card-body { display: flex; flex-direction: column; height: 100%; }
.price-card .price {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 600;
  color: var(--navy); margin: .3rem 0 1rem;
}
/* ---------- assistant de devis (wizard) ---------- */
.container-narrow { max-width: 820px; }
.wz-reassure { display: flex; flex-wrap: wrap; gap: .35rem 1.4rem; justify-content: center; margin-bottom: 1.2rem; font-size: .82rem; color: var(--navy); font-weight: 600; }
.wz-reassure span { white-space: nowrap; }
.wz-progress { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.wz-track { position: relative; flex: 1 1 180px; height: 8px; border-radius: 99px; background: var(--line, #e3e8ea); overflow: hidden; }
.wz-bar { position: absolute; inset: 0 auto 0 0; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--navy), var(--aqua, #7fd6df)); transition: width .45s cubic-bezier(.22,.61,.36,1); }
.wz-count { font-size: .8rem; color: var(--muted); white-space: nowrap; }
.wz-reset { font: inherit; font-size: .78rem; color: var(--muted); background: none; border: 0; cursor: pointer; text-decoration: underline; padding: 0; }
.wz-reset:hover { color: var(--navy); }
.wz-card.wz-in { animation: wzIn .4s cubic-bezier(.22,.61,.36,1) both; }
@keyframes wzIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.wz-card { background: var(--white); border-radius: var(--radius, 14px); box-shadow: var(--shadow); padding: clamp(1.5rem, 4vw, 2.6rem); }
.wz-title { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .4rem; }
.wz-sub { color: var(--muted); margin-bottom: 1.4rem; }
.wz-q { margin-bottom: 1.8rem; }
.wz-q:last-child { margin-bottom: 0; }
.wz-label { display: block; font-weight: 600; margin-bottom: .7rem; color: var(--ink, #1b2b33); }
.wz-opt-tag { font-weight: 400; font-size: .78rem; color: var(--muted); }
.wz-multi-hint { display: inline-block; font-weight: 600; font-size: .74rem; color: var(--aqua-dark); background: rgba(31,169,184,.1); border: 1px solid rgba(31,169,184,.3); border-radius: 999px; padding: .1rem .6rem; margin-left: .4rem; vertical-align: 1px; }
.wz-steps { display: flex; flex-wrap: wrap; gap: .4rem; margin: .3rem 0 1.1rem; }
.wz-step { font: inherit; font-size: .78rem; font-weight: 600; border: 1px solid var(--line, #dfe6e9); background: #fff; color: var(--muted); padding: .3rem .75rem; border-radius: 999px; cursor: default; }
.wz-step.is-done { color: var(--aqua-dark); border-color: rgba(31,169,184,.45); cursor: pointer; }
.wz-step.is-done::before { content: "✓ "; }
.wz-step.is-current { background: var(--navy); border-color: var(--navy); color: #fff; }
.wz-step:disabled { opacity: .55; }
.wz-swatch { display: inline-block; width: 15px; height: 15px; border-radius: 50%; border: 1px solid rgba(0,0,0,.18); margin-right: .5rem; vertical-align: -2px; }
.wz-cat { font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--aqua-dark); margin: 1.6rem 0 .7rem; }
.wz-cat:first-of-type { margin-top: .4rem; }
.wz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .7rem; }
.wz-opt {
  position: relative; text-align: left; padding: .85rem 1rem; border: 1.5px solid var(--line, #e3e8ea);
  border-radius: 12px; background: var(--white); cursor: pointer; font: inherit; color: var(--ink, #1b2b33);
  transition: border-color .2s ease, background .2s ease, transform .15s ease, box-shadow .2s ease;
}
.wz-opt:hover { border-color: var(--aqua, #7fd6df); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(15,43,61,.08); }
.wz-opt.selected { border-color: var(--navy); background: rgba(127,214,223,.12); box-shadow: 0 0 0 1.5px var(--navy) inset; padding-right: 2.2rem; }
.wz-opt.selected::after {
  content: '✓'; position: absolute; top: .55rem; right: .6rem; width: 1.3rem; height: 1.3rem;
  display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: #fff;
  font-size: .8rem; animation: wzCheck .25s ease both;
}
@keyframes wzCheck { from { transform: scale(0); } to { transform: scale(1); } }
.wz-opt-lg { display: flex; flex-direction: column; gap: .25rem; padding: 1.1rem 1.2rem; }
.wz-opt-lg strong { font-family: var(--font-display); font-size: 1.08rem; }
.wz-opt-lg span { font-size: .85rem; color: var(--muted); }
.wz-ic { font-size: 1.7rem; line-height: 1; margin-bottom: .15rem; color: var(--aqua-dark); }
.wz-ic .ic { width: 30px; height: 30px; margin: 0 auto; }
.wz-dims { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; }
.wz-dims input, .wz-contact input, .wz-contact textarea {
  width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--line, #e3e8ea);
  border-radius: 10px; font: inherit; background: var(--white);
}
.wz-q textarea { width: 100%; padding: .8rem .9rem; border: 1.5px solid var(--line, #e3e8ea); border-radius: 10px; font: inherit; }
.wz-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wz-contact-grid .full { grid-column: 1 / -1; }
.wz-contact .form-field label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .9rem; }
.wz-input-error { border-color: #d6453f !important; }
.wz-error .wz-label { color: #d6453f; }
.wz-error .wz-grid { outline: 1.5px dashed #d6453f; outline-offset: 6px; border-radius: 12px; }
.wz-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.6rem; }
/* récapitulatif avant envoi */
.wz-recap { background: var(--sand, #f4efe9); border-radius: 12px; padding: 1.1rem 1.3rem; margin-bottom: 1.6rem; }
.wz-recap-title { font-size: 1rem; margin: 0 0 .7rem; }
.wz-recap-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.wz-recap-list li { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .92rem; border-bottom: 1px solid rgba(15,43,61,.08); padding-bottom: .4rem; }
.wz-recap-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.wz-recap-list span { color: var(--muted); }
.wz-recap-list strong { text-align: right; }
.wz-recap-edit { margin: .8rem 0 0; font-size: .85rem; color: var(--muted); }
/* contact enrichi */
.wz-npa-row { display: grid; grid-template-columns: 92px 1fr; gap: .7rem; }
.wz-contact select {
  width: 100%; padding: .75rem .9rem; border: 1.5px solid var(--line, #e3e8ea);
  border-radius: 10px; font: inherit; background: var(--white); color: var(--ink, #1b2b33);
}
.wz-contact input[type=file] { width: 100%; font: inherit; padding: .5rem 0; }
.wz-files-hint { display: block; font-size: .8rem; color: var(--muted); margin-top: .3rem; }
.form-success.show { animation: wzPop .5s ease both; }
@keyframes wzPop { 0% { opacity: 0; transform: scale(.96); } 60% { transform: scale(1.012); } 100% { opacity: 1; transform: none; } }
.form-success .wz-check { display: inline-block; margin-right: .25rem; animation: wzCheckIn .5s .1s both; }
@keyframes wzCheckIn { from { transform: scale(0) rotate(-25deg); } to { transform: scale(1) rotate(0); } }
@media (prefers-reduced-motion: reduce) {
  .wz-card.wz-in, .form-success.show, .form-success .wz-check, .wz-opt.selected::after { animation: none !important; }
}
@media (max-width: 560px) {
  .wz-contact-grid { grid-template-columns: 1fr; }
  .wz-dims { grid-template-columns: 1fr; }
  .wz-recap-list li { flex-direction: column; gap: .1rem; }
  .wz-recap-list strong { text-align: left; }
}

/* ---------- avis clients ---------- */
.review-grid { gap: 1.6rem; }
.review {
  background: var(--white); border-radius: var(--radius, 14px);
  padding: 2rem 1.9rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .28s ease, box-shadow .28s ease;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stars { color: #f5b50a; letter-spacing: .12em; font-size: 1.05rem; }
.review-text { font-size: 1.02rem; line-height: 1.7; color: var(--ink, #1b2b33); margin: 0; }
.review-author { display: flex; align-items: center; gap: .8rem; margin-top: auto; font-size: .92rem; }
.review-avatar {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .9rem; color: var(--white);
  background: linear-gradient(135deg, var(--navy), #2c6f86);
}
.review-src { color: var(--muted); font-size: .82rem; }

.price-card.featured { border: 2px solid var(--aqua, #7fd6df); position: relative; }
.price-tag {
  display: inline-block; align-self: flex-start;
  background: var(--aqua, #7fd6df); color: var(--deep, #0d3a4c);
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .25rem .7rem; border-radius: 999px; margin-bottom: .6rem;
}

/* ---------- animations reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.22,.61,.36,1), transform .75s cubic-bezier(.22,.61,.36,1); }
.reveal.visible { opacity: 1; transform: none; }

/* ====== Caractère & animations ====== */

/* entrée du hero en cascade */
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.page-hero .container > * { animation: heroUp .9s cubic-bezier(.22,.61,.36,1) both; }
.page-hero .container > :nth-child(2) { animation-delay: .12s; }
.page-hero .container > :nth-child(3) { animation-delay: .24s; }
.page-hero .container > :nth-child(4) { animation-delay: .36s; }

/* accent signature sous les titres de section : une vaguelette */
.section-head h2 { position: relative; }
.section-head h2::after {
  content: "";
  display: block;
  width: 64px; height: 9px;
  margin-top: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 9'%3E%3Cpath d='M0 6.5 Q4 1.5 8 6.5 T16 6.5 T24 6.5 T32 6.5' fill='none' stroke='%231fa9b8' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x left center / 32px 9px;
  transform: scaleX(1); transform-origin: left center;
  transition: transform .8s cubic-bezier(.22,.61,.36,1) .15s;
}
.section-head.center h2::after { margin-left: auto; margin-right: auto; transform-origin: center; }
.bg-navy .section-head h2::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 9'%3E%3Cpath d='M0 6.5 Q4 1.5 8 6.5 T16 6.5 T24 6.5 T32 6.5' fill='none' stroke='%237fd6df' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
}
.section-head.reveal:not(.visible) h2::after { transform: scaleX(0); }

/* ====== signature « mouvement d'eau » ====== */
/* vague animée au bas des héros */
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 46px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 46' preserveAspectRatio='none'%3E%3Cpath d='M0 24 Q150 4 300 24 T600 24 T900 24 T1200 24 V46 H0 Z' fill='%23ffffff' opacity='.4'/%3E%3Cpath d='M0 32 Q150 14 300 32 T600 32 T900 32 T1200 32 V46 H0 Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x bottom / 1200px 46px;
  animation: waveDrift 26s linear infinite;
  pointer-events: none;
}
/* héros suivis d'une section sable */
.page-hero.to-sand::after { filter: drop-shadow(0 0 0 transparent); }
@keyframes waveDrift { from { background-position-x: 0; } to { background-position-x: -1200px; } }

/* vague qui remonte au-dessus du footer */
.site-footer { position: relative; }
.site-footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -34px;
  height: 35px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 35' preserveAspectRatio='none'%3E%3Cpath d='M0 35 V18 Q150 2 300 18 T600 18 T900 18 T1200 18 V35 Z' fill='%2307212e'/%3E%3C/svg%3E") repeat-x bottom / 1200px 35px;
  animation: waveDrift 32s linear infinite reverse;
  pointer-events: none;
}

/* reflets d'eau discrets sur les fonds navy */
.bg-navy {
  background-image:
    radial-gradient(ellipse 90% 45% at 15% 0%, rgba(31,169,184,.10), transparent 60%),
    radial-gradient(ellipse 70% 40% at 85% 100%, rgba(127,214,223,.07), transparent 65%);
}

/* variations de blocs : images qui sortent du cadre */
.split-img.pop img { transform: rotate(-1.4deg); box-shadow: var(--shadow-lg); transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.split.reverse .split-img.pop img { transform: rotate(1.4deg); }
.split-img.pop:hover img { transform: rotate(0) scale(1.015); }

/* ====== IDENTITÉ — dividers en vague entre les sections ====== */
/* le bord supérieur des sections colorées devient une vague de leur propre teinte */
.bg-sand, .bg-navy { position: relative; }
.bg-sand::before, .bg-navy::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -22px;
  height: 24px;
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 1200px 24px;
  pointer-events: none;
  z-index: 1;
}
.bg-sand::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 24 V12 Q150 0 300 12 T600 12 T900 12 T1200 12 V24 Z' fill='%23f6f4ef'/%3E%3C/svg%3E");
}
.bg-navy::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 24' preserveAspectRatio='none'%3E%3Cpath d='M0 24 V12 Q150 0 300 12 T600 12 T900 12 T1200 12 V24 Z' fill='%230b2e3f'/%3E%3C/svg%3E");
}
/* pas de double vague juste après un héros (qui a déjà sa vague) */
.hero + .bg-sand::before, .page-hero + .bg-sand::before,
.hero + .bg-navy::before, .page-hero + .bg-navy::before { display: none; }

/* ====== IDENTITÉ — légende de lieu sur les héros de chantiers réels ====== */
.page-hero .hero-loc, .hero .hero-loc {
  position: absolute;
  right: 0; bottom: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(7,33,46,.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .55rem 1.1rem;
}
.page-hero .hero-loc::before, .hero .hero-loc::before {
  content: "";
  width: 18px; height: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 7'%3E%3Cpath d='M0 4 Q3 1 6 4 T12 4 T18 4 T24 4' fill='none' stroke='%237fd6df' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  flex: none;
}

/* ====== IDENTITÉ — sceau « Fait en Suisse romande » ====== */
.sp-stamp {
  display: inline-block;
  margin-top: 1.6rem;
  padding: .7rem 1.1rem .6rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  text-align: center;
  line-height: 1.3;
}
.sp-stamp .w {
  display: block;
  width: 34px; height: 8px;
  margin: 0 auto .35rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 7'%3E%3Cpath d='M0 4 Q3 1 6 4 T12 4 T18 4 T24 4' fill='none' stroke='%237fd6df' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.sp-stamp strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
}
.sp-stamp span {
  display: block;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9fb4bd;
  margin-top: .15rem;
}

/* micro-interactions icônes (le lift de carte est retiré : plus éditorial) */
.feature { transition: border-top-color .28s ease; }
.feature:hover { border-top-color: var(--aqua); }
.feature .icon { transition: transform .35s cubic-bezier(.34,1.56,.64,1); }
.feature:hover .icon { transform: scale(1.1) rotate(-4deg); }

/* statband & pastilles vivants */
.statband .stat { transition: transform .28s ease, box-shadow .28s ease; }
.statband .stat:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.color .chip { transition: transform .28s ease, box-shadow .28s ease; }
.color:hover .chip { transform: scale(1.06); }

/* préférence de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .page-hero .container > * { animation: none; }
  .section-head h2::after { transition: none; transform: scaleX(1); }
  .page-hero::after, .site-footer::before, .bg-sand::before, .bg-navy::before { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .statband { grid-template-columns: repeat(2, 1fr); }
  .team { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .colorgrid { grid-template-columns: repeat(3, 1fr); }
  .shapes { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .main-nav.open { max-height: calc(100vh - 76px); overflow-y: auto; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; padding: 1rem 6%; }
  .main-nav > ul > li { border-bottom: 1px solid var(--line); }
  .main-nav > ul > li > a { display: block; padding: 1rem 0; color: var(--navy); }
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none;
    display: none;
    padding: 0 0 .8rem;
  }
  .has-dropdown.open .dropdown { display: block; }
  .nav-cta { padding: 1rem 0; border-bottom: 0 !important; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .statband { grid-template-columns: 1fr 1fr; }
  .colorgrid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .split { grid-template-columns: 1fr; }
  .split.reverse > .split-img { order: 0; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 72vh; padding: 100px 0 64px; }
  .hero-badges { gap: 1.6rem; margin-top: 2rem; }
  .hero-badge strong { font-size: 1.6rem; }
}

/* ---------- bannière cookies ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--navy, #0f2b3d); color: #fff;
  box-shadow: 0 -6px 24px rgba(8, 24, 34, .25);
  animation: cookieIn .35s ease both;
}
@keyframes cookieIn { from { transform: translateY(100%); } to { transform: none; } }
.cookie-inner { display: flex; align-items: center; gap: 1.2rem; padding: 1rem 0; flex-wrap: wrap; }
.cookie-text { margin: 0; font-size: .9rem; flex: 1 1 320px; color: #dce6ea; }
.cookie-text a { color: #fff; text-decoration: underline; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }
.cookie-actions .btn { padding: .55rem 1.3rem; }
.cookie-banner .btn-outline { border-color: rgba(255, 255, 255, .5); color: #fff; }
.cookie-banner .btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }
@media (prefers-reduced-motion: reduce) { .cookie-banner { animation: none; } }
@media (max-width: 560px) {
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ---------- page légale ---------- */
.page-hero-sm { min-height: auto; padding: clamp(3.5rem, 9vw, 5.5rem) 0 clamp(2.5rem, 6vw, 3.5rem); }
.legal { padding: .5rem 0; }
.legal h2 { font-size: 1.3rem; margin: 2.2rem 0 .6rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal ul { margin-bottom: 1rem; line-height: 1.7; }
.legal-update { color: var(--muted); font-size: .88rem; margin-bottom: 1.6rem; }

/* ---------- blog & articles ---------- */
.blog-tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--aqua, #2fa6b3); margin-bottom: .5rem; }
.article { padding: .5rem 0 1rem; }
.article p, .article ul, .article ol { line-height: 1.75; margin-bottom: 1.1rem; }
.article h2 { font-size: 1.5rem; margin: 2.2rem 0 .8rem; }
.article-meta { color: var(--muted); font-size: .88rem; margin-bottom: 1.8rem; }
.article .checklist { margin-bottom: 1.4rem; }
.article-table { width: 100%; border-collapse: collapse; margin: 1.4rem 0 1.8rem; font-size: .94rem; }
.article-table th, .article-table td { text-align: left; padding: .7rem .8rem; border-bottom: 1px solid var(--line, #e3e8ea); }
.article-table thead th { background: var(--sand, #f4efe9); font-family: var(--font-display); }
.article-table td:first-child { font-weight: 600; }
.article-steps { counter-reset: step; list-style: none; padding: 0; }
.article-steps li { position: relative; padding-left: 2.6rem; margin-bottom: 1rem; }
.article-steps li::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: -.1rem; width: 1.8rem; height: 1.8rem; display: grid; place-items: center; border-radius: 50%; background: var(--navy, #0f2b3d); color: #fff; font-weight: 700; font-size: .9rem; }
.article .accordion { margin: 2.2rem 0; }
.article-cta { background: var(--sand, #f4efe9); border-radius: 14px; padding: 1.8rem; text-align: center; margin-top: 2.4rem; }
.article-cta h3 { margin: 0 0 .5rem; }
.article-cta p { margin: 0 0 1.2rem; color: var(--muted); }
.article-fig { margin: 1.8rem 0; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 28px rgba(15,43,61,.1); }
.article-fig img { display: block; width: 100%; height: auto; }
.article-fig figcaption { font-size: .84rem; color: var(--muted); padding: .6rem .9rem; background: var(--sand, #f4efe9); }
.article-lead { font-size: 1.12rem; color: var(--ink, #1b2b33); }
.blog-card .card-img { aspect-ratio: 16/10; }
.blog-card .blog-tag { margin-top: -.2rem; }

/* ---------- note globale avis ---------- */
.review-score { display: flex; align-items: center; justify-content: center; gap: .6rem; margin: 0 auto 2.2rem; flex-wrap: wrap; }
.review-score strong { font-family: var(--font-display); font-size: 2.6rem; color: var(--navy); line-height: 1; }
.review-score-stars { color: #f5b50a; letter-spacing: 2px; font-size: 1.2rem; }
.review-score-label { color: var(--muted); font-size: .95rem; }

/* ---------- accessibilité, WebP, CTA flottants ---------- */
picture { display: contents; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 300; background: var(--navy, #0f2b3d); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
.fab-stack { position: fixed; right: 18px; bottom: 18px; z-index: 150; display: flex; flex-direction: column; gap: .7rem; align-items: flex-end; }
.fab {
  width: 54px; height: 54px; border-radius: 50%; color: #fff;
  display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform .2s ease; position: relative;
}
.fab:hover { transform: scale(1.08); }
.fab-devis { background: var(--aqua, #2fa6b3); }
.fab-call { background: var(--navy, #0f2b3d); }
.fab-wa { background: #25D366; }
.fab-label {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  white-space: nowrap; background: var(--navy, #0f2b3d); color: #fff;
  padding: .35rem .7rem; border-radius: 7px; font-size: .82rem; font-weight: 600;
  opacity: 0; pointer-events: none; transition: opacity .2s; box-shadow: 0 4px 14px rgba(0,0,0,.2);
}
.fab:hover .fab-label { opacity: 1; }
.mobile-cta { display: none; }
@media (max-width: 768px) {
  .mobile-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 140; }
  .mcta-btn { flex: 1; text-align: center; padding: .95rem .5rem; font-weight: 700; font-size: .98rem; text-decoration: none; }
  .mcta-call { background: var(--navy, #0f2b3d); color: #fff; }
  .mcta-devis { background: var(--aqua, #2fa6b3); color: #fff; }
  body { padding-bottom: 3.4rem; }
  /* la barre du bas gère Devis + Appel → on ne garde que WhatsApp en flottant */
  .fab-devis, .fab-call, .fab-label { display: none; }
  .fab-stack { bottom: 4.1rem; }
  .fab-wa { width: 50px; height: 50px; }
}
.contact-list { margin-top: 1.4rem; display: grid; gap: 1.1rem; list-style: none; padding: 0; }
.contact-line { display: flex; gap: .9rem; align-items: flex-start; }
.contact-ic { flex: 0 0 auto; display: flex; width: 38px; height: 38px; border-radius: 10px;
  align-items: center; justify-content: center; background: rgba(22,138,150,.10); color: var(--aqua-dark); }
.contact-ic .ic { width: 20px; height: 20px; }
.contact-line > div { line-height: 1.45; }
.contact-trust { margin-top: 1.6rem; font-size: .9rem; font-weight: 600; color: var(--navy, #0f2b3d); }
.contact-map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 28px rgba(15,43,61,.12); }
.contact-map iframe { display: block; width: 100%; height: 420px; border: 0; }
@media (max-width: 560px) { .contact-map iframe { height: 320px; } }