:root {
  --navy-950: #061721;
  --navy-900: #071d2c;
  --navy-850: #0a2637;
  --navy-800: #0c3044;
  --aqua-500: #09bfd2;
  --aqua-400: #25d4df;
  --aqua-100: #dff8fa;
  --sky-50: #f2fbfc;
  --sand-100: #f2efe7;
  --sand-50: #f8f6f1;
  --ink: #0a2230;
  --muted: #58717d;
  --line: #dce6e8;
  --white: #fff;
  --danger: #a92727;
  --success: #0c765f;
  --shadow-sm: 0 8px 30px rgba(7, 29, 44, 0.08);
  --shadow-md: 0 24px 70px rgba(4, 25, 39, 0.16);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1240px;
  --header-height: 84px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button {
  border: 0;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3rem, 5.7vw, 5.75rem);
}

h2 {
  font-size: clamp(2.05rem, 3.4vw, 3.65rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

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

:focus-visible {
  outline: 3px solid var(--aqua-500);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #078b99;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--aqua-400);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--aqua-500);
  color: var(--navy-950);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--aqua-400);
  box-shadow: 0 10px 26px rgba(9, 191, 210, 0.22);
  transform: translateY(-2px);
}

.button .icon,
.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.button:hover .icon,
.text-link:hover .icon {
  transform: translateX(4px);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.83rem;
}

.button-dark {
  background: var(--navy-900);
  color: var(--white);
}

.button-dark:hover {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(6, 23, 33, 0.22);
}

.button-light {
  background: var(--white);
  color: var(--navy-950);
}

.button-light:hover {
  background: var(--aqua-100);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 800;
}

.text-link:hover {
  color: #078b99;
}

.text-link-large {
  font-size: 1rem;
}

.text-link-light {
  color: var(--white);
}

.text-link-light:hover {
  color: var(--aqua-400);
}

.utility-bar {
  position: relative;
  z-index: 102;
  background: var(--navy-950);
  color: #cbe0e6;
  font-size: 0.77rem;
}

.utility-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  gap: 28px;
}

.utility-inner a,
.utility-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.utility-inner .icon {
  width: 14px;
  height: 14px;
  color: var(--aqua-400);
}

.utility-phone {
  margin-left: auto;
  color: var(--white);
  font-weight: 800;
}

.utility-inner a:hover {
  color: var(--aqua-400);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 230, 232, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 38px rgba(5, 30, 43, 0.1);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
}

.brand-mark {
  width: 39px;
  height: 39px;
  color: var(--aqua-500);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.8vw, 29px);
  margin-left: auto;
}

.desktop-nav > a {
  position: relative;
  padding: 31px 0 30px;
  color: #324e5a;
  font-size: 0.84rem;
  font-weight: 750;
}

.desktop-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--aqua-500);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a.is-active {
  color: var(--ink);
}

.desktop-nav > a:hover::after,
.desktop-nav > a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.section {
  position: relative;
  padding: clamp(82px, 9vw, 132px) 0;
}

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

.section-dark {
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

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

.section-dark p {
  color: #c2d5dc;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 8vw, 118px) 0 0;
  background:
    radial-gradient(circle at 74% 26%, rgba(37, 212, 223, 0.18), transparent 30%),
    linear-gradient(140deg, #061721 0%, #08283a 58%, #075e6b 135%);
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  width: 720px;
  height: 720px;
  top: -430px;
  right: -160px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
  content: "";
}

.home-hero-grid {
  position: relative;
  display: grid;
  min-height: 625px;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 84px;
}

.home-hero h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.3rem, 5.6vw, 5.65rem);
}

.home-hero h1 em {
  color: var(--aqua-400);
  font-family: var(--font-display);
  font-weight: 500;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: #d3e4e9;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.inline-actions,
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  color: #a9c3cb;
  font-size: 0.83rem;
}

.hero-note .icon {
  color: var(--aqua-400);
}

.hero-visual {
  position: relative;
  min-height: 535px;
}

.hero-main-image,
.hero-small-image {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 7px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
}

.hero-main-image {
  width: 92%;
  top: 16px;
  right: 0;
  border-radius: 44% 22% 46% 18% / 30% 30% 36% 38%;
  transform: rotate(1.4deg);
}

.hero-main-image img {
  width: 100%;
  min-height: 405px;
  object-fit: cover;
}

.hero-small-image {
  width: 34%;
  bottom: 38px;
  left: 0;
  border-radius: 50%;
}

.hero-small-image img {
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-orbit {
  position: absolute;
  width: 95%;
  aspect-ratio: 1;
  top: -10%;
  right: -18%;
  border: 1px solid rgba(37, 212, 223, 0.3);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(37, 212, 223, 0.13);
  border-radius: inherit;
  content: "";
  inset: 45px;
}

.hero-orbit::after {
  inset: 90px;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  right: 2%;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.hero-float-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-100);
  color: #087f8b;
}

.hero-float-card strong,
.hero-float-card small {
  display: block;
}

.hero-float-card strong {
  font-size: 0.84rem;
}

.hero-float-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.67rem;
}

.trust-ribbon {
  position: relative;
  z-index: 3;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(4, 1fr);
}

.trust-ribbon > div {
  min-height: 105px;
  padding: 24px clamp(14px, 2vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-ribbon > div:first-child {
  padding-left: 0;
}

.trust-ribbon > div:last-child {
  border-right: 0;
}

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

.trust-ribbon strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 0.92rem;
}

.trust-ribbon span {
  color: #9fb8c0;
  font-size: 0.72rem;
  line-height: 1.45;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(8, 46, 61, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-7px);
}

.service-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.35;
}

.service-card-image::after {
  position: absolute;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 24, 36, 0.62));
  content: "";
  inset: 0;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-card-image span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(4, 24, 36, 0.4);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.service-card-body {
  padding: 26px 26px 28px;
}

.service-card-body h3 {
  margin-bottom: 13px;
  font-size: 1.42rem;
}

.service-card-body p {
  min-height: 78px;
  margin-bottom: 21px;
  font-size: 0.91rem;
}

.section-action {
  margin-top: 34px;
  text-align: right;
}

.technology-preview::after,
.history-section::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -230px;
  bottom: -250px;
  border: 1px solid rgba(37, 212, 223, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(37, 212, 223, 0.025), 0 0 0 150px rgba(37, 212, 223, 0.018);
  content: "";
}

.technology-preview-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(60px, 8vw, 110px);
  grid-template-columns: 1fr 0.9fr;
}

.technology-preview-copy .section-heading {
  margin-bottom: 34px;
}

.technology-preview-copy .section-heading h2 {
  color: var(--white);
}

.technology-preview-copy .section-heading > p:last-child {
  color: #b9d0d7;
}

.check-list,
.hero-check-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.hero-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: inherit;
}

.check-list .icon,
.hero-check-list .icon {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  color: var(--aqua-500);
}

.technology-preview-copy .check-list {
  margin-bottom: 34px;
}

.technology-preview-copy .check-list li {
  color: #d7e7eb;
}

.technology-stack {
  display: grid;
  gap: 14px;
}

.technology-stack article {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 21px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  transition: background 0.2s ease, transform 0.2s ease;
}

.technology-stack article:nth-child(even) {
  transform: translateX(32px);
}

.technology-stack article:hover {
  background: rgba(255, 255, 255, 0.09);
}

.technology-stack article:nth-child(even):hover {
  transform: translateX(32px) translateY(-3px);
}

.technology-stack article:nth-child(odd):hover {
  transform: translateY(-3px);
}

.technology-stack article > span {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  background: var(--aqua-500);
  color: var(--navy-950);
}

.technology-stack h3 {
  margin-bottom: 5px;
  color: var(--white);
}

.technology-stack p {
  margin-bottom: 0;
  color: #a9c3cb;
  font-size: 0.83rem;
}

.process-section {
  background: linear-gradient(180deg, var(--white), var(--sky-50));
}

.process-grid {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid::before {
  position: absolute;
  top: 48px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-grid li {
  position: relative;
  padding: 0 25px;
  text-align: center;
}

.process-grid li > span {
  position: absolute;
  top: 0;
  right: 20px;
  color: #b6c8cd;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.process-grid li > div {
  position: relative;
  z-index: 2;
  display: grid;
  width: 96px;
  height: 96px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: #078b99;
}

.process-grid li > div .icon {
  width: 32px;
  height: 32px;
}

.process-grid h3 {
  margin-bottom: 11px;
}

.process-grid p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.project-feature {
  background: var(--sand-100);
}

.project-feature-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
  grid-template-columns: 1.06fr 0.94fr;
}

.project-collage {
  position: relative;
  min-height: 560px;
}

.project-collage img {
  position: absolute;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.project-main {
  width: 79%;
  height: 83%;
  top: 0;
  left: 0;
  border-radius: 70px 20px 70px 20px;
}

.project-detail {
  width: 50%;
  height: 47%;
  right: 0;
  bottom: 0;
  border: 7px solid var(--sand-100);
  border-radius: 20px 60px 20px 60px;
}

.project-tag {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: -15px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 800;
}

.project-copy h2 {
  margin-bottom: 24px;
}

.project-copy > p:not(.eyebrow) {
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.project-facts {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.project-facts span {
  padding: 12px 0 12px 18px;
  border-left: 2px solid var(--aqua-500);
  color: var(--muted);
  font-size: 0.82rem;
}

.project-facts strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.94rem;
}

.faq-layout {
  display: grid;
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: 0.75fr 1.25fr;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 56px 25px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 760;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  width: 15px;
  height: 2px;
  top: 50%;
  right: 5px;
  background: var(--ink);
  content: "";
  transition: transform 0.2s ease;
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 760px;
  padding: 0 50px 24px 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 0 clamp(72px, 8vw, 108px);
  background:
    radial-gradient(circle at 78% 40%, rgba(37, 212, 223, 0.15), transparent 28%),
    linear-gradient(140deg, var(--navy-950), var(--navy-800));
}

.page-hero::before {
  position: absolute;
  width: 460px;
  height: 460px;
  top: -280px;
  right: -60px;
  border: 1px solid rgba(37, 212, 223, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(37, 212, 223, 0.024), 0 0 0 130px rgba(37, 212, 223, 0.015);
  content: "";
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 55px;
  color: #91adb7;
  font-size: 0.73rem;
}

.breadcrumbs a:hover {
  color: var(--aqua-400);
}

.breadcrumbs span[aria-current="page"] {
  color: #d5e5e9;
}

.page-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 112px);
  grid-template-columns: 1fr 0.82fr;
}

.page-hero-copy h1 {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.1rem);
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: #c5d9df;
  font-size: 1.08rem;
}

.hero-check-list li {
  color: #dce9ec;
  font-size: 0.88rem;
}

.page-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px 86px 24px 86px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.27);
}

.page-hero-media::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: inherit;
  content: "";
  inset: 9px;
}

.page-hero-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-corner {
  position: absolute;
  z-index: 2;
  width: 72px;
  height: 72px;
  right: -1px;
  bottom: -1px;
  border-radius: 60px 0 0;
  background: var(--aqua-500);
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.comparison-wrap table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-wrap th,
.comparison-wrap td {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.comparison-wrap thead th {
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison-wrap tbody th {
  color: var(--ink);
  font-size: 0.93rem;
}

.comparison-wrap tbody tr:last-child th,
.comparison-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.split-feature {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 105px);
  grid-template-columns: 1fr 0.93fr;
}

.split-feature-reverse {
  grid-template-columns: 0.93fr 1fr;
}

.split-feature-reverse > div {
  order: 2;
}

.split-feature > div > h2 {
  margin-bottom: 24px;
}

.split-feature > div > p:not(.eyebrow) {
  margin-bottom: 26px;
  font-size: 1.03rem;
}

.split-feature .check-list {
  margin-bottom: 30px;
}

.split-feature > img {
  width: 100%;
  min-height: 430px;
  border-radius: 30px 80px 30px 80px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.color-swatches {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(5, 1fr);
}

.swatch {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 7px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.swatch::after {
  position: absolute;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 17, 27, 0.58));
  content: "";
  inset: 0;
}

.swatch span {
  position: absolute;
  z-index: 2;
  bottom: 13px;
  left: 14px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.swatch-ice { background: linear-gradient(145deg, #d8f4f5, #79cfda); }
.swatch-sand { background: linear-gradient(145deg, #decba7, #5db9c6); }
.swatch-blue { background: linear-gradient(145deg, #5fcadf, #0876aa); }
.swatch-stone { background: linear-gradient(145deg, #a8b6b5, #367e8f); }
.swatch-graphite { background: linear-gradient(145deg, #6c777a, #174b59); }

.fine-print {
  margin: 22px 0 0;
  font-size: 0.76rem;
}

.compact-steps {
  display: grid;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.compact-steps li {
  min-height: 150px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.compact-steps li:last-child {
  border-right: 0;
}

.compact-steps span,
.compact-steps strong {
  display: block;
}

.compact-steps span {
  margin-bottom: 32px;
  color: #078b99;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.compact-steps strong {
  line-height: 1.35;
}

.feature-trio {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, 1fr);
}

.feature-trio article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.feature-trio article > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 18px;
  background: var(--aqua-100);
  color: #078b99;
}

.feature-trio article .icon {
  width: 27px;
  height: 27px;
}

.feature-trio h2 {
  margin-bottom: 13px;
  font-size: 1.43rem;
}

.feature-trio p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.premium-callout {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: 1.15fr 0.85fr;
}

.premium-callout h2 {
  max-width: 750px;
  margin-bottom: 0;
}

.premium-callout > p {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

.technology-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.technology-card:hover {
  border-color: var(--aqua-500);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.technology-card > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 16px;
  background: var(--aqua-100);
  color: #078b99;
}

.technology-card h2 {
  margin-bottom: 12px;
  font-size: 1.38rem;
}

.technology-card p {
  margin-bottom: 24px;
  font-size: 0.88rem;
}

.technology-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.82rem;
}

.technology-card strong .icon {
  width: 16px;
  height: 16px;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.product-image {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 22px;
  background: linear-gradient(160deg, #f7fcfc, #edf7f8);
}

.product-image img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.product-card > div:last-child {
  padding: 23px;
}

.product-kicker {
  margin-bottom: 7px;
  color: #078b99;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card h2 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.product-card > div:last-child > p:not(.product-kicker) {
  min-height: 52px;
  margin-bottom: 17px;
  font-size: 0.82rem;
}

.dosing-benefits,
.water-help {
  display: grid;
  gap: clamp(55px, 8vw, 105px);
  grid-template-columns: 1.05fr 0.95fr;
}

.dosing-benefits h2,
.water-help h2 {
  margin-bottom: 22px;
}

.dosing-benefits .check-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #d7e6e9;
}

.info-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--sand-50);
}

.info-panel h3 {
  margin-bottom: 24px;
  font-size: 1.35rem;
}

.info-panel-icon > span {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 20px;
  background: var(--aqua-100);
  color: #078b99;
}

.info-panel-icon > span .icon {
  width: 30px;
  height: 30px;
}

.info-panel-icon .text-link {
  margin-top: 10px;
}

.product-detail-grid {
  display: grid;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: 1.15fr 0.85fr;
}

.product-detail-grid > div > h2 {
  margin-bottom: 24px;
}

.product-detail-grid > div > p:not(.eyebrow) {
  font-size: 1.02rem;
}

.product-detail-grid > div .check-list {
  margin: 28px 0 32px;
}

.next-links {
  display: grid;
  align-items: end;
  gap: 18px;
  grid-template-columns: 1fr repeat(3, minmax(145px, 0.42fr));
}

.next-links h2 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.next-links > a {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
}

.next-links > a:hover {
  border-color: var(--aqua-500);
}

.chemistry-grid article {
  text-align: center;
}

.chemistry-grid article > div {
  display: grid;
  min-height: 265px;
  place-items: center;
  margin-bottom: 22px;
  padding: 20px;
  border-radius: 22px;
  background: var(--sky-50);
}

.chemistry-grid img {
  max-height: 220px;
  object-fit: contain;
}

.chemistry-grid h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.chemistry-grid p {
  font-size: 0.84rem;
}

.water-help-steps {
  display: grid;
  gap: 12px;
}

.water-help-steps span {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  color: #d7e6e9;
}

.water-help-steps strong {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-500);
  color: var(--navy-950);
}

.location-card,
.map-card {
  display: grid;
  overflow: hidden;
  align-items: center;
  border-radius: 28px;
  background: var(--sand-50);
  grid-template-columns: 1fr 1fr;
}

.location-card > div,
.map-card > div:first-child {
  padding: clamp(35px, 6vw, 70px);
}

.location-card h2,
.map-card h2 {
  margin-bottom: 20px;
}

.location-card > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.care-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.care-grid article > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  background: var(--aqua-100);
  color: #078b99;
}

.care-grid h2 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.care-grid p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.article-layout {
  display: grid;
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: 1.3fr 0.7fr;
}

.article-content h2 {
  margin-bottom: 35px;
}

.article-content h3 {
  margin: 32px 0 10px;
}

.article-content p {
  font-size: 1.01rem;
}

.article-aside {
  position: sticky;
  top: 120px;
  padding: 32px;
  border-radius: 22px;
  background: var(--navy-900);
  color: var(--white);
}

.article-aside h3 {
  color: var(--white);
  font-size: 1.45rem;
}

.article-aside p {
  color: #c4d7dd;
}

.article-aside .button,
.article-aside .text-link {
  width: 100%;
  margin-top: 10px;
  justify-content: center;
}

.article-aside .button-dark {
  background: var(--aqua-500);
  color: var(--navy-950);
}

.article-aside .text-link {
  color: var(--white);
}

.safety-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 36px;
  padding: 22px;
  border: 1px solid #b9dedf;
  border-radius: 16px;
  background: var(--aqua-100);
}

.safety-note .icon {
  color: #087f8b;
}

.safety-note p {
  margin-bottom: 0;
  color: #1e5560;
  font-size: 0.88rem;
}

.gallery-intro {
  display: grid;
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
  grid-template-columns: 1fr 0.72fr;
}

.gallery-intro .section-heading {
  margin-bottom: 0;
}

.gallery-meta {
  display: grid;
  gap: 12px;
}

.gallery-meta span {
  padding: 12px 0 12px 17px;
  border-left: 2px solid var(--aqua-500);
  color: var(--muted);
  font-size: 0.8rem;
}

.gallery-meta strong {
  display: inline-block;
  min-width: 88px;
  color: var(--ink);
}

.gallery-grid {
  display: grid;
  gap: 15px;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(12, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 17px;
  background: var(--navy-900);
  cursor: zoom-in;
}

.gallery-item-1 { grid-column: span 7; grid-row: span 2; }
.gallery-item-2 { grid-column: span 5; }
.gallery-item-3 { grid-column: span 5; }
.gallery-item-4 { grid-column: span 4; }
.gallery-item-5 { grid-column: span 4; }
.gallery-item-6 { grid-column: span 4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.5s ease;
}

.gallery-item:hover img {
  opacity: 0.72;
  transform: scale(1.04);
}

.gallery-item > span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover > span,
.gallery-item:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item > span strong {
  order: -1;
  font-size: 0.8rem;
}

.lightbox {
  width: min(94vw, 1200px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48);
}

.lightbox::backdrop {
  background: rgba(2, 14, 22, 0.84);
  backdrop-filter: blur(7px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  padding: 15px 60px 17px 20px;
  color: #c5d9df;
  font-size: 0.82rem;
}

.lightbox-close {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 13px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 23, 33, 0.78);
  color: var(--white);
  cursor: pointer;
}

.story-grid {
  display: grid;
  gap: clamp(60px, 8vw, 110px);
  grid-template-columns: 1fr 0.9fr;
}

.story-grid > div:first-child h2 {
  margin-bottom: 26px;
}

.story-grid > div:first-child p:not(.eyebrow) {
  font-size: 1.03rem;
}

.values-panel {
  display: grid;
  gap: 13px;
}

.values-panel article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.values-panel article > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  background: var(--aqua-100);
  color: #078b99;
}

.values-panel h3 {
  margin-bottom: 6px;
}

.values-panel p {
  margin-bottom: 0;
  font-size: 0.84rem;
}

.history-section .container {
  position: relative;
  z-index: 2;
}

.history-copy {
  display: grid;
  align-items: end;
  gap: 80px;
  margin-bottom: 64px;
  grid-template-columns: 1.1fr 0.9fr;
}

.history-copy h2 {
  margin-bottom: 0;
}

.history-copy > p:last-child {
  margin-bottom: 3px;
}

.history-line {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: repeat(3, 1fr);
}

.history-line span {
  position: relative;
  padding: 32px 36px 0 0;
  color: #9fb8c0;
  font-size: 0.8rem;
}

.history-line span::before {
  position: absolute;
  width: 11px;
  height: 11px;
  top: -6px;
  left: 0;
  border: 3px solid var(--navy-900);
  border-radius: 50%;
  background: var(--aqua-400);
  box-shadow: 0 0 0 2px var(--aqua-400);
  content: "";
}

.history-line strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.95rem;
}

.contact-layout {
  display: grid;
  align-items: start;
  gap: clamp(50px, 7vw, 90px);
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-details > h2 {
  margin-bottom: 31px;
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-cards > a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-cards > a:hover {
  border-color: var(--aqua-500);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.contact-cards > a > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 15px;
  background: var(--aqua-100);
  color: #078b99;
}

.contact-cards small,
.contact-cards strong,
.contact-cards em {
  display: block;
}

.contact-cards small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-cards strong {
  margin: 2px 0;
  color: var(--ink);
}

.contact-cards em {
  color: var(--muted);
  font-size: 0.73rem;
  font-style: normal;
}

.store-info {
  margin-top: 26px;
  padding: 25px;
  border-radius: 18px;
  background: var(--sand-50);
}

.store-info h3 {
  margin-bottom: 17px;
}

.store-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 0.84rem;
}

.store-info p:last-child {
  margin-bottom: 0;
}

.store-info .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: #078b99;
}

.contact-form-card {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-form-card > h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.contact-form-card > p:not(.eyebrow) {
  margin-bottom: 29px;
  font-size: 0.9rem;
}

.contact-form {
  display: grid;
  gap: 19px;
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label:not(.consent) {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #cbdadd;
  border-radius: 12px;
  background: #fbfdfd;
  color: var(--ink);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:not([type="checkbox"]),
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 138px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--aqua-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(9, 191, 210, 0.12);
}

.contact-form [aria-invalid="true"] {
  border-color: var(--danger) !important;
}

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.7rem;
  font-weight: 650;
}

.contact-form label.has-error .field-error {
  display: block;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--aqua-500);
}

.consent a {
  color: var(--ink);
  text-decoration: underline;
}

.consent.has-error {
  color: var(--danger);
}

.button-submit {
  position: relative;
  min-width: 180px;
  justify-self: start;
}

.button-submit i {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.button-submit.is-loading .icon {
  display: none;
}

.button-submit.is-loading i {
  display: block;
}

.form-status {
  display: none;
  padding: 13px 15px;
  border-radius: 11px;
  font-size: 0.8rem;
}

.form-status.is-success,
.form-status.is-error,
.form-status.is-info {
  display: block;
}

.form-status.is-success {
  background: #e5f6f0;
  color: var(--success);
}

.form-status.is-error {
  background: #fae9e7;
  color: var(--danger);
}

.form-status.is-info {
  background: var(--aqua-100);
  color: #17606a;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.map-visual {
  display: grid;
  min-height: 420px;
  place-items: center;
  align-content: center;
  padding: 40px;
  background:
    linear-gradient(rgba(6, 23, 33, 0.72), rgba(6, 23, 33, 0.72)),
    radial-gradient(circle at 35% 45%, #158d9c, transparent 5%),
    linear-gradient(35deg, transparent 46%, rgba(255, 255, 255, 0.2) 47%, transparent 49%),
    linear-gradient(145deg, #17637b, #2d9190);
  color: var(--white);
  text-align: center;
}

.map-visual > .icon {
  width: 55px;
  height: 55px;
  margin-bottom: 20px;
  color: var(--aqua-400);
}

.map-visual strong {
  font-family: var(--font-display);
  font-size: 2rem;
}

.map-visual small {
  margin-top: 9px;
  color: #d7e7eb;
  line-height: 1.6;
}

.legal-hero {
  padding: 34px 0 85px;
  background: linear-gradient(140deg, var(--navy-950), var(--navy-800));
}

.legal-hero .breadcrumbs {
  margin-bottom: 55px;
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.legal-hero > .container > p:last-child {
  margin-bottom: 0;
  color: #c6d9df;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 80px;
  grid-template-columns: 250px minmax(0, 820px);
}

.legal-layout > aside {
  position: sticky;
  top: 120px;
}

.legal-layout > aside nav {
  display: grid;
  gap: 6px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.legal-layout > aside a {
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.legal-layout > aside a:hover {
  color: #078b99;
}

.legal-content h2 {
  margin: 48px 0 15px;
  font-size: 1.6rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
}

.legal-content a {
  color: #087f8b;
  text-decoration: underline;
}

.legal-updated {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem !important;
}

.footer-cta {
  padding: 70px 0;
  background: var(--aqua-500);
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.footer-cta .eyebrow {
  margin-bottom: 13px;
  color: #055d67;
}

.footer-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.footer-cta .text-link-light {
  color: var(--navy-950);
}

.site-footer {
  padding: 78px 0 25px;
  background: var(--navy-950);
  color: #9fb8c0;
}

.footer-grid {
  display: grid;
  gap: 55px;
  padding-bottom: 65px;
  grid-template-columns: 1.5fr 0.8fr 1.1fr 0.9fr;
}

.brand-footer {
  margin-bottom: 22px;
  color: var(--white);
}

.brand-footer .brand-copy small {
  color: #8daab3;
}

.footer-brand-col p {
  max-width: 330px;
  color: #8daab3;
  font-size: 0.84rem;
}

.footer-grid h2 {
  margin-bottom: 21px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand-col) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a,
.footer-grid span {
  color: #91adb7;
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-grid a:hover {
  color: var(--aqua-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #66848f;
  font-size: 0.68rem;
}

.mobile-action-bar {
  display: none;
}

/* Guides and pool-care knowledge base */
.home-guides-preview {
  background:
    radial-gradient(circle at 84% 18%, rgba(17, 176, 189, 0.12), transparent 24%),
    var(--white);
}

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

.home-guide-grid > a {
  display: grid;
  align-items: center;
  gap: 18px;
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(8, 41, 55, 0.06);
  grid-template-columns: auto 1fr auto;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-guide-grid > a:hover {
  border-color: rgba(9, 153, 165, 0.5);
  box-shadow: 0 24px 60px rgba(8, 41, 55, 0.12);
  transform: translateY(-4px);
}

.home-guide-grid > a > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--aqua-50);
  color: #078b99;
}

.home-guide-grid > a > span .icon {
  width: 25px;
  height: 25px;
}

.home-guide-grid > a > .icon {
  width: 20px;
  height: 20px;
  color: #0794a1;
}

.home-guide-grid small,
.guide-card small,
.related-guides small {
  display: block;
  margin-bottom: 6px;
  color: #078b99;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-guide-grid h3 {
  margin-bottom: 7px;
  font-size: 1.18rem;
}

.home-guide-grid p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.guide-start {
  padding-bottom: 46px;
}

.guide-diagnostic {
  display: grid;
  align-items: center;
  gap: 68px;
  padding: 48px;
  border-radius: 28px;
  background: var(--navy-950);
  color: var(--white);
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
}

.guide-diagnostic h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
}

.guide-diagnostic > div:first-child > p:last-child {
  margin: 0;
  color: #a8c0c8;
}

.diagnostic-links {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.diagnostic-links a {
  display: grid;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  grid-template-columns: auto 1fr;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.diagnostic-links a:hover {
  border-color: rgba(72, 218, 225, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.diagnostic-links strong,
.diagnostic-links small {
  grid-column: 2;
}

.diagnostic-links strong {
  align-self: end;
  color: var(--white);
  font-size: 0.86rem;
}

.diagnostic-links small {
  align-self: start;
  color: #94b0b9;
  font-size: 0.67rem;
  line-height: 1.35;
}

.signal {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  grid-row: 1 / 3;
}

.signal-green { background: #4bb35a; }
.signal-cloudy { background: #d8e5e8; }
.signal-brown { background: #b47b45; }
.signal-blue { background: #24aabc; }

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

.guide-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(9, 40, 52, 0.06);
}

.guide-card-visual {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.guide-card-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 24, 35, 0.4));
  content: "";
}

.guide-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.guide-card:hover .guide-card-visual img {
  transform: scale(1.035);
}

.guide-card-visual > span {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 15px;
  background: var(--aqua-500);
  color: var(--navy-950);
}

.guide-card-visual > span .icon {
  width: 22px;
  height: 22px;
}

.guide-card > div {
  padding: 25px 25px 28px;
}

.guide-card h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.guide-card h2 a:hover {
  color: #078b99;
}

.guide-card p {
  min-height: 78px;
  margin-bottom: 19px;
  font-size: 0.8rem;
  line-height: 1.65;
}

.guide-reference {
  display: grid;
  align-items: start;
  gap: 75px;
  grid-template-columns: 0.72fr 1.28fr;
}

.guide-reference h2 {
  margin-bottom: 17px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.reference-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.reference-table > div {
  display: grid;
  align-items: center;
  min-height: 74px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.65fr 0.75fr 1.6fr;
}

.reference-table > div:first-child {
  min-height: 56px;
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-table > div:last-child {
  border-bottom: 0;
}

.reference-table span {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.reference-table span:first-child,
.reference-table span:nth-child(2) {
  color: var(--ink);
  font-weight: 800;
}

.guide-article-body {
  background: var(--white);
}

.guide-article-layout {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.guide-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-steps li {
  display: grid;
  gap: 25px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px 1fr;
}

.guide-steps li:first-child {
  padding-top: 12px;
}

.guide-steps li > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: var(--aqua-50);
  color: #078b99;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 850;
}

.guide-steps h2 {
  margin-bottom: 9px;
  font-size: 1.38rem;
}

.guide-steps p {
  max-width: 760px;
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.75;
}

.guide-warning,
.guide-service {
  display: grid;
  gap: 22px;
  margin-top: 42px;
  padding: 30px;
  border-radius: 20px;
  grid-template-columns: auto 1fr;
}

.guide-warning {
  border: 1px solid #f1d99b;
  background: #fff9e9;
}

.guide-warning > span,
.guide-service > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
}

.guide-warning > span {
  background: #f7e2aa;
  color: #8b5b00;
}

.guide-warning h2,
.guide-service h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.guide-warning p,
.guide-service p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.guide-avoid {
  margin-top: 70px;
}

.guide-avoid h2 {
  margin-bottom: 22px;
  font-size: 2rem;
}

.guide-avoid .check-list {
  display: grid;
  gap: 12px 24px;
  grid-template-columns: repeat(2, 1fr);
}

.guide-avoid .check-list li {
  align-items: center;
  min-height: 60px;
  padding: 14px 16px;
  border: 1px solid #f0d8d8;
  border-radius: 13px;
  background: #fff8f8;
  color: #683f3f;
}

.guide-avoid .check-list .icon {
  color: #b55656;
  transform: rotate(45deg);
}

.guide-service {
  margin-top: 60px;
  background: var(--aqua-50);
}

.guide-service > span {
  background: var(--aqua-500);
  color: var(--navy-950);
}

.guide-service .inline-actions {
  margin-top: 22px;
}

.guide-aside {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 18px;
}

.guide-aside > div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.guide-aside h2 {
  margin-bottom: 18px;
  font-size: 1.45rem;
}

.guide-aside .check-list {
  gap: 10px;
  margin-bottom: 20px;
}

.guide-aside .check-list li {
  font-size: 0.74rem;
}

.guide-aside .aside-note {
  border-color: rgba(13, 151, 164, 0.2);
  background: var(--aqua-50);
}

.aside-note strong {
  display: block;
  margin-bottom: 9px;
  color: #087f8b;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.aside-note p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.6;
}

.related-guides > .container > div:not(.section-heading):not(.section-action) {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.related-guides > .container > div > a {
  display: grid;
  align-items: center;
  gap: 14px;
  min-height: 110px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  grid-template-columns: auto 1fr auto;
}

.related-guides a > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--aqua-50);
  color: #078b99;
}

.related-guides a > span .icon {
  width: 20px;
  height: 20px;
}

.related-guides a > .icon {
  width: 18px;
  height: 18px;
  color: #078b99;
}

.related-guides strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1120px) {
  :root { --header-height: 76px; }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    margin-left: auto;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--white);
    cursor: pointer;
  }

  .menu-toggle .icon-close {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .icon-menu {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .icon-close {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    z-index: 99;
    top: calc(36px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    overflow-y: auto;
    padding: 26px 0 60px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

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

  .mobile-nav-inner {
    display: grid;
  }

  .mobile-nav-inner > a:not(.button):not(.mobile-nav-phone) {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 750;
  }

  .mobile-nav-inner > a.is-active {
    color: #078b99;
  }

  .mobile-nav .button {
    width: 100%;
    margin-top: 25px;
  }

  .mobile-nav-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 19px;
    color: var(--ink);
    font-weight: 800;
  }

  .home-hero-grid {
    gap: 50px;
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
  }

  .home-hero h1 {
    font-size: clamp(3.05rem, 6vw, 4.9rem);
  }

  .product-grid,
  .chemistry-grid,
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .technology-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .next-links {
    grid-template-columns: 1fr repeat(3, minmax(120px, 0.42fr));
  }
}

@media (max-width: 900px) {
  .home-hero-grid,
  .page-hero-grid,
  .technology-preview-grid,
  .project-feature-grid,
  .split-feature,
  .split-feature-reverse,
  .premium-callout,
  .dosing-benefits,
  .water-help,
  .product-detail-grid,
  .article-layout,
  .story-grid,
  .history-copy,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-grid {
    padding-bottom: 45px;
  }

  .home-hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 520px;
    margin-inline: auto;
  }

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

  .trust-ribbon > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-ribbon > div:nth-child(2) {
    border-right: 0;
  }

  .trust-ribbon > div:nth-child(3),
  .trust-ribbon > div:nth-child(4) {
    border-bottom: 0;
  }

  .trust-ribbon > div:first-child,
  .trust-ribbon > div:nth-child(3) {
    padding-left: 0;
  }

  .service-grid,
  .feature-trio {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child,
  .feature-trio article:last-child {
    grid-column: 1 / -1;
  }

  .process-grid {
    gap: 35px 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid::before {
    display: none;
  }

  .project-collage {
    width: min(100%, 700px);
  }

  .faq-layout {
    gap: 45px;
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    width: min(100%, 640px);
  }

  .split-feature-reverse > div {
    order: 0;
  }

  .split-feature > img {
    max-height: 520px;
  }

  .color-swatches {
    grid-template-columns: repeat(3, 1fr);
  }

  .compact-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .compact-steps li:nth-child(2) {
    border-right: 0;
  }

  .compact-steps li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .technology-preview .section-heading {
    max-width: 750px;
  }

  .next-links {
    align-items: stretch;
    grid-template-columns: repeat(3, 1fr);
  }

  .next-links > div {
    grid-column: 1 / -1;
  }

  .article-aside,
  .legal-layout > aside {
    position: static;
  }

  .gallery-intro {
    gap: 35px;
    grid-template-columns: 1fr;
  }

  .history-copy {
    gap: 25px;
  }

  .legal-layout {
    gap: 40px;
  }

  .legal-layout > aside nav {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 680px) {
  :root { --header-height: 70px; }

  body {
    padding-bottom: 62px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .utility-inner {
    justify-content: space-between;
  }

  .utility-inner > a:first-child,
  .utility-hours {
    display: none;
  }

  .utility-phone {
    margin-left: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 1.16rem;
  }

  .brand-copy small {
    font-size: 0.48rem;
  }

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

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .home-hero {
    padding-top: 58px;
  }

  .home-hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .hero-actions,
  .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .inline-actions .button {
    width: 100%;
  }

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

  .hero-main-image {
    width: 94%;
  }

  .hero-main-image img {
    min-height: 290px;
  }

  .hero-small-image {
    width: 36%;
    bottom: 18px;
  }

  .hero-float-card {
    right: 0;
    bottom: 15px;
    max-width: 200px;
  }

  .hero-float-card small {
    display: none;
  }

  .trust-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .trust-ribbon > div {
    min-height: 115px;
    padding: 20px 13px;
  }

  .trust-ribbon > div:nth-child(odd) {
    padding-left: 0;
  }

  .service-grid,
  .feature-trio,
  .technology-card-grid,
  .product-grid,
  .chemistry-grid,
  .care-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child,
  .feature-trio article:last-child {
    grid-column: auto;
  }

  .service-card-body p {
    min-height: 0;
  }

  .section-action {
    text-align: left;
  }

  .technology-stack article:nth-child(even),
  .technology-stack article:nth-child(even):hover {
    transform: none;
  }

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

  .process-grid li {
    padding: 0 12px;
  }

  .project-collage {
    min-height: 400px;
  }

  .project-main {
    width: 88%;
    height: 79%;
    border-radius: 44px 16px 44px 16px;
  }

  .project-detail {
    width: 55%;
    height: 45%;
  }

  .page-hero {
    padding-top: 25px;
  }

  .breadcrumbs {
    margin-bottom: 38px;
  }

  .page-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .page-hero-media img {
    min-height: 300px;
  }

  .page-hero-media {
    border-radius: 18px 55px 18px 55px;
  }

  .split-feature > img {
    min-height: 300px;
    border-radius: 22px 55px 22px 55px;
  }

  .color-swatches {
    grid-template-columns: repeat(2, 1fr);
  }

  .swatch {
    min-height: 190px;
  }

  .compact-steps {
    grid-template-columns: 1fr;
  }

  .compact-steps li,
  .compact-steps li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compact-steps li:last-child {
    border-bottom: 0;
  }

  .premium-callout,
  .dosing-benefits,
  .water-help {
    gap: 35px;
  }

  .next-links {
    grid-template-columns: 1fr;
  }

  .next-links > div {
    grid-column: auto;
  }

  .product-image {
    min-height: 220px;
  }

  .location-card,
  .map-card {
    grid-template-columns: 1fr;
  }

  .location-card > img {
    min-height: 300px;
  }

  .gallery-grid {
    display: grid;
    gap: 12px;
    grid-auto-rows: 230px;
    grid-template-columns: 1fr;
  }

  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5,
  .gallery-item-6 {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item > span {
    opacity: 1;
    transform: none;
  }

  .history-line {
    gap: 28px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    grid-template-columns: 1fr;
  }

  .history-line span {
    padding: 0 0 0 28px;
  }

  .history-line span::before {
    top: 4px;
    left: -6px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .button-submit {
    width: 100%;
  }

  .legal-layout > aside nav {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .footer-cta-actions .button {
    width: 100%;
  }

  .footer-grid {
    gap: 42px;
    grid-template-columns: 1fr;
  }

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

  .mobile-action-bar {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 62px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--navy-950);
    box-shadow: 0 -10px 30px rgba(4, 22, 32, 0.2);
    grid-template-columns: 1fr 1fr;
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
  }

  .mobile-action-bar a + a {
    background: var(--aqua-500);
    color: var(--navy-950);
  }

  .mobile-action-bar .icon {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 1120px) {
  .home-guide-grid,
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-guide-grid > a:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .guide-diagnostic,
  .guide-reference,
  .guide-article-layout {
    grid-template-columns: 1fr;
  }

  .guide-diagnostic {
    gap: 35px;
  }

  .guide-article-layout {
    gap: 45px;
  }

  .guide-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .related-guides > .container > div:not(.section-heading):not(.section-action) {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .home-guide-grid,
  .guide-grid,
  .diagnostic-links,
  .guide-aside,
  .guide-avoid .check-list {
    grid-template-columns: 1fr;
  }

  .home-guide-grid > a:last-child {
    grid-column: auto;
  }

  .home-guide-grid > a {
    min-height: 0;
    padding: 22px 18px;
    grid-template-columns: auto 1fr;
  }

  .home-guide-grid > a > .icon {
    display: none;
  }

  .guide-diagnostic {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .guide-card p {
    min-height: 0;
  }

  .reference-table {
    overflow-x: auto;
  }

  .reference-table > div {
    min-width: 640px;
  }

  .guide-steps li {
    gap: 15px;
    padding: 24px 0;
    grid-template-columns: 42px 1fr;
  }

  .guide-steps li > span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .guide-warning,
  .guide-service {
    padding: 24px 20px;
    grid-template-columns: 1fr;
  }

  .guide-service .inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .guide-service .button {
    width: 100%;
  }
}

/* Original Vodny svet identity */
.brand {
  max-width: 168px;
}

.brand-logo {
  width: 168px;
  height: auto;
  max-height: 66px;
  object-fit: contain;
}

.brand-footer {
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.98);
}

.brand-logo-footer {
  width: 215px;
}

/* Clear separation between our pool-technology services and construction work */
.service-scope {
  position: relative;
  z-index: 2;
  padding: 28px 0;
  background: #edf7f8;
}

.service-scope-card {
  display: grid;
  align-items: start;
  gap: 22px;
  grid-template-columns: 54px minmax(0, 1fr);
  padding: 28px 32px;
  border: 1px solid rgba(11, 151, 166, 0.2);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(7, 29, 44, 0.07);
}

.service-scope-card > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--aqua-100);
  color: #078b99;
}

.service-scope-card > span .icon {
  width: 25px;
  height: 25px;
}

.service-scope-card .eyebrow {
  margin-bottom: 8px;
}

.service-scope-card h2 {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.service-scope-card p:last-child {
  max-width: 1050px;
  margin: 0;
  color: var(--muted);
}

/* ASEKO sales and support centre */
.home-aseko-showcase {
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f2f9fa);
}

.home-aseko-grid {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.home-aseko-visual {
  position: relative;
  display: grid;
  min-height: 585px;
  place-items: center;
  overflow: hidden;
  border-radius: 36px 110px 36px 110px;
  background:
    radial-gradient(circle at 75% 15%, rgba(37, 212, 223, 0.28), transparent 35%),
    linear-gradient(145deg, #061721, #0d3a4c);
  box-shadow: var(--shadow-md);
}

.home-aseko-visual::after {
  position: absolute;
  inset: auto -20% -42% 30%;
  height: 70%;
  border-radius: 50%;
  background: rgba(9, 191, 210, 0.1);
  content: "";
  filter: blur(2px);
}

.home-aseko-visual > img {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 520px;
  filter: drop-shadow(0 35px 42px rgba(0, 0, 0, 0.28));
}

.aseko-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(89, 225, 232, 0.22);
  border-radius: 50%;
}

.aseko-orbit-one {
  width: 530px;
  height: 530px;
}

.aseko-orbit-two {
  width: 390px;
  height: 390px;
}

.aseko-product-label {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  display: flex;
  padding: 16px 19px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(6, 23, 33, 0.82);
  color: var(--white);
  flex-direction: column;
  backdrop-filter: blur(14px);
}

.aseko-product-label small {
  color: var(--aqua-400);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.aseko-product-label strong {
  margin-top: 3px;
  font-family: var(--font-display);
  font-size: 1rem;
}

.home-aseko-copy > h2 {
  margin-bottom: 24px;
}

.home-aseko-copy > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.02rem;
}

.aseko-capability-grid {
  display: grid;
  gap: 10px;
  margin: 32px 0 36px;
  grid-template-columns: repeat(2, 1fr);
}

.aseko-capability-grid > span {
  display: grid;
  align-items: center;
  gap: 2px 12px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  grid-template-columns: auto 1fr;
}

.aseko-capability-grid .icon {
  width: 25px;
  height: 25px;
  color: #078b99;
  grid-row: 1 / 3;
}

.aseko-capability-grid strong {
  align-self: end;
  font-size: 0.82rem;
}

.aseko-capability-grid small {
  align-self: start;
  color: var(--muted);
  font-size: 0.68rem;
}

.aseko-principle-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
}

.aseko-principle-grid article {
  position: relative;
  min-height: 275px;
  padding: 28px 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.aseko-principle-grid article > span {
  position: absolute;
  top: 18px;
  right: 19px;
  color: #b9c9ce;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.aseko-principle-grid article > .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 38px;
  color: #078b99;
}

.aseko-principle-grid h2 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.aseko-principle-grid p {
  margin: 0;
  font-size: 0.8rem;
}

.aseko-truth {
  display: grid;
  align-items: center;
  gap: 17px;
  max-width: 930px;
  margin: 30px auto 0;
  padding: 19px 24px;
  border-radius: 18px;
  background: var(--aqua-100);
  grid-template-columns: auto 1fr;
}

.aseko-truth > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
  color: #078b99;
}

.aseko-truth .icon {
  width: 23px;
  height: 23px;
}

.aseko-truth p {
  margin: 0;
  color: #315762;
  font-size: 0.82rem;
}

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

.aseko-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(6, 36, 49, 0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.aseko-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.aseko-product-card:nth-child(4),
.aseko-product-card:nth-child(5) {
  grid-column: span 1;
}

.aseko-product-media {
  position: relative;
  display: grid;
  min-height: 325px;
  place-items: center;
  overflow: hidden;
  padding: 25px;
  background: linear-gradient(150deg, #f8fcfd, #e9f5f7);
}

.aseko-product-media > span {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.aseko-product-media img {
  width: 100%;
  max-height: 285px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.aseko-product-card:hover .aseko-product-media img {
  transform: scale(1.035);
}

.aseko-product-card > div {
  padding: 27px;
}

.aseko-product-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.aseko-product-card h2 a:hover {
  color: #078b99;
}

.aseko-product-card > div > p:not(.product-kicker) {
  min-height: 100px;
  font-size: 0.79rem;
}

.aseko-product-card dl {
  margin: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.aseko-product-card dl > div {
  display: grid;
  gap: 10px;
  padding: 10px 0;
  grid-template-columns: 62px 1fr;
}

.aseko-product-card dl > div + div {
  border-top: 1px solid var(--line);
}

.aseko-product-card dt {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.aseko-product-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.45;
}

.source-note {
  max-width: 920px;
  margin: 30px auto 0;
  text-align: center;
  font-size: 0.72rem;
}

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

.aseko-selector-layout {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.aseko-selector-layout h2 {
  margin-bottom: 20px;
}

.aseko-selector {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.aseko-selector label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.aseko-selector select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid #cbdadd;
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
}

.aseko-selector select:focus {
  border-color: var(--aqua-500);
}

.aseko-selector-result {
  position: relative;
  display: grid;
  align-items: center;
  gap: 24px;
  min-height: 480px;
  padding: 36px;
  overflow: hidden;
  border-radius: 30px 80px 30px 80px;
  background: linear-gradient(145deg, #061721, #0b3448);
  color: var(--white);
  grid-template-columns: 0.9fr 1.1fr;
  box-shadow: var(--shadow-md);
}

.aseko-selector-result::before {
  position: absolute;
  top: -160px;
  right: -130px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(9, 191, 210, 0.16);
  content: "";
}

.aseko-selector-result > * {
  position: relative;
  z-index: 1;
}

.aseko-selector-result > .product-kicker {
  position: absolute;
  top: 23px;
  left: 28px;
  color: var(--aqua-400);
  grid-column: 1 / -1;
}

.aseko-selector-result > img {
  width: 100%;
  filter: drop-shadow(0 25px 32px rgba(0, 0, 0, 0.3));
}

.aseko-selector-result h3 {
  margin-bottom: 15px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.aseko-selector-result div > p {
  margin-bottom: 24px;
  color: #b4c9cf;
  font-size: 0.83rem;
}

.aseko-selector-result .button-dark {
  background: var(--aqua-500);
  color: var(--navy-950);
}

.aseko-selector-result.is-updated > img,
.aseko-selector-result.is-updated > div {
  animation: aseko-result-in 0.32s ease both;
}

@keyframes aseko-result-in {
  from { opacity: 0.35; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.aseko-comparison .section-heading h2,
.aseko-comparison .section-heading > p:last-child {
  color: var(--white);
}

.aseko-comparison .section-heading > p:last-child {
  color: #9fb8c0;
}

.aseko-comparison .comparison-wrap {
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--white);
}

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

.aseko-compact-grid article {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.aseko-compact-grid article > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 16px;
  background: var(--aqua-100);
  color: #078b99;
}

.aseko-compact-grid .icon {
  width: 25px;
  height: 25px;
}

.aseko-compact-grid h2 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.aseko-compact-grid p {
  margin: 0;
  font-size: 0.78rem;
}

.aseko-owner-grid {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: 0.9fr 1.1fr;
}

.aseko-owner-grid h2 {
  margin-bottom: 22px;
}

.aseko-help-links {
  display: grid;
  gap: 12px;
}

.aseko-help-links a {
  display: grid;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  grid-template-columns: auto 1fr auto;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.aseko-help-links a:hover {
  border-color: rgba(9, 191, 210, 0.7);
  transform: translateX(4px);
}

.aseko-help-links a > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--aqua-100);
  color: #078b99;
}

.aseko-help-links a > span .icon {
  width: 23px;
  height: 23px;
}

.aseko-help-links a > .icon {
  width: 18px;
  height: 18px;
  color: #078b99;
}

.aseko-help-links strong,
.aseko-help-links small {
  display: block;
}

.aseko-help-links strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.aseko-help-links small {
  color: var(--muted);
  font-size: 0.7rem;
}

.aseko-new-line-callout {
  padding-bottom: 20px;
}

.aseko-new-line-callout > .container {
  display: grid;
  align-items: center;
  gap: 35px;
  padding: 38px 42px;
  border: 1px solid #bfecef;
  border-radius: 25px;
  background: linear-gradient(125deg, var(--aqua-100), var(--sky-50));
  grid-template-columns: 1fr auto;
}

.aseko-new-line-callout h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.aseko-new-line-callout p:last-child {
  max-width: 750px;
  margin-bottom: 0;
}

.aseko-spec-ribbon {
  padding: 0 0 34px;
  background: var(--navy-950);
}

.aseko-spec-ribbon > .container {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  grid-template-columns: 0.85fr 0.85fr 1fr 1.5fr;
}

.aseko-spec-ribbon > .container > div {
  padding: 21px 23px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.aseko-spec-ribbon > .container > div:last-child {
  border-right: 0;
}

.aseko-spec-ribbon small,
.aseko-spec-ribbon strong {
  display: block;
}

.aseko-spec-ribbon small {
  margin-bottom: 5px;
  color: #7fa2ad;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.aseko-spec-ribbon strong {
  color: var(--white);
  font-size: 0.74rem;
  line-height: 1.45;
}

.aseko-product-intro {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: 1.15fr 0.85fr;
}

.aseko-product-intro > div > h2 {
  margin-bottom: 23px;
}

.aseko-product-intro > div > p:not(.eyebrow) {
  font-size: 1rem;
}

.aseko-ideal-card {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--sand-50);
}

.aseko-ideal-card > span {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 27px;
  place-items: center;
  border-radius: 20px;
  background: var(--navy-950);
  color: var(--aqua-400);
}

.aseko-ideal-card .icon {
  width: 31px;
  height: 31px;
}

.aseko-ideal-card h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
  line-height: 1.35;
}

.aseko-workflow {
  display: grid;
  gap: 15px;
  margin-top: 58px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.aseko-workflow li {
  min-height: 230px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.aseko-workflow li > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 13px;
  background: var(--aqua-100);
  color: #078b99;
  font-size: 0.74rem;
  font-weight: 900;
}

.aseko-workflow h2 {
  margin-bottom: 12px;
  font-size: 1.17rem;
}

.aseko-workflow p {
  margin: 0;
  font-size: 0.76rem;
}

.aseko-balanced-grid {
  display: grid;
  gap: 23px;
  grid-template-columns: repeat(2, 1fr);
}

.aseko-pros,
.aseko-cons {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--white);
}

.aseko-pros h2,
.aseko-cons h2 {
  margin-bottom: 25px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.aseko-pros .check-list,
.aseko-cons .check-list {
  margin: 0;
}

.aseko-cons {
  background: var(--sand-50);
}

.aseko-cons .check-list .icon {
  color: #987230;
}

.aseko-feature-layout {
  display: grid;
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: 1.15fr 0.85fr;
}

.aseko-feature-layout h2 {
  margin-bottom: 23px;
}

.aseko-feature-layout > div:first-child > p:not(.eyebrow) {
  color: #a7bec5;
}

.aseko-feature-layout .check-list {
  margin-top: 28px;
}

.aseko-feature-layout .check-list li {
  color: #d7e6e9;
}

.aseko-chemistry-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.aseko-chemistry-panel h3 {
  margin-bottom: 25px;
  color: var(--white);
  font-size: 1.5rem;
}

.aseko-chemistry-panel .eyebrow {
  color: var(--aqua-400);
}

.aseko-chemistry-panel .check-list {
  margin-bottom: 24px;
}

.aseko-chemistry-panel p:last-child {
  margin: 0;
  color: #91adb7;
  font-size: 0.72rem;
}

.aseko-delivery {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: 1.08fr 0.92fr;
}

.aseko-delivery h2 {
  margin-bottom: 22px;
}

.aseko-delivery > aside {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(155deg, #f6fbfc, #e9f5f7);
}

.aseko-delivery > aside img {
  width: 100%;
  max-height: 480px;
  object-fit: contain;
}

.aseko-delivery > aside p {
  padding: 15px 5px 0;
  font-size: 0.72rem;
}

.aseko-delivery > aside a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px;
  color: #078b99;
  font-size: 0.72rem;
  font-weight: 800;
}

.aseko-delivery > aside a .icon {
  width: 15px;
  height: 15px;
}

.aseko-emergency {
  padding-bottom: 35px;
}

.aseko-emergency > .container {
  display: grid;
  align-items: start;
  gap: 24px;
  padding: 34px 38px;
  border: 1px solid #f0c9c2;
  border-radius: 23px;
  background: #fff4f1;
  grid-template-columns: auto 1fr;
}

.aseko-emergency > .container > span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 18px;
  background: #b13b2c;
  color: var(--white);
}

.aseko-emergency .icon {
  width: 29px;
  height: 29px;
}

.aseko-emergency h2 {
  margin-bottom: 13px;
  font-size: clamp(1.55rem, 2.7vw, 2.45rem);
}

.aseko-emergency p:last-child {
  margin-bottom: 0;
  font-size: 0.83rem;
}

.aseko-troubleshooting {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(2, 1fr);
}

.aseko-troubleshooting details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.aseko-troubleshooting summary {
  display: grid;
  align-items: center;
  gap: 15px;
  min-height: 96px;
  padding: 18px 20px;
  cursor: pointer;
  grid-template-columns: auto 1fr auto;
  list-style: none;
}

.aseko-troubleshooting summary::-webkit-details-marker {
  display: none;
}

.aseko-troubleshooting summary > span {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 14px;
  background: var(--aqua-100);
  color: #078b99;
}

.aseko-troubleshooting summary > span .icon {
  width: 23px;
  height: 23px;
}

.aseko-troubleshooting summary strong,
.aseko-troubleshooting summary small {
  display: block;
}

.aseko-troubleshooting summary strong {
  margin-bottom: 3px;
  font-size: 0.84rem;
}

.aseko-troubleshooting summary small {
  color: var(--muted);
  font-size: 0.68rem;
}

.aseko-troubleshooting summary i {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-950);
}

.aseko-troubleshooting summary i::before,
.aseko-troubleshooting summary i::after {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  background: var(--white);
  content: "";
}

.aseko-troubleshooting summary i::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.aseko-troubleshooting details[open] summary i::after {
  transform: rotate(0);
}

.aseko-troubleshooting details > div {
  padding: 0 24px 23px 84px;
  border-top: 1px solid var(--line);
}

.aseko-troubleshooting ol {
  margin: 20px 0;
  padding-left: 19px;
  color: var(--muted);
  font-size: 0.75rem;
}

.aseko-troubleshooting li + li {
  margin-top: 8px;
}

.aseko-maintenance-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.aseko-maintenance-grid article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.aseko-maintenance-grid article > span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--aqua-100);
  color: #077b87;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.aseko-maintenance-grid h2 {
  margin-bottom: 22px;
  font-size: 1.45rem;
}

.aseko-maintenance-grid .check-list {
  margin: 0;
}

.aseko-support-cta {
  display: grid;
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
  grid-template-columns: 1.05fr 0.95fr;
}

.aseko-support-cta h2 {
  margin-bottom: 21px;
}

.aseko-support-cta > div:first-child > p:last-child {
  color: #a7bec5;
}

.aseko-support-cta .check-list li {
  color: #d7e6e9;
}

.aseko-support-cta .button {
  margin-top: 22px;
}

.guide-aseko-band {
  padding: 0 0 52px;
}

.guide-aseko-band > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  border: 1px solid #bfecef;
  border-radius: 20px;
  background: linear-gradient(120deg, var(--aqua-100), var(--sky-50));
}

.guide-aseko-band > .container > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.guide-aseko-band > .container > div > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: var(--navy-950);
  color: var(--aqua-400);
}

.guide-aseko-band .icon {
  width: 24px;
  height: 24px;
}

.guide-aseko-band small,
.guide-aseko-band strong {
  display: block;
}

.guide-aseko-band small {
  color: #087d88;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-aseko-band strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.guide-aseko-band > .container > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.guide-aseko-band > .container > a .icon {
  width: 17px;
  height: 17px;
}

@media (max-width: 1120px) {
  .brand-logo { width: 158px; }

  .aseko-principle-grid,
  .aseko-workflow,
  .aseko-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .aseko-product-card:last-child {
    grid-column: 1 / -1;
  }

  .aseko-product-card:last-child .aseko-product-media {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .home-aseko-grid,
  .aseko-selector-layout,
  .aseko-owner-grid,
  .aseko-product-intro,
  .aseko-feature-layout,
  .aseko-delivery,
  .aseko-support-cta {
    grid-template-columns: 1fr;
  }

  .home-aseko-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .aseko-selector-result {
    min-height: 430px;
  }

  .aseko-spec-ribbon > .container {
    grid-template-columns: repeat(2, 1fr);
  }

  .aseko-spec-ribbon > .container > div:nth-child(2) {
    border-right: 0;
  }

  .aseko-spec-ribbon > .container > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .aseko-balanced-grid,
  .aseko-troubleshooting {
    grid-template-columns: 1fr;
  }

  .aseko-maintenance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aseko-maintenance-grid article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .service-scope {
    padding: 18px 0;
  }

  .service-scope-card {
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 22px 20px;
  }

  .service-scope-card > span {
    width: 46px;
    height: 46px;
  }

  .brand-logo {
    width: 132px;
    max-height: 56px;
  }

  .brand-logo-footer {
    width: 190px;
  }

  .home-aseko-visual {
    min-height: 420px;
    border-radius: 24px 65px 24px 65px;
  }

  .home-aseko-visual > img {
    width: 96%;
  }

  .aseko-product-label {
    right: 15px;
    bottom: 15px;
  }

  .aseko-capability-grid,
  .aseko-principle-grid,
  .aseko-product-grid,
  .aseko-compact-grid,
  .aseko-workflow,
  .aseko-maintenance-grid {
    grid-template-columns: 1fr;
  }

  .aseko-product-card:last-child,
  .aseko-maintenance-grid article:last-child {
    grid-column: auto;
  }

  .aseko-product-card > div > p:not(.product-kicker) {
    min-height: 0;
  }

  .aseko-product-media,
  .aseko-product-card:last-child .aseko-product-media {
    min-height: 280px;
  }

  .aseko-selector-result {
    gap: 10px;
    min-height: 0;
    padding: 70px 24px 28px;
    border-radius: 23px 55px 23px 55px;
    grid-template-columns: 1fr;
  }

  .aseko-selector-result > img {
    max-height: 265px;
    object-fit: contain;
  }

  .aseko-new-line-callout > .container {
    padding: 28px 22px;
    grid-template-columns: 1fr;
  }

  .aseko-new-line-callout .button {
    width: 100%;
  }

  .aseko-spec-ribbon > .container {
    grid-template-columns: 1fr;
  }

  .aseko-spec-ribbon > .container > div,
  .aseko-spec-ribbon > .container > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .aseko-spec-ribbon > .container > div:last-child {
    border-bottom: 0;
  }

  .aseko-workflow {
    margin-top: 36px;
  }

  .aseko-pros,
  .aseko-cons {
    padding: 28px 22px;
  }

  .aseko-emergency > .container {
    padding: 26px 21px;
    grid-template-columns: 1fr;
  }

  .aseko-troubleshooting summary {
    padding: 15px;
  }

  .aseko-troubleshooting details > div {
    padding: 0 18px 20px;
  }

  .guide-aseko-band > .container {
    align-items: stretch;
    padding: 22px;
    flex-direction: column;
  }

  .guide-aseko-band > .container > a {
    justify-content: center;
    min-height: 48px;
    border-radius: 12px;
    background: var(--navy-950);
    color: var(--white);
  }
}

.home-alukov-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.home-alukov-images {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: end;
}

.home-alukov-images img,
.alukov-category-grid img,
.alukov-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-alukov-images img {
  min-height: 330px;
  border-radius: 28px 70px 28px 28px;
}

.home-alukov-images img:last-child {
  min-height: 260px;
  border-radius: 24px 24px 62px 24px;
}

.alukov-category-grid,
.alukov-product-grid,
.alukov-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.alukov-category-grid > a,
.alukov-card,
.alukov-catalog article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(7, 29, 44, .08);
}

.alukov-category-grid img { aspect-ratio: 16 / 9; }
.alukov-category-grid > a > span,
.alukov-category-grid > a > h3,
.alukov-category-grid > a > p { display: block; margin-left: 22px; margin-right: 22px; }
.alukov-category-grid > a > span { margin-top: 20px; color: var(--aqua-500); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.alukov-category-grid > a > h3 { margin-top: 6px; margin-bottom: 8px; }
.alukov-category-grid > a > p { margin-bottom: 24px; }

.alukov-product-grid { grid-template-columns: repeat(2, 1fr); }
.alukov-card { display: grid; grid-template-columns: 46% 54%; }
.alukov-card-image { min-height: 310px; }
.alukov-card > div { padding: 28px; }
.alukov-card h3 { margin: 6px 0 12px; }

.alukov-catalog article { padding: 30px; }
.alukov-catalog article p { line-height: 1.85; }
.catalog-strip { margin-top: 32px; padding: 22px 26px; border-radius: 16px; background: var(--navy-950); color: var(--white); line-height: 1.8; }

.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pros-cons-grid article { padding: clamp(26px, 4vw, 48px); border-radius: 24px; }
.pros-card { background: #e9f8f7; }
.consider-card { background: #f5f1e9; }

@media (max-width: 980px) {
  .home-alukov-grid,
  .alukov-category-grid,
  .alukov-catalog { grid-template-columns: 1fr; }
  .alukov-product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .home-alukov-images,
  .alukov-card,
  .pros-cons-grid { grid-template-columns: 1fr; }
  .home-alukov-images img,
  .home-alukov-images img:last-child { min-height: 220px; }
  .alukov-card-image { min-height: 230px; }
}

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

@media print {
  .utility-bar,
  .site-header,
  .footer-cta,
  .site-footer,
  .mobile-action-bar,
  .button,
  .text-link,
  .lightbox {
    display: none !important;
  }

  body { color: #000; }
  p { color: #222; }
  .section { padding: 30px 0; }
}
