:root {
  --blue: #1a6b9c;
  --blue-dark: #14557d;
  --blue-deep: #0c3d5c;
  --blue-light: #e8f4fa;
  --accent: #2d9cdb;
  --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);
}

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;
}

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: 6px;
  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: 2px;
  position: relative;
  color: var(--blue-dark);
  background: var(--blue-light);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  min-width: 52px;
  padding: 6px 10px 7px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.nav-desktop a:hover {
  background: #dceef8;
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.nav-desktop a::after {
  content: "✦";
  position: absolute;
  top: 3px;
  right: 5px;
  font-size: 7px;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.nav-desktop a:hover::after { opacity: 1; }

.nav-ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  line-height: 1;
  background: #fff;
  border-radius: 6px;
  padding: 3px;
  box-shadow: 0 1px 3px rgba(20, 85, 125, 0.15);
  transition: transform 0.2s;
}

.nav-ico svg {
  width: 16px;
  height: 16px;
  display: block;
}

.nav-lbl {
  font-size: 0.65rem;
  line-height: 1.15;
}

.nav-desktop a:nth-child(1) .nav-ico { --ico-tilt: -6deg; transform: rotate(-6deg); }
.nav-desktop a:nth-child(2) .nav-ico { --ico-tilt: 5deg; transform: rotate(5deg); }
.nav-desktop a:nth-child(3) .nav-ico { --ico-tilt: -3deg; transform: rotate(-3deg); }
.nav-desktop a:nth-child(4) .nav-ico { --ico-tilt: 7deg; transform: rotate(7deg); }
.nav-desktop a:nth-child(5) .nav-ico { --ico-tilt: -5deg; transform: rotate(-5deg); }
.nav-desktop a:nth-child(6) .nav-ico { --ico-tilt: 4deg; transform: rotate(4deg); }

.nav-desktop a:hover .nav-ico,
.nav-mobile a:hover .nav-ico {
  animation: nav-ico-wiggle 0.4s ease;
}

@keyframes nav-ico-wiggle {
  0%, 100% { transform: rotate(var(--ico-tilt, 0deg)); }
  25% { transform: rotate(calc(var(--ico-tilt, 0deg) - 12deg)) scale(1.15); }
  75% { transform: rotate(calc(var(--ico-tilt, 0deg) + 12deg)) scale(1.15); }
}

.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);
}

.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: 1; }

.nav-mobile .nav-ico {
  width: 24px;
  height: 24px;
}

.nav-mobile .nav-ico svg {
  width: 17px;
  height: 17px;
}

.nav-mobile a:nth-child(1) .nav-ico { --ico-tilt: -6deg; transform: rotate(-6deg); }
.nav-mobile a:nth-child(2) .nav-ico { --ico-tilt: 5deg; transform: rotate(5deg); }
.nav-mobile a:nth-child(3) .nav-ico { --ico-tilt: -3deg; transform: rotate(-3deg); }
.nav-mobile a:nth-child(4) .nav-ico { --ico-tilt: 7deg; transform: rotate(7deg); }
.nav-mobile a:nth-child(5) .nav-ico { --ico-tilt: -5deg; transform: rotate(-5deg); }
.nav-mobile a:nth-child(6) .nav-ico { --ico-tilt: 4deg; transform: rotate(4deg); }

.nav-mobile a:hover { background: #dceef8; }

.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);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 33px);
  min-height: calc(100dvh - var(--header-h) - 33px);
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.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(
      125deg,
      rgba(255, 210, 140, 0.22) 0%,
      rgba(255, 180, 90, 0.08) 28%,
      transparent 52%
    ),
    linear-gradient(
      135deg,
      rgba(12, 61, 92, 0.68) 0%,
      rgba(26, 107, 156, 0.42) 48%,
      rgba(20, 85, 125, 0.58) 100%
    );
}

.hero-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0 72px;
}

.hero-cluster {
  display: flex;
  flex-direction: column;
  width: min(100%, 1060px);
  gap: 0;
}

.hero-top-band {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr) minmax(0, 260px);
  align-items: center;
  column-gap: 20px;
  width: 100%;
}

.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-welcome-slot {
  justify-self: center;
  text-align: center;
  width: 100%;
  min-width: 0;
  color: #fff;
}

.hero-welcome-slot .hero-welcome-block {
  margin: 0;
  color: #fff;
}

.hero-welcome-slot .hero-welcome-title,
.hero-welcome-slot .hero-welcome-line,
.hero-welcome-slot .hero-welcome-sub {
  color: #fff;
}

.hero-welcome-slot .hero-welcome-sub {
  margin-bottom: 0;
}

.hero-water-wrap .hero-water-float {
  pointer-events: auto;
}

.hero-layout {
  position: relative;
  z-index: 1;
  padding: 14px 0 0;
  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;
  gap: 6px;
  flex-shrink: 0;
  width: 58px;
}

.hero-water-thumbs img {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
  transition: transform 0.25s ease;
}

.hero-water-thumbs img:first-child {
  transform: rotate(-6deg);
}

.hero-water-thumbs img:last-child {
  transform: rotate(4deg);
}

.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;
  gap: 6px;
  flex-shrink: 0;
  width: 52px;
}

.hero-chem-thumbs img {
  width: 100%;
  height: auto;
  max-height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.22));
  transition: transform 0.25s ease;
}

.hero-chem-thumbs img:first-child { transform: rotate(5deg); }
.hero-chem-thumbs img:last-child { transform: rotate(-4deg); }

.hero-panel-chem:hover .hero-chem-thumbs img:first-child {
  transform: rotate(3deg) translateY(-2px);
}

.hero-panel-chem:hover .hero-chem-thumbs img:last-child {
  transform: rotate(-2deg) translateY(-2px);
}

.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: 20px;
  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-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 {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

.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: -56px;
  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 CTA */
.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,
  .fds-card,
  .footer-grid,
  .services-grid { grid-template-columns: 1fr; }
  .fds-card { padding: 32px 24px; text-align: center; }
  .fds-card .btn { width: 100%; }
}

@media (min-width: 1000px) {
  .hero-stage { padding-top: 24px; }
  .hero-top-band { column-gap: 28px; }
  .hero-layout { padding-top: 16px; }
}

@media (max-width: 900px) {
  .hero-stage { padding-bottom: 0; }

  .hero-top-band {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 10px;
    column-gap: 10px;
  }

  .hero-water-wrap { grid-column: 1; grid-row: 1; }
  .hero-chem-wrap { grid-column: 2; grid-row: 1; justify-self: end; }
  .hero-welcome-slot {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-layout { padding: 10px 0 80px; }

  .hero-panel-water,
  .hero-panel-chem {
    width: min(100%, 200px);
    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: 46px; }
  .hero-chem-thumbs { width: 44px; }

  .hero-water-thumbs img,
  .hero-chem-thumbs img { max-height: 54px; }

  .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: 5px; }
  .nav-desktop a { padding: 5px 8px 6px; min-width: 48px; }
  .nav-ico { width: 20px; height: 20px; padding: 2px; }
  .nav-ico svg { width: 14px; height: 14px; }
  .nav-lbl { font-size: 0.6rem; }
  .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: 4px; }
  .nav-desktop a { padding: 5px 7px 6px; min-width: 44px; }
  .nav-lbl { font-size: 0.58rem; }
  .nav-ico { width: 18px; height: 18px; }
  .nav-ico svg { width: 13px; height: 13px; }
  .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: -32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 20px; }
  section { padding: 64px 0; }
  .hero-layout { padding: 48px 0 72px; }
  .hero-scroll { display: none; }
}
