/* ---------- Variables ---------- */
:root {
  --primary: #0f766e;
  --primary-2: #14b8a6;
  --primary-dark: #063f3c;
  --accent: #e11d48;
  --accent-dark: #be123c;
  --gold: #f59e0b;
  --bg: #ffffff;
  --bg-soft: #eefaf6;
  --cream: #fff7ec;
  --text: #10262a;
  --muted: #3d545a;
  --border: #cde3de;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(6, 63, 60, 0.1);
  --shadow-lg: 0 18px 44px rgba(6, 63, 60, 0.18);
  --max: 1120px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem; /* environ 19 px : confortable à lire */
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }
a { color: var(--primary); }
a:hover { color: var(--accent-dark); }
img, svg { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 820px); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Barre de progression de lecture */
.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 200;
  background: linear-gradient(90deg, var(--primary-2), var(--accent), var(--gold));
  transform-origin: left;
  transform: scaleX(var(--p, 0));
}

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -35px) scale(1.12); }
  66% { transform: translate(-35px, 25px) scale(0.95); }
}
@keyframes marquee { to { transform: translateX(-33.3333%); } }
@keyframes wave { to { transform: translateX(-50%); } }
@keyframes shine { to { transform: translateX(260%) skewX(-20deg); } }
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}
@keyframes ringNum {
  0% { box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(15, 118, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 118, 110, 0); }
}
@keyframes wiggle { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-9deg) scale(1.08); } 75% { transform: rotate(9deg) scale(1.08); } }
@keyframes pop { 0% { transform: scale(0.4); opacity: 0; } 70% { transform: scale(1.15); } 100% { transform: scale(1); opacity: 1; } }

/* Apparition au défilement (activée par script.js) */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Boutons ---------- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.85rem 1.7rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
}
.btn:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 28px rgba(225, 29, 72, 0.38); }
.btn:hover::before { animation: shine 0.8s var(--ease); }
.btn:active { transform: translateY(0); }
.btn-outline { background: #fff; color: var(--primary-dark); border-color: var(--primary); box-shadow: none; }
.btn-outline:hover { background: var(--primary); color: #fff; box-shadow: 0 10px 22px rgba(15, 118, 110, 0.3); }
.btn-small { padding: 0.65rem 1.3rem; font-size: 1.05rem; }
.btn-pulse { animation: pulseRing 2.6s ease-out 3; } /* 3 fois seulement : pas de mouvement permanent */

/* ---------- En-tête ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(6, 63, 60, 0.12); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  transition: min-height 0.3s;
}
.site-header.scrolled .header-inner { min-height: 64px; }

.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo-img { width: 56px; height: 56px; flex: none; border-radius: 12px; transition: transform 0.4s var(--ease); }
.logo:hover .logo-img { transform: scale(1.08); }
.logo-text { font-family: Georgia, serif; font-weight: 700; font-size: 1.35rem; color: var(--primary-dark); line-height: 1.1; }

.nav ul { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav a:not(.btn) { position: relative; text-decoration: none; font-weight: 600; font-size: 1.05rem; color: var(--text); padding: 0.7rem 0; }
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--primary-2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:not(.btn):hover { color: var(--primary-dark); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  font: inherit;
  font-weight: 700;
  color: var(--primary-dark);
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

/* ---------- Accueil ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(5rem, 9vw, 8rem);
  background: linear-gradient(120deg, #e3f7f2, #fff4e2, #ffe8ee, #e3f7f2);
  background-size: 300% 300%;
  animation: gradientShift 16s ease-in-out infinite;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.55; animation: blob 18s ease-in-out infinite; }
.b1 { width: 340px; height: 340px; background: #5eead4; top: -90px; left: -80px; }
.b2 { width: 300px; height: 300px; background: #fda4af; right: -60px; top: 20%; animation-duration: 22s; animation-delay: -6s; }
.b3 { width: 260px; height: 260px; background: #fcd34d; left: 38%; bottom: -100px; animation-duration: 26s; animation-delay: -12s; }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; align-items: center; }
.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
}
.lead { font-size: 1.25rem; color: var(--muted); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.6rem; }

.grad {
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary);
}

/* Le texte de l'accueil apparaît progressivement, sans script */
.hero-text > * { animation: fadeUp 0.8s var(--ease) both; }
.hero-text > :nth-child(1) { animation-delay: 0.05s; }
.hero-text > :nth-child(2) { animation-delay: 0.15s; }
.hero-text > :nth-child(3) { animation-delay: 0.3s; }
.hero-text > :nth-child(4) { animation-delay: 0.45s; }
.hero-text > :nth-child(5) { animation-delay: 0.6s; }

.hero-phone { margin: 1.4rem 0 0; font-size: 1.15rem; color: var(--primary-dark); }
.hero-phone a { font-weight: 800; font-size: 1.3rem; white-space: nowrap; }

.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.8rem;
  position: relative;
  animation: fadeIn 0.9s 0.3s both;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--primary-2), var(--accent), var(--gold));
}
.hero-card h2 { font-size: 1.4rem; margin-top: 0.4rem; }

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding-left: 2.2rem; margin-bottom: 0.8rem; animation: fadeUp 0.6s var(--ease) both; }
.check-list li:nth-child(1) { animation-delay: 0.7s; }
.check-list li:nth-child(2) { animation-delay: 0.85s; }
.check-list li:nth-child(3) { animation-delay: 1s; }
.check-list li:nth-child(4) { animation-delay: 1.15s; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 0.48rem;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.3rem;
  border-left: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(-45deg);
}

/* Vague animée en bas de l'accueil */
.wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; overflow: hidden; }
.wave svg { display: block; width: 200%; height: clamp(40px, 6vw, 80px); animation: wave 14s linear infinite; }
.wave path { fill: var(--primary-dark); }

/* Bandeau défilant */
.marquee { position: relative; background: var(--primary-dark); color: #fff; overflow: hidden; padding: 1rem 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 75s linear infinite; }
.marquee:hover .marquee-track,
.marquee.paused .marquee-track { animation-play-state: paused; }
.marquee ul { display: flex; flex-shrink: 0; list-style: none; margin: 0; padding: 0; }
.marquee li { display: flex; align-items: center; gap: 1.6rem; padding-left: 1.6rem; font-weight: 700; font-size: 1.1rem; white-space: nowrap; }
.marquee li::after { content: "\2665"; content: "\2665" / ""; color: #fda4af; font-size: 0.9em; }
/* Bouton pause : indispensable pour un texte qui défile */
.marquee-toggle {
  position: absolute;
  top: 50%;
  right: 0.8rem;
  translate: 0 -50%;
  min-height: 44px;
  padding: 0 1.1rem;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--primary-dark);
  border: 2px solid #fff;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: -18px 0 18px 6px var(--primary-dark);
}
.marquee-toggle:hover { background: #fff; color: var(--primary-dark); }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: linear-gradient(180deg, var(--bg-soft), #fff8ef); }
.section-head { max-width: 640px; margin-bottom: 2.2rem; }
.section-head h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 5px;
  margin-top: 0.6rem;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--primary-2), var(--accent));
  transition: width 0.8s var(--ease) 0.3s;
}
.section-head p { color: var(--muted); font-size: 1.15rem; }

/* Services */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  --c1: #14b8a6;
  --c2: #0f766e;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: translate 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--c1), var(--c2));
}
.card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c1), transparent 70%);
  opacity: 0.12;
  transition: opacity 0.35s, transform 0.5s var(--ease);
}
.card:hover { translate: 0 -8px; box-shadow: var(--shadow-lg); border-color: var(--c1); }
.card:hover::after { opacity: 0.28; transform: scale(1.4); }
.card h3 { margin-bottom: 0.5rem; }
.card p { margin: 0; color: var(--muted); position: relative; }
.card:nth-child(2) { --c1: #fb7185; --c2: #e11d48; }
.card:nth-child(3) { --c1: #fbbf24; --c2: #d97706; }
.card:nth-child(4) { --c1: #818cf8; --c2: #4f46e5; }
.card:nth-child(5) { --c1: #38bdf8; --c2: #0284c7; }
.card:nth-child(6) { --c1: #34d399; --c2: #059669; }

.card-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow: 0 8px 18px rgba(6, 63, 60, 0.2);
}
.card:hover .card-icon { animation: wiggle 0.6s ease; }
.card-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Etapes */
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.steps li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: translate 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.steps li:hover { translate: 0 -6px; box-shadow: var(--shadow-lg); }
.steps p { margin: 0; color: var(--muted); }
.step-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  animation: ringNum 2.6s ease-out 3;
}
.steps li:nth-child(2) .step-num { background: linear-gradient(135deg, #fb7185, var(--accent-dark)); animation-delay: 0.5s; }
.steps li:nth-child(3) .step-num { background: linear-gradient(135deg, #fbbf24, #b45309); animation-delay: 1s; }

/* A propos */
.about { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
.values { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.values li {
  position: relative;
  background: linear-gradient(135deg, #fff, var(--bg-soft));
  border: 1px solid var(--border);
  border-left: 6px solid var(--primary-2);
  border-radius: 12px;
  padding: 1rem 1.3rem;
  box-shadow: 0 4px 14px rgba(6, 63, 60, 0.06);
  transition: translate 0.3s var(--ease), box-shadow 0.3s;
}
.values li:hover { translate: 8px 0; box-shadow: var(--shadow); }
.values li:nth-child(2) { border-left-color: #fb7185; }
.values li:nth-child(3) { border-left-color: #fbbf24; }
.values li:nth-child(4) { border-left-color: #818cf8; }
.values strong { display: block; font-family: Georgia, serif; font-size: 1.2rem; color: var(--primary-dark); }
.values span { color: var(--muted); }

/* Contact */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-list { list-style: none; margin: 1.5rem 0 0; padding: 0; }
.contact-list li { margin-bottom: 1.1rem; }
.contact-label { display: block; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent-dark); }
.contact-list a { font-weight: 700; font-size: 1.2rem; }

.form { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 2rem; }
.form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-2), var(--accent), var(--gold));
}
.form-title { margin-bottom: 0.4rem; }
.form-intro { margin: 0 0 1.4rem; color: var(--muted); }
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 700; margin-bottom: 0.4rem; }
.optional { font-weight: 400; color: var(--muted); }
.req { font-weight: 700; font-size: 0.95rem; color: var(--accent-dark); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
  border: 2px solid #5d7773;
  border-radius: 12px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.25);
}
.field .invalid { border-color: #b3261e; }
.field-check { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: start; }
.field-check input { width: 1.8rem; height: 1.8rem; margin-top: 0.1rem; accent-color: var(--accent); }
.field-check label { font-weight: 400; margin: 0; }
.field-check .error { grid-column: 1 / -1; }
.error { color: #b3261e; font-weight: 700; margin: 0.4rem 0 0; font-size: 1.05rem; }
.form-note { margin: 1rem 0 0; font-weight: 600; color: var(--primary-dark); }
.form-note:not(:empty) { padding: 0.9rem 1.1rem; background: var(--bg-soft); border-left: 6px solid var(--primary); border-radius: 10px; }
.form .btn { width: 100%; font-size: 1.15rem; padding: 1rem 1.6rem; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.btn:disabled { opacity: 0.6; cursor: wait; }

/* ---------- Pied de page ---------- */
.site-footer { background: linear-gradient(135deg, #042f2e, var(--primary-dark) 60%, #0b5350); color: #e3f1ee; padding-top: 2.5rem; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: #fda4af; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem; padding-bottom: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 0.9rem; margin: 0; max-width: 460px; }
.footer-brand img { width: 140px; height: 140px; flex: none; padding: 4px; background: #fff; border-radius: 16px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem 1.6rem; align-self: center; }
.footer-links a { display: inline-block; padding: 0.6rem 0; font-weight: 600; }
.footer-legal { border-top: 1px solid rgba(255, 255, 255, 0.2); padding: 1.2rem 0 2rem; font-size: 1rem; color: #cfe3df; }
.footer-legal p { margin: 0 0 0.4rem; }

/* Pages simples (mentions légales) */
.page { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.page h1 { margin-bottom: 1.5rem; }
.page h2 { font-size: 1.5rem; margin-top: 2rem; }

/* ---------- Adaptation tablette / mobile ---------- */
@media (max-width: 960px) {
  .hero-inner, .about, .contact { grid-template-columns: 1fr; gap: 2rem; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .steps, .cards-3 { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; min-height: 48px; font-size: 1.05rem; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav.open { display: block; animation: fadeUp 0.3s var(--ease); }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 1.25rem 1.25rem; }
  .nav li { border-bottom: 1px solid var(--border); }
  .nav li:last-child { border: 0; padding-top: 1rem; }
  .nav a:not(.btn) { display: block; padding: 0.9rem 0; }
  .nav a:not(.btn)::after { display: none; }
}

@media (max-width: 620px) {
  body { font-size: 1.125rem; }
  .cards, .steps { grid-template-columns: 1fr; }
  .marquee-toggle { position: static; translate: none; margin: 0.6rem auto 0; display: block; box-shadow: none; }
  .logo-text { font-size: 1.1rem; }
  .logo-img { width: 46px; height: 46px; }
  .footer-brand { flex-direction: column; align-items: flex-start; }
  .footer-brand img { width: 120px; height: 120px; }
  .form { padding: 1.3rem; }
  .hero-actions .btn { width: 100%; }
  .blob { opacity: 0.4; }
}

/* ---------- Mouvement réduit : on coupe toutes les animations ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero { background-size: 100% 100%; }
  .marquee-track { width: auto; flex-wrap: wrap; justify-content: center; }
  .marquee ul:nth-child(n+2) { display: none; }
  .marquee ul { flex-wrap: wrap; justify-content: center; row-gap: 0.4rem; }
  .wave svg { width: 100%; }
  .progress { display: none; }
  .marquee-toggle { display: none; }
}
