:root {
  --white: #fffefa;
  --warm: #f7f4ed;
  --mist: #e7edf0;
  --aqua: #84dce6;
  --aqua-deep: #23a6b5;
  --navy: #061c2d;
  --navy-soft: #12344b;
  --gold: #c7a45b;
  --gold-soft: #ead8a8;
  --ink-muted: #667783;
  --line: rgba(6, 28, 45, 0.12);
  --shadow: 0 24px 80px rgba(11, 42, 62, 0.14);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Bricolage Grotesque", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--navy);
  background:
    radial-gradient(circle at 85% 6%, rgba(132, 220, 230, 0.22), transparent 28rem),
    linear-gradient(180deg, var(--white), var(--warm) 46%, #f9fbfb 100%);
  max-width: 100%;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--aqua);
  color: var(--navy);
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, #26323a, #111b22 58%, #07111a);
  overflow: hidden;
  animation: introExit 2.7s ease forwards;
}

.intro-dust,
.intro-dust::before,
.intro-dust::after {
  position: absolute;
  inset: -10%;
  content: "";
  background-image:
    radial-gradient(circle, rgba(230, 224, 211, 0.42) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(187, 179, 162, 0.28) 0 1px, transparent 1.8px);
  background-size: 44px 44px, 71px 71px;
  opacity: 0.78;
  animation: introDustDrift 2.5s ease-out forwards;
}

.intro-dust::before {
  transform: rotate(11deg);
  filter: blur(1px);
}

.intro-dust::after {
  transform: rotate(-8deg);
  opacity: 0.44;
}

.intro-wipe {
  position: absolute;
  width: 36vw;
  min-width: 340px;
  height: 150vh;
  left: -45vw;
  top: -25vh;
  transform: rotate(21deg);
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,0.16) 9%, rgba(255,255,255,0.94) 36%, rgba(132,220,230,0.78) 56%, rgba(255,255,255,0.18) 74%, transparent),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.28) 0 2px, transparent 2px 13px);
  box-shadow:
    0 0 70px rgba(132, 220, 230, 0.55),
    22px 0 28px rgba(255, 255, 255, 0.52);
  animation: diagonalWipe 1.55s cubic-bezier(.7, 0, .18, 1) forwards;
}

.intro-wipe::after {
  position: absolute;
  content: "";
  right: -18px;
  top: 0;
  bottom: 0;
  width: 34px;
  background:
    radial-gradient(circle at 40% 10%, rgba(255,255,255,.95) 0 4px, transparent 5px),
    radial-gradient(circle at 60% 25%, rgba(255,255,255,.9) 0 3px, transparent 5px),
    radial-gradient(circle at 45% 55%, rgba(255,255,255,.92) 0 5px, transparent 7px),
    radial-gradient(circle at 65% 80%, rgba(255,255,255,.9) 0 3px, transparent 5px);
  background-size: 34px 80px;
  filter: blur(.2px);
}

.intro-brand {
  position: relative;
  width: min(170px, 42vw);
  padding: 16px;
  border-radius: 30px;
  background: rgba(255, 254, 250, 0.93);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translateY(14px) scale(.94);
  animation: brandReveal 1.1s ease 1.25s forwards;
}

.intro-brand img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 22px;
}

.gold-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold-soft);
  opacity: 0;
  animation: sparkle 1.15s ease 1.45s forwards;
}

.gold-particles span:nth-child(1) { left: 8%; top: 20%; --x: -32px; --y: -18px; }
.gold-particles span:nth-child(2) { left: 26%; top: 8%; --x: -18px; --y: -32px; }
.gold-particles span:nth-child(3) { left: 68%; top: 10%; --x: 28px; --y: -34px; }
.gold-particles span:nth-child(4) { left: 90%; top: 28%; --x: 34px; --y: -10px; }
.gold-particles span:nth-child(5) { left: 82%; top: 76%; --x: 30px; --y: 28px; }
.gold-particles span:nth-child(6) { left: 50%; top: 96%; --x: 4px; --y: 38px; }
.gold-particles span:nth-child(7) { left: 15%; top: 84%; --x: -28px; --y: 22px; }
.gold-particles span:nth-child(8) { left: 2%; top: 54%; --x: -36px; --y: 4px; }
.gold-particles span:nth-child(9) { left: 38%; top: 20%; --x: -8px; --y: -30px; }
.gold-particles span:nth-child(10) { left: 66%; top: 84%; --x: 12px; --y: 34px; }
.gold-particles span:nth-child(11) { left: 92%; top: 54%; --x: 42px; --y: 8px; }
.gold-particles span:nth-child(12) { left: 30%; top: 92%; --x: -16px; --y: 34px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.78);
  box-shadow: 0 14px 40px rgba(6, 28, 45, 0.08);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 26px rgba(6, 28, 45, 0.12);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 13px 16px;
  border-radius: 999px;
  color: rgba(6, 28, 45, 0.74);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.main-nav a:hover {
  color: var(--navy);
  background: rgba(132, 220, 230, 0.18);
  transform: translateY(-1px);
}

.main-nav .nav-call {
  color: var(--white);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 70px);
  width: min(1180px, calc(100% - 34px));
  min-height: min(820px, calc(100vh - 90px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 78px) 0 58px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--aqua-deep);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--navy);
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 6.8vw, 6.65rem);
  line-height: .9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4.7vw, 4.65rem);
  line-height: .95;
}

h3 {
  color: var(--navy);
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.05;
}

p {
  color: var(--ink-muted);
  line-height: 1.7;
}

.hero-subtitle {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--navy-soft);
  font-size: clamp(1.03rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, filter .25s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.34) 48%, transparent 68%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0b3d54);
  box-shadow: 0 16px 38px rgba(6, 28, 45, 0.22);
}

.btn-secondary {
  color: var(--navy);
  border-color: rgba(6, 28, 45, 0.14);
  background: rgba(255,255,255,.82);
}

.btn-whatsapp {
  color: var(--navy);
  background: linear-gradient(135deg, #dff9ec, #a9ecd6);
  border-color: rgba(18, 159, 100, 0.2);
}

.hero-visual {
  position: relative;
  min-height: min(650px, 68vh);
  perspective: 1200px;
}

.transformation-stage {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: #ecf4f5;
  box-shadow:
    0 34px 95px rgba(6, 28, 45, 0.2),
    inset 0 0 0 1px rgba(255,255,255,.62);
  overflow: hidden;
  transform: none;
}

.dust-field {
  position: absolute;
  inset: 0;
  background: url("salle-de-bain-sale.png?v=6") center / cover no-repeat;
}

.clean-field {
  position: absolute;
  inset: 0;
  clip-path: inset(0 100% 0 0);
  background: url("salle-de-bain-propre.png?v=6") center / cover no-repeat;
  filter: brightness(1.04) saturate(1.03);
  animation: cleanRevealLoop 6s ease-in-out infinite;
  will-change: clip-path;
}

.light-sweep {
  position: absolute;
  top: -12%;
  bottom: -12%;
  left: -60px;
  width: 60px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,.16) 32%, rgba(255,255,255,.52) 50%, rgba(255,255,255,.18) 66%, transparent 100%);
  opacity: 0;
  transform: skewX(-7deg);
  animation: cleaningEdgeLoop 6s ease-in-out infinite;
  z-index: 5;
  will-change: left, opacity;
}

.foam-stroke {
  position: absolute;
  width: 50px;
  height: 118%;
  left: -50px;
  top: -9%;
  transform: skewX(-7deg);
  border-radius: 999px;
  background:
    radial-gradient(circle at 46% 13%, rgba(255,255,255,.62) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 58% 29%, rgba(255,255,255,.54) 0 1.2px, transparent 2.4px),
    radial-gradient(circle at 42% 47%, rgba(255,255,255,.5) 0 1.4px, transparent 2.7px),
    radial-gradient(circle at 60% 69%, rgba(255,255,255,.46) 0 1.2px, transparent 2.5px),
    radial-gradient(circle at 48% 86%, rgba(255,255,255,.52) 0 1.5px, transparent 2.8px),
    linear-gradient(90deg, transparent 0 20%, rgba(255,255,255,.24) 44%, rgba(255,255,255,.08) 72%, transparent);
  background-size: 100% 92px, 100% 108px, 100% 118px, 100% 104px, 100% 96px, 100% 100%;
  opacity: 0;
  animation: waterDetailLoop 6s ease-in-out infinite;
  z-index: 6;
  will-change: left, opacity;
}

.proof-band,
.trust,
.quote {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 1px;
  border: 1px solid rgba(6, 28, 45, 0.08);
  border-radius: 28px;
  background: rgba(6, 28, 45, 0.08);
  box-shadow: 0 22px 70px rgba(6, 28, 45, 0.08);
  overflow: hidden;
}

.proof-band div {
  padding: 28px;
  background: rgba(255,255,255,.78);
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 1.65rem;
}

.proof-band span {
  color: var(--ink-muted);
  line-height: 1.55;
}

.before-after,
.gallery,
.services,
.process {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 118px) 0 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.narrow {
  max-width: 690px;
}

.comparison {
  --pos: 50%;
  position: relative;
  height: clamp(420px, 58vw, 650px);
  border-radius: 32px;
  box-shadow:
    0 28px 88px rgba(6, 28, 45, 0.18),
    inset 0 0 0 1px rgba(255,255,255,.45);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
  background: #eaf7f8;
}

.scene {
  position: absolute;
  inset: 0;
}

.scene-after {
  background: #eef5f2;
}

.scene-after::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255,255,255,.25), transparent 45%),
    radial-gradient(ellipse at 50% 115%, rgba(6, 28, 45, .12), transparent 50%);
  pointer-events: none;
}

.scene-before {
  width: 100%;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  background: #e8e1d8;
  transition: clip-path .08s linear;
}

.scene-before::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle, rgba(232,225,214,.34) 0 1px, transparent 1.7px),
    linear-gradient(90deg, rgba(6,28,45,.04), transparent);
  background-size: 31px 31px, 100% 100%;
  opacity: .32;
  pointer-events: none;
}

.comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateZ(0);
}

.scene-label {
  position: absolute;
  top: 24px;
  z-index: 4;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 10px 28px rgba(6, 28, 45, .1);
}

.before-label {
  left: 24px;
}

.after-label {
  right: 24px;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 8;
  width: 50px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateX(-50%);
  cursor: ew-resize;
}

.slider-handle::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(255,255,255,.95);
  box-shadow:
    0 0 0 1px rgba(6,28,45,.08),
    0 0 18px rgba(6,28,45,.16);
}

.slider-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 0 16px, rgba(6,28,45,.72) 16px 17px, transparent 17px 33px, rgba(6,28,45,.72) 33px 34px, transparent 34px),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(241,248,248,.92));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow:
    0 16px 36px rgba(6,28,45,.22),
    inset 0 1px 0 rgba(255,255,255,.88);
  transform: translate(-50%, -50%);
  transition: transform .2s ease, box-shadow .2s ease;
}

.slider-handle:hover span {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow:
    0 20px 42px rgba(6,28,45,.26),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.gallery {
  padding-top: clamp(82px, 10vw, 132px);
}

.gallery-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #edf4f5;
  box-shadow: 0 18px 46px rgba(6, 28, 45, 0.08);
  cursor: zoom-in;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease, box-shadow .3s ease;
}

.gallery-item[hidden] {
  display: none !important;
}

.gallery-item::before,
.gallery-item::after {
  position: absolute;
  z-index: 2;
  left: 16px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255,255,255,.82);
  box-shadow: 0 10px 28px rgba(6, 28, 45, .1);
  pointer-events: none;
}

.gallery-item::before {
  top: 16px;
  padding: 8px 12px;
  content: attr(data-badge);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-item::after {
  bottom: 16px;
  padding: 7px 10px;
  content: attr(data-category);
  color: rgba(6, 28, 45, .72);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 62px rgba(6, 28, 45, 0.14);
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.03) contrast(1.02);
}

.gallery-item:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(35, 166, 181, .4);
  outline-offset: 4px;
}

.gallery-extra {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

.gallery-extra.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 42px);
}

.gallery-toggle {
  min-width: min(100%, 280px);
  background: rgba(255,255,255,.78);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(3, 10, 16, 0.86);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility 0s .28s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .28s ease;
}

.lightbox img {
  width: auto;
  max-width: min(1120px, 100%);
  max-height: min(760px, 82vh);
  border-radius: 22px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
  object-fit: contain;
  transform: scale(.96);
  transition: transform .32s ease;
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox-close {
  position: fixed;
  top: clamp(16px, 3vw, 28px);
  right: clamp(16px, 3vw, 28px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,.16);
  transform: scale(1.04);
}

body.lightbox-active {
  overflow: hidden;
}

.service-list {
  display: grid;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.22), transparent);
}

.service-item {
  display: grid;
  grid-template-columns: 84px minmax(220px, .62fr) minmax(240px, 1fr);
  gap: clamp(18px, 3vw, 50px);
  align-items: center;
  min-height: 132px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .28s ease, border-color .28s ease;
}

.service-item:hover {
  padding-left: 12px;
  border-color: rgba(35, 166, 181, 0.38);
}

.service-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(199,164,91,.5);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
  background: rgba(255,255,255,.55);
}

.service-item h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.service-item p {
  margin-bottom: 0;
}

.trust {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  margin-top: clamp(68px, 9vw, 112px);
  padding: clamp(30px, 4.5vw, 52px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(132,220,230,.24), transparent 25rem),
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(242,247,247,.9));
  box-shadow: var(--shadow);
}

.trust-copy h2 {
  max-width: 440px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  line-height: .96;
}

.trust-copy p {
  max-width: 390px;
  margin-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 13px 10px;
  border-bottom: 1px solid rgba(6, 28, 45, 0.1);
  color: var(--navy-soft);
  font-weight: 700;
}

.trust-grid span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(199, 164, 91, .14);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  border-radius: 32px;
  background: rgba(6, 28, 45, 0.1);
  overflow: hidden;
}

.process-steps article {
  min-height: 238px;
  padding: 24px;
  background: rgba(255,255,255,.78);
  transition: background .25s ease, transform .25s ease;
}

.process-steps article:hover {
  background: #fff;
  transform: translateY(-3px);
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.process-steps h3 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: 1.95rem;
}

.quote {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  padding-top: clamp(78px, 10vw, 126px);
}

.quote-copy {
  position: sticky;
  top: 120px;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.direct-contact a {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(35, 166, 181, .38);
  color: var(--navy);
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(242,249,249,.9));
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy-soft);
  font-size: .86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(6, 28, 45, 0.12);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  color: var(--navy);
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input,
select {
  height: 54px;
  padding: 0 16px;
}

textarea {
  resize: vertical;
  min-height: 128px;
  padding: 15px 16px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(35, 166, 181, .52);
  background: white;
  box-shadow: 0 0 0 5px rgba(132,220,230,.16);
}

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

.form-status {
  margin: 2px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(35, 166, 181, .18);
  border-radius: 18px;
  color: var(--navy-soft);
  background: rgba(232, 250, 249, .72);
  font-weight: 700;
}

.quote-form.is-sending .btn {
  opacity: .72;
  cursor: wait;
}

.site-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto 28px;
  padding: 38px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 15px 36px rgba(6, 28, 45, .12);
}

.footer-brand p {
  max-width: 350px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
}

.footer-links a {
  color: var(--navy-soft);
  font-weight: 700;
  transition: color .25s ease, opacity .25s ease;
}

.footer-links a:hover {
  color: var(--navy);
}

.footer-links .footer-legal-link {
  color: rgba(18, 52, 75, .66);
  font-size: .86rem;
  opacity: .72;
}

.footer-links .footer-legal-link:hover {
  opacity: 1;
}

.legal-page {
  min-height: 100vh;
  padding-bottom: clamp(52px, 8vw, 90px);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(900px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.78);
  box-shadow: 0 14px 40px rgba(6, 28, 45, 0.08);
  backdrop-filter: blur(22px);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: rgba(6, 28, 45, 0.76);
  font-size: .94rem;
  font-weight: 700;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.legal-back:hover {
  color: var(--navy);
  background: rgba(132, 220, 230, 0.18);
  transform: translateY(-1px);
}

.legal-main {
  width: min(900px, calc(100% - 34px));
  margin: 0 auto;
  padding-top: clamp(58px, 9vw, 100px);
}

.legal-heading {
  max-width: 720px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.legal-heading h1 {
  margin-bottom: 0;
  font-size: clamp(3.2rem, 8vw, 6rem);
}

.legal-content {
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(132,220,230,.18), transparent 24rem),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(242,247,247,.88));
  box-shadow: var(--shadow);
}

.legal-section {
  padding: clamp(24px, 4vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}

.legal-section:first-child {
  padding-top: 0;
}

.legal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  line-height: 1;
}

.legal-section p {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--navy-soft);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.75;
}

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

.legal-section-privacy {
  padding-top: clamp(36px, 5vw, 50px);
  padding-bottom: clamp(18px, 3vw, 24px);
}

.legal-section-privacy h2 {
  margin-bottom: 0;
  color: var(--aqua-deep);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  height: 54px;
  padding: 0 20px 0 46px;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #ecfff5, #9cebcf);
  box-shadow: 0 16px 48px rgba(28, 176, 115, .26);
  font-weight: 800;
}

.floating-whatsapp::before {
  position: absolute;
  left: 16px;
  width: 18px;
  height: 18px;
  border: 2px solid #0e7f55;
  border-radius: 50%;
  content: "";
}

.floating-whatsapp::after {
  position: absolute;
  left: 30px;
  bottom: 16px;
  width: 8px;
  height: 8px;
  content: "";
  background: #9cebcf;
  border-left: 2px solid #0e7f55;
  border-bottom: 2px solid #0e7f55;
  transform: rotate(-20deg);
}

.section-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .85s ease, transform .85s ease;
}

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

@keyframes introExit {
  0%, 82% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

@keyframes introDustDrift {
  0% { transform: translate3d(-2%, 2%, 0); opacity: .85; }
  55% { opacity: .48; }
  100% { transform: translate3d(8%, -7%, 0); opacity: 0; }
}

@keyframes diagonalWipe {
  0% { left: -45vw; }
  100% { left: 112vw; }
}

@keyframes brandReveal {
  0% { opacity: 0; transform: translateY(14px) scale(.94); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes sparkle {
  0% { opacity: 0; transform: translate(0,0) scale(.5); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--x), var(--y)) scale(1.6); }
}

@keyframes cleanRevealLoop {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  45% {
    clip-path: inset(0 0 0 0);
  }
  55% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 100% 0 0);
  }
}

@keyframes cleaningEdgeLoop {
  0% {
    left: -60px;
    opacity: 0;
  }
  10% {
    opacity: .8;
  }
  45% {
    left: calc(100% + 20px);
    opacity: .8;
  }
  55% {
    left: calc(100% + 20px);
    opacity: .3;
  }
  90% {
    opacity: .8;
  }
  100% {
    left: -60px;
    opacity: 0;
  }
}

@keyframes waterDetailLoop {
  0% {
    left: -50px;
    opacity: 0;
  }
  15% {
    opacity: .5;
  }
  45% {
    left: calc(100% + 20px);
    opacity: .5;
  }
  55% {
    opacity: .2;
  }
  100% {
    left: -50px;
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 24px);
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 26px;
    background: rgba(255,254,250,.96);
    box-shadow: 0 22px 60px rgba(6, 28, 45, 0.13);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    text-align: center;
  }

  .hero,
  .trust,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .proof-band,
  .gallery-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-band,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 64px 1fr;
  }

  .service-item p {
    grid-column: 2;
  }

  .quote-copy {
    position: static;
  }

}

@media (max-width: 768px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px 8px 8px 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
    max-width: 48px;
    object-fit: cover;
  }

  .main-nav {
    visibility: hidden;
    max-height: calc(100vh - 94px);
    overflow: auto;
  }

  .main-nav.is-open {
    visibility: visible;
  }

  .hero {
    width: calc(100% - 26px);
    min-height: auto;
    padding-top: 42px;
    overflow: hidden;
  }

  .hero-copy,
  .section-heading,
  .quote-copy {
    max-width: 100%;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12vw, 4.15rem);
    line-height: .94;
    overflow-wrap: break-word;
  }

  h2 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 430px;
    width: 100%;
  }
}

@media (max-width: 680px) {
  .site-header {
    margin-top: 10px;
  }

  .hero {
    width: calc(100% - 26px);
    padding-top: 50px;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 3.95rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .hero-actions,
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
  }

  .transformation-stage {
    border-radius: 30px;
    transform: none;
  }

  .proof-band,
  .before-after,
  .gallery,
  .services,
  .process,
  .trust,
  .quote,
  .site-footer,
  .legal-main,
  .legal-header {
    width: calc(100% - 26px);
  }

  .comparison {
    height: 440px;
    border-radius: 28px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    border-radius: 22px;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: unset;
  }

  .service-item p {
    grid-column: auto;
  }

  .trust,
  .quote-form {
    padding: 24px;
    border-radius: 28px;
  }

  .trust-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .process-steps article {
    min-height: auto;
  }

  .process-steps span {
    margin-bottom: 34px;
  }

  .site-footer {
    display: grid;
    align-items: start;
    padding: 28px 0 86px;
  }

  .footer-links {
    justify-content: start;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-width: 58px;
    width: 58px;
    padding: 0;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .floating-whatsapp::before {
    left: 19px;
  }

  .floating-whatsapp::after {
    left: 33px;
  }
}

@media (max-width: 480px) {
  .site-header {
    width: calc(100% - 16px);
    padding: 7px 7px 7px 9px;
  }

  .brand img {
    width: 44px;
    height: 44px;
    max-width: 44px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
  }

  .main-nav a {
    padding: 12px 14px;
    font-size: .92rem;
  }

  .hero {
    width: calc(100% - 22px);
    padding-top: 34px;
    gap: 26px;
  }

  h1 {
    font-size: clamp(2.45rem, 11.2vw, 3.35rem);
    line-height: .96;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-visual {
    min-height: 360px;
  }

  .proof-band,
  .before-after,
  .gallery,
  .services,
  .process,
  .trust,
  .quote,
  .site-footer,
  .legal-main,
  .legal-header {
    width: calc(100% - 22px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
