:root {
  --navy: #071c35;
  --navy-soft: #0e2d4d;
  --blue: #168dcc;
  --blue-light: #67c8ef;
  --ice: #f1f7fa;
  --sand: #f7f4ef;
  --white: #ffffff;
  --ink: #172333;
  --muted: #627285;
  --line: #d9e5ec;
  --shadow: 0 22px 60px rgba(7, 28, 53, 0.12);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--white);
  color: var(--navy);
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.topbar {
  background: var(--navy);
  color: #d8e9f4;
  font-size: 13px;
  letter-spacing: .01em;
}
.topbar-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 38px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar-points { display: flex; gap: 24px; }
.topbar a { color: var(--white); text-decoration: none; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217,229,236,.9);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(var(--max), calc(100% - 40px));
  min-height: 82px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: 0 10px 25px rgba(22,141,204,.2);
  font-weight: 900;
}
.brand-name { display: block; color: var(--navy); font-size: 18px; font-weight: 850; line-height: 1.05; }
.brand-country { display: block; margin-top: 4px; color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .2em; }
.desktop-nav { display: flex; align-items: center; gap: 24px; }
.desktop-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 120px 0 0;
  padding: 28px 20px;
  background: var(--white);
  border-top: 1px solid var(--line);
  overflow: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
}

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-ice { background: var(--ice); }
.section-navy { background: var(--navy); color: var(--white); }
.section-sand { background: var(--sand); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow.light { color: #9be4ff; }
h1, h2, h3 { margin-top: 0; color: var(--navy); letter-spacing: -.035em; line-height: 1.08; }
h1 { margin-bottom: 24px; font-size: clamp(44px, 6vw, 76px); }
h2 { margin-bottom: 20px; font-size: clamp(34px, 4vw, 52px); }
h3 { margin-bottom: 12px; font-size: 25px; }
.section-navy h2, .section-navy h3 { color: var(--white); }
.lead { max-width: 720px; margin: 0 0 30px; color: var(--muted); font-size: clamp(18px, 2.2vw, 22px); }
.section-navy .lead { color: #c9dce9; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 18px; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(22,141,204,.23);
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(22,141,204,.3); }
.btn-secondary { color: var(--navy); background: var(--white); border-color: var(--line); box-shadow: none; }
.btn-dark { background: var(--navy); box-shadow: none; }
.btn-arrow::after { content: "→"; font-size: 19px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-home {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,28,53,.92) 0%, rgba(7,28,53,.66) 46%, rgba(7,28,53,.16) 78%),
    linear-gradient(0deg, rgba(7,28,53,.55), transparent 55%),
    url("assets/hero.webp") center 45% / cover no-repeat;
  transform: scale(1.01);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 88px;
  color: var(--white);
}
.hero-content h1 { max-width: 820px; color: var(--white); }
.hero-content .lead { max-width: 680px; color: #dfedf5; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
  color: #f3fbff;
  font-size: 14px;
  font-weight: 750;
}
.hero-points li::before { content: "✓"; margin-right: 8px; color: #7bdcff; }

.trust-strip { position: relative; z-index: 2; margin-top: -38px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.trust-item { padding: 26px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 5px; color: var(--navy); font-size: 16px; }
.trust-item span { color: var(--muted); font-size: 13px; }
.trust-icon { color: var(--blue); font-size: 21px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-wide { grid-template-columns: .85fr 1.15fr; }
.media-frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ice);
  box-shadow: var(--shadow);
}
.media-frame img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.media-frame.portrait { min-height: 620px; }
.media-frame.portrait img { object-position: center 20%; }
.floating-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 250px;
  padding: 20px;
  border-radius: 18px;
  color: var(--white);
  background: rgba(7,28,53,.9);
  backdrop-filter: blur(8px);
  font-weight: 750;
}
.check-list { margin: 26px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 12px 0; padding-left: 30px; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(7,28,53,.07);
}
.card-image { height: 310px; overflow: hidden; background: var(--ice); }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.card:hover .card-image img { transform: scale(1.035); }
.card-body { padding: 28px; }
.card-body p { color: var(--muted); }
.card-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #e7f6fc;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link { color: var(--blue); text-decoration: none; font-weight: 850; }
.text-link::after { content: " →"; }
.feature-card { padding: 30px; }
.feature-number { margin-bottom: 24px; color: var(--blue); font-size: 13px; font-weight: 900; }
.feature-card p { margin-bottom: 0; color: var(--muted); }

.models-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.model-card { overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.model-card img { width: 100%; height: 350px; object-fit: cover; }
.model-content { padding: 30px; }
.model-content p { color: var(--muted); }
.price-line { color: var(--navy); font-size: 18px; font-weight: 900; }
.mini-list {
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}
.mini-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 22px;
}
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.trust-box,
.price-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.trust-box h3,
.price-card h2 { margin-bottom: 18px; }
.price-card p {
  color: var(--muted);
  font-size: 18px;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.model-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}
.model-table th,
.model-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.model-table thead th {
  color: var(--white);
  background: var(--navy);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.model-table tbody th {
  color: var(--navy);
  font-size: 18px;
}
.model-table tbody tr:last-child th,
.model-table tbody tr:last-child td { border-bottom: 0; }
.model-table a {
  color: var(--blue);
  text-decoration: none;
}
.model-gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 18px;
}
.model-gallery-main,
.model-gallery-item {
  overflow: hidden;
  border-radius: 20px;
  background: var(--ice);
  box-shadow: 0 10px 35px rgba(7,28,53,.08);
}
.model-gallery-main img,
.model-gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.model-gallery-main {
  min-height: 560px;
}
.model-gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.model-gallery-item {
  aspect-ratio: 1.22;
}

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; }
.step-card { padding: 30px; border-radius: 24px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); }
.step-number { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 22px; border-radius: 50%; color: var(--navy); background: #8cddfa; font-weight: 900; }
.step-card p { margin-bottom: 0; color: #c9dce9; }

.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 270px 270px; gap: 18px; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.gallery-grid img:first-child { grid-row: 1 / 3; }

.page-hero { padding: 104px 0 80px; background: var(--ice); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 64px; align-items: center; }
.page-hero h1 { font-size: clamp(42px, 5.3vw, 68px); }
.page-hero-image { min-height: 500px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.page-hero-image img { width: 100%; height: 500px; object-fit: cover; }
.page-hero-image img[src*="assets/wellness"] { object-fit: contain; background: linear-gradient(145deg, #edf5f8, #ffffff); }
.mini-trust { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 28px 0; color: var(--navy); font-size: 14px; font-weight: 800; }
.mini-trust span::before { content: "✓"; margin-right: 7px; color: var(--blue); }

.quote-panel { padding: 40px; border-radius: var(--radius); color: var(--white); background: var(--navy); }
.quote-panel p { color: #d3e3ed; }
.quote-panel strong { color: var(--white); }

.wellness-hero-art {
  min-height: 500px;
  display: grid;
  place-items: center;
  padding: 48px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 75% 22%, rgba(103,200,239,.34), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(22,141,204,.28), transparent 32%),
    linear-gradient(145deg, var(--navy), #123f66);
  box-shadow: var(--shadow);
}
.wellness-monogram {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  color: #bdeaff;
  font-size: 54px;
  font-weight: 300;
  letter-spacing: .08em;
}
.vision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.vision-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); }
.vision-card p:last-child { margin-bottom: 0; }

.wellness-products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 24px; align-items: stretch; }
.wellness-products-wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.wellness-product-card { display: flex; min-height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: 0 14px 42px rgba(7,28,53,.09); flex-direction: column; }
.wellness-product-card > img,
.product-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; background: #edf5f8; transition: transform .28s ease; }
.product-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; color: inherit; text-decoration: none; background: #edf5f8; flex: 0 0 auto; }
.product-card-media:hover img { transform: scale(1.035); }
.wellness-product-card .model-content { display: flex; padding: 22px; flex: 1; flex-direction: column; }
.wellness-product-card .card-label { margin-bottom: 12px; }
.wellness-product-card h3 { margin-bottom: 10px; font-size: 23px; }
.wellness-product-card .model-content p { margin: 0 0 12px; line-height: 1.55; }
.wellness-product-card .price-line { margin-top: auto; margin-bottom: 18px; font-size: 16px; }
.wellness-product-card .button-row { gap: 16px; align-items: center; margin-top: 0; }
.plain-link { color: inherit; text-decoration: none; }
.plain-link:hover { color: var(--blue); }
.wellness-product-card h4 { margin-top: 24px; font-size: 18px; }
.spec-grid { display: grid; grid-template-columns: minmax(105px, .82fr) 1.18fr; gap: 9px 14px; margin: 24px 0; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: #f7fbfd; font-size: 14px; }
.spec-grid span { color: var(--muted); }
.spec-grid strong { color: var(--navy); font-weight: 850; }
.product-gallery { display: grid; gap: 18px; }
.product-gallery-main { overflow: hidden; border-radius: var(--radius); background: linear-gradient(145deg, #edf5f8, #ffffff); box-shadow: var(--shadow); }
.product-gallery-main img { width: 100%; height: min(62vw, 640px); min-height: 420px; object-fit: contain; display: block; }
.product-thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.product-thumb { aspect-ratio: 1.25; padding: 0; overflow: hidden; border: 2px solid transparent; border-radius: 16px; background: #eef6fa; cursor: pointer; }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.product-thumb.is-active { border-color: var(--blue); }
.is-lightbox-trigger { cursor: zoom-in; }
.lightbox-open { overflow: hidden; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 31, .86);
  backdrop-filter: blur(10px);
}
.image-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  grid-template-rows: auto auto;
  gap: 14px;
  align-items: center;
}
.image-lightbox__image {
  grid-column: 2;
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #edf5f8;
  box-shadow: 0 26px 80px rgba(0,0,0,.32);
}
.image-lightbox__caption {
  grid-column: 2;
  margin: 0;
  color: #f3fbff;
  font-size: 15px;
  text-align: center;
}
.image-lightbox__button {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.image-lightbox__button:hover { transform: translateY(-1px); background: rgba(255,255,255,.2); }
.image-lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  font-size: 30px;
  line-height: 1;
}
.image-lightbox__nav {
  width: 52px;
  height: 52px;
  font-size: 42px;
  line-height: 1;
}
.image-lightbox__prev { grid-column: 1; grid-row: 1; }
.image-lightbox__next { grid-column: 3; grid-row: 1; }

.measure-guide {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}
.measure-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 58px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #e7f4f9, #f9fcfd);
  border: 1px solid var(--line);
}
.pool-shape {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1.8;
  border: 14px solid var(--white);
  border-radius: 34px;
  background: linear-gradient(145deg, #31a8dc, #0a6fa8);
  box-shadow: 0 20px 45px rgba(7,28,53,.15), inset 0 0 0 2px rgba(255,255,255,.22);
}
.measure-line { position: absolute; color: var(--navy); font-size: 13px; font-weight: 900; }
.measure-line::before, .measure-line::after { content: ""; position: absolute; background: var(--blue); }
.measure-length { left: 14%; right: 14%; bottom: 24px; text-align: center; }
.measure-length::before { left: 0; right: 0; top: -10px; height: 2px; }
.measure-width { top: 18%; bottom: 18%; right: 20px; display: grid; align-items: center; writing-mode: vertical-rl; }
.measure-width::before { top: 0; bottom: 0; left: -10px; width: 2px; }
.measure-space { top: 22px; left: 24px; }
.measure-space::after { width: 34px; height: 2px; top: 28px; left: 4px; transform: rotate(38deg); }

.compare-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.compare-row { display: grid; grid-template-columns: 1fr 1fr; }
.compare-row > div { padding: 19px 26px; border-bottom: 1px solid var(--line); }
.compare-row > div + div { border-left: 1px solid var(--line); }
.compare-row:last-child > div { border-bottom: 0; }
.compare-head { color: var(--white); background: var(--navy); font-weight: 900; }
.compare-head > div { border-color: rgba(255,255,255,.15); }
.compare-row:not(.compare-head) > div:last-child { color: var(--navy); background: #f1f9fc; font-weight: 750; }

.selector-panel { padding: 42px; border-radius: var(--radius); background: var(--navy); color: var(--white); }
.selector-panel h2, .selector-panel h3, .selector-panel label { color: var(--white); }
.selector-panel p { color: #c9dce9; }
.selector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.selector-field label { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 850; }
.selector-field input, .selector-field select { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid rgba(255,255,255,.25); border-radius: 12px; background: rgba(255,255,255,.1); color: var(--white); }
.selector-field select option { color: var(--ink); background: var(--white); }

.mobile-cta { display: none; }

.faq { max-width: 900px; margin: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  text-align: left;
  font-weight: 850;
  cursor: pointer;
}
.faq-question::after { content: "+"; color: var(--blue); font-size: 24px; font-weight: 400; }
.faq-question[aria-expanded="true"]::after { content: "−"; }
.faq-answer { display: none; max-width: 760px; padding: 0 0 24px; color: var(--muted); }
.faq-answer.is-open { display: block; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 54px; align-items: start; }
.contact-panel { padding: 36px; border-radius: var(--radius); color: var(--white); background: var(--navy); }
.contact-panel h2, .contact-panel h3 { color: var(--white); }
.contact-panel p { color: #c9dce9; }
.contact-method { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact-method a { color: var(--white); text-decoration: none; font-weight: 800; }
.contact-form { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 7px; color: var(--navy); font-size: 14px; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid #cddce5;
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,141,204,.13); }
.field-hint, .form-note { color: var(--muted); font-size: 13px; }
.form-status { display: none; margin-top: 18px; padding: 16px; border-radius: 12px; background: #eaf8ef; color: #166534; }
.form-status.is-visible { display: block; }

.cta-band { padding: 72px 0; background: linear-gradient(125deg, var(--navy), #0b4775); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-inner h2 { max-width: 680px; margin-bottom: 10px; color: var(--white); }
.cta-inner p { margin: 0; color: #c9dce9; }

.site-footer { padding: 70px 0 24px; color: #c4d5e2; background: #06182c; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; }
.footer-brand { max-width: 330px; }
.site-footer .brand-name { color: var(--white); }
.site-footer h3 { color: var(--white); font-size: 15px; letter-spacing: 0; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 9px 0; }
.footer-links a { color: #c4d5e2; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }

.legal-note { color: var(--muted); font-size: 13px; }
.legal-page { padding: 82px 0 110px; background: var(--ice); }
.legal-content { max-width: 850px; padding: 48px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.legal-content h2 { margin-top: 42px; font-size: 28px; }
.legal-content h2:first-of-type { margin-top: 28px; }
.legal-content h3 { margin-top: 28px; font-size: 20px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: var(--blue); }
.thank-card { max-width: 760px; margin: auto; padding: 64px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); text-align: center; }
.thank-card .eyebrow { justify-content: center; }
.spacer-top { margin-top: 28px; }
.hide-desktop { display: none; }

@media (max-width: 1040px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .split-wide, .page-hero-grid, .contact-layout, .measure-guide { grid-template-columns: 1fr; gap: 44px; }
  .card-grid.four, .steps { grid-template-columns: 1fr 1fr; }
  .models-grid, .card-grid, .wellness-products, .wellness-products-wide { grid-template-columns: 1fr 1fr; }
  .selector-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
  .model-gallery-grid { grid-template-columns: 1fr; }
  .model-gallery-main { min-height: 430px; }
}

@media (max-width: 720px) {
  .topbar-inner { min-height: 34px; justify-content: center; }
  .topbar-points span:not(:first-child), .topbar-phone { display: none; }
  .nav-shell { min-height: 72px; width: min(100% - 28px, var(--max)); }
  .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .brand-name { font-size: 16px; }
  .brand-country { font-size: 9px; }
  .header-actions > .btn { display: none; }
  .mobile-nav { inset: 106px 0 0; }
  .container, .hero-content { width: min(100% - 32px, var(--max)); }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .hero-home { min-height: 700px; }
  .hero-home::before { background: linear-gradient(0deg, rgba(7,28,53,.97) 0%, rgba(7,28,53,.72) 68%, rgba(7,28,53,.38)), url("assets/hero.webp") 58% center / cover no-repeat; }
  .hero-content { padding: 86px 0 76px; }
  .hero-content h1 { font-size: 43px; }
  .hero-points { display: grid; gap: 8px; }
  .trust-strip { margin-top: 0; }
  .trust-grid, .models-grid, .card-grid, .card-grid.two, .card-grid.four, .steps, .form-grid, .footer-grid, .vision-grid, .wellness-products, .wellness-products-wide { grid-template-columns: 1fr; }
  .trust-grid { border-radius: 0; box-shadow: none; border-left: 0; border-right: 0; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .media-frame, .media-frame.portrait { min-height: 430px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 280px 210px 210px; }
  .gallery-grid img:first-child { grid-column: 1 / -1; grid-row: auto; }
  .page-hero { padding: 72px 0 60px; }
  .page-hero-image, .page-hero-image img { min-height: 360px; height: 360px; }
  .product-gallery-main img { min-height: 300px; height: 360px; }
  .image-lightbox { padding: 14px; }
  .image-lightbox__panel {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
  }
  .image-lightbox__image {
    grid-column: 1 / 3;
    max-height: 68vh;
    border-radius: 14px;
  }
  .image-lightbox__caption {
    grid-column: 1 / 3;
    font-size: 13px;
  }
  .image-lightbox__prev,
  .image-lightbox__next {
    grid-row: 3;
    width: 48px;
    height: 48px;
    justify-self: center;
    font-size: 36px;
  }
  .image-lightbox__prev { grid-column: 1; }
  .image-lightbox__next { grid-column: 2; }
  .image-lightbox__close {
    top: -10px;
    right: -4px;
    width: 42px;
    height: 42px;
  }
  .product-thumbs { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .product-thumb { border-radius: 12px; }
  .field.full { grid-column: auto; }
  .spec-grid { grid-template-columns: 1fr; gap: 5px; padding: 16px; }
  .spec-grid strong { margin-bottom: 7px; }
  .contact-form, .contact-panel { padding: 26px; }
  .legal-content, .thank-card { padding: 30px 24px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .selector-grid { grid-template-columns: 1fr; }
  .selector-panel { padding: 28px; }
  .model-gallery-main { min-height: 320px; }
  .model-gallery-thumbs { grid-template-columns: 1fr 1fr; gap: 12px; }
  .model-gallery-grid { gap: 12px; }
  .model-gallery-main, .model-gallery-item { border-radius: 16px; }
  .measure-visual { min-height: 300px; padding: 44px 30px; }
  .compare-row > div { padding: 15px 14px; font-size: 13px; }
  .mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(217,229,236,.9);
    border-radius: 18px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 15px 45px rgba(7,28,53,.22);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a { min-height: 48px; padding: 10px 12px; font-size: 14px; }
  .site-footer { padding-bottom: 105px; }
  .hide-mobile { display: none; }
  .hide-desktop { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
