:root {
  --hy-navy: #031824;
  --hy-navy-2: #06293a;
  --hy-navy-3: #0a3b4f;
  --hy-emerald: #00b9b4;
  --hy-emerald-2: #0edfd3;
  --hy-white: #fff;
  --hy-muted: #d7e8ed;
  --hy-text: #102b3a;
  --hy-soft: #f4f8fa;
  --hy-body: #4b6572;
  --hy-footer: #02111a;
  --hy-rating: #ffd84d;
  --hy-shadow: 0 22px 70px rgba(3, 24, 36, 0.18);
  --hy-radius: 8px;
  --hy-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body[data-theme="site"] {
  margin: 0;
  color: var(--hy-body);
  background: var(--hy-white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

body[data-theme="site"] img {
  max-width: 100%;
}

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

.hy-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: rgba(3, 24, 36, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.hy-header.scrolled {
  background: rgba(3, 24, 36, 0.97);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.hy-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.hy-brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.hy-brand:hover {
  color: #fff;
}

.hy-brand-symbol {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff 0 10%, #c9d2d7 23%, #111 24% 45%, #e9eef2 46% 65%, #9aa8ae 76%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 8px 22px rgba(0, 0, 0, 0.32);
}

.hy-brand-symbol::after {
  content: "";
  position: absolute;
  width: 82%;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ca4a4, #19eee2, #00a7a3);
  transform: rotate(-2deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.hy-brand-image {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.hy-brand-text strong {
  display: block;
  max-width: 260px;
  overflow: hidden;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hy-brand-text span {
  display: block;
  margin-top: 3px;
  color: #d5eef2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hy-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
}

.hy-menu a,
.hy-footer a {
  color: inherit;
  text-decoration: none;
}

.hy-menu a:hover,
.hy-menu a:focus-visible {
  color: var(--hy-emerald-2);
}

.hy-dropdown {
  position: relative;
}

.hy-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 210px;
  display: none;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--hy-radius);
  background: rgba(3, 24, 36, 0.98);
  box-shadow: var(--hy-shadow);
}

.hy-dropdown:hover .hy-dropdown-menu {
  display: grid;
  gap: 2px;
}

.hy-dropdown-menu a {
  padding: 9px 10px;
  border-radius: var(--hy-radius);
}

.hy-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hy-hamb {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--hy-radius);
  color: #fff;
  background: transparent;
  cursor: pointer;
}

.hy-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--hy-radius);
  color: inherit;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  text-decoration: none;
}

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

.hy-btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--hy-emerald), var(--hy-emerald-2));
  box-shadow: 0 14px 34px rgba(0, 185, 180, 0.28);
  background-size: 180% 180%;
  animation: hyButtonSheen 5s ease infinite;
}

.hy-btn-primary:hover,
.hy-btn-primary:focus-visible {
  color: #fff !important;
  background: #06131b;
  box-shadow: 0 18px 40px rgba(3, 24, 36, 0.28);
}

.hy-btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.06);
}

.hy-section {
  padding: 84px 0;
  position: relative;
}

.hy-compact-section {
  padding: 28px 0;
}

.hy-section-soft {
  background: linear-gradient(180deg, var(--hy-soft), #fff);
}

.hy-page-hero {
  padding: 150px 0 74px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 24, 36, 0.94), rgba(6, 41, 58, 0.88)),
    var(--hy-page-hero-bg, url("/assets/waterland/img/carousel-1.jpg")) center / cover;
}

.hy-page-hero .hy-title {
  max-width: 860px;
  color: #fff;
}

.hy-page-hero .hy-text {
  color: #d8edf1;
}

.hy-eyebrow {
  margin: 0 0 10px;
  color: var(--hy-emerald);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hy-title {
  margin: 0;
  color: var(--hy-text);
  font-size: clamp(2rem, 4.4vw, 3.65rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hy-title em {
  color: var(--hy-emerald);
  font-family: "Playfair Display", serif;
  font-size: 0.7em;
  font-style: italic;
  letter-spacing: -0.01em;
}

.hy-text {
  max-width: 650px;
  margin: 16px 0 0;
  color: var(--hy-body);
  font-size: 1rem;
}

.hy-rich-text {
  margin-top: 20px;
  color: var(--hy-body);
  font-size: 1rem;
}

.hy-rich-text p {
  margin: 0 0 14px;
}

.hy-hero {
  min-height: 100vh;
  padding: 108px 0 42px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--hy-navy);
}

.hy-hero-slider,
.hy-hero-slide {
  position: absolute;
  inset: 0;
}

.hy-hero-slide {
  opacity: 0;
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 6800ms ease;
}

.hy-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hy-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 24, 36, 0.98) 0%, rgba(3, 24, 36, 0.91) 42%, rgba(3, 24, 36, 0.54) 72%, rgba(3, 24, 36, 0.26) 100%),
    radial-gradient(circle at 78% 42%, rgba(14, 223, 211, 0.12), transparent 34%);
}

.hy-hero .hy-container {
  position: relative;
  z-index: 2;
}

.hy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.42fr);
  gap: 52px;
  align-items: center;
}

.hy-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 4.65vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -0.048em;
  text-wrap: balance;
}

.hy-hero h1 span {
  display: block;
  max-width: 18ch;
}

.hy-hero h1 em {
  display: block;
  margin-top: 10px;
  color: var(--hy-emerald-2);
  font-family: "Playfair Display", serif;
  max-width: 20ch;
  font-size: 0.52em;
  line-height: 1.05;
  font-style: italic;
  letter-spacing: -0.015em;
  animation: hyInkFloat 6s ease-in-out infinite;
  text-wrap: balance;
}

.hy-hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  color: #e4f5f8;
  font-size: 1rem;
  line-height: 1.7;
}

.hy-hero-copy-panel {
  display: none;
}

.hy-hero-copy-panel.is-active {
  display: block;
}

.hy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hy-slider-dots {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
}

.hy-slider-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease, border-color 200ms ease;
}

.hy-slider-dot.is-active {
  width: 36px;
  border-color: var(--hy-emerald-2);
  background: var(--hy-emerald-2);
}

.hy-panel {
  padding: 24px;
  border-radius: var(--hy-radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 24, 36, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: var(--hy-shadow);
  animation: hyFloatPanel 7s ease-in-out infinite;
}

.hy-panel h2 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.hy-panel-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hy-panel-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  color: var(--hy-muted);
  font-size: 0.92rem;
}

.hy-panel-list i,
.hy-mini i,
.hy-step-number {
  display: grid;
  place-items: center;
  border-radius: var(--hy-radius);
  color: var(--hy-navy);
  background: linear-gradient(135deg, var(--hy-emerald), var(--hy-emerald-2));
}

.hy-panel-list i {
  width: 30px;
  height: 30px;
  font-size: 0.8rem;
}

.hy-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(14, 223, 211, 0.25);
  border-radius: var(--hy-radius);
  background: rgba(3, 31, 47, 0.72);
  backdrop-filter: blur(14px);
}

.hy-benefit {
  min-height: 108px;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 220ms ease, transform 220ms ease;
}

.hy-benefit:hover {
  background: rgba(14, 223, 211, 0.08);
  transform: translateY(-4px);
}

.hy-benefit:last-child {
  border-right: 0;
}

.hy-benefit i {
  display: block;
  margin-bottom: 10px;
  color: var(--hy-emerald-2);
  font-size: 1.35rem;
}

.hy-benefit strong {
  display: block;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.35;
}

.hy-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.hy-section-head .hy-text {
  max-width: 430px;
  margin-top: 0;
}

.hy-about-grid,
.hy-product-grid,
.hy-contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.hy-about-media {
  position: relative;
}

.hy-fade-slider {
  position: relative;
  overflow: hidden;
}

.hy-fade-slide {
  opacity: 0;
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0, 0, 1);
}

.hy-fade-slide.is-active {
  opacity: 1;
}

.hy-fade-slider .hy-fade-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hy-fade-slider .hy-fade-slide:first-child {
  position: relative;
}

.hy-about-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--hy-radius);
  box-shadow: var(--hy-shadow);
  transition: transform 700ms cubic-bezier(0.2, 0, 0, 1), filter 700ms ease;
}

.hy-about-media:hover img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.hy-about-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(270px, calc(100% - 44px));
  padding: 18px;
  border-radius: var(--hy-radius);
  color: #fff;
  background: rgba(3, 24, 36, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.hy-about-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--hy-emerald-2);
  font-size: 1.65rem;
  line-height: 1;
}

.hy-mini-icons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hy-mini {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(16, 43, 58, 0.08);
  border-radius: var(--hy-radius);
  color: var(--hy-navy);
  background: #fff;
  box-shadow: 0 14px 34px rgba(3, 24, 36, 0.07);
  font-size: 0.9rem;
  font-weight: 800;
}

.hy-mini i,
.hy-step-number {
  width: 44px;
  height: 44px;
}

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

.hy-solutions-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 24, 36, 0.97), rgba(6, 41, 58, 0.94)),
    url("/assets/waterland/img/attraction-2.jpg") center / cover;
}

.hy-solutions-section .hy-title {
  color: #fff;
}

.hy-solutions-section .hy-text {
  color: #d6edf1;
}

.hy-product-preview {
  padding-top: 58px;
  background: linear-gradient(180deg, #f6fbfc 0%, #fff 100%);
}

.hy-product-preview .hy-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: end;
  margin-bottom: 30px;
}

.hy-product-preview .hy-title {
  max-width: 620px;
  color: #061925;
  font-size: clamp(2.35rem, 4.3vw, 3.55rem);
  line-height: 1.03;
}

.hy-product-preview .hy-text {
  max-width: 560px;
  color: #24495b;
  font-size: 1rem;
  line-height: 1.58;
}

.hy-product-preview .hy-preview-strip {
  gap: 22px;
}

.hy-product-preview .hy-preview-card {
  min-height: 310px;
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(6, 25, 37, 0.16);
}

.hy-product-preview .hy-preview-card img {
  opacity: 1;
}

.hy-product-preview .hy-preview-card::after {
  background:
    linear-gradient(180deg, rgba(6, 25, 37, 0.12) 0%, rgba(6, 25, 37, 0.78) 64%, rgba(6, 25, 37, 0.94) 100%);
}

.hy-product-preview .hy-preview-content {
  padding: 24px;
}

.hy-product-preview .hy-preview-content small {
  color: #dffffd;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
}

.hy-product-preview .hy-preview-content h3 {
  margin-top: 7px;
  font-size: 1.32rem;
}

.hy-product-preview .hy-preview-content p {
  min-height: 74px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hy-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hy-emerald-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hy-preview-card {
  min-height: 330px;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--hy-radius);
  background: var(--hy-navy);
  box-shadow: 0 18px 46px rgba(3, 24, 36, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hy-preview-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(3, 24, 36, 0.2);
}

.hy-preview-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 420ms ease;
}

.hy-preview-card:hover img {
  transform: scale(1.06);
}

.hy-preview-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 24, 36, 0.04), rgba(3, 24, 36, 0.9));
}

.hy-preview-content {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: #fff;
}

.hy-preview-content small {
  color: #bafffb;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hy-preview-content h3 {
  margin: 8px 0 10px;
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hy-product-section {
  color: #fff;
  overflow: hidden;
  background: #06293a;
}

.hy-product-feature {
  padding: 72px 0;
}

.hy-product-slider {
  position: relative;
  padding-bottom: 36px;
}

.hy-product-slide {
  display: none;
}

.hy-product-slide.is-active {
  display: block;
}

.hy-process-section {
  margin-top: 0;
  padding-top: 112px;
  overflow: hidden;
  border-top: 1px solid rgba(16, 43, 58, 0.08);
  background: linear-gradient(180deg, #f4f8fa 0%, #fff 100%);
}

.hy-process-section::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 50%;
  width: min(1080px, calc(100% - 44px));
  height: 88px;
  border-radius: var(--hy-radius);
  background:
    linear-gradient(90deg, rgba(0, 185, 180, 0.14), rgba(14, 223, 211, 0.02)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(3, 24, 36, 0.1);
  transform: translateX(-50%);
}

.hy-process-section .hy-container {
  position: relative;
  z-index: 1;
}

.hy-process-section .hy-title,
.hy-process-section h3 {
  color: var(--hy-text);
}

.hy-process-section .hy-text {
  color: var(--hy-body);
}

.hy-product-section .hy-title,
.hy-product-section h3 {
  color: #fff;
}

.hy-product-section .hy-text {
  max-width: 520px;
  color: #e4fbff;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.55;
}

.hy-check-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 28px;
  padding: 0;
  color: #fff;
  list-style: none;
}

.hy-check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 1rem;
  font-weight: 700;
}

.hy-check-list li::before {
  content: "\2713";
  width: 22px;
  height: 22px;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hy-emerald);
  color: var(--hy-emerald-2);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 900;
}

.hy-product-frame {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #06131b;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  transform: translateZ(0);
}

.hy-product-frame img {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0, 0, 1), filter 900ms ease;
}

.hy-product-frame img.is-active {
  display: block;
}

.hy-product-frame:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.hy-product-section .hy-btn-primary {
  min-width: 184px;
  color: #fff !important;
  background: #18cec7;
  box-shadow: none;
  animation: none;
}

.hy-product-section .hy-btn-primary:hover,
.hy-product-section .hy-btn-primary:focus-visible {
  background: #06131b;
}

.hy-product-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hy-product-dots span,
.hy-product-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hy-product-dots span.is-active,
.hy-product-dots button.is-active {
  width: 28px;
  background: var(--hy-emerald-2);
}

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

.hy-step {
  min-height: 238px;
  padding: 22px;
  border-radius: var(--hy-radius);
  color: var(--hy-body);
  border: 1px solid rgba(16, 43, 58, 0.08);
  background: #fff;
  box-shadow: 0 14px 34px rgba(3, 24, 36, 0.07);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
}

.hy-step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 185, 180, 0.28);
  background: #faffff;
}

.hy-step h3 {
  margin: 20px 0 10px;
  color: var(--hy-text);
  font-size: 1.05rem;
  line-height: 1.24;
}

.hy-supplier {
  padding: 46px 0;
  color: #fff;
  background: linear-gradient(120deg, #008f8b, var(--hy-emerald-2));
}

.hy-supplier-box {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.hy-supplier-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-size: 2rem;
}

.hy-supplier-image {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.hy-supplier h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hy-gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: 225px;
  gap: 16px;
}

.hy-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--hy-radius);
  box-shadow: 0 14px 34px rgba(3, 24, 36, 0.1);
}

.hy-gallery-grid img:first-child {
  grid-row: span 2;
}

.hy-testimonials {
  color: #fff;
  background:
    linear-gradient(rgba(0, 128, 124, 0.88), rgba(0, 128, 124, 0.88)),
    var(--hy-testimonials-bg, url("/assets/waterland/img/carousel-2.jpg")) center / cover;
}

.hy-testimonials .hy-title,
.hy-testimonials .hy-eyebrow {
  text-align: center;
  color: #fff;
}

.hy-testimonial-slider {
  position: relative;
  margin-top: 30px;
}

.hy-testimonial-viewport {
  overflow: hidden;
  width: 100%;
}

.hy-testimonial-track {
  display: flex;
  gap: 18px;
  transition: transform 520ms cubic-bezier(0.2, 0, 0, 1);
  will-change: transform;
}

.hy-testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
  padding: 26px;
  border-radius: var(--hy-radius);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
  transition: transform 220ms ease, background 220ms ease;
}

.hy-testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.15);
}

.hy-testimonial-empty {
  max-width: 720px;
  margin: 30px auto 0;
  padding: 28px;
  text-align: center;
  border-radius: var(--hy-radius);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
}

.hy-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: #fff;
  background: rgba(3, 24, 36, 0.26);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.hy-slider-prev {
  left: -18px;
}

.hy-slider-next {
  right: -18px;
}

.hy-testimonial-dots {
  justify-content: center;
}

.hy-stars {
  margin-bottom: 14px;
  color: var(--hy-rating);
  letter-spacing: 3px;
}

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

.hy-news-card {
  overflow: hidden;
  border-radius: var(--hy-radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(3, 24, 36, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hy-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(3, 24, 36, 0.15);
}

.hy-news-card img {
  transition: transform 620ms cubic-bezier(0.2, 0, 0, 1), filter 620ms ease;
}

.hy-news-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

.hy-news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.hy-news-body {
  padding: 20px;
}

.hy-date {
  color: #6d8792;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hy-news-body h3 {
  margin: 8px 0 16px;
  color: var(--hy-navy);
  font-size: 1.08rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.hy-news-body p {
  color: var(--hy-body);
}

.hy-video-section {
  background: #f7fbfc;
}

.hy-video-slider {
  position: relative;
  padding: 0 42px;
}

.hy-video-section .hy-slider-arrow {
  color: var(--hy-navy);
  border-color: rgba(16, 43, 58, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(3, 24, 36, 0.12);
}

.hy-video-viewport {
  overflow: hidden;
}

.hy-video-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.hy-video-card {
  flex: 0 0 calc((100% - 40px) / 3);
  min-width: 0;
  overflow: hidden;
  border-radius: var(--hy-radius);
  background: #fff;
  box-shadow: var(--hy-shadow);
}

.hy-video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--hy-navy);
}

.hy-video-body {
  padding: 22px;
}

.hy-video-body h3 {
  margin: 0 0 8px;
  color: var(--hy-navy);
  font-size: 1.16rem;
  line-height: 1.3;
}

.hy-video-body p {
  margin: 0;
  color: var(--hy-body);
}

.hy-video-dots {
  margin-top: 22px;
}

.hy-read {
  color: var(--hy-emerald);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hy-contact {
  color: #fff;
  background: linear-gradient(135deg, var(--hy-navy), #07364a);
}

.hy-contact-page {
  min-height: calc(100vh - 112px);
  display: flex;
  flex-direction: column;
}

.hy-contact-page .hy-contact {
  flex: 1;
  display: flex;
  align-items: center;
}

.hy-contact .hy-title {
  color: #fff;
}

.hy-contact .hy-text {
  color: #d8edf1;
}

.hy-contact-grid {
  align-items: start;
  grid-template-columns: 0.84fr 1fr;
}

.hy-contact-info {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.hy-contact-line {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  align-items: start;
  color: #eafcff;
}

.hy-contact-line i {
  color: var(--hy-emerald-2);
  font-size: 1.16rem;
  text-align: center;
}

.hy-form {
  display: grid;
  gap: 13px;
  padding: 24px;
  border-radius: var(--hy-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.hy-form input,
.hy-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hy-radius);
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hy-form input::placeholder,
.hy-form textarea::placeholder {
  color: #b9d6de;
}

.hy-form input:focus,
.hy-form textarea:focus {
  border-color: var(--hy-emerald);
}

.hy-form textarea {
  min-height: 120px;
  resize: vertical;
}

.hy-map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--hy-radius);
  box-shadow: 0 14px 34px rgba(3, 24, 36, 0.1);
}

.hy-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hy-filter-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(0, 185, 180, 0.28);
  border-radius: var(--hy-radius);
  color: var(--hy-navy);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.hy-filter-pill:hover {
  color: var(--hy-navy);
  background: linear-gradient(135deg, var(--hy-emerald), var(--hy-emerald-2));
}

.hy-filter-pill.is-active {
  color: #fff;
  border-color: var(--hy-emerald);
  background: #06131b;
}

.hy-empty {
  max-width: 760px;
  padding: 32px;
  border: 1px solid rgba(16, 43, 58, 0.08);
  border-radius: var(--hy-radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(3, 24, 36, 0.07);
}

.hy-pagination {
  width: min(var(--hy-container), calc(100% - 40px));
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -42px auto 72px;
}

.hy-pagination a,
.hy-pagination span {
  min-width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(16, 43, 58, 0.1);
  border-radius: var(--hy-radius);
  color: var(--hy-navy);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.hy-pagination a:hover,
.hy-pagination a.is-active {
  color: #fff;
  border-color: #06131b;
  background: #06131b;
}

.hy-detail-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.hy-detail-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--hy-radius);
  box-shadow: var(--hy-shadow);
}

.hy-detail-media img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
}

.hy-detail-content {
  padding: 8px 0;
}

.hy-detail-subtitle {
  max-width: 640px;
  margin: 12px 0 24px;
  color: #24495b;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.65;
}

.hy-detail-subtitle + .hy-rich-text {
  margin-top: 0;
}

.hy-detail-cta {
  margin-top: 24px;
}

.hy-footer {
  padding: 34px 0;
  color: #d8eef2;
  background: var(--hy-footer);
}

.hy-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.hy-footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.hy-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  font-size: 1.8rem;
  text-decoration: none;
}

.hy-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0, 0, 1);
}

.hy-reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes hyButtonSheen {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes hyFloatPanel {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes hyInkFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

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

.bg-breadcrumb {
  padding-top: 90px;
  background:
    linear-gradient(135deg, rgba(3, 24, 36, 0.92), rgba(6, 41, 58, 0.88)),
    url("/assets/waterland/img/carousel-2.jpg") center / cover;
}

@media (max-width: 1020px) {
  .hy-menu {
    position: fixed;
    top: 78px;
    right: -100%;
    width: min(340px, 92vw);
    height: calc(100vh - 78px);
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(3, 24, 36, 0.98);
    transition: right 220ms ease;
  }

  .hy-menu.open {
    right: 0;
  }

  .hy-hamb {
    display: grid;
    place-items: center;
  }

  .hy-dropdown-menu {
    position: static;
    display: grid;
    margin-top: 8px;
    box-shadow: none;
  }

  .hy-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hy-hero-grid,
  .hy-about-grid,
  .hy-product-grid,
  .hy-contact-grid,
  .hy-detail-grid {
    grid-template-columns: 1fr;
  }

  .hy-panel {
    display: none;
  }

  .hy-benefits,
  .hy-process-grid,
  .hy-preview-strip,
  .hy-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hy-testimonial-card,
  .hy-video-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .hy-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hy-product-preview .hy-section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hy-supplier-box {
    grid-template-columns: 76px 1fr;
  }

  .hy-supplier-box .hy-btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .hy-container {
    width: min(100% - 26px, var(--hy-container));
  }

  .hy-nav {
    min-height: 72px;
  }

  .hy-brand-symbol {
    width: 46px;
    height: 46px;
  }

  .hy-brand-image {
    width: 34px;
    height: 34px;
  }

  .hy-brand-text strong {
    max-width: 180px;
    font-size: 1.24rem;
  }

  .hy-brand-text span {
    font-size: 0.58rem;
  }

  .hy-menu {
    top: 72px;
    height: calc(100vh - 72px);
  }

  .hy-hero {
    padding-top: 112px;
    padding-bottom: 38px;
  }

  .hy-hero h1 {
    font-size: 2.56rem;
  }

  .hy-actions .hy-btn,
  .hy-btn {
    width: 100%;
  }

  .hy-benefits,
  .hy-process-grid,
  .hy-preview-strip,
  .hy-news-grid,
  .hy-gallery-grid,
  .hy-supplier-box {
    grid-template-columns: 1fr;
  }

  .hy-video-slider {
    padding: 0;
  }

  .hy-testimonial-card,
  .hy-video-card {
    flex-basis: 100%;
  }

  .hy-slider-arrow {
    display: none;
  }

  .hy-benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .hy-benefit:last-child {
    border-bottom: 0;
  }

  .hy-section {
    padding: 62px 0;
  }

  .hy-mini-icons {
    grid-template-columns: 1fr;
  }

  .hy-about-media img,
  .hy-product-frame,
  .hy-product-frame img {
    min-height: 320px;
  }

  .hy-gallery-grid {
    grid-auto-rows: 210px;
  }

  .hy-gallery-grid img:first-child {
    grid-row: span 1;
  }

  .hy-footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

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