:root {
  --ink: #152033;
  --muted: #637083;
  --paper: #f5f8fb;
  --white: #ffffff;
  --blue: #123f9f;
  --blue-2: #0f63c8;
  --teal: #12a7b4;
  --green: #1c936b;
  --amber: #f2b84b;
  --coral: #ef6f61;
  --violet: #6957d9;
  --line: rgba(21, 32, 51, 0.12);
  --shadow: 0 24px 70px rgba(21, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Google Sans Hebrew", "Noto Sans Hebrew", Arial, sans-serif;
  line-height: 1.7;
}

button,
input,
textarea,
select {
  font: inherit;
  font-family: "Google Sans Hebrew", "Noto Sans Hebrew", Arial, sans-serif;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
  outline: 3px solid rgba(18, 167, 180, 0.72);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.inner {
  width: min(100% - 40px, 1440px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.brand img {
  width: 156px;
}

.nav {
  position: relative;
  display: flex;
  gap: 24px;
  color: #47566a;
  font-size: 15px;
  font-weight: 800;
}

.nav a {
  position: relative;
  z-index: 1;
  padding: 10px 0;
  transition: color 0.24s ease;
}

.nav a:hover {
  color: var(--blue);
}

.nav a.is-active {
  color: var(--blue);
}

.mobile-policy-link {
  display: none;
}

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: 0;
  width: var(--nav-indicator-width, 0);
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
  border-radius: 999px;
  opacity: var(--nav-indicator-opacity, 0);
  transform: translateX(var(--nav-indicator-x, 0));
  transition: transform 0.34s ease, width 0.34s ease, opacity 0.2s ease;
  will-change: transform, width;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 23px;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-8px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(8px);
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.button,
.header-call {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  isolation: isolate;
  gap: 8px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.header-call,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 16px 34px rgba(18, 63, 159, 0.24);
}

.button::before,
.header-call::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--teal), var(--violet));
  border-radius: inherit;
  transform: translate3d(0, calc(100% + 3px), 0);
  transform-origin: bottom;
  transition: transform 0.32s ease;
}

.button:hover,
.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(18, 63, 159, 0.28);
}

.button:hover::before,
.header-call:hover::before {
  transform: translate3d(0, 0, 0);
}

.header-call {
  gap: 10px;
}

.button svg,
.header-call svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.header-call svg {
  transform: rotate(-8deg);
}

.button.primary svg {
  transform: rotate(-8deg);
}

.header-call svg {
  transform-origin: 50% 50%;
  animation: headerPhoneRing 7s ease-in-out infinite;
}

@keyframes headerPhoneRing {
  0%,
  78%,
  100% {
    transform: rotate(0deg);
  }

  79% {
    transform: rotate(-18deg) translateX(-1px);
  }

  80% {
    transform: rotate(18deg) translateX(1px);
  }

  81% {
    transform: rotate(-16deg) translateX(-1px);
  }

  82% {
    transform: rotate(16deg) translateX(1px);
  }

  83% {
    transform: rotate(-12deg);
  }

  84% {
    transform: rotate(12deg);
  }

  85% {
    transform: rotate(-8deg);
  }

  86% {
    transform: rotate(8deg);
  }

  87% {
    transform: rotate(0deg);
  }
}

.whatsapp-button {
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #1fa855);
  border-color: rgba(37, 211, 102, 0.24);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.24);
}

.whatsapp-button svg {
  width: 24px;
  height: 24px;
}

.button.ghost.whatsapp-button {
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #1fa855);
  border: 1px solid rgba(37, 211, 102, 0.24);
}

.button.ghost.whatsapp-button::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.button.ghost {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
}

.button.ghost::before {
  background: linear-gradient(135deg, rgba(18, 167, 180, 0.14), rgba(105, 87, 217, 0.16));
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 54px;
  background:
    linear-gradient(115deg, #ecf4fb 0%, #ffffff 49%, #f8eef0 72%, #e7f6f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12vw -26vw auto;
  width: 54vw;
  height: 54vw;
  background: radial-gradient(circle, rgba(18, 167, 180, 0.18), transparent 64%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--amber);
  border-radius: 999px;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 800;
  line-height: 1.12;
}

.hero-title {
  display: grid;
  gap: 3px;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 3.4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
}

.services-heading h2 {
  max-width: none;
  white-space: nowrap;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.25;
}

.lead,
.section-copy p,
.service-grid p,
.area-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #1c365e;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 63, 159, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.06);
  font-size: 14px;
  font-weight: 800;
}

.hero-badges span::before {
  content: "";
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 50%;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: #1c365e;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(18, 63, 159, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(21, 32, 51, 0.06);
}

.trust-row span::before {
  content: "";
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 50%;
  flex: 0 0 auto;
}

.hero-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 20, 39, 0.66));
}

.hero-slider,
.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider img {
  object-fit: cover;
  opacity: 0;
  animation: heroFade 25s infinite;
}

.hero-slider .slide-1 {
  animation-delay: 0s;
}

.hero-slider .slide-2 {
  animation-delay: 5s;
}

.hero-slider .slide-3 {
  animation-delay: 10s;
}

.hero-slider .slide-4 {
  animation-delay: 15s;
}

.hero-slider .slide-5 {
  animation-delay: 20s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  6%,
  18% {
    opacity: 1;
  }
  24%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

.service-note {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 1;
  min-height: 142px;
  padding: 22px;
  color: var(--white);
  background: rgba(10, 28, 54, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.service-note .note {
  position: absolute;
  inset: 22px;
  display: grid;
  align-content: center;
  gap: 6px;
  opacity: 0;
  animation: noteFade 25s infinite;
}

.service-note .note-1 {
  animation-delay: 0s;
}

.service-note .note-2 {
  animation-delay: 5s;
}

.service-note .note-3 {
  animation-delay: 10s;
}

.service-note .note-4 {
  animation-delay: 15s;
}

.service-note .note-5 {
  animation-delay: 20s;
}

.service-note strong {
  font-size: 24px;
  line-height: 1.25;
}

.service-note span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

@keyframes noteFade {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  6%,
  18% {
    opacity: 1;
    transform: translateY(0);
  }
  24%,
  100% {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.quick-panel {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quick-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 27px;
  font-weight: 800;
}

.quick-grid span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: clamp(72px, 8vw, 112px) 0;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-gallery-track {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #dce8f2;
  touch-action: pan-y;
}

.about-gallery-track img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.9s ease, transform 1.2s ease;
}

.about-gallery-track img.is-active {
  opacity: 1;
  transform: scale(1);
}

.about-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: rgba(21, 32, 51, 0.52);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.about-gallery-arrow:hover {
  color: rgba(21, 32, 51, 0.78);
  transform: translateY(-50%) scale(1.06);
}

.about-gallery-arrow:focus-visible {
  outline: 3px solid rgba(61, 168, 177, 0.42);
  outline-offset: 3px;
}

.about-gallery-arrow svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-gallery-prev {
  right: 16px;
}

.about-gallery-next {
  left: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 46px 14px 16px;
  background: #f5f9fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
}

.before-call {
  background:
    linear-gradient(135deg, rgba(18, 167, 180, 0.08), rgba(242, 184, 75, 0.08)),
    #f8fbfd;
}

.before-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.before-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 32, 51, 0.07);
}

.before-grid article::before {
  content: "";
  display: block;
  width: 48px;
  height: 5px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: 999px;
}

.before-grid article::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber));
}

.before-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
}

.before-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

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

.two-line-heading {
  display: grid;
  gap: 4px;
}

.two-line-heading span {
  display: block;
  white-space: nowrap;
}

.single-line-copy {
  max-width: none;
  white-space: nowrap;
}

.single-line-heading {
  white-space: nowrap;
}

.testimonials-heading {
  max-width: 1440px;
}

.testimonials-heading h2 {
  font-size: clamp(36px, 3.5vw, 58px);
}

.services {
  background: #f7fafc;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.area-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 32, 51, 0.07);
}

.service-grid article::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 26px;
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(18, 167, 180, 0.12), rgba(105, 87, 217, 0.12)),
    #fff;
  border: 1px solid rgba(18, 63, 159, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21, 32, 51, 0.08);
}

.service-icon img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.drain-icon {
  color: var(--teal);
}

.leak-icon {
  color: var(--blue-2);
}

.pipe-icon {
  color: var(--coral);
}

.building-icon {
  color: var(--violet);
}

.repair-icon {
  color: var(--green);
}

.toilet-icon {
  color: var(--violet);
}

.bath-icon {
  color: var(--teal);
}

.infographic {
  overflow: hidden;
  background: linear-gradient(135deg, #0f284f, #0d5a77 58%, #4f3fac);
  color: var(--white);
}

.infographic .eyebrow,
.infographic p {
  color: rgba(255, 255, 255, 0.78);
}

.infographic-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1.25fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.flow-graphic {
  position: relative;
  min-height: 390px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.water-flow {
  position: absolute;
  right: -8%;
  left: -8%;
  bottom: -34px;
  height: 210px;
  opacity: 0.34;
  pointer-events: none;
  animation: waterLift 8s ease-in-out infinite;
}

.water-flow span,
.water-flow span::before {
  position: absolute;
  content: "";
  inset: 0;
}

.water-flow span {
  background:
    radial-gradient(120% 92% at 50% 0%, rgba(126, 231, 244, 0.44) 0 31%, rgba(18, 167, 180, 0.26) 32% 53%, rgba(18, 167, 180, 0.1) 54% 67%, transparent 68%),
    linear-gradient(180deg, rgba(18, 167, 180, 0.18), transparent 72%);
  border-radius: 48% 52% 0 0 / 72% 68% 0 0;
  filter: blur(0.3px);
}

.water-flow span::before {
  top: -22px;
  height: 72px;
  background: radial-gradient(85% 88% at 50% 100%, rgba(255, 255, 255, 0.22) 0 28%, transparent 29%);
  animation: waveBreath 8s ease-in-out infinite;
}

@keyframes waterLift {
  0%,
  100% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes waveBreath {
  0%,
  100% {
    transform: scaleX(1);
    opacity: 0.52;
  }
  50% {
    transform: scaleX(1.05);
    opacity: 0.78;
  }
}

.flow-line {
  position: absolute;
  right: 10%;
  left: 10%;
  top: 52%;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  border-radius: 999px;
  opacity: 0.9;
  z-index: 1;
}

.flow-item {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 150px;
  height: 150px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  animation: floatUp 4.8s ease-in-out infinite;
}

.flow-item b {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--coral));
  border-radius: 50%;
  font-size: 22px;
}

.flow-item span {
  font-weight: 800;
}

.flow-1 {
  right: 6%;
  top: 36%;
  animation-delay: 0s;
}

.flow-2 {
  right: 31%;
  top: 18%;
  animation-delay: 0.35s;
}

.flow-3 {
  right: 56%;
  top: 42%;
  animation-delay: 0.7s;
}

.flow-4 {
  right: 77%;
  top: 22%;
  animation-delay: 1.05s;
}

@keyframes floatUp {
  0%,
  100% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-18px);
  }
}

.areas {
  background: var(--white);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.area-grid img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  object-fit: contain;
}

.testimonials {
  background:
    linear-gradient(135deg, rgba(18, 167, 180, 0.08), rgba(105, 87, 217, 0.08)),
    #f7fafc;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(21, 32, 51, 0.08);
}

.testimonial-lightbox {
  cursor: zoom-in;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-lightbox:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(21, 32, 51, 0.12);
}

.review-image {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(21, 32, 51, 0.16);
  border-radius: 8px;
  background: #eef5f8;
}

.review-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
}

.review-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(21, 32, 51, 0.72);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.media-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 63, 159, 0.82), rgba(18, 167, 180, 0.72)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.16) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.16) 50% 75%, transparent 75%);
  background-size: auto, 28px 28px;
  border-radius: 8px;
}

.video-placeholder {
  background:
    linear-gradient(135deg, rgba(21, 32, 51, 0.84), rgba(239, 111, 97, 0.76)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.16) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.16) 50% 75%, transparent 75%);
  background-size: auto, 28px 28px;
}

.media-placeholder::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  margin-left: -4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 18px solid rgba(255, 255, 255, 0.92);
}

.media-placeholder span {
  position: relative;
  z-index: 1;
  padding: 7px 13px;
  background: rgba(21, 32, 51, 0.42);
  border-radius: 999px;
  font-weight: 800;
}

.testimonial-card h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.testimonial-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.testimonial-card small {
  color: var(--blue);
  font-weight: 800;
}

.contact {
  padding: clamp(72px, 8vw, 112px) 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(13, 37, 75, 0.96), rgba(15, 99, 200, 0.78), rgba(105, 87, 217, 0.48)),
    url("assets/pexels-contact-sink.jpg") center / cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
}

.contact .eyebrow,
.contact-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.phone-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--white);
  font-size: 34px;
  font-weight: 800;
  border-bottom: 4px solid var(--amber);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

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

input,
textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

.textarea-wrap {
  position: relative;
  display: block;
}

.textarea-wrap textarea {
  padding-bottom: 42px;
}

.char-counter {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: rgba(99, 112, 131, 0.82);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

input:focus,
textarea:focus {
  outline: 4px solid rgba(18, 167, 180, 0.18);
  border-color: var(--teal);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.turnstile-widget,
.contact-form input[type="hidden"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.field-error {
  min-height: 18px;
  color: #c62828;
  font-size: 13px;
  font-weight: 700;
}

.has-error input,
.has-error textarea {
  border-color: #c62828;
}

.form-status {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  color: #143e2b;
  background: rgba(28, 147, 107, 0.1);
  border: 1px solid rgba(28, 147, 107, 0.28);
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
}

.form-status[hidden] {
  display: none;
}

.form-status svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-status.is-error {
  color: #7a1b1b;
  background: rgba(198, 40, 40, 0.1);
  border-color: rgba(198, 40, 40, 0.28);
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.82);
  background: #091529;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--teal);
}

.legal-main {
  padding: clamp(56px, 7vw, 96px) 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(18, 167, 180, 0.12), transparent 34%),
    var(--paper);
}

.legal-content {
  max-width: 960px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-content h1,
.legal-content h2,
.legal-content p,
.legal-content ul {
  margin-top: 0;
}

.legal-content h1 {
  margin-bottom: 24px;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.12;
}

.legal-content h2 {
  margin: 34px 0 12px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.25;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 18px;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-content ul {
  padding-right: 24px;
}

.legal-home-button {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
  text-decoration: none !important;
}

.back-to-top-band {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  min-height: 81px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(18, 167, 180, 0.08), rgba(105, 87, 217, 0.08)),
    #f7fafc;
}

.back-to-top {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-2) 58%, var(--teal));
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 20px 44px rgba(18, 63, 159, 0.25);
  overflow: hidden;
  align-self: end;
  transform: translateY(31px);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: inherit;
}

.back-to-top svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: backToTopFloat 2.6s ease-in-out infinite;
}

.back-to-top:hover {
  transform: translateY(27px);
  box-shadow: 0 26px 54px rgba(18, 63, 159, 0.32);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(61, 168, 177, 0.42);
  outline-offset: 4px;
}

.mobile-cta {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(37, 211, 102, 0.42);
  border-radius: inherit;
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 48px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 14, 27, 0.72);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 88vh;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.72;
    transform: scale(0.86);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes backToTopFloat {
  0%,
  100% {
    transform: translateY(2px);
  }

  50% {
    transform: translateY(-3px);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .flow-item {
    animation: none;
  }

  .hero-slider img,
  .service-note .note,
  .whatsapp-float::before,
  .back-to-top svg,
  .about-gallery-track img {
    animation: none;
    transition: none;
  }

  .hero-slider .slide-1,
  .service-note .note-1 {
    opacity: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 31;
  }

  .nav {
    position: fixed;
    top: 82px;
    right: 14px;
    left: 14px;
    z-index: 30;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 28px 76px rgba(21, 32, 51, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(16px);
  }

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

  .nav a {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(21, 32, 51, 0.08);
    font-size: 17px;
  }

  .mobile-policy-link {
    display: block;
  }

  .nav a:last-of-type {
    border-bottom: 0;
  }

  .nav-indicator {
    display: none;
  }

  .hero-inner,
  .about-grid,
  .infographic-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 860px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-heading h2,
  .hero-title span,
  .two-line-heading span,
  .single-line-heading,
  .single-line-copy {
    white-space: normal;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }

  .lightbox {
    align-items: start;
    padding: 88px 16px 24px;
  }

  .lightbox img {
    max-height: calc(100vh - 140px);
    width: 100%;
  }

  .lightbox-close {
    top: 22px;
    left: 50%;
    z-index: 101;
    width: 52px;
    height: 52px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(21, 32, 51, 0.18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    transform: translateX(-50%);
  }

  .inner {
    width: min(100% - 28px, 1440px);
  }

  .header-inner {
    min-height: 74px;
  }

  .nav {
    top: 74px;
  }

  .brand img {
    width: 132px;
  }

  .header-call {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .hero-title {
    gap: 2px;
  }

  .hero-title span {
    white-space: nowrap;
  }

  h2 {
    font-size: 32px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-badges,
  .trust-row {
    display: contents;
  }

  .hero-badges span,
  .trust-row span {
    justify-content: center;
    min-height: 56px;
    padding-inline: 12px;
    text-align: center;
  }

  .back-to-top-band {
    min-height: 95px;
    background:
      linear-gradient(135deg, rgba(18, 167, 180, 0.08), rgba(105, 87, 217, 0.08)),
      #f7fafc;
  }

  .hero-card {
    min-height: 420px;
  }

  .quick-grid,
  .service-grid,
  .before-grid,
  .area-grid,
  .testimonial-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .flow-graphic {
    min-height: auto;
    display: grid;
    gap: 16px;
    padding: 20px;
  }

  .flow-line {
    display: none;
  }

  .flow-item {
    position: static;
    width: 100%;
    height: auto;
    min-height: 118px;
  }

  .button {
    width: 100%;
  }

  .phone-link {
    font-size: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding-inline: 18px;
  }

  .footer-links {
    width: min(100%, 520px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px 9px;
    line-height: 1.5;
    text-align: center;
  }

  .footer-links > span:first-child {
    white-space: nowrap;
  }

  .footer-links a {
    white-space: nowrap;
  }

  .footer-inner > span:last-child {
    max-width: 420px;
    padding-inline: 18px;
    line-height: 1.55;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    box-shadow: 0 -12px 36px rgba(21, 32, 51, 0.16);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 78px;
    width: 56px;
    height: 56px;
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    color: var(--white);
    font-weight: 800;
  }

  .mobile-cta svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    flex: 0 0 auto;
  }

  .mobile-cta a:first-child {
    background: var(--blue);
  }

  .mobile-cta a:last-child {
    background: var(--green);
  }
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: #182b73;
}

/* Track */
::-webkit-scrollbar-track {
  background: #2149ac;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #3da8b1;
  border-radius: 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #296a70;
}

body,
body * {
  font-weight: 400 !important;
}

h1,
h2,
h3 {
  font-weight: 800 !important;
}

.hero-title span,
.text-bold,
.button,
.header-call,
.phone-link,
.hero-actions .button span {
  font-weight: 800 !important;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
    line-height: 1.16;
  }
}
