:root {
  --navy: #003b62;
  --navy-2: #052e4f;
  --blue: #006fae;
  --cyan: #08a9d8;
  --gold: #d79b1e;
  --gold-2: #f0b83a;
  --ink: #102d43;
  --muted: #65778a;
  --line: #d9e7ef;
  --soft: #f6fbfe;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 57, 95, 0.14);
  --shadow-strong: 0 32px 90px rgba(0, 45, 75, 0.24);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: clip;
}

.site-header.is-stuck {
  background: linear-gradient(180deg, #002d4d, var(--navy-2));
  box-shadow: 0 14px 34px rgba(0, 18, 36, 0.38);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(8, 169, 216, 0.65);
  outline-offset: 3px;
  border-radius: 6px;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 6px 2px;
  transition: transform 180ms ease;
}

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

.brand img {
  width: auto;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 30px 12px 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 20px;
  left: 12px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.is-current {
  color: #ffffff;
}

.main-nav a:hover::after,
.main-nav a.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #8fe3ff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #ffffff;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
  will-change: transform;
}

.btn > * {
  position: relative;
  z-index: 1;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.42) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

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

.btn svg {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
}

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

.btn--small {
  min-height: 42px;
  padding: 12px 16px;
  font-size: 13px;
}

.btn--gold {
  color: #3a2400;
  background: linear-gradient(135deg, #ffd85e 0%, #f6a821 52%, #ec8a12 100%);
  box-shadow: 0 14px 30px rgba(236, 138, 18, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #ffe486 0%, #ffb531 52%, #f6960f 100%);
  box-shadow: 0 20px 48px rgba(236, 138, 18, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.btn--glass {
  color: var(--white);
  background: rgba(0, 59, 98, 0.44);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 44px rgba(0, 33, 60, 0.18);
  backdrop-filter: blur(12px);
}

.btn--glass:hover {
  background: rgba(0, 59, 98, 0.6);
}

.btn--blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(0, 111, 174, 0.22);
}

.btn--outline {
  color: var(--blue);
  background: var(--white);
  border-color: rgba(0, 111, 174, 0.35);
}

.btn--outline:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 111, 174, 0.13);
}

.btn--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.54);
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
  contain: paint;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transform-origin: center top;
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 35, 63, 0.9) 0%, rgba(0, 59, 98, 0.68) 42%, rgba(0, 78, 120, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 27, 47, 0.2), rgba(0, 28, 50, 0.34));
}

.hero-water {
  position: absolute;
  right: -12%;
  bottom: -16%;
  z-index: 2;
  width: 58%;
  height: 34%;
  background:
    radial-gradient(ellipse at 40% 55%, rgba(255, 255, 255, 0.24), transparent 52%),
    repeating-radial-gradient(ellipse at center, rgba(255, 255, 255, 0.26) 0 1px, transparent 2px 14px);
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.34;
  transform: rotate(-7deg);
  animation: water-shimmer 6.5s ease-in-out infinite;
}

.hero-waves {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 2;
  width: 100%;
  height: 70px;
  pointer-events: none;
}

.hero-waves svg {
  display: block;
  width: 100%;
  height: 100%;
  stroke: none;
}

.hero-waves .wave-parallax > use {
  animation: wave-move 22s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.hero-waves .wave-parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 8s;
}

.hero-waves .wave-parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 11s;
}

.hero-waves .wave-parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 15s;
}

.hero-waves .wave-parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 22s;
}

@keyframes wave-move {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.hero-inner {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(280px, 360px);
  align-items: center;
  gap: 70px;
  padding: 88px 0 130px;
}

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

.hero h1 {
  margin: 0 0 22px;
  font-family: "Sora", sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.04;
  color: var(--white);
}

.hero h1 span {
  color: var(--gold-2);
}

.hero p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.64;
}

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

.hero-card {
  justify-self: end;
  width: min(100%, 360px);
  padding: 26px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(0, 47, 80, 0.58);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.hero-card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Sora", sans-serif;
  font-size: 22px;
  line-height: 1.18;
}

.hero-card p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.hero-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 800;
}

.scroll-cue {
  position: absolute;
  right: 44px;
  bottom: 110px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 59, 98, 0.32);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background-color 180ms ease;
  animation: cue-float 1.9s ease-in-out infinite;
}

.scroll-cue:hover {
  background: rgba(0, 59, 98, 0.5);
  animation-play-state: paused;
}

.scroll-cue svg {
  transform: rotate(90deg);
}

.trust-strip {
  position: relative;
  z-index: 2;
  padding: 0 0 18px;
  background: var(--white);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -38px;
}

.trust-strip article {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 110px;
  padding: 22px 18px;
  border: 1px solid rgba(0, 111, 174, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 57, 95, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.trust-strip article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 111, 174, 0.28);
  box-shadow: 0 28px 60px rgba(0, 57, 95, 0.16);
}

.trust-strip article:hover > svg {
  background: var(--blue);
  color: var(--white);
}

.trust-strip article > svg {
  transition: background-color 260ms ease, color 260ms ease;
}

.trust-strip article > svg {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 9px;
  color: var(--blue);
  border: 1px solid rgba(0, 111, 174, 0.22);
  border-radius: 50%;
  background: #f1faff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 15px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding: 92px 0;
}

.section--soft {
  background: var(--soft);
}

.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label--light {
  color: #78dfff;
}

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

h1,
h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: 0;
}

.section-copy h2,
.section-heading h2,
.page-hero h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
  text-wrap: balance;
}

.section-copy p:not(.section-label),
.section-heading p,
.page-hero p,
.info-panel p,
.service-card p,
.product-card p,
.product-mini p,
.location-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.section-copy .btn {
  margin-top: 18px;
}

.solutions-section {
  background: var(--white);
}

.solutions-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 56px;
  align-items: center;
}

.pool-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: var(--shadow);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 34px 80px rgba(0, 57, 95, 0.22);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
}

.feature-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.feature-card > span {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  display: grid;
  width: 54px;
  height: 54px;
  margin: 16px 0 0 22px;
  place-items: center;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: var(--blue);
}

.feature-card > span svg {
  width: 25px;
  height: 25px;
}

.feature-card div {
  flex: 1;
  margin-top: -70px;
  padding: 82px 22px 24px;
  background: linear-gradient(180deg, #004c7d, var(--navy-2));
}

.feature-card h3 {
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 42, 72, 0.96), rgba(0, 95, 142, 0.86)),
    url("assets/hero-bg.jpg") center / cover;
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 255, 255, 0.12), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 24px);
  opacity: 0.22;
  pointer-events: none;
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.process-section h2,
.process-section p {
  color: var(--white);
}

.process-section .section-copy h2 span {
  color: var(--gold-2);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(0, 48, 82, 0.5);
  backdrop-filter: blur(12px);
}

.process-step::after {
  content: "";
  position: absolute;
  top: 55px;
  right: -22px;
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}

.process-step:last-child::after {
  display: none;
}

.process-step span {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.process-step span svg {
  width: 28px;
  height: 28px;
}

.process-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-family: "Sora", sans-serif;
  font-size: 22px;
}

.process-step h3 {
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.products-section {
  background:
    linear-gradient(180deg, var(--white), #f8fcff 70%, var(--white));
}

.products-layout {
  display: grid;
  grid-template-columns: 0.54fr 1.46fr;
  gap: 52px;
  align-items: start;
}

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

.product-mini,
.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 111, 174, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 57, 95, 0.09);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.product-mini:hover,
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 111, 174, 0.28);
  box-shadow: 0 28px 72px rgba(0, 57, 95, 0.16);
}

.product-mini img,
.product-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-mini:hover img,
.product-card:hover img {
  transform: scale(1.05);
}

.product-mini span {
  display: grid;
  width: 44px;
  height: 44px;
  margin: 20px 0 0 20px;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(0, 111, 174, 0.28);
}

.product-mini h3,
.product-card h3 {
  margin: 16px 20px 10px;
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 17px;
}

.product-mini p,
.product-card p {
  margin: 0 20px 24px;
  font-size: 14px;
  line-height: 1.58;
}

.showcase-section {
  color: var(--white);
  background: linear-gradient(115deg, var(--navy-2), #004f80);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 52px;
  align-items: center;
}

.showcase-section h2,
.showcase-section p {
  color: var(--white);
}

.showcase-gallery {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 16px;
}

.showcase-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 26, 46, 0.24);
}

.showcase-gallery img:first-child {
  grid-row: span 2;
  height: 376px;
}

.partners-band {
  padding: 30px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.partners-band__label {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 58px;
  padding-right: 58px;
}

.marquee__group img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.82) opacity(0.82);
  transition: transform 240ms ease, filter 240ms ease;
}

.marquee__group img:hover {
  transform: translateY(-3px) scale(1.05);
  filter: saturate(1.05) opacity(1);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 92px;
  background:
    linear-gradient(135deg, rgba(0, 111, 174, 0.1), transparent 46%),
    linear-gradient(180deg, #f8fcff, var(--white));
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  background: linear-gradient(90deg, transparent, rgba(8, 169, 216, 0.16), transparent);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.page-hero h1 {
  margin: 0 0 20px;
  font-size: 50px;
  line-height: 1.08;
}

.page-hero--photo {
  min-height: 520px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 42, 72, 0.9), rgba(0, 72, 108, 0.38)),
    url("assets/hero-bg.jpg") center / cover;
}

.page-hero--photo h1,
.page-hero--photo p {
  color: var(--white);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.info-panel {
  padding: 30px;
  border: 1px solid rgba(0, 111, 174, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.info-panel h2,
.info-panel h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: "Sora", sans-serif;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(215, 155, 30, 0.14);
}

.service-grid {
  display: grid;
  gap: 28px;
}

.service-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(0, 111, 174, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 80px rgba(0, 57, 95, 0.18);
}

.service-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, rgba(0, 111, 174, 0.08), rgba(215, 155, 30, 0.08));
}

.service-card div {
  padding: 28px 34px 28px 0;
}

.service-card h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-family: "Sora", sans-serif;
  font-size: 31px;
}

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

.partners-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 42, 72, 0.94), rgba(0, 92, 137, 0.76)),
    url("assets/partners-bg.png") center / cover;
}

.partners-section h2 {
  color: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.partners-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.partners-track a {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 180ms ease, background-color 180ms ease;
}

.partners-track a:hover {
  transform: translateY(-3px);
  background: var(--white);
}

.partners-track img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
}

.location-heading {
  text-align: center;
}

.map-wrap {
  width: min(1280px, calc(100% - 40px));
  margin: 34px auto 0;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
}

.closing-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 49, 84, 0.96), rgba(0, 104, 156, 0.9)),
    url("assets/hero-bg.jpg") center / cover;
}

.closing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.closing-cta__inner {
  position: relative;
  z-index: 1;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 36px 0;
}

.closing-cta h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 39px;
  line-height: 1.14;
}

.closing-cta p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.68;
}

.closing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  padding: 54px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(145deg, #042a48, #001f36);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(4, minmax(120px, 0.75fr));
  gap: 34px;
  align-items: start;
}

.brand--footer {
  margin-bottom: 18px;
  padding: 0;
}

.brand--footer img {
  width: auto;
  max-height: 62px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.68;
}

.footer-col {
  display: grid;
  gap: 9px;
}

.footer-col h3 {
  margin: 0 0 7px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.35;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-col a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-col svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: #9ce6ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 18px 44px rgba(16, 147, 78, 0.34);
  animation: whatsapp-float 3.6s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 24px 56px rgba(16, 147, 78, 0.42);
  filter: saturate(1.08);
}

.whatsapp-float img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.whatsapp-pulse {
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(37, 211, 102, 0.7);
  animation: whatsapp-pulse 2.4s ease-out infinite;
}

/* Sem JS o conteúdo aparece normalmente (fallback de segurança). */
.reveal {
  opacity: 1;
}

/* Microanimação discreta apenas quando o JS está ativo. */
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes cue-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

@keyframes whatsapp-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -5px;
  }
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.9;
    transform: scale(0.92);
  }
  80%,
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes water-shimmer {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.46;
  }
}

@media (max-width: 1120px) {
  .header-phone {
    display: none;
  }

  .main-nav a {
    padding-right: 9px;
    padding-left: 9px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-card {
    justify-self: start;
  }

  .trust-strip__grid,
  .product-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .solutions-layout,
  .process-layout,
  .products-layout,
  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .pool-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partners-band__inner {
    grid-template-columns: repeat(5, 1fr);
  }

  .partners-band__inner span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 28px, 1168px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand img {
    max-height: 46px;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(0, 45, 75, 0.18);
    transition: max-height 260ms ease, border-color 260ms ease;
  }

  .site-header.is-open .main-nav {
    max-height: 420px;
    border-color: var(--line);
  }

  .main-nav a {
    padding: 15px 18px;
    color: #172f42;
  }

  .main-nav a:hover,
  .main-nav a.is-current {
    color: var(--blue);
  }

  .main-nav a::after {
    right: 18px;
    bottom: 8px;
    left: 18px;
  }

  .hero,
  .hero-inner {
    min-height: 610px;
  }

  .hero-inner {
    padding: 66px 0 118px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: 46px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-card {
    display: none;
  }

  .scroll-cue {
    right: 24px;
    bottom: 88px;
  }

  .pool-showcase,
  .process-steps,
  .product-grid,
  .partners-track {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

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

  .showcase-gallery img,
  .showcase-gallery img:first-child {
    height: 240px;
  }

  .split-layout,
  .service-card,
  .closing-cta__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    gap: 0;
  }

  .service-card div {
    padding: 24px;
  }

  .closing-cta__actions {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 66px 0;
  }

  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-media img {
    transform: none;
  }

  .hero-water {
    display: none;
  }

  .hero-actions,
  .closing-cta__actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .closing-cta__actions .btn {
    width: 100%;
  }

  .trust-strip__grid,
  .product-row,
  .partners-band__inner {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid {
    margin-top: -26px;
  }

  .section-copy h2,
  .section-heading h2,
  .page-hero h1 {
    font-size: 31px;
  }

  .page-hero {
    padding: 74px 0 64px;
  }

  .process-step {
    min-height: auto;
  }

  .closing-cta h2 {
    font-size: 30px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }
}

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

  /* Mantém as revelações/hover instantâneos, mas preserva os efeitos ambientes
     (ondas e marquee) que o usuário pediu explicitamente. */
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .whatsapp-pulse {
    display: none !important;
  }
}
