﻿:root {
  --navy: #08213d;
  --blue: #006ca8;
  --cyan: #09b8dd;
  --aqua: #70e7f2;
  --lime: #c9f04f;
  --ink: #122033;
  --muted: #5a6a7f;
  --line: #dbe9ef;
  --soft: #f2fbfd;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(8, 33, 61, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 130px;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: 94px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
}

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

button,
input,
select,
textarea {
  max-width: 100%;
}

main,
main > *,
.site-header > *,
.site-nav > *,
.product-detail-card > *,
.contact-section > *,
.calculator-layout > * {
  min-width: 0;
}

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

.brand-word {
  color: #006ca8;
  font-weight: 900;
  text-transform: lowercase;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  height: 94px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 233, 239, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(1.75rem, 2.55vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0;
  text-transform: none;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--cyan);
}

.site-nav {
  position: absolute;
  top: 94px;
  right: clamp(18px, 4vw, 64px);
  left: auto;
  display: none;
  width: min(420px, calc(100vw - 36px));
  max-height: calc(100dvh - 112px);
  overflow-y: auto;
  overscroll-behavior: contain;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 10px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: normal;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  scrollbar-width: thin;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  padding: 13px 14px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-new-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.site-nav .nav-new-link small {
  display: inline-flex;
  align-items: center;
  min-height: 16px;
  padding: 2px 5px;
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--lime);
  border-radius: 999px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-product-search {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 8px 0 0;
  padding: 0 4px 4px;
}

.header-search-wrap {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
}

.header-product-search input {
  min-height: 38px;
  padding: 9px 10px;
  font-size: 0.84rem;
  background: var(--white);
}

.header-product-search button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--white);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.header-product-search button:hover {
  background: var(--blue);
}

.header-product-suggestions {
  position: static;
  width: 100%;
  max-height: 42dvh;
  margin-top: 8px;
}

.header-product-suggestions .product-suggestion::after {
  display: none;
}

.product-suggestion-empty {
  display: block;
  padding: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.empty-subpage {
  min-height: clamp(360px, 52vh, 640px);
}

.nav-toggle {
  display: block;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  min-height: clamp(420px, 58vh, 620px);
  padding: clamp(34px, 5vw, 72px) clamp(18px, 5vw, 80px);
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(90deg, rgba(247, 253, 255, 0.96) 0%, rgba(235, 250, 253, 0.9) 45%, rgba(235, 250, 253, 0.46) 70%, rgba(235, 250, 253, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(8, 33, 61, 0.18)),
    url("assets/galeria-piscina-01.jpeg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 15ch;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.35rem;
}

.hero-copy,
.section-heading p,
.feature-copy p,
.contact-copy p,
.process-list p,
.service-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: 1.08rem;
}

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

.hero-search {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-top: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(219, 233, 239, 0.95);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(8, 33, 61, 0.1);
}

.hero-search label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.hero-search input {
  min-height: 50px;
  background: var(--white);
}

.hero-search button {
  min-height: 50px;
  padding: 0 20px;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(0, 108, 168, 0.25);
}

.button.primary:hover {
  background: var(--navy);
}

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

.button.light {
  width: fit-content;
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(255, 255, 255, 0.18);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 26px clamp(18px, 4vw, 54px);
  background: var(--white);
}

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

.trust-strip strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.commerce-section,
.home-featured-products,
.brands-section,
.local-section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
}

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

.commerce-heading {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  max-width: none;
}

.commerce-heading div {
  max-width: 820px;
}

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

.category-card {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover {
  border-color: rgba(9, 184, 221, 0.7);
  box-shadow: 0 20px 46px rgba(8, 33, 61, 0.12);
  transform: translateY(-3px);
}

.category-card span {
  width: fit-content;
  padding: 8px 10px;
  color: var(--navy);
  font-weight: 900;
  background: var(--lime);
  border-radius: 8px;
}

.category-card h3,
.category-card p {
  margin-bottom: 0;
}

.category-card p {
  color: var(--muted);
  line-height: 1.55;
}

.category-card.featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.88), rgba(0, 108, 168, 0.74)),
    url("assets/galeria-piscina-04.jpeg") center / cover no-repeat;
}

.category-card.featured h3,
.category-card.featured p {
  color: var(--white);
}

.home-featured-products {
  background: var(--white);
}

.featured-product-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.featured-product-media {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.04), rgba(9, 184, 221, 0.11)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured-product-media img {
  width: min(100%, 420px);
  max-height: 300px;
  object-fit: contain;
}

.featured-product-copy {
  display: grid;
  gap: 14px;
}

.featured-product-copy span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lime);
  border-radius: 8px;
}

.featured-product-copy h3 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.featured-product-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

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

.section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background: var(--white);
}

.subpage-hero {
  padding: clamp(24px, 3.8vw, 46px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 78% 12%, rgba(112, 231, 242, 0.28), transparent 28%),
    linear-gradient(135deg, #f7fdff 0%, #dff8fd 54%, #ffffff 100%);
}

.subpage-hero.compact {
  padding-bottom: clamp(22px, 3.2vw, 38px);
}

.subpage-hero h1 {
  max-width: 13ch;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  line-height: 1.04;
}

.subpage-hero p {
  max-width: 850px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.about-copy {
  max-width: 850px;
}

.about-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.about-details {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.about-details div {
  padding: 22px;
  background: var(--soft);
}

.about-details span,
.about-details strong {
  display: block;
}

.about-details span {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-details strong {
  color: var(--navy);
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

.section-action {
  margin-top: 24px;
}

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

.news-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(8, 33, 61, 0.1);
}

.news-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.news-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(26px, 5vw, 56px);
}

.news-badge {
  width: fit-content;
  padding: 7px 10px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lime);
  border-radius: 999px;
}

.news-copy h3 {
  max-width: 560px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.06;
}

.news-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.service-card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--navy);
  font-weight: 900;
  background: var(--lime);
  border-radius: 8px;
}

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

.service-page-section .service-card {
  min-height: 230px;
}

.service-card .text-link {
  margin-top: 16px;
}

.service-help-band {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.96), rgba(0, 108, 168, 0.9)),
    url("assets/galeria-piscina-04.jpeg") center / cover no-repeat;
}

.service-help-band div {
  max-width: 760px;
}

.service-help-band h2,
.service-help-band p,
.service-help-band .eyebrow {
  color: var(--white);
}

.service-help-band p {
  margin-bottom: 0;
  line-height: 1.65;
  opacity: 0.88;
}

.linner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 5vw, 64px) clamp(18px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.98), rgba(0, 108, 168, 0.88)),
    url("assets/linner-gallery/linner-123.jpg") center / cover no-repeat;
}

.linner-hero .eyebrow,
.linner-hero h1,
.linner-hero p {
  color: var(--white);
}

.linner-hero h1 {
  max-width: 12ch;
  margin-bottom: 14px;
  font-size: clamp(1.95rem, 3.6vw, 3.5rem);
  line-height: 1.04;
}

.linner-hero .linner-experience-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px 9px;
  align-items: baseline;
  width: fit-content;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 4px solid var(--aqua);
  border-radius: 6px;
  box-shadow: none;
  opacity: 1;
}

.linner-experience-kicker strong {
  color: var(--aqua);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.1;
}

.linner-experience-kicker span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  line-height: 1.35;
}

.linner-hero .brand-word {
  color: var(--aqua);
}

.linner-hero p {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.9;
}

.linner-hero-media {
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.linner-hero-media img {
  width: 100%;
  height: clamp(330px, 42vw, 520px);
  object-fit: cover;
}

.linner-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: var(--white);
}

.linner-intro-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.linner-intro-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.linner-intro-panel span {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.linner-intro-panel strong {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.08;
}

.linner-intro-panel p {
  margin-bottom: 0;
  line-height: 1.65;
  opacity: 0.88;
}

.linner-experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(112, 231, 242, 0.28), transparent 30%),
    linear-gradient(135deg, var(--navy), #075b89);
  border-top: 5px solid var(--lime);
  box-shadow: 0 24px 60px rgba(8, 33, 61, 0.2);
}

.linner-experience-seal {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 20px;
  padding: 8px 16px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--lime);
  border-radius: 999px;
}

.linner-experience .eyebrow {
  color: var(--aqua);
}

.linner-experience h2,
.linner-experience h3 {
  color: var(--white);
}

.linner-experience h2 {
  max-width: 13ch;
  margin-bottom: 22px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.04;
}

.linner-experience-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
  line-height: 1.72;
}

.linner-experience-highlights {
  display: grid;
  gap: 14px;
}

.linner-experience-highlights article {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.linner-experience-highlights strong {
  color: var(--aqua);
  font-size: 1.1rem;
  line-height: 1.2;
}

.linner-experience-highlights span {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.linner-experience-types {
  grid-column: 1 / -1;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.linner-experience-types h3 {
  margin-bottom: 20px;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.linner-experience-types ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.linner-experience-types li {
  position: relative;
  min-height: 68px;
  padding: 16px 16px 16px 42px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.linner-experience-types li::before {
  position: absolute;
  top: 18px;
  left: 17px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(180, 226, 43, 0.14);
}

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

.linner-feature-card {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.linner-feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--navy);
  font-weight: 900;
  background: var(--lime);
  border-radius: 8px;
}

.linner-feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.linner-gallery-strip figure {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.linner-gallery-strip img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.linner-gallery-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-featured-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gallery-new-hero {
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.94), rgba(0, 108, 168, 0.82)),
    url("assets/piscinas-gallery/high-confort-compact-easy-deluxe-americana-smart-001.webp") center 52% / cover no-repeat;
}

.gallery-new-hero .eyebrow,
.gallery-new-hero h1,
.gallery-new-hero p {
  color: var(--white);
}

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

.gallery-model-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 52px;
}

.gallery-model-nav a {
  padding: 11px 16px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(8, 33, 61, 0.06);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.gallery-model-nav a:hover,
.gallery-model-nav a:focus-visible {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.gallery-pool-groups {
  display: grid;
  gap: clamp(64px, 8vw, 110px);
}

.gallery-model-group {
  scroll-margin-top: 118px;
}

.gallery-model-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.gallery-model-heading .eyebrow {
  margin-bottom: 6px;
}

.gallery-model-heading h3 {
  max-width: 30ch;
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.25rem);
  line-height: 1.1;
}

.gallery-model-heading > span {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  background: rgba(0, 108, 168, 0.08);
  border-radius: 999px;
}

.gallery-linner-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.gallery-back-to-models {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 29;
  display: inline-flex;
  align-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  background: var(--lime);
  border: 1px solid rgba(8, 33, 61, 0.12);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, background 180ms ease;
}

.gallery-back-to-models.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.gallery-back-to-models:hover,
.gallery-back-to-models:focus-visible {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.gallery-back-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  font-size: inherit;
  background: transparent;
  border-radius: inherit;
}

.gallery-new-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 16px;
}

.gallery-new-item {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(8, 33, 61, 0.08);
}

.gallery-new-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-new-item span {
  display: block;
  padding: 12px 14px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
}

.gallery-new-item:hover img,
.gallery-new-item:focus-visible img {
  transform: scale(1.035);
}

.gallery-new-item:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(48px, 0.12fr) minmax(0, 1fr) minmax(48px, 0.12fr);
  gap: clamp(8px, 2vw, 24px);
  align-items: center;
  padding: clamp(16px, 3vw, 40px);
  background: rgba(3, 14, 27, 0.94);
  backdrop-filter: blur(10px);
}

.gallery-lightbox-content {
  display: grid;
  gap: 12px;
  justify-items: center;
  min-width: 0;
  margin: 0;
}

.gallery-lightbox-content img {
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 110px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-content figcaption {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.gallery-lightbox button {
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.gallery-lightbox button:hover,
.gallery-lightbox button:focus-visible {
  background: var(--blue);
  outline: 3px solid var(--aqua);
  outline-offset: 2px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
}

.gallery-lightbox-nav {
  width: clamp(46px, 5vw, 64px);
  height: clamp(58px, 8vw, 82px);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  border-radius: 8px;
}

.linner-cta-band {
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.96), rgba(0, 108, 168, 0.86)),
    url("assets/linner-gallery/linner-065.jpg") center / cover no-repeat;
}

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

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.brand-strip span {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 18px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 33, 61, 0.06);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.95), rgba(0, 108, 168, 0.92)),
    url("assets/aquaflass-logo.jpeg") center/cover;
}

.feature-band .eyebrow,
.feature-band h2,
.feature-band p {
  color: var(--white);
}

.button.primary .brand-word,
.feature-band .brand-word,
.contact-section .brand-word,
.site-footer .brand-word {
  color: inherit;
}

.feature-band p {
  opacity: 0.88;
}

.text-link {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 0.25em;
  align-items: baseline;
  max-width: 100%;
  margin-top: 8px;
  color: var(--lime);
  font-weight: 800;
  line-height: 1.45;
}

.text-link .brand-word {
  line-height: inherit;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-list span {
  min-height: 66px;
  padding: 20px;
  color: var(--navy);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.92);
  border-left: 5px solid var(--lime);
  border-radius: 8px;
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  background: var(--white);
}

.local-copy {
  max-width: 800px;
}

.local-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.local-facts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.local-facts span {
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 800;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.info-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.info-action-row > span,
.info-action-row > strong {
  min-width: 0;
}

.mini-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 11px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  background: var(--aqua);
  border: 1px solid rgba(9, 184, 221, 0.45);
  border-radius: 8px;
}

.mini-action:hover {
  color: var(--navy);
  background: var(--lime);
}

.whatsapp-mini {
  color: var(--white);
  background: #0aa84f;
  border-color: #0aa84f;
}

.whatsapp-mini:hover {
  color: var(--white);
  background: #087f3e;
}

.about-details .mini-action {
  margin-top: 10px;
}

.local-facts .info-action-row {
  padding: 14px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.local-facts .info-action-row span {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.map-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
}

.map-card .button {
  width: fit-content;
}

.map-section {
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background: var(--soft);
}

.wide-map iframe {
  min-height: 460px;
}

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

.catalog-hero,
.store-hero {
  display: flex;
  gap: 24px;
  align-items: end;
  justify-content: space-between;
  padding: clamp(24px, 3.8vw, 46px) clamp(18px, 5vw, 80px);
  background:
    radial-gradient(circle at 78% 12%, rgba(112, 231, 242, 0.28), transparent 28%),
    linear-gradient(135deg, #f7fdff 0%, #dff8fd 54%, #ffffff 100%);
}

.catalog-hero div,
.store-hero div {
  max-width: 780px;
}

.catalog-hero h1,
.store-hero h1 {
  max-width: 13ch;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  line-height: 1.04;
}

.catalog-hero p,
.store-hero p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.store-section {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 80px) clamp(62px, 8vw, 112px);
  background: var(--soft);
}

.store-filters {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.product-search-wrap {
  position: relative;
}

.product-suggestions {
  position: absolute;
  z-index: 20;
  right: 0;
  left: 0;
  display: grid;
  gap: 8px;
  max-height: min(420px, 68vh);
  margin-top: 8px;
  padding: 10px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(8, 33, 61, 0.16);
}

.product-suggestions[hidden] {
  display: none !important;
}

.product-suggestion {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  color: var(--navy);
  border-radius: 8px;
}

.product-suggestion:hover {
  background: var(--soft);
}

.product-suggestion img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-suggestion span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.product-suggestion small {
  overflow: hidden;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-suggestion strong {
  overflow: hidden;
  color: var(--navy);
  font-size: 0.88rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-note {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.filter-note strong {
  color: var(--navy);
}

.filter-note span {
  color: var(--muted);
  line-height: 1.45;
}

.store-results {
  min-width: 0;
}

.store-toolbar {
  display: flex;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.store-toolbar h2 {
  margin-bottom: 0;
}

.text-link.dark {
  color: var(--blue);
}

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

.store-product-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-product-card[hidden],
.no-results[hidden] {
  display: none !important;
}

.store-product-card:hover {
  border-color: rgba(9, 184, 221, 0.7);
  box-shadow: 0 20px 46px rgba(8, 33, 61, 0.12);
  transform: translateY(-3px);
}

.store-product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.04), rgba(9, 184, 221, 0.11)),
    var(--soft);
}

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

.store-product-media-cover {
  min-height: 260px;
  padding: 0;
  background: #f7fbff;
  overflow: hidden;
}

.store-product-media-cover img {
  width: 100%;
  height: 260px;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.store-product-copy {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.store-product-copy span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-product-copy h3 {
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.store-product-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.store-product-copy strong {
  color: var(--blue);
}

.no-results {
  padding: 22px;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: 8px;
}

.store-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.store-pagination[hidden] {
  display: none !important;
}

.store-pagination button {
  min-width: 42px;
  min-height: 42px;
  padding: 0 13px;
  color: var(--navy);
  font: inherit;
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.store-pagination button:hover:not(:disabled),
.store-pagination button.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.store-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.product-page-section {
  padding-top: clamp(34px, 5vw, 64px);
  background: var(--soft);
}

.back-link {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-weight: 900;
}

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

.product-detail-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  margin-bottom: 24px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(8, 33, 61, 0.09);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.06), rgba(9, 184, 221, 0.12)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-media img {
  width: min(100%, 420px);
  max-height: 360px;
  object-fit: contain;
}

.product-media-cover {
  min-height: 460px;
  padding: 0;
  background: #f7fbff;
  overflow: hidden;
}

.product-media-cover img {
  width: 100%;
  height: 460px;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.product-detail-copy {
  display: grid;
  gap: 14px;
}

.product-category {
  margin-bottom: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-copy h3 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.product-detail-copy p,
.product-detail-copy li {
  color: var(--muted);
  line-height: 1.62;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 4px 0 10px;
}

.product-specs div {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-specs h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1rem;
}

.product-specs ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.catalog-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 250px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.catalog-card span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--navy);
  font-weight: 900;
  background: var(--lime);
  border-radius: 8px;
}

.catalog-card p {
  color: var(--muted);
  line-height: 1.6;
}

.catalog-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 800;
}

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

.process-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-list div {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 24px;
  padding: 26px;
  background: var(--white);
}

.process-list strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.process-list p {
  margin-bottom: 0;
}

.guide-card {
  min-height: 230px;
}

.guide-soft-section {
  background: linear-gradient(180deg, #f7fdff 0%, #ffffff 100%);
}

.guide-reference-grid,
.guide-product-grid {
  display: grid;
  gap: 16px;
}

.guide-reference-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.guide-reference-card,
.guide-product-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.guide-reference-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-reference-card strong,
.guide-product-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
}

.guide-reference-card p,
.guide-product-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.guide-product-card .text-link {
  margin-top: 14px;
}

.guide-alert-card {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: linear-gradient(135deg, #08213d 0%, #006ca8 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-alert-card h2,
.guide-alert-card p {
  max-width: 820px;
}

.guide-alert-card h2 {
  color: var(--white);
}

.guide-alert-card p {
  color: rgba(255, 255, 255, 0.84);
}

.guide-alert-card .eyebrow {
  color: var(--aqua);
}

.guide-alert-card .button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
}

.guide-alert-card .button.secondary:hover {
  color: var(--navy);
  background: var(--aqua);
  border-color: var(--aqua);
}

.sulfate-grid,
.maintenance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sulfate-panel,
.maintenance-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.sulfate-panel h3,
.maintenance-panel h3 {
  margin-top: 0;
  color: var(--navy);
}

.sulfate-panel ul,
.maintenance-panel ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.65;
}

.sulfate-source {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.sulfate-source a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
}

.guide-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

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

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-question-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.75fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 16%, rgba(112, 231, 242, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy), #075b89);
}

.faq-question-copy {
  max-width: 720px;
}

.faq-question-copy .eyebrow {
  color: var(--aqua);
}

.faq-question-copy h2 {
  max-width: 16ch;
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.04;
}

.faq-question-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.7;
}

.faq-question-help {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.09);
  border-left: 4px solid var(--lime);
  border-radius: 0 8px 8px 0;
}

.faq-question-form {
  box-shadow: 0 24px 60px rgba(3, 14, 27, 0.28);
}

.faq-question-form .button {
  width: 100%;
}

.faq-form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 900px) {
  .faq-question-section {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .faq-question-copy h2 {
    max-width: 20ch;
  }
}

@media (max-width: 560px) {
  .faq-question-form {
    padding: 20px;
  }
}

.calculator-hero h1 {
  max-width: 22ch;
}

.calculator-section {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 80px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f2fbfd 100%);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.68fr);
  gap: 20px;
  align-items: stretch;
}

.calculator-panel,
.calculator-results,
.recommendation-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(8, 33, 61, 0.08);
}

.calculator-panel {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
}

.calculator-panel h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.calculator-panel p {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.65;
}

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

.calculator-panel label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.calculator-wide-field {
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calculator-hint {
  margin: 0;
  padding: 14px 16px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.calculator-results {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.98), rgba(0, 108, 168, 0.94));
}

.calculator-results .eyebrow,
.calculator-results strong {
  color: var(--white);
}

.result-number strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.result-number span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  font-weight: 800;
}

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

.result-item {
  display: grid;
  gap: 8px;
  min-height: 145px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.result-item span,
.result-item small {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.result-item strong {
  font-size: 1.5rem;
}

.calculator-result-actions {
  display: grid;
  gap: 10px;
}

.calculator-result-actions .button {
  width: 100%;
  cursor: pointer;
}

.calculator-results .button.primary {
  justify-content: center;
  color: var(--navy);
  background: var(--lime);
}

.calculator-results .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.calculator-pdf-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.calculator-recommendations {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.8fr));
  gap: 18px;
  margin-top: 18px;
}

.recommendation-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
  background: var(--white);
}

.recommendation-card-main {
  grid-column: span 2;
  background: var(--soft);
}

.recommendation-card > span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recommendation-card h2 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.5vw, 2.6rem);
}

.recommendation-card h3 {
  margin-bottom: 0;
}

.recommendation-card p,
.recommendation-card li {
  color: var(--muted);
  line-height: 1.65;
}

.dosage-card {
  grid-column: 1 / -1;
}

.dosage-options {
  display: grid;
  gap: 18px;
}

.dosage-options > p {
  margin-bottom: 0;
}

.dosage-note {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dosage-option-group {
  display: grid;
  gap: 12px;
}

.dosage-option-title {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.dosage-option-title span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dosage-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dosage-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dosage-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.dosage-table caption {
  padding: 12px 14px;
  color: var(--navy);
  font-weight: 900;
  text-align: left;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.dosage-table th,
.dosage-table td {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dosage-table th:last-child,
.dosage-table td:last-child {
  border-right: 0;
}

.dosage-table tr:last-child td {
  border-bottom: 0;
}

.dosage-table th {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dosage-table td:first-child {
  color: var(--navy);
  font-weight: 800;
}

.equipment-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.equipment-links a {
  padding: 10px 12px;
  color: var(--navy);
  font-weight: 900;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.equipment-links a:hover,
.text-link:hover {
  color: var(--blue);
}

.mini-product-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.text-link {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
}

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

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

.gallery-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--soft);
}

.gallery-card.wide {
  grid-column: span 3;
  display: block;
}

.gallery-card.wide img {
  height: 360px;
}

.gallery-card div {
  display: none;
  padding: 22px;
}

.gallery-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card p {
  color: var(--muted);
  line-height: 1.6;
}

.gallery-section-more {
  padding-top: 0;
}

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

.gallery-photo-tile {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.07);
}

.gallery-photo-tile.wide {
  grid-column: span 2;
}

.gallery-photo-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.gallery-photo-tile.tall img {
  height: 340px;
}

.gallery-photo-tile figcaption {
  display: none;
  padding: 14px 16px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(62px, 8vw, 112px) clamp(18px, 5vw, 80px);
  background: var(--navy);
}

.standalone-contact {
  padding-top: clamp(48px, 6vw, 86px);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy p {
  opacity: 0.82;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  width: fit-content;
  color: var(--aqua);
  font-weight: 800;
}

.contact-links span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.contact-links .info-action-row {
  color: rgba(255, 255, 255, 0.86);
}

.contact-links .mini-action {
  color: var(--navy);
}

.contact-links .whatsapp-mini {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: #f8fbfc;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(9, 184, 221, 0.14);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  padding: 24px clamp(18px, 5vw, 80px);
  color: var(--white);
  background: #06182c;
}

.rich-footer {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, minmax(150px, 0.72fr));
  gap: 28px;
  align-items: start;
}

.rich-footer div {
  display: grid;
  gap: 8px;
}

.rich-footer strong {
  color: var(--white);
  font-size: 1rem;
}

.rich-footer span,
.rich-footer a {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
}

.rich-footer a {
  width: fit-content;
  font-weight: 800;
}

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

.rich-footer .info-action-row {
  align-items: flex-start;
}

.rich-footer .mini-action {
  margin-top: 4px;
  color: var(--navy);
}

.rich-footer .whatsapp-mini {
  color: var(--white);
}

.footer-socials {
  display: grid;
  gap: 8px;
}

.footer-socials strong {
  color: var(--white);
}

.footer-social-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-social-link svg {
  width: 24px;
  height: 24px;
  padding: 4px;
  color: var(--white);
  fill: currentColor;
  background: linear-gradient(135deg, #405de6 0%, #c13584 45%, #fd1d1d 72%, #fcb045 100%);
  border-radius: 8px;
}

.footer-social-link.facebook-link svg {
  background: #1877f2;
}

.footer-social-link:hover {
  color: var(--aqua);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #0aa84f;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(8, 33, 61, 0.22);
}

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

.floating-whatsapp:hover {
  background: #087f3e;
}

@media (max-width: 1280px) {
  .nav-toggle {
    display: block;
    flex: 0 0 44px;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 94px;
    right: 18px;
    left: 18px;
    display: none;
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    white-space: normal;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    padding: 13px 14px;
  }

  .header-product-search {
    width: 100%;
    min-width: 0;
    margin: 8px 0 0;
    padding: 0 4px 4px;
  }

  .header-product-suggestions {
    position: static;
    width: 100%;
    max-height: 42dvh;
    margin-top: 8px;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 94px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-product-search {
    width: 100%;
    min-width: 0;
    margin: 8px 0 0;
    padding: 0 4px 4px;
  }

  .header-search-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .header-product-suggestions {
    position: static;
    width: 100%;
    max-height: 48vh;
    margin-top: 8px;
  }

  .hero,
  .about-section,
  .catalog-hero,
  .store-hero,
  .feature-band,
  .local-section,
  .featured-product-card,
  .contact-section,
  .product-detail-card,
  .calculator-layout,
  .calculator-recommendations,
  .news-card,
  .linner-hero,
  .linner-intro,
  .linner-experience {
    grid-template-columns: 1fr;
  }

  .linner-experience-types ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-help-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .guide-alert-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .store-section {
    grid-template-columns: 1fr;
  }

  .store-filters {
    position: static;
  }

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

  .hero {
    min-height: clamp(440px, 62vh, 580px);
    background:
      linear-gradient(180deg, rgba(247, 253, 255, 0.96) 0%, rgba(235, 250, 253, 0.88) 52%, rgba(235, 250, 253, 0.32) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(8, 33, 61, 0.18)),
      url("assets/galeria-piscina-01.jpeg") center bottom / cover no-repeat;
  }

  h1 {
    max-width: 15ch;
  }

  .trust-strip,
  .service-grid,
  .gallery-grid,
  .catalog-grid,
  .linner-feature-grid,
  .guide-reference-grid,
  .guide-product-grid,
  .sulfate-grid,
  .maintenance-grid {
    grid-template-columns: 1fr;
  }

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

  .linner-hero-media img {
    height: 380px;
  }

  .news-media img {
    height: 330px;
    min-height: 0;
  }

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

  .commerce-heading {
    align-items: start;
    flex-direction: column;
  }

  .brand-strip,
  .rich-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .gallery-photo-tile.wide {
    grid-column: span 2;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .recommendation-card-main {
    grid-column: auto;
  }

  .dosage-table-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    padding-top: 78px;
  }

  .site-header {
    height: 78px;
    gap: 10px;
    padding-right: 14px;
    padding-left: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  [id] {
    scroll-margin-top: 96px;
  }

  .brand span {
    font-size: 1.42rem;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .site-nav {
    top: 78px;
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - 88px);
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  h1,
  h2,
  h3,
  p,
  a,
  button,
  label,
  td,
  th {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .button,
  .guide-alert-card,
  .guide-quick-actions {
    width: 100%;
  }

  .hero-search {
    padding: 12px;
  }

  .hero-search div {
    grid-template-columns: 1fr;
  }

  .hero-search button {
    width: 100%;
  }

  .catalog-hero,
  .store-hero {
    align-items: stretch;
  }

  .brand-strip,
  .rich-footer,
  .linner-gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-model-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -18px;
    margin-left: -18px;
    padding: 4px 18px 14px;
    scrollbar-width: thin;
  }

  .gallery-model-nav a {
    flex: 0 0 auto;
  }

  .gallery-model-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .gallery-new-item img {
    height: 180px;
  }

  .gallery-new-item span {
    padding: 10px;
    font-size: 0.76rem;
  }

  .gallery-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 6px;
    padding: 72px 8px 18px;
  }

  .gallery-lightbox-nav {
    width: 44px;
    height: 56px;
    font-size: 2.5rem;
  }

  .gallery-lightbox-content img {
    max-height: calc(100dvh - 130px);
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
  }

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

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

  .gallery-photo-tile.wide {
    grid-column: auto;
  }

  .gallery-photo-tile img,
  .gallery-photo-tile.tall img {
    height: 250px;
  }

  .news-copy {
    padding: 22px;
  }

  .news-media img {
    height: 250px;
  }

  .featured-product-media {
    min-height: 260px;
  }

  .linner-hero-media img,
  .linner-gallery-strip img {
    height: 250px;
  }

  .linner-intro-panel {
    padding: 22px;
  }

  .linner-experience-highlights article,
  .linner-experience-types ul {
    grid-template-columns: 1fr;
  }

  .linner-experience-highlights article {
    gap: 8px;
  }

  .map-card iframe {
    min-height: 300px;
  }

  .map-card .button {
    width: 100%;
  }

  .product-list {
    grid-template-columns: 1fr;
  }

  .store-toolbar {
    align-items: start;
    flex-direction: column;
  }

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

  .product-media {
    min-height: 260px;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

  .calculator-field-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .calculator-results {
    padding: 22px;
  }

  .floating-whatsapp {
    right: 14px;
    width: 52px;
    height: 52px;
  }

  .floating-whatsapp {
    bottom: 14px;
  }

  .gallery-back-to-models {
    right: 14px;
    bottom: 78px;
    max-width: calc(100vw - 28px);
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .site-nav {
    max-height: calc(100dvh - 88px);
  }

  .site-nav a {
    min-height: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .header-product-suggestions {
    max-height: 35dvh;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Catalogo de piscinas de fibra: modelo Compact */
.fiber-models-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 33, 61, 0.95), rgba(0, 108, 168, 0.78)),
    url("assets/modelos/compact/compact-medidas.png") center 43% / cover no-repeat;
}

.fiber-models-hero .eyebrow,
.fiber-models-hero h1,
.fiber-models-hero p {
  color: var(--white);
}

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

.fiber-explainer {
  display: block;
  background: var(--white);
}

.fiber-explainer-copy {
  max-width: 880px;
  margin: 0 auto;
}

.fiber-explainer-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.fiber-explainer-media {
  overflow: hidden;
  margin: 0;
  height: clamp(340px, 46vw, 520px);
  background: var(--soft);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fiber-explainer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.fiber-benefits-section {
  background: var(--navy);
}

.fiber-benefits-section .eyebrow,
.fiber-benefits-section h2 {
  color: var(--white);
}

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

.fiber-benefit-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.fiber-benefit-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--navy);
  font-weight: 900;
  background: var(--lime);
  border-radius: 8px;
}

.fiber-benefit-grid h3,
.fiber-benefit-grid p {
  color: var(--white);
}

.fiber-benefit-grid p {
  margin-bottom: 0;
  line-height: 1.6;
  opacity: 0.82;
}

.fiber-line-heading {
  max-width: 760px;
}

.fiber-model-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: 40px;
}

.fiber-model-intro img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.fiber-model-section-alt {
  background: linear-gradient(180deg, var(--soft), var(--white));
}

.fiber-size-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fiber-size-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
}

.fiber-size-grid-one {
  grid-template-columns: minmax(280px, 400px);
}

.fiber-size-card {
  display: grid;
  gap: 12px;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.fiber-size-preview {
  overflow: hidden;
  height: 180px;
  background: #d8eef3;
}

.fiber-size-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 29%;
  transform: scale(1.04);
}

.fiber-size-card-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.fiber-size-card:hover,
.fiber-size-card:focus-visible {
  transform: translateY(-4px);
  border-color: var(--cyan);
  box-shadow: 0 20px 44px rgba(8, 33, 61, 0.14);
  outline: none;
}

.fiber-size-code {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 900;
  background: var(--blue);
  border-radius: 8px;
}

.fiber-size-card-copy > p {
  margin: 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fiber-size-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.fiber-size-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.fiber-size-card dl div {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.fiber-size-card dt {
  color: var(--muted);
}

.fiber-size-card dd {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
}

.fiber-size-card-copy > strong {
  margin-top: 6px;
  color: var(--blue);
}

.compact-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 80px);
  background: linear-gradient(135deg, var(--soft), var(--white));
}

.compact-detail-hero img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.compact-size-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--blue);
  border-radius: 999px;
}

.compact-spec-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.compact-spec-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compact-spec-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.compact-spec-card strong {
  color: var(--navy);
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.compact-model-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compact-model-gallery a {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.08);
}

.compact-model-gallery img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  background: var(--white);
}

.compact-model-gallery span {
  display: block;
  padding: 14px 16px;
  color: var(--navy);
  font-weight: 900;
}

.compact-size-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.compact-size-navigation a {
  padding: 10px 14px;
  color: var(--navy);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.compact-size-navigation a[aria-current="page"] {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

@media (max-width: 1000px) {
  .fiber-size-grid,
  .fiber-size-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .fiber-model-intro,
  .fiber-explainer,
  .compact-detail-hero {
    grid-template-columns: 1fr;
  }

  .compact-model-gallery img {
    height: 300px;
  }
}

@media (max-width: 560px) {
  .fiber-size-grid,
  .fiber-benefit-grid,
  .compact-spec-grid,
  .compact-model-gallery {
    grid-template-columns: 1fr;
  }
}

