:root {
  --blue: #1a6b9c;
  --blue-dark: #14557d;
  --blue-deep: #0c3d5c;
  --blue-light: #e8f4fa;
  --accent: #2d9cdb;
  --mint: #5eead4;
  --violet: #a78bfa;
  --coral: #fb7185;
  --amber: #fbbf24;
  --bg: #f6f9fc;
  --card: #ffffff;
  --text: #1a2b3c;
  --muted: #5a6d7e;
  --border: #d4e2ec;
  --shadow: 0 4px 24px rgba(20, 85, 125, 0.08);
  --shadow-lg: 0 20px 60px rgba(12, 61, 92, 0.15);
  --radius: 14px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

.container {
  width: min(1140px, calc(100% - 40px));
  margin-inline: auto;
}

/* Prototype banner */
.prototype-banner {
  background: linear-gradient(90deg, #f59e0b, #d97706);
  color: #1a1200;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

.brand img { height: 40px; width: auto; }

.nav-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.nav-desktop a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  color: var(--blue-dark);
  background: transparent;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  min-width: 62px;
  padding: 7px 8px 8px;
  border-radius: 14px;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s, color 0.2s, box-shadow 0.2s;
}

.nav-desktop a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  transition: opacity 0.2s;
  background: linear-gradient(135deg, rgba(45, 156, 219, 0.1), rgba(251, 113, 133, 0.08));
  pointer-events: none;
}

.nav-desktop a:hover {
  color: var(--blue-deep);
  transform: translateY(-2px) scale(1.05);
}

.nav-desktop a:hover::before { opacity: 1; }

.nav-ico {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  line-height: 1;
  background: linear-gradient(145deg, #fff 0%, var(--blue-light) 100%);
  border: 1.5px solid rgba(26, 107, 156, 0.1);
  border-radius: 12px;
  padding: 0;
  box-shadow: none;
  transition: transform 0.2s, background 0.2s;
}

.nav-desktop a:hover .nav-ico {
  transform: scale(1.1) rotate(-2deg);
}

.nav-ico svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: var(--blue-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.nav-ico .nav-spark {
  fill: var(--coral);
  stroke: none;
}

.nav-ico-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 2px #fff;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-lbl {
  position: relative;
  z-index: 1;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.nav-desktop a:has([data-nav-icon="home"]):hover .nav-ico svg { stroke: var(--accent); }
.nav-desktop a:has([data-nav-icon="history"]):hover .nav-ico svg { stroke: var(--amber); }
.nav-desktop a:has([data-nav-icon="tour"]):hover .nav-ico svg { stroke: #22c55e; }
.nav-desktop a:has([data-nav-icon="products"]):hover .nav-ico svg { stroke: var(--coral); }
.nav-desktop a:has([data-nav-icon="contact"]):hover .nav-ico svg { stroke: #ec4899; }

.nav-desktop a.active {
  background: linear-gradient(145deg, #0c3d5c 0%, #1a6b9c 50%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(12, 61, 92, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  outline: none;
  transform: none;
}

.nav-desktop a.active::before { opacity: 0; }

.nav-desktop a.active .nav-ico {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.28);
  transform: none;
}

.nav-desktop a.active .nav-ico svg { stroke: #fff; }

.nav-desktop a.active .nav-ico-dot {
  opacity: 1;
  transform: scale(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
  margin-left: auto;
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 18%);
}

.header-cta {
  white-space: nowrap;
  padding: 10px 18px;
  font-size: 0.86rem;
  line-height: 1.2;
}

.lang-pills {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
  background: var(--blue-light);
  padding: 3px;
  border-radius: 8px;
}

.lang-pills button {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.lang-pills button.active,
.lang-pills button:hover {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 107, 156, 0.35);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 6px 20px rgba(26, 107, 156, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}

.btn-outline:hover { background: rgba(255,255,255,.12); color: #fff; }

.btn-ghost {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.btn-ghost:hover { background: #dceef8; color: var(--blue-dark); }

.menu-toggle {
  display: none;
  border: none;
  background: var(--blue-light);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: calc(var(--header-h) + 33px);
  background: rgba(255,255,255,.98);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
  border-top: 1px solid var(--border);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 14px 16px;
  border-radius: 100px;
  color: var(--blue-dark);
  background: var(--blue-light);
  font-weight: 600;
  font-size: 1.05rem;
}

.nav-mobile a:not(.nav-fds)::after {
  content: "✦";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 8px;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.nav-mobile a:not(.nav-fds):hover::after { opacity: 0; }

.nav-mobile .nav-ico {
  position: relative;
  width: 34px;
  height: 34px;
  background: linear-gradient(145deg, #fff 0%, var(--blue-light) 100%);
  border: 1.5px solid rgba(26, 107, 156, 0.1);
  border-radius: 12px;
  padding: 0;
  box-shadow: none;
}

.nav-mobile .nav-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue-dark);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.nav-mobile a:hover { background: var(--blue-light); }

.nav-mobile a.active {
  background: linear-gradient(145deg, #0c3d5c 0%, #1a6b9c 50%, #2563eb 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(12, 61, 92, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  outline: none;
}

.nav-mobile a.active .nav-ico {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-mobile a.active .nav-ico svg { stroke: #fff; }

.nav-mobile a.active .nav-ico-dot {
  opacity: 1;
  transform: scale(1);
}

/* Demo "Avant": emulate previous active style (white/blue) */
body.demo-before .nav-desktop a.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 1px 4px rgba(26, 107, 156, 0.18);
  outline: 1px solid rgba(26, 107, 156, 0.22);
}
body.demo-before .nav-desktop a.active::before { opacity: 0; }
body.demo-before .nav-desktop a.active .nav-ico {
  background: #fff;
  border-color: rgba(26, 107, 156, 0.16);
}
body.demo-before .nav-desktop a.active .nav-ico svg { stroke: var(--blue); }
body.demo-before .nav-desktop a.active .nav-ico-dot { opacity: 0; transform: scale(0); }

body.demo-before .nav-mobile a.active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 1px 4px rgba(26, 107, 156, 0.18);
  outline: 1px solid rgba(26, 107, 156, 0.22);
}
body.demo-before .nav-mobile a.active .nav-ico {
  background: #fff;
  border-color: rgba(26, 107, 156, 0.16);
}
body.demo-before .nav-mobile a.active .nav-ico svg { stroke: var(--blue); }
body.demo-before .nav-mobile a.active .nav-ico-dot { opacity: 0; transform: scale(0); }

.nav-mobile .nav-lbl {
  font-weight: 800;
  font-size: 1rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-bottom: 8px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -2%;
  background: url("../img/20260706_125554.jpg") center 30% / cover no-repeat;
  filter: brightness(1.12) saturate(1.28) contrast(1.04);
  transform: scale(1.03);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(6, 28, 44, 0.88) 0%,
      rgba(8, 35, 55, 0.62) 32%,
      rgba(12, 61, 92, 0.18) 58%,
      transparent 72%
    ),
    linear-gradient(
      125deg,
      rgba(255, 210, 140, 0.18) 0%,
      rgba(255, 180, 90, 0.06) 28%,
      transparent 52%
    ),
    linear-gradient(
      135deg,
      rgba(12, 61, 92, 0.62) 0%,
      rgba(26, 107, 156, 0.38) 48%,
      rgba(20, 85, 125, 0.52) 100%
    );
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0 12px;
}

.hero-cluster {
  display: flex;
  flex-direction: column;
  width: min(100%, 1100px);
  gap: 10px;
}

.hero-top-band {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr) minmax(0, 260px);
  align-items: center;
  column-gap: 16px;
  width: 100%;
}

.hero-center-slot {
  justify-self: center;
  text-align: center;
  width: 100%;
  min-width: 0;
  color: #fff;
  align-self: center;
}

.hero-center-slot .hero-content {
  margin: 0 auto;
}

.hero-main-band {
  width: 100%;
  text-align: center;
  color: #fff;
  animation: fadeUp 0.7s 0.12s ease both;
  margin-top: -6px;
}

.hero-content--headline {
  max-width: 340px;
  padding: 0;
}

.hero-content--headline .hero-badge {
  font-size: 0.74rem;
  padding: 4px 10px;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.hero-content--headline .hero-punch {
  margin: 0;
}

.hero-content--headline .hero-punch-line--1 {
  font-size: clamp(1.8rem, 3.6vw, 2.45rem);
}

.hero-content--headline .hero-punch-line--2 {
  font-size: clamp(1.45rem, 3.1vw, 2rem);
}

.hero-content--headline .hero-punch-line,
.hero-content--headline .hero-badge {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-content--main {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 8px;
}

.hero-content--main .hero-stat-chip {
  padding: 8px 18px;
  font-size: clamp(0.88rem, 1.6vw, 1.05rem);
}

.hero-content--main .hero-stat-row {
  margin: 0 0 16px;
  gap: 10px;
}

.hero-content--main .hero-lead-intro {
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-content--main .hero-offer-grid {
  gap: 10px;
  margin: 0 0 22px;
}

.hero-content--main .hero-offer-pill {
  padding: 11px 18px;
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  border-radius: 100px;
}

.hero-content--main .hero-offer-pill--highlight {
  font-size: clamp(0.95rem, 1.65vw, 1.12rem);
  padding: 12px 20px;
}

.hero-content--main .hero-cta .btn {
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  padding: 13px 24px;
}

.hero-content--main .hero-cta {
  gap: 16px;
}

.hero-water-wrap .hero-water-float {
  pointer-events: auto;
}

.hero-water-wrap,
.hero-chem-wrap {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  margin: 0;
  padding: 0;
  pointer-events: auto;
  align-self: center;
  z-index: 2;
}

.hero-water-wrap { justify-self: start; }
.hero-chem-wrap { justify-self: end; text-align: right; }

.hero-layout {
  position: relative;
  z-index: 1;
  padding: 0;
  margin-top: -4px;
  width: 100%;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.hero-water-float {
  display: inline-block;
}

.hero-panel-water {
  display: block;
  text-decoration: none;
  color: #fff;
  width: min(100%, 260px);
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(232, 93, 4, 0.88) 0%, rgba(26, 107, 156, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.7s 0.15s ease both;
  flex-shrink: 0;
}

.hero-panel-water::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.14), transparent 50%);
  pointer-events: none;
}

.hero-panel-water {
  position: relative;
  overflow: hidden;
}

.hero-panel-water:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  color: #fff;
}

.hero-water-inner {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.hero-water-copy {
  flex: 1;
  min-width: 0;
}

.hero-water-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.32);
  margin-bottom: 8px;
}

.hero-water-title {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-water-lead {
  margin: 0 0 10px;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.92;
}

.hero-water-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.hero-water-pill {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
}

.hero-water-pill-axal {
  background: #fff;
  color: #e85d04;
}

.hero-water-pill-regenit {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-water-thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
  width: 62px;
  padding-bottom: 2px;
}

.hero-water-thumbs img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.32));
  transition: transform 0.25s ease;
}

.hero-water-thumbs img:first-child {
  max-height: 78px;
  transform: rotate(-4deg);
}

.hero-water-thumbs img:last-child {
  max-height: 72px;
  transform: rotate(3deg);
}

.hero-panel-water:hover .hero-water-thumbs img:first-child {
  transform: rotate(-4deg) translateY(-2px);
}

.hero-panel-water:hover .hero-water-thumbs img:last-child {
  transform: rotate(3deg) translateY(-2px);
}

.btn-water {
  display: inline-block;
  background: #fff !important;
  color: var(--blue-deep) !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 14px;
  pointer-events: none;
}

/* Pastille secteurs (hero) */
.hero-panel-chem {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  width: min(100%, 260px);
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue-deep) 0%, #1a6b9c 42%, var(--accent) 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.7s 0.2s ease both;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.hero-panel-chem::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.hero-panel-chem:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.26);
  color: #fff;
}

.hero-chem-inner {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.hero-chem-copy { flex: 1; min-width: 0; }

.hero-chem-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}

.hero-chem-title {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.hero-chem-lead {
  margin: 0 0 10px;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.92;
}

.hero-chem-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.hero-chem-chip {
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-chem-chip-accent {
  background: #fff;
  color: var(--blue-deep);
  border-color: transparent;
}

.hero-chem-thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex-shrink: 0;
  width: 68px;
  padding-bottom: 2px;
}

.hero-chem-thumbs img {
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
  transition: transform 0.25s ease;
}

/* Perspective physique : fût > bidon > fiole */
.hero-chem-thumbs img:nth-child(1) {
  max-height: 72px;
  max-width: 68px;
  transform: rotate(3deg);
}

.hero-chem-thumbs img:nth-child(2) {
  max-height: 46px;
  transform: rotate(-2deg);
}

.hero-chem-thumbs img:nth-child(3) {
  max-height: 36px;
  transform: rotate(3deg);
}

.hero-panel-chem:hover .hero-chem-thumbs img:nth-child(1) {
  transform: rotate(2deg) translateY(-1px);
}

.hero-panel-chem:hover .hero-chem-thumbs img:nth-child(2) {
  transform: rotate(-1deg) translateY(-1px);
}

.hero-panel-chem:hover .hero-chem-thumbs img:nth-child(3) {
  transform: rotate(2deg) translateY(-1px);
}

.btn-chem {
  display: inline-block;
  background: #fff !important;
  color: var(--blue-deep) !important;
  border: none !important;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 14px;
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-welcome-block {
  margin: 0 0 18px;
  animation: fadeUp 0.7s ease both;
}

.hero-welcome-title {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.hero-welcome-line {
  display: block;
}

.hero-welcome-line:nth-child(1) {
  font-size: clamp(1.7rem, 4.2vw, 2.5rem);
}

.hero-welcome-line:nth-child(2) {
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  font-weight: 600;
  opacity: 0.95;
}

.hero-welcome-line:nth-child(3) {
  font-size: clamp(1.55rem, 3.8vw, 2.2rem);
}

.hero-welcome-sub {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 500;
  opacity: 0.92;
  letter-spacing: 0.01em;
  animation: fadeUp 0.7s 0.05s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  animation: fadeUp 0.7s ease both;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-content--genz {
  max-width: 520px;
  margin-top: 0;
  padding: 0;
}

.hero-content--genz .hero-punch-line,
.hero-content--genz .hero-lead-intro,
.hero-content--genz .hero-badge {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.hero-punch {
  margin: 0;
  animation: fadeUp 0.7s 0.08s ease both;
}

.hero-punch-line {
  display: block;
}

.hero-punch-line--1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-punch-line--2 {
  font-weight: 700;
  opacity: 0.96;
  line-height: 1.1;
  margin-top: 2px;
}

.hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 12px;
  animation: fadeUp 0.7s 0.14s ease both;
}

.hero-stat-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.hero-stat-chip--new {
  background: linear-gradient(135deg, rgba(45, 156, 219, 0.35), rgba(167, 139, 250, 0.28));
  border-color: rgba(255, 255, 255, 0.38);
}

.hero-lead-intro {
  margin: 0 0 12px;
  font-weight: 600;
  opacity: 0.95;
  line-height: 1.45;
  animation: fadeUp 0.7s 0.18s ease both;
}

.hero-offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  margin: 0 0 16px;
  animation: fadeUp 0.7s 0.22s ease both;
}

.hero-offer-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 100px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.hero-offer-pill--highlight {
  background: linear-gradient(145deg, rgba(232, 93, 4, 0.88) 0%, rgba(26, 107, 156, 0.82) 100%);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.28);
  font-weight: 800;
}

.hero-offer-pill--highlight:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(232, 93, 4, 0.35);
  color: #fff;
}

.hero-offer-pill--highlight::before {
  content: "+ ";
  font-weight: 800;
  opacity: 0.95;
}

.hero-content--genz .hero-badge {
  font-size: 0.62rem;
  padding: 5px 11px;
  margin-bottom: 10px;
}

.hero-content--genz .hero-cta {
  animation: fadeUp 0.7s 0.28s ease both;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.92;
  margin: 0 0 32px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-scroll {
  display: none;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Stats */
.stats {
  margin-top: -10px;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.stat {
  text-align: center;
  padding: 8px;
}

.stat-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-hint {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.35;
  opacity: 0.9;
}

/* Sections */
section { padding: 88px 0; }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}

.section-tag {
  display: inline-block;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
}

.section-header p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.about-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--card);
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.about-visual-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 800;
}

.about-visual-badge span {
  font-size: 0.85rem;
  color: var(--muted);
}

.about-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin: 0 0 16px;
}

.about-text p {
  color: var(--muted);
  margin: 0 0 16px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.about-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}

/* Sectors — see sectors.css */

/* Services strip */
.services-strip {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  color: #fff;
  padding: 64px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-item {
  text-align: center;
  padding: 20px;
}

.service-item svg {
  margin: 0 auto 16px;
  opacity: 0.9;
}

.service-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.service-item p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

/* FDS + Contact CTAs — cote a cote (gagner du scroll) */
.home-dual-cta {
  padding: 40px 0 72px;
}

.home-dual-cta-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.home-dual-cta .fds-card,
.home-dual-cta .contact-cta-card {
  margin: 0;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 26px 22px;
  gap: 14px;
}

/* Chaque carte : texte a gauche, bouton a droite */
.home-dual-cta .fds-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.home-dual-cta .fds-card h2 {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  margin: 0 0 6px;
  line-height: 1.25;
}

.home-dual-cta .fds-card p {
  max-width: none;
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.45;
}

.home-dual-cta .fds-card .btn {
  justify-self: end;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 0.82rem;
}

.home-dual-cta .contact-cta-card {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.home-dual-cta .contact-cta-card > div {
  min-width: 0;
  flex: 1;
}

.home-dual-cta .contact-cta-card h2 {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  margin: 0 0 6px;
  line-height: 1.25;
}

.home-dual-cta .contact-cta-card p {
  max-width: none;
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.45;
}

.home-dual-cta .contact-cta-card .btn {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 14px;
  font-size: 0.82rem;
}

@media (max-width: 800px) {
  .home-dual-cta-grid {
    grid-template-columns: 1fr;
  }

  /* Dans chaque carte : texte au-dessus, bouton en dessous (évite le chevauchement) */
  .home-dual-cta .fds-card {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: center;
    gap: 16px;
  }

  .home-dual-cta .fds-card .btn {
    justify-self: stretch;
    width: 100%;
    white-space: normal;
  }

  .home-dual-cta .contact-cta-card {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }

  .home-dual-cta .contact-cta-card .btn {
    width: 100%;
    white-space: normal;
    align-self: stretch;
  }
}

/* FDS CTA (standalone pages if reused) */
.fds-cta {
  padding: 72px 0;
}

.fds-card {
  background: linear-gradient(135deg, var(--blue-light), #fff);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}

.fds-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-deep);
  margin: 0 0 10px;
}

.fds-card p {
  color: var(--muted);
  margin: 0;
  max-width: 520px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.contact-block h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin: 0 0 8px;
}

.contact-block p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
  color: var(--blue-deep);
}

.form-row { margin-bottom: 16px; }

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, outline 0.2s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid var(--blue);
  border-color: var(--blue);
}

.form-row textarea { resize: vertical; min-height: 100px; }

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
}

/* Footer */
.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,.85);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 36px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.75;
  margin: 0;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  opacity: 0.6;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: opacity 0.2s;
}

.footer-col a:hover { opacity: 1; color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .contact-grid,
  .footer-grid,
  .services-grid { grid-template-columns: 1fr; }
  .fds-cta .fds-card { grid-template-columns: 1fr; padding: 32px 24px; text-align: center; }
  .fds-cta .fds-card .btn { width: 100%; }
}

@media (min-width: 1000px) {
  .hero-stage { padding-top: 10px; }
  .hero-top-band { column-gap: 20px; }
}

@media (max-width: 900px) {
  .hero-stage { padding-bottom: 8px; }

  .hero-top-band {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 10px;
    column-gap: 10px;
    align-items: start;
  }

  .hero-water-wrap {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .hero-chem-wrap {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .hero-center-slot {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    text-align: center;
  }

  .hero-main-band {
    grid-column: 1 / -1;
    text-align: center;
  }

  .hero-cluster { gap: 12px; }

  .hero-content--headline {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-content--headline .hero-punch-line--1 {
    font-size: clamp(1.55rem, 5vw, 2rem);
  }

  .hero-content--headline .hero-punch-line--2 {
    font-size: clamp(1.25rem, 4vw, 1.65rem);
  }

  .hero-content--main {
    padding: 0 4px;
  }

  .hero-content--main .hero-stat-row,
  .hero-content--main .hero-offer-grid,
  .hero-content--main .hero-cta {
    justify-content: center;
  }

  .hero-content--main .hero-lead-intro {
    font-size: clamp(1.05rem, 3.5vw, 1.35rem);
  }

  .stats { margin-top: -8px; }

  .hero-panel-water,
  .hero-panel-chem {
    width: 100%;
    max-width: min(100%, 168px);
    padding: 12px 13px;
  }

  .hero-water-title,
  .hero-chem-title { font-size: 0.95rem; }

  .hero-water-lead,
  .hero-chem-lead { font-size: 0.7rem; }

  .hero-water-thumbs { width: 50px; gap: 6px; }
  .hero-water-thumbs img:first-child { max-height: 64px; }
  .hero-water-thumbs img:last-child { max-height: 58px; }
  .hero-chem-thumbs { width: 58px; gap: 4px; }

  .hero-chem-thumbs img:nth-child(1) { max-height: 60px; max-width: 58px; }
  .hero-chem-thumbs img:nth-child(2) { max-height: 40px; }
  .hero-chem-thumbs img:nth-child(3) { max-height: 32px; }

  .btn-water,
  .btn-chem { font-size: 0.7rem; padding: 6px 10px; }
}

@media (max-width: 400px) {
  .hero-panel-water,
  .hero-panel-chem {
    width: min(100%, 168px);
    padding: 10px 11px;
  }

  .hero-water-thumbs,
  .hero-chem-thumbs { display: none; }
}

@media (max-width: 1280px) {
  .header-inner { gap: 12px; }
  .nav-desktop { gap: 3px; }
  .nav-desktop a { padding: 6px 7px 7px; min-width: 56px; }
  .nav-ico { width: 32px; height: 32px; }
  .nav-ico svg { width: 17px; height: 17px; }
  .nav-lbl { font-size: 0.65rem; }
  .header-cta { padding: 8px 12px; font-size: 0.78rem; }
  .lang-pills button { padding: 4px 7px; font-size: 0.7rem; }
  .brand img { height: 34px; }
}

@media (max-width: 1100px) {
  .nav-desktop { gap: 2px; }
  .nav-desktop a { padding: 5px 6px 6px; min-width: 52px; }
  .nav-lbl { font-size: 0.62rem; }
  .nav-ico { width: 30px; height: 30px; }
  .nav-ico svg { width: 16px; height: 16px; }
  .header-cta { padding: 8px 10px; font-size: 0.76rem; }
  .brand img { height: 32px; }
}

@media (max-width: 720px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
  .header-actions .hide-mobile { display: none; }
  .stats { margin-top: -12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 20px; }
  section { padding: 64px 0; }
  .hero-layout { padding: 48px 0 72px; }
  .hero-scroll { display: none; }

  .hero-content--main .hero-cta {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-content--main .hero-cta .btn {
    width: min(100%, 320px);
  }

  .hero-offer-pill {
    text-align: center;
    justify-content: center;
  }
}
