:root {
  --content-width: 1240px;
  --page-gutter: clamp(18px, 3vw, 40px);
  --header-height: 78px;
  --page-bg: #fbfdff;
  --surface: rgba(255, 255, 255, 0.94);
  --line: #e6edf3;
  --line-strong: #c8d4da;
  --text: #12202c;
  --muted: #44515a;
  --nav-text: #506273;
  --accent: #3499b2;
  --accent-dark: #287f95;
  --accent-soft: #68b4c6;
  --chip-left: #ddf2f7;
  --chip-right: #f4edf9;
  --shadow-soft: 0 24px 64px rgba(35, 64, 87, 0.09);
  --shadow-card: 0 18px 42px rgba(24, 39, 52, 0.08);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: inherit;
  font-size: 13px;
  text-decoration: none;
}

.fh-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: #21a366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(33, 163, 102, 0.28);
}

.fh-whatsapp-float:hover {
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .fh-whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-width: 98px;
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
}

.fh-blog-listing {
  padding: 96px clamp(20px, 5vw, 72px);
}

.blog-page .fh-blog-hero {
  overflow: hidden;
  max-width: 100vw;
  box-sizing: border-box;
}

.blog-page .case-gallery-hero__content {
  min-width: 0;
}

.blog-page .case-gallery-hero__title,
.blog-page .case-gallery-hero__copy {
  max-width: 100%;
  overflow-wrap: break-word;
}

.fh-blog-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fh-blog-card {
  border: 1px solid rgba(18, 32, 44, 0.08);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(18, 32, 44, 0.08);
}

.fh-blog-card__media {
  display: block;
  aspect-ratio: 1.28;
  overflow: hidden;
  background: rgba(52, 153, 178, 0.08);
}

.fh-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.fh-blog-card:hover .fh-blog-card__media img {
  transform: scale(1.04);
}

.fh-blog-card__body {
  padding: 22px;
}

.fh-blog-card__meta,
.fh-blog-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.fh-blog-card__meta span,
.fh-blog-tags span {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  background: rgba(52, 153, 178, 0.12);
  color: #287f95;
  font-size: 12px;
  font-weight: 700;
}

.fh-blog-card__title {
  margin: 16px 0 10px;
  color: #12202c;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
}

.fh-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.fh-blog-card__excerpt,
.fh-blog-detail-body p,
.blog-empty-state p {
  color: #5f6f7c;
  font-size: 15px;
  line-height: 1.8;
}

.fh-blog-card__link {
  margin-top: 18px;
  display: inline-flex;
  color: #287f95;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.blog-empty-state {
  grid-column: 1 / -1;
  padding: 48px;
  border-radius: 8px;
  background: rgba(18, 32, 44, 0.04);
  text-align: center;
}

.blog-empty-state h1,
.blog-empty-state h2 {
  margin: 0 0 10px;
  color: #12202c;
}

.fh-blog-detail {
  padding: 44px clamp(20px, 5vw, 72px) 96px;
}

.fh-blog-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.fh-blog-detail-hero__media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(18, 32, 44, 0.12);
}

.fh-blog-detail-hero__media img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  display: block;
}

.fh-blog-detail-hero__content h1 {
  margin: 12px 0 18px;
  color: #12202c;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}

.fh-blog-detail-body {
  max-width: 860px;
  margin: 56px auto 0;
}

.fh-blog-detail-body p {
  margin: 0 0 22px;
  font-size: 17px;
}

.fh-blog-detail-gallery {
  margin: 36px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fh-blog-detail-gallery figure {
  margin: 0;
}

.fh-blog-detail-gallery img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.fh-blog-detail-gallery figcaption {
  margin-top: 8px;
  color: #7a8994;
  font-size: 13px;
}

@media (max-width: 980px) {
  .fh-blog-grid,
  .fh-blog-detail-hero,
  .fh-blog-detail-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .blog-page {
    overflow-x: hidden;
  }

  .blog-page .fh-blog-hero {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .blog-page .case-gallery-hero__title {
    font-size: 40px;
    line-height: 1.08;
  }

  .fh-blog-listing,
  .fh-blog-detail {
    padding-left: 16px;
    padding-right: 16px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, var(--page-bg) 100%);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", sans-serif;
  overflow-x: clip;
}

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

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--surface);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand__mark {
  width: 158px;
  height: 52px;
  display: block;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  position: relative;
  padding: 6px 0;
  color: var(--nav-text);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 180ms ease;
}

.site-nav__item--has-menu > .site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-nav__item--has-menu > .site-nav__link::before {
  content: "";
  order: 2;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease, margin-top 160ms ease;
}

.site-nav__item--has-menu:hover > .site-nav__link::before,
.site-nav__item--has-menu:focus-within > .site-nav__link::before {
  margin-top: 2px;
  transform: rotate(225deg);
}

.site-nav__submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 180px;
  padding: 8px;
  display: grid;
  gap: 4px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav__item--has-menu:hover .site-nav__submenu,
.site-nav__item--has-menu:focus-within .site-nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-nav__submenu-link {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--nav-text);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav__submenu-link:hover,
.site-nav__submenu-link:focus-visible {
  background: #eef8fb;
  color: var(--accent);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--accent);
}

.site-nav__link--active {
  color: #0891b2;
}

.site-nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: #06b6d4;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    opacity 180ms ease;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  background: rgba(52, 153, 178, 0.08);
  opacity: 1;
}

.site-menu-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #233847;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-menu-toggle__line + .site-menu-toggle__line {
  margin-top: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  padding: 10px 22px;
  color: #ffffff;
  background: var(--accent);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 16px 30px rgba(52, 153, 178, 0.24);
}

.button--ghost {
  padding: 10px 22px;
  color: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  background: transparent;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.page-main {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  min-height: calc(100svh - var(--header-height));
  padding: 20px 0 48px;
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  margin: 0 0 18px;
  color: #006878;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.07em;
}

.hero__title-line {
  display: block;
}

.hero__title-line + .hero__title-line {
  margin-top: 0.2em;
}

.hero__description {
  margin: 34px 0 0;
  max-width: 42ch;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.74;
  text-wrap: pretty;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
}

.support-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border: 1px solid rgba(190, 200, 203, 0.24);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--chip-left) 0%, var(--chip-right) 100%);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  box-shadow: 0 10px 18px rgba(188, 214, 224, 0.12);
}

.support-chip__icon {
  display: inline-grid;
  place-items: center;
  width: 12px;
  height: 12px;
  color: #2c9ab1;
}

.support-chip__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 36px;
}

.button--hero-primary,
.button--hero-secondary {
  min-width: 188px;
  padding: 16px 28px;
}

.button--hero-primary {
  color: #ffffff;
  background: var(--accent);
}

.button--hero-primary:hover,
.button--hero-primary:focus-visible {
  background: var(--accent-dark);
  box-shadow: 0 18px 32px rgba(52, 153, 178, 0.24);
}

.button--hero-secondary {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.button--hero-secondary:hover,
.button--hero-secondary:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hero__media {
  min-width: 0;
  align-self: stretch;
}

.hero-slider {
  height: 100%;
}

.hero-slider__frame {
  position: relative;
  width: 100%;
  min-height: 620px;
  height: 100%;
  overflow: hidden;
  background: #e7eff5;
  border-radius: 0;
  box-shadow: var(--shadow-soft);
}

.hero-slider__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 320ms ease,
    transform 420ms ease;
  transform: scale(1.02);
  animation: hero-pan 18s ease-in-out infinite alternate;
}

.hero-slider__image.is-switching {
  opacity: 0.58;
  transform: scale(1.05);
}

.hero-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 28px rgba(20, 49, 68, 0.1);
}

.hero-badge__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: #ffffff;
  background: #3ea7c0;
}

.hero-badge__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero-badge__copy {
  display: grid;
  gap: 2px;
}

.hero-badge__title {
  color: #1d2730;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-badge__text {
  color: #27343d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.categories {
  position: relative;
  width: 100vw;
  margin: 18px calc(50% - 50vw) 72px;
  padding: 4px 0 50px;
  overflow: hidden;
  background: linear-gradient(180deg, #ebf8f9 0%, #f5ebfb 100%);
}

.categories::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 26%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.categories > * {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 41px;
  padding: 0 48px;
}

.section-heading__copy {
  max-width: 420px;
}

.section-heading__eyebrow {
  margin: 0 0 10px;
  color: #0f8198;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading__title {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.45rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading__rule {
  flex: 0 0 clamp(56px, 8vw, 88px);
  height: 2px;
  margin-bottom: 12px;
  background: linear-gradient(90deg, #4ab0c4 0%, #21798d 100%);
}

.categories__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 48px;
}

.category-tile {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 320px;
  overflow: hidden;
  background: #dce7ee;
  box-shadow: 0 20px 36px rgba(24, 39, 52, 0.12);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.category-tile:hover,
.category-tile:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 28px 44px rgba(24, 39, 52, 0.15);
}

.category-tile__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.categories__grid .category-tile:nth-child(1) .category-tile__image {
  object-position: center center;
}

.categories__grid .category-tile:nth-child(2) .category-tile__image {
  object-position: center center;
}

.categories__grid .category-tile:nth-child(3) .category-tile__image {
  object-position: 55% center;
}

.categories__grid .category-tile:nth-child(4) .category-tile__image {
  object-position: center center;
}

.category-tile:hover .category-tile__image,
.category-tile:focus-visible .category-tile__image {
  transform: scale(1.045);
}

.category-tile__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 20, 28, 0.08) 22%, rgba(12, 20, 28, 0.22) 58%, rgba(12, 20, 28, 0.74) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 40%);
}

.category-tile__content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  color: #ffffff;
}

.category-tile__title {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.category-tile__meta {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.design-hub-preview {
  padding: 72px 0 82px;
  background: #f4f9fc;
}

.design-hub-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 0 48px;
}

.design-hub-card {
  min-height: 360px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 22px 42px rgba(24, 39, 52, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.design-hub-card:hover,
.design-hub-card:focus-visible {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 30px 48px rgba(24, 39, 52, 0.16);
}

.design-hub-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.design-hub-card:hover .design-hub-card__image,
.design-hub-card:focus-visible .design-hub-card__image {
  transform: scale(1.04);
}

.design-hub-card__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 20, 28, 0.02) 0%, rgba(12, 20, 28, 0.2) 46%, rgba(12, 20, 28, 0.84) 100%),
    linear-gradient(90deg, rgba(12, 20, 28, 0.58) 0%, rgba(12, 20, 28, 0.04) 72%);
}

.design-hub-card__content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.design-hub-card__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.design-hub-card__title {
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.design-hub-card__text {
  max-width: 360px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.products {
  padding: 76px 0 88px;
}

.products__layout {
  display: grid;
  grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
}

.products__sidebar {
  display: grid;
  gap: 24px;
}

.products__title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.products__title span {
  display: block;
}

.products-nav {
  border: 1px solid #cfe0e6;
  background: #ffffff;
}

.products-nav__group,
.products-nav__row {
  border-bottom: 1px solid #dbe7eb;
}

.products-nav__group:last-child,
.products-nav__row:last-child {
  border-bottom: 0;
}

.products-nav__summary,
.products-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 18px;
  color: var(--text);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  background: #ffffff;
  border: 0;
  cursor: pointer;
}

.products-nav__summary {
  list-style: none;
}

.products-nav__summary::-webkit-details-marker {
  display: none;
}

.products-nav__group[open] > .products-nav__summary {
  color: #0b8198;
}

.products-nav__chevron {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: currentColor;
  transition: transform 180ms ease;
}

.products-nav__chevron svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.products-nav__group[open] .products-nav__chevron {
  transform: rotate(180deg);
}

.products-nav__submenu {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
}

.products-nav__option {
  display: block;
  width: 100%;
  padding: 12px 14px;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  background: #f7fbfd;
  border: 1px solid #dbeaf0;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.products-nav__option:hover,
.products-nav__option:focus-visible {
  color: var(--text);
  border-color: #9bcbd7;
  transform: translateX(2px);
}

.products-nav__option.is-active {
  color: #0a7084;
  background: linear-gradient(90deg, rgba(52, 153, 178, 0.14) 0%, rgba(245, 235, 251, 0.72) 100%);
  border-color: #95cad5;
}

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

.product-card {
  appearance: none;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.product-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(180deg, #fcfeff 0%, #f1f7fa 100%);
  border: 1px solid #e1edf2;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card__media--cover .product-card__image {
  padding: 0;
  object-fit: cover;
}

.product-card__image {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.product-card__title {
  margin: 0;
  color: #22343f;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.product-card__description {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.48;
  min-height: 2.96em;
  max-height: 2.96em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.product-card__read-more,
.related-product-card__read-more {
  margin-top: auto;
  color: #0a7d93;
  font-size: 13px;
  font-weight: 600;
}

.product-card:hover .product-card__media,
.product-card:focus-visible .product-card__media {
  border-color: #9ecfdb;
  box-shadow: 0 18px 36px rgba(52, 153, 178, 0.12);
  transform: translateY(-4px);
}

.product-card:focus-visible {
  outline: none;
}

.product-card.is-selected .product-card__media {
  border-color: #8cc4d1;
  box-shadow: 0 18px 36px rgba(52, 153, 178, 0.14);
  transform: translateY(-4px);
}

.before-after-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.before-after-main {
  padding-top: 0;
}

.before-after-showcase {
  padding: 76px 0 88px;
}

.before-after-showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: 42px;
}

.before-after-showcase .section-heading__title,
.before-after-showcase__title,
.before-after-current__title {
  font-weight: 400;
}

.before-after-showcase .section-heading__title {
  font-size: clamp(1.75rem, 2.3vw, 2.2rem);
  letter-spacing: -0.04em;
}

.before-after-showcase__intro {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  text-wrap: pretty;
}

.before-after-showcase__layout {
  display: grid;
  grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
}

.before-after-showcase__title {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.before-after-showcase__title span {
  display: inline;
}

.before-after-showcase__title span + span {
  margin-left: 0.22em;
}

.before-after-space-nav {
  background: #ffffff;
}

.before-after-space__item {
  color: var(--text);
  text-align: left;
}

.before-after-space__item:hover,
.before-after-space__item:focus-visible {
  color: #0a7084;
  background: #f7fbfd;
}

.before-after-space__item.is-active {
  color: #0a7084;
  background: linear-gradient(90deg, rgba(52, 153, 178, 0.14) 0%, rgba(245, 235, 251, 0.72) 100%);
}

.before-after-space__item.is-active .products-nav__chevron {
  color: #0a7084;
}

.before-after-showcase__content {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.before-after-current {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dbe7eb;
}

.before-after-current__space {
  margin: 0 0 8px;
  color: #0f8198;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.before-after-current__title {
  margin: 0;
  color: #12202c;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.before-after-current__description {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.before-after-collection-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.before-after-collection-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid #dbe7eb;
  background: #ffffff;
  color: #22343f;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.before-after-collection-button:hover,
.before-after-collection-button:focus-visible {
  color: #0a7084;
  border-color: #9bcbd7;
  transform: translateY(-1px);
}

.before-after-collection-button:focus-visible {
  outline: 2px solid #3ea7c0;
  outline-offset: 3px;
}

.before-after-collection-button.is-active {
  color: #0a7084;
  border-color: #95cad5;
  background: linear-gradient(90deg, rgba(52, 153, 178, 0.12) 0%, rgba(245, 235, 251, 0.62) 100%);
}

.before-after-viewer {
  --split-position: 50%;
  position: relative;
  min-height: 460px;
  aspect-ratio: var(--viewer-aspect-ratio, 16 / 9);
  overflow: hidden;
  background: #eef5f8;
  border: 1px solid #dbe7eb;
  border-radius: 0;
  isolation: isolate;
}

.before-after-viewer__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #eef5f8;
  user-select: none;
  pointer-events: none;
}

.before-after-viewer__before-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split-position)) 0 0);
}

.before-after-viewer__before-layer .before-after-viewer__image {
  width: 100%;
  max-width: 100%;
}

.before-after-viewer__labels {
  position: absolute;
  inset: 18px 18px auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.before-after-viewer__labels span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  color: #0a7084;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(207, 224, 230, 0.84);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.before-after-viewer__range {
  position: absolute;
  inset: 0;
  z-index: 8;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.before-after-viewer__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split-position);
  z-index: 6;
  width: 2px;
  background: #ffffff;
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after-viewer__handle {
  position: absolute;
  top: 50%;
  left: var(--split-position);
  z-index: 7;
  display: inline-grid;
  grid-template-columns: repeat(2, 6px);
  place-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  color: #0a7084;
  background: #ffffff;
  border: 1px solid #cfe0e6;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.before-after-viewer__handle span {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.before-after-viewer__handle span:first-child {
  border-right: 7px solid currentColor;
}

.before-after-viewer__handle span:last-child {
  border-left: 7px solid currentColor;
}

.before-after-viewer__range:focus-visible ~ .before-after-viewer__handle {
  outline: 2px solid #3ea7c0;
  outline-offset: 3px;
}

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

.before-after-gallery__empty {
  grid-column: 1 / -1;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  background: #ffffff;
  border: 1px solid #dbe7eb;
}

.before-after-gallery__item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 10px;
  color: inherit;
  text-align: left;
  background: #ffffff;
  border: 1px solid #dbe7eb;
  border-radius: 0;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.before-after-gallery__item[hidden] {
  display: none;
}

.before-after-gallery__item:hover,
.before-after-gallery__item:focus-visible {
  border-color: #9bcbd7;
  transform: translateY(-2px);
}

.before-after-gallery__item:focus-visible {
  outline: 2px solid #3ea7c0;
  outline-offset: 3px;
}

.before-after-gallery__item.is-active {
  color: #0a7084;
  background: linear-gradient(90deg, rgba(52, 153, 178, 0.12) 0%, rgba(245, 235, 251, 0.62) 100%);
  border-color: #95cad5;
}

.before-after-gallery__thumb {
  width: 96px;
  height: 78px;
  object-fit: cover;
  background: #eef5f8;
  border: 1px solid rgba(207, 224, 230, 0.7);
}

.before-after-gallery__copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.before-after-gallery__title {
  color: #22343f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.before-after-gallery__item.is-active .before-after-gallery__title {
  color: #0a7084;
}

.before-after-gallery__text {
  display: -webkit-box;
  max-height: 4.35em;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.design-3d-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.design-3d-main {
  padding-top: 0;
}

.design-3d-showcase {
  padding: 76px 0 88px;
}

.design-3d-showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: 42px;
}

.design-3d-showcase .section-heading__title,
.design-3d-showcase__title,
.design-3d-current__title {
  font-weight: 400;
}

.design-3d-showcase .section-heading__title {
  font-size: clamp(1.75rem, 2.3vw, 2.2rem);
  letter-spacing: -0.04em;
}

.design-3d-showcase__intro {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  text-wrap: pretty;
}

.design-3d-showcase__layout {
  display: grid;
  grid-template-columns: minmax(250px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
}

.design-3d-showcase__title {
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.design-3d-showcase__title span {
  display: inline;
}

.design-3d-showcase__title span + span {
  margin-left: 0.22em;
}

.design-3d-nav {
  background: #ffffff;
}

.design-3d-nav__item {
  color: var(--text);
  text-align: left;
}

.design-3d-nav__item:hover,
.design-3d-nav__item:focus-visible {
  color: #0a7084;
  background: #f7fbfd;
}

.design-3d-nav__item.is-active {
  color: #0a7084;
  background: linear-gradient(90deg, rgba(52, 153, 178, 0.14) 0%, rgba(245, 235, 251, 0.72) 100%);
}

.design-3d-nav__item.is-active .products-nav__chevron {
  color: #0a7084;
}

.design-3d-showcase__content {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.design-3d-current {
  display: grid;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dbe7eb;
}

.design-3d-current__space {
  margin: 0;
  color: #0f8198;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.design-3d-current__title {
  margin: 0;
  color: #12202c;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.design-3d-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 460px;
  background: #eef5f8;
  border: 1px solid #dbe7eb;
}

.design-3d-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.design-3d-video__caption {
  max-width: 68ch;
  margin: -2px 0 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.design-3d-gallery-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.design-3d-gallery-head__title {
  margin: 0;
  color: #0f8198;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.design-3d-gallery-head__rule {
  flex: 1 1 auto;
  height: 1px;
  background: #cfe0e6;
}

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

.design-3d-card {
  min-width: 0;
  display: grid;
  align-content: start;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dbe7eb;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.design-3d-card[hidden] {
  display: none;
}

.design-3d-card:hover,
.design-3d-card:focus-visible,
.design-3d-card.is-active {
  border-color: #9bcbd7;
  box-shadow: 0 18px 36px rgba(52, 153, 178, 0.12);
  transform: translateY(-4px);
}

.design-3d-card:focus-visible {
  outline: 3px solid rgba(52, 153, 178, 0.28);
  outline-offset: 3px;
}

.design-3d-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef5f8;
}

.design-3d-card__body {
  display: grid;
  gap: 5px;
  padding: 14px 16px 16px;
}

.design-3d-card__title {
  margin: 0;
  color: #22343f;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.design-3d-card__meta {
  margin: 0;
  color: #61717c;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.design-3d-secondary {
  display: grid;
  gap: 18px;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid #dbe7eb;
}

.design-3d-current--secondary {
  padding-bottom: 10px;
}

.contact-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-main {
  width: 100%;
  margin: 0;
}

.contact-section--page {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.contact-section--simple {
  padding: clamp(56px, 8vw, 88px) 0 92px;
}

.contact-page-panel {
  display: grid;
  gap: clamp(32px, 4vw, 42px);
}

.contact-page-panel__header {
  gap: 14px;
}

.contact-page-panel__title {
  max-width: 100%;
}

.contact-page-panel__copy {
  max-width: 58ch;
}

.contact-section__layout--page {
  align-items: start;
}

.contact-section__content--page {
  gap: 28px;
  padding-bottom: 0;
}

.contact-section--page .contact-section__description {
  max-width: 30ch;
}

.contact-section--page .contact-details {
  padding-top: 0;
}

.contact-section--page .contact-section__actions {
  padding-top: 8px;
}

.inquiry-card--page {
  width: 100%;
  margin: 0;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
  border: 1px solid rgba(187, 208, 218, 0.55);
  border-radius: 28px;
  box-shadow: 0 22px 48px rgba(24, 43, 58, 0.08);
}

.inquiry-card--page .inquiry-card__title {
  text-align: center;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.contact-page .site-footer__inner {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.contact-page__active-action {
  border-color: var(--accent);
  color: var(--accent-dark);
}

@media (max-width: 920px) {
  .contact-section--page {
    width: min(var(--content-width), calc(100% - 28px));
  }

  .contact-section--simple {
    padding: 52px 0 72px;
  }
}

@media (max-width: 640px) {
  .contact-section--simple {
    padding: 40px 0 56px;
  }

  .contact-page-panel {
    gap: 24px;
  }

  .contact-page-panel__title,
  .contact-page-panel__copy,
  .contact-section--page .contact-section__description {
    max-width: 100%;
  }

  .inquiry-card--page {
    border-radius: 22px;
  }
}

.certifications {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 20px 0 84px;
  background: linear-gradient(180deg, #f6fbff 0%, #fbfdff 100%);
}

.certifications__inner {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.certifications__header {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.certifications__eyebrow {
  margin: 0;
  color: #0f8198;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.certifications__title {
  margin: 0;
  color: #111d26;
  font-size: clamp(2.15rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.certifications__copy {
  max-width: 66ch;
  margin: 0;
  color: #53616b;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.68;
  text-wrap: pretty;
}

.certifications__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 380px));
  justify-content: center;
  gap: 22px 28px;
}

.certifications__card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 254, 0.95) 100%);
  border: 1px solid rgba(187, 208, 218, 0.4);
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(24, 43, 58, 0.06);
  animation: certifications-card-in 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.certifications__card:nth-child(2) {
  animation-duration: 920ms;
}

.certifications__card:hover,
.certifications__card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(74, 176, 196, 0.38);
  box-shadow: 0 20px 34px rgba(24, 43, 58, 0.1);
}

.certifications__media {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 248px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.certifications__image {
  width: 100%;
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
  object-position: center;
}

.certifications__meta {
  margin: 0;
  color: #35556c;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.blogs-section {
  padding: 28px 0 72px;
}

.blogs-section__header {
  display: flex;
  justify-content: center;
  margin-bottom: 52px;
}

.blogs-section__title {
  margin: 0;
  color: #111d26;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.06em;
  text-align: center;
}

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

.blog-card {
  display: grid;
  gap: 24px;
}

.blog-card__media {
  overflow: hidden;
  aspect-ratio: 1.78 / 1;
  background: #edf5f8;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.blog-card:hover .blog-card__image,
.blog-card:focus-visible .blog-card__image {
  transform: scale(1.04);
}

.blog-card__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.blog-card__meta {
  display: grid;
  gap: 4px;
}

.blog-card__title {
  margin: 0;
  color: #111d26;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.blog-card__location {
  margin: 0;
  color: #3e484b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42;
}

.blog-card__link {
  align-self: flex-start;
  padding-bottom: 5px;
  color: #006878;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid #006878;
}

.stats-band {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 84px;
  padding: 64px 48px;
  background: linear-gradient(90deg, #e7faff 0%, #f4ecfb 100%);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  width: min(1440px, 100%);
  margin: 0 auto;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat-card__value {
  margin: 0;
  color: #63b7ca;
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.stat-card__label {
  margin: 0;
  color: #3e484b;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-section {
  padding: 88px 0 92px;
}

.contact-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 544px);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.contact-section__content {
  display: grid;
  gap: 32px;
  padding-bottom: 48px;
}

.contact-section__header {
  display: grid;
  gap: 26px;
}

.contact-section__title {
  margin: 0;
  font-size: clamp(1.95rem, 3.9vw, 3.2rem);
  font-weight: 450;
  line-height: 1;
  letter-spacing: -0.06em;
}

.contact-section__title span {
  display: block;
}

.contact-section__title-accent {
  color: #3499b2;
}

.contact-section__description {
  max-width: 448px;
  margin: 0;
  color: #3e484b;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.56;
}

.contact-details {
  display: grid;
  gap: 24px;
  padding-top: 16px;
}

.contact-details__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-details__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  color: #ffffff;
  background: #3499b2;
}

.contact-details__icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact-details__copy {
  display: grid;
}

.contact-details__label {
  color: #3e484b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-details__value {
  color: #111d26;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.contact-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 16px 32px;
  color: #111d26;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  background: linear-gradient(90deg, #e7faff 0%, #f4edfc 100%);
}

.contact-action__icon {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #0f8198;
}

.contact-action__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.inquiry-card {
  display: grid;
  gap: 32px;
  padding: 40px;
  background: #ecf5ff;
}

.inquiry-card__title {
  margin: 0;
  color: #111d26;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.inquiry-form {
  display: grid;
  gap: 24px;
}

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

.inquiry-field {
  display: grid;
  gap: 8px;
}

.inquiry-field__label {
  color: #3e484b;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.inquiry-field__input {
  width: 100%;
  min-height: 46px;
  padding: 13px;
  color: #111d26;
  font: inherit;
  font-size: 14px;
  background: #ffffff;
  border: 1px solid rgba(190, 200, 203, 0.3);
  outline: none;
}

.inquiry-field__input::placeholder {
  color: #6b7280;
}

.inquiry-field__input:focus {
  border-color: #9bcbd7;
  box-shadow: 0 0 0 3px rgba(52, 153, 178, 0.12);
}

.inquiry-field__input--select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 17px) calc(50% - 2px),
    calc(100% - 11px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.inquiry-field__input--textarea {
  min-height: 106px;
  resize: vertical;
}

.inquiry-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 16px 24px;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #3499b2;
  border: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.inquiry-form__submit:hover,
.inquiry-form__submit:focus-visible {
  transform: translateY(-1px);
  background: #287f95;
  box-shadow: 0 16px 30px rgba(52, 153, 178, 0.24);
}

.inquiry-form__message {
  padding: 14px 16px;
  color: #1d6b4f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background: #e9f8f1;
  border: 1px solid rgba(29, 107, 79, 0.22);
  border-radius: 8px;
}

.inquiry-form__message[hidden] {
  display: none;
}

.site-footer {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background:
    linear-gradient(180deg, rgba(236, 248, 251, 0.72) 0%, rgba(248, 252, 255, 0.96) 100%),
    #f8fbfd;
  border-top: 1px solid #dbe7eb;
}

.site-footer__inner {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(54px, 6vw, 82px) 0 28px;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(250px, 1.12fr) repeat(2, minmax(150px, 0.72fr)) minmax(250px, 0.95fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 22px;
  max-width: 330px;
}

.site-footer__logo-link {
  display: inline-flex;
  width: 184px;
}

.site-footer__logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-footer__title {
  margin: 0;
  color: #12202c;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.site-footer__address {
  display: grid;
  gap: 12px;
  margin: 0;
  color: #44515a;
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

.site-footer__address a {
  color: #29424f;
  transition: color 160ms ease;
}

.site-footer__address a:hover,
.site-footer__address a:focus-visible {
  color: #0a7084;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.site-footer__social[hidden] {
  display: none;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(0, 119, 148, 0.18);
  border-radius: 6px;
  color: #007794;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  border-color: rgba(0, 119, 148, 0.42);
  background: rgba(0, 119, 148, 0.08);
  color: #005c72;
}

.site-footer__column {
  display: grid;
  gap: 18px;
}

.site-footer__heading {
  margin: 0;
  color: #0f8198;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-footer__links {
  display: grid;
  gap: 13px;
}

.site-footer__links a {
  color: #44515a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #0a7084;
  transform: translateX(3px);
}

.site-footer__inquiry {
  display: grid;
  gap: 18px;
  align-content: start;
}

.site-footer__copy {
  margin: 0;
  color: #44515a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
}

.site-footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 48px;
  padding: 14px 24px;
  color: #ffffff;
  background: #3499b2;
  border: 1px solid #3499b2;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible {
  transform: translateY(-2px);
  background: #287f95;
  border-color: #287f95;
  box-shadow: 0 16px 30px rgba(52, 153, 178, 0.22);
}

.site-footer__cta svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(42px, 5vw, 64px);
  padding-top: 22px;
  border-top: 1px solid #dbe7eb;
}

.site-footer__caption {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
}

.site-footer__legal a {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: #0a7084;
}

.about-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-main {
  width: 100%;
  padding-top: 0;
}

.about-main > .contact-section {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.about-story {
  margin: 0 calc(50% - 50vw);
  padding: 0 0 58px;
  background: #f1f8ff;
}

.about-story__shell {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(24px, 3.8vw, 44px) clamp(28px, 4.5vw, 56px);
}

.about-story__media {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: end;
  gap: 18px;
  overflow: hidden;
}

.about-story__image {
  --story-float-start: 0px;
  --story-float-end: 0px;
  margin: 0;
  overflow: hidden;
  background: #e8f3f7;
  box-shadow: 0 22px 44px rgba(54, 92, 112, 0.08);
  animation: about-story-float 7.6s ease-in-out infinite;
}

.about-story__image--accent {
  aspect-ratio: 0.86 / 1.18;
  --story-float-start: 38px;
  --story-float-end: 14px;
  animation-duration: 8.4s;
}

.about-story__image--main {
  aspect-ratio: 0.84 / 1.16;
  --story-float-start: 0px;
  --story-float-end: 18px;
  animation-duration: 9.2s;
  animation-delay: -1.4s;
}

.about-story__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 420ms ease,
    transform 620ms ease,
    filter 420ms ease;
}

.about-story__photo.is-switching {
  opacity: 0.34;
  transform: scale(1.05);
  filter: saturate(0.92);
}

.about-story__content {
  display: grid;
  gap: 20px;
  align-content: center;
}

.about-story__heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.about-story__bar {
  width: 4px;
  height: 42px;
  margin-top: 8px;
  flex: 0 0 4px;
  background: linear-gradient(180deg, #53b8d0 0%, #87d9e5 100%);
}

.about-story__title {
  margin: 0;
  color: #111d26;
  font-size: clamp(2.5rem, 4.3vw, 3.75rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.about-story__copy-group {
  display: grid;
  gap: 12px;
  max-width: 68ch;
}

.about-story__copy-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
}

.about-story__copy-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  color: #3499b2;
  background: rgba(221, 242, 247, 0.82);
  border: 1px solid rgba(76, 174, 199, 0.22);
  border-radius: 8px;
}

.about-story__copy-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.about-story__copy {
  margin: 0;
  color: #43515b;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.62;
  text-wrap: pretty;
}

.about-story__points {
  display: grid;
  gap: 18px;
  padding-top: 4px;
}

.about-story__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-story__point-icon {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 3px;
  color: #44a8c1;
}

.about-story__point-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.about-story__point-copy {
  display: grid;
  gap: 4px;
}

.about-story__point-title {
  color: #17232d;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.about-story__point-text {
  color: #58656f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.about-story__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.about-story__cta {
  min-width: 198px;
  padding-inline: 28px;
}

.about-manufacturing {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 92px 0 96px;
  overflow: hidden;
  background: #18232c;
}

.about-manufacturing__backdrop,
.about-manufacturing__overlay {
  position: absolute;
  inset: 0;
}

.about-manufacturing__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-manufacturing__overlay {
  background:
    linear-gradient(180deg, rgba(17, 27, 34, 0.7) 0%, rgba(17, 27, 34, 0.74) 100%),
    linear-gradient(90deg, rgba(12, 19, 24, 0.4) 0%, rgba(12, 19, 24, 0.1) 100%);
}

.about-manufacturing__content {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  gap: 42px;
}

.about-manufacturing__header {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.about-manufacturing__title {
  margin: 0;
  max-width: none;
  color: #f7fbfd;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.about-manufacturing__title span {
  display: inline;
}

.about-manufacturing__title-accent {
  color: #4ab0c8;
}

.about-manufacturing__copy {
  max-width: 38ch;
  margin: 0;
  color: rgba(239, 246, 250, 0.92);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-wrap: pretty;
}

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

.about-manufacturing__card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 208px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 20px 40px rgba(7, 14, 19, 0.14);
}

.about-manufacturing__card-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #6dc4d7;
  background: #e8f7fb;
}

.about-manufacturing__card-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.about-manufacturing__card-title {
  margin: 0;
  color: #1b2730;
  font-size: 1.34rem;
  font-weight: 550;
  line-height: 1.25;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-manufacturing__card-text {
  margin: 0;
  color: #5d6a73;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.about-partners {
  margin: 0 calc(50% - 50vw);
  padding: 64px 0 74px;
  background:
    linear-gradient(180deg, #edf6fb 0%, #ffffff 52%, #f8fbfe 100%);
}

.about-clients {
  margin: 0 calc(50% - 50vw);
  padding: 44px 0 72px;
  background:
    linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}

.about-partners__inner,
.about-clients__inner {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.about-partners__header,
.about-clients__header {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.about-clients__toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.about-clients__toolbar .about-clients__header {
  justify-items: start;
  text-align: left;
}

.about-partners__eyebrow,
.about-clients__eyebrow {
  margin: 0;
  color: #0f8198;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-partners__title,
.about-clients__title {
  margin: 0;
  color: #16212b;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-partners__copy,
.about-clients__copy {
  max-width: 60ch;
  margin: 0;
  color: #5b6771;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  text-wrap: pretty;
}

.about-partners__intro {
  max-width: 104ch;
  margin: 16px auto 0;
  color: #26333d;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  text-wrap: pretty;
}

.about-partners__intro strong {
  color: #111d26;
  font-weight: 700;
}

.about-partners__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 52px;
}

.about-partners__list {
  width: min(1120px, 100%);
  margin: 8px auto 0;
  display: grid;
  gap: 18px;
}

.about-partners__partner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(197, 219, 228, 0.72);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(35, 64, 87, 0.08);
}

.about-partners__partner-copy {
  display: grid;
  gap: 10px;
}

.about-partners__number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 34px;
  color: #0f8198;
  background: #e7f7fb;
  border: 1px solid rgba(78, 177, 202, 0.26);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-partners__partner-title {
  margin: 0;
  color: #121e28;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.about-partners__partner-text {
  max-width: 64ch;
  margin: 0;
  color: #4d5b65;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-wrap: pretty;
}

.about-partners__logo {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(218, 231, 237, 0.9);
  border-radius: 8px;
}

.about-clients__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-clients__control {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #2f8ea5;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(117, 176, 193, 0.38);
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.about-clients__control:hover,
.about-clients__control:focus-visible {
  transform: translateY(-1px);
  color: #ffffff;
  background: #3a9eb6;
  border-color: #3a9eb6;
  box-shadow: 0 12px 24px rgba(58, 158, 182, 0.2);
}

.about-clients__control svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.about-clients__control:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.about-clients__carousel {
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.about-clients__track {
  width: max-content;
  display: flex;
  gap: 24px;
  will-change: transform;
}

.about-clients__card {
  display: grid;
  gap: 0;
  align-content: start;
  justify-items: center;
  flex: 0 0 clamp(260px, 25vw, 360px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  animation: about-clients-card-in 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.about-clients__card:hover,
.about-clients__card:focus-within {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: none;
}

.about-partners__image {
  width: 100%;
  height: 100%;
  min-height: 190px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.about-partners__logo:hover .about-partners__image,
.about-partners__logo:focus-within .about-partners__image {
  transform: translateY(-2px);
  opacity: 1;
}

.about-clients__media {
  width: 100%;
  min-height: auto;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 12px 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-clients__image {
  width: 100%;
  max-width: 214px;
  max-height: 116px;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.98);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.about-clients__card:hover .about-clients__image,
.about-clients__card:focus-within .about-clients__image {
  transform: translateY(-2px);
}

.about-clients__meta {
  margin: 0;
  color: #35556c;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.about-vision {
  margin: 0 calc(50% - 50vw);
  padding: 72px 0 92px;
  background: #f6f9ff;
}

.about-vision__grid {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.about-vision__panel {
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr);
  gap: 32px;
  padding: 54px 40px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(144, 187, 204, 0.18);
}

.about-vision__bar {
  width: 4px;
  background: linear-gradient(180deg, #58bdd4 0%, #86d4e2 100%);
}

.about-vision__body {
  display: grid;
  gap: 22px;
}

.about-vision__eyebrow {
  margin: 0;
  color: #8dcbdc;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-vision__title {
  margin: 0;
  color: #16212b;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-vision__copy {
  max-width: 50ch;
  margin: 0;
  color: #56636d;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.62;
  text-wrap: pretty;
}

.faq-page {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.faq-main {
  width: 100%;
  padding-top: 0;
}

.faq-main > .contact-section {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.faq-hero {
  position: relative;
  margin: 0 calc(50% - 50vw);
  min-height: calc(72svh - var(--header-height));
  padding: 104px 0 80px;
  overflow: hidden;
  background: #11202a;
}

.faq-hero__backdrop,
.faq-hero__overlay {
  position: absolute;
  inset: 0;
}

.faq-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-pan 18s ease-in-out infinite alternate;
}

.faq-hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 23, 31, 0.88) 0%, rgba(10, 23, 31, 0.7) 42%, rgba(10, 23, 31, 0.28) 100%),
    linear-gradient(180deg, rgba(9, 22, 31, 0.3) 0%, rgba(9, 22, 31, 0.72) 100%);
}

.faq-hero__inner {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  gap: 20px;
  max-width: 640px;
}

.faq-hero__eyebrow {
  margin: 0;
  color: #9fe3ef;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.faq-hero__title {
  margin: 0;
  color: #f8fdff;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  font-weight: 550;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.faq-hero__copy {
  margin: 0;
  max-width: 34ch;
  color: rgba(238, 247, 250, 0.88);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  text-wrap: pretty;
}

.faq-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 6px;
}

.faq-hero__ghost {
  color: #eefcff;
  border-color: rgba(173, 228, 238, 0.7);
}

.faq-hero__ghost:hover,
.faq-hero__ghost:focus-visible {
  color: #ffffff;
  border-color: #ffffff;
}

.faq-overview {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 4vw, 74px);
  padding: 64px 0 48px;
}

.faq-overview__intro {
  display: grid;
  align-content: start;
  gap: 18px;
}

.faq-overview__eyebrow {
  margin: 0;
  color: #0f8aa1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.faq-overview__title {
  margin: 0;
  max-width: 14ch;
  color: #15212a;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: 550;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.faq-overview__copy {
  max-width: 52ch;
  margin: 0;
  color: #56626d;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

.faq-overview__list {
  display: grid;
  border-top: 1px solid rgba(129, 165, 182, 0.24);
}

.faq-overview__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(129, 165, 182, 0.24);
}

.faq-overview__number {
  color: #9cb1bf;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}

.faq-overview__content {
  display: grid;
  gap: 6px;
}

.faq-overview__item-title {
  margin: 0;
  color: #16212a;
  font-size: 1.14rem;
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.faq-overview__item-text {
  margin: 0;
  color: #5a6771;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.62;
}

.faq-groups {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  padding: 18px 0 72px;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(250px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(26px, 4vw, 72px);
  padding: 42px 0;
  border-top: 1px solid rgba(129, 165, 182, 0.24);
}

.faq-group:last-child {
  border-bottom: 1px solid rgba(129, 165, 182, 0.24);
}

.faq-group__intro {
  display: grid;
  align-content: start;
  gap: 14px;
}

.faq-group__eyebrow {
  margin: 0;
  color: #0f8aa1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.faq-group__title {
  margin: 0;
  color: #132029;
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 550;
  line-height: 1;
  letter-spacing: -0.055em;
}

.faq-group__copy {
  max-width: 34ch;
  margin: 0;
  color: #5a6670;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  text-wrap: pretty;
}

.faq-group__items {
  display: grid;
}

.faq-item {
  border-bottom: 1px solid rgba(129, 165, 182, 0.24);
}

.faq-item:first-child {
  border-top: 1px solid rgba(129, 165, 182, 0.24);
}

.faq-item__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  list-style: none;
  cursor: pointer;
  color: #17242d;
  font-size: 1.13rem;
  font-weight: 550;
  line-height: 1.45;
  letter-spacing: -0.025em;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

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

.faq-item:hover .faq-item__question,
.faq-item:focus-within .faq-item__question {
  color: #0d8ca4;
  transform: translateX(4px);
}

.faq-item[open] .faq-item__question {
  color: #0d8ca4;
}

.faq-item__toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  color: currentColor;
}

.faq-item__toggle::before,
.faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.faq-item__toggle::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] .faq-item__toggle::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.faq-item__answer {
  display: grid;
  gap: 14px;
  max-width: 62ch;
  padding: 0 0 24px;
}

.faq-item__answer p,
.faq-item__list {
  margin: 0;
  color: #58656e;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

.faq-item__list {
  padding-left: 20px;
}

.faq-item__list li + li {
  margin-top: 8px;
}

.faq-certifications {
  margin: 0 calc(50% - 50vw);
  padding: 72px 0 84px;
  background:
    linear-gradient(180deg, #f3faff 0%, #eaf6fc 100%);
}

.faq-certifications__shell {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 4vw, 70px);
  align-items: start;
}

.faq-certifications__intro {
  display: grid;
  gap: 16px;
}

.faq-certifications__eyebrow {
  margin: 0;
  color: #0f8aa1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.faq-certifications__title {
  margin: 0;
  max-width: 15ch;
  color: #12202a;
  font-size: clamp(2.15rem, 3.4vw, 3.4rem);
  font-weight: 550;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.faq-certifications__copy {
  max-width: 48ch;
  margin: 0;
  color: #56636d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
  text-wrap: pretty;
}

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

.faq-certifications__item {
  display: grid;
  gap: 12px;
  padding: 22px 0 0;
  border-top: 3px solid #78cadc;
}

.faq-certifications__label {
  color: #7b93a1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-certifications__item-title {
  margin: 0;
  color: #15222c;
  font-size: 1.44rem;
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.faq-certifications__item-text {
  margin: 0;
  color: #58656f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.68;
}

.faq-simple-page {
  width: 100%;
  padding-top: 0;
}

.faq-simple {
  width: min(1220px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 48px 0 88px;
}

.faq-simple__intro {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 34px;
  text-align: center;
}

.faq-simple__eyebrow {
  margin: 0;
  color: #0f8aa1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.faq-simple__title {
  margin: 0;
  color: #15212b;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.faq-simple__copy {
  max-width: 52ch;
  margin: 0;
  color: #5d6872;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
}

.faq-simple__list {
  display: grid;
  gap: 18px;
}

.faq-simple__empty {
  padding: 38px 32px;
  border: 1px dashed #c8d4da;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.faq-simple__empty-title {
  margin: 0;
  color: #15212b;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.faq-simple__empty-copy {
  max-width: 44ch;
  margin: 12px auto 0;
  color: #5d6872;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.faq-simple__item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbe6ec;
  border-radius: 18px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.faq-simple__item:hover,
.faq-simple__item:focus-within,
.faq-simple__item[open] {
  border-color: rgba(52, 153, 178, 0.24);
}

.faq-simple__summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 28px 32px;
  list-style: none;
  cursor: pointer;
}

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

.faq-simple__summary-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #2c8eab;
  font-size: clamp(1.18rem, 2.2vw, 1.42rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.faq-simple__question-index,
.faq-simple__question-text {
  color: inherit;
}

.faq-simple__answer {
  display: grid;
  gap: 12px;
  padding: 0 32px 28px;
  border-top: 1px solid #edf3f7;
}

.faq-simple__answer p,
.faq-simple__answer-list {
  margin: 0;
  color: #58656f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
}

.faq-simple__answer-list {
  padding-left: 20px;
}

.faq-simple__answer-list li + li {
  margin-top: 8px;
}

.terms-simple {
  max-width: 1040px;
}

.terms-simple__list {
  display: grid;
  gap: 16px;
}

.terms-simple__item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbe6ec;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(24, 39, 52, 0.06);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.terms-simple__item:hover,
.terms-simple__item:focus-within,
.terms-simple__item[open] {
  border-color: rgba(52, 153, 178, 0.24);
}

.terms-simple__summary {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  gap: 20px;
  align-items: center;
  padding: 28px 30px;
  list-style: none;
  cursor: pointer;
}

.terms-simple__summary::-webkit-details-marker {
  display: none;
}

.terms-simple__summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #0f8198;
  background: #eef9fb;
  border: 1px solid rgba(78, 177, 202, 0.28);
  border-radius: 999px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.terms-simple__item[open] .terms-simple__summary::after {
  content: "-";
  color: #ffffff;
  background: #0f8aa1;
  transform: rotate(180deg);
}

.terms-simple__index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 38px;
  color: #0f8198;
  background: #e7f7fb;
  border: 1px solid rgba(78, 177, 202, 0.26);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.terms-simple__content {
  display: grid;
  gap: 10px;
  padding: 18px 30px 28px 104px;
  border-top: 1px solid #edf3f7;
}

.terms-simple__heading {
  margin: 0;
  color: #15212b;
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.terms-simple__content p {
  max-width: 78ch;
  margin: 0;
  color: #58656f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

.terms-simple__content strong {
  color: #15212b;
  font-weight: 700;
}

.case-page {
  background: linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

.case-main {
  width: 100%;
  padding-top: 0;
}

.case-eyebrow {
  margin: 0;
  color: #0f8198;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.case-gallery-hero,
.case-listing,
.case-detail {
  width: min(1220px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.case-gallery-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding: 54px 0 44px;
}

.case-gallery-hero__content {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.case-gallery-hero__title {
  max-width: 13ch;
  margin: 0;
  color: #15212b;
  font-size: clamp(2.15rem, 5vw, 5.1rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.case-gallery-hero__copy {
  max-width: 78ch;
  margin: 0;
  color: #56636d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-wrap: pretty;
}

.case-gallery-hero__media {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 18%, rgba(91, 191, 214, 0.18), transparent 30%),
    linear-gradient(135deg, #f4fbfe 0%, #ffffff 100%);
  border: 1px solid rgba(191, 219, 231, 0.9);
  border-radius: 8px;
}

.case-gallery-hero__media--fill {
  display: block;
  padding: 0;
  background: #eef8fb;
}

.case-gallery-hero__image {
  width: min(100%, 460px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(34, 57, 68, 0.14));
}

.case-gallery-hero__image--photo {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 0;
  filter: none;
}

.case-listing {
  display: grid;
  gap: 28px;
  padding: 24px 0 88px;
}

.case-section-heading {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.case-section-heading--left {
  justify-items: start;
  text-align: left;
}

.case-section-heading__title {
  margin: 0;
  color: #15212b;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.055em;
}

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

.case-card {
  position: relative;
  display: grid;
  min-height: 420px;
  overflow: hidden;
  color: #ffffff;
  background: #15212b;
  border-radius: 8px;
  text-decoration: none;
  isolation: isolate;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.case-card:hover,
.case-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(18, 33, 43, 0.18);
}

.case-card--featured {
  grid-column: span 1;
}

.case-card__media,
.case-card__image {
  position: absolute;
  inset: 0;
}

.case-card__media {
  margin: 0;
}

.case-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 260ms ease;
}

.case-card:hover .case-card__image,
.case-card:focus-visible .case-card__image {
  transform: scale(1.04);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(13, 24, 32, 0.1) 0%, rgba(13, 24, 32, 0.82) 88%),
    linear-gradient(90deg, rgba(12, 20, 28, 0.4) 0%, rgba(12, 20, 28, 0.08) 100%);
}

.case-card__body {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 420px;
  padding: 26px;
}

.case-card__date {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.case-card__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.case-card__link {
  width: max-content;
  color: #b7edf7;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-detail {
  display: grid;
  gap: 28px;
  padding: 42px 0 88px;
}

.case-back-link {
  width: max-content;
  color: #0f8198;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.case-detail-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: #15212b;
}

.case-detail-hero__media,
.case-detail-hero__image {
  position: absolute;
  inset: 0;
}

.case-detail-hero__media {
  margin: 0;
}

.case-detail-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}

.case-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 24, 31, 0.18) 0%, rgba(14, 24, 31, 0.86) 100%),
    linear-gradient(90deg, rgba(14, 24, 31, 0.72) 0%, rgba(14, 24, 31, 0.12) 76%);
}

.case-detail-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 56px);
}

.case-detail-hero__content .case-eyebrow {
  color: #93dcea;
}

.case-detail-hero__title {
  max-width: 20ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.case-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #dff7fb;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
}

.case-detail-panel,
.case-scope,
.case-project-gallery,
.case-cta {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dbe6ec;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(24, 39, 52, 0.06);
}

.case-detail-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 30px;
}

.case-detail-panel p {
  margin: 0;
  color: #56636d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
}

.case-detail-panel h2 {
  margin: 0;
  color: #15212b;
  font-size: 1.45rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.case-detail-panel ul {
  margin: 0;
  padding-left: 20px;
  color: #56636d;
  font-size: 15px;
  line-height: 1.7;
}

.case-detail-panel li + li {
  margin-top: 7px;
}

.case-scope,
.case-project-gallery {
  display: grid;
  gap: 24px;
  padding: 30px;
}

.case-project-gallery {
  position: relative;
}

.case-project-gallery__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.case-project-gallery__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: absolute;
  left: -48px;
  right: -48px;
  top: calc(50% + 30px);
  z-index: 3;
  pointer-events: none;
}

.case-project-gallery__button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #0f8198;
  background: #f3fbfd;
  border: 1px solid rgba(52, 153, 178, 0.28);
  border-radius: 8px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 14px 30px rgba(18, 33, 43, 0.12);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.case-project-gallery__button:hover,
.case-project-gallery__button:focus-visible {
  color: #ffffff;
  background: #3499b2;
  border-color: #3499b2;
}

.case-project-gallery__button:disabled {
  cursor: default;
  opacity: 0.42;
}

.case-project-gallery__button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.case-project-gallery__viewport {
  overflow: hidden;
}

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

.case-scope__item {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #f7fbfd;
  border: 1px solid rgba(201, 224, 234, 0.86);
  border-radius: 8px;
}

.case-scope__item h3 {
  margin: 0;
  color: #15212b;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.case-scope__item p {
  margin: 0;
  color: #56636d;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.62;
}

.case-project-gallery__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-project-gallery__grid::-webkit-scrollbar {
  display: none;
}

.case-project-gallery__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(201, 224, 234, 0.86);
  scroll-snap-align: start;
}

.case-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px;
}

.case-cta h2 {
  max-width: 66ch;
  margin: 8px 0 0;
  color: #15212b;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.case-cta__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .faq-simple {
    padding: 40px 0 72px;
  }

  .faq-simple__summary {
    padding: 24px 24px;
  }

  .faq-simple__answer {
    padding: 0 24px 24px;
  }

  .terms-simple__item {
    border-radius: 16px;
  }

  .terms-simple__summary {
    grid-template-columns: 46px minmax(0, 1fr) 34px;
    gap: 16px;
    padding: 24px;
  }

  .terms-simple__content {
    padding: 16px 24px 24px 86px;
  }

  .case-gallery-hero {
    grid-template-columns: 1fr;
    padding: 42px 0 34px;
  }

  .case-gallery-hero__title,
  .case-detail-hero__title {
    max-width: 100%;
  }

  .case-gallery-hero__media {
    min-height: 320px;
  }

  .case-gallery-hero__media--fill {
    padding: 0;
  }

  .case-gallery-hero__image--photo {
    min-height: 320px;
  }

  .case-card-grid,
  .case-detail-grid,
  .case-scope__grid,
  .case-project-gallery__grid,
  .case-cta {
    grid-template-columns: 1fr;
  }

  .case-project-gallery__grid {
    grid-auto-columns: minmax(0, 100%);
  }

  .case-project-gallery__controls {
    left: 10px;
    right: 10px;
    top: calc(50% + 28px);
  }

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

@media (max-width: 640px) {
  .faq-simple {
    width: min(1220px, calc(100% - 28px));
    padding: 34px 0 56px;
  }

  .faq-simple__intro {
    margin-bottom: 24px;
  }

  .faq-simple__title {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .faq-simple__copy {
    font-size: 15px;
  }

  .faq-simple__list {
    gap: 14px;
  }

  .faq-simple__item {
    border-radius: 16px;
  }

  .faq-simple__summary {
    padding: 20px 18px;
  }

  .faq-simple__summary-line {
    font-size: 1rem;
    line-height: 1.5;
  }

  .faq-simple__answer {
    gap: 10px;
    padding: 0 18px 18px;
  }

  .faq-simple__answer p,
  .faq-simple__answer-list {
    font-size: 14px;
  }

  .terms-simple__list {
    gap: 14px;
  }

  .terms-simple__item {
    border-radius: 16px;
  }

  .terms-simple__summary {
    grid-template-columns: 40px minmax(0, 1fr) 32px;
    gap: 12px;
    padding: 20px 18px;
  }

  .terms-simple__summary::after {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .terms-simple__index {
    width: 40px;
    height: 34px;
    font-size: 12px;
  }

  .terms-simple__content p {
    font-size: 14px;
  }

  .terms-simple__content {
    padding: 14px 18px 20px;
  }

  .case-gallery-hero,
  .case-listing,
  .case-detail {
    width: min(1220px, calc(100% - 28px));
    max-width: calc(100vw - 28px);
    overflow-x: hidden;
  }

  .case-gallery-hero__copy,
  .case-detail-panel p {
    font-size: 14px;
  }

  .case-gallery-hero__content,
  .case-section-heading,
  .case-card-grid,
  .case-card,
  .case-detail-hero__content {
    min-width: 0;
    max-width: 100%;
  }

  .case-gallery-hero__title,
  .case-section-heading__title,
  .case-card__title,
  .case-detail-hero__title,
  .case-gallery-hero__copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .case-section-heading__title {
    line-height: 1.08;
  }

  .case-gallery-hero__media {
    min-height: 250px;
    padding: 24px;
  }

  .case-gallery-hero__media--fill {
    padding: 0;
  }

  .case-gallery-hero__image--photo {
    min-height: 250px;
  }

  .case-card,
  .case-card__body {
    min-height: 330px;
  }

  .case-card__body,
  .case-detail-panel,
  .case-scope,
  .case-project-gallery,
  .case-cta {
    padding: 20px;
  }

  .case-project-gallery__head {
    align-items: flex-start;
  }

  .case-project-gallery__button {
    width: 34px;
    height: 34px;
  }

  .case-detail-hero {
    min-height: 430px;
  }

  .case-detail-hero__content {
    padding: 24px;
  }

  .case-detail-meta span {
    width: 100%;
  }
}

@keyframes hero-pan {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(-0.8%, -0.6%, 0);
  }
}

@keyframes about-story-float {
  0%,
  100% {
    transform: translateY(var(--story-float-start));
  }

  50% {
    transform: translateY(var(--story-float-end));
  }
}

@keyframes about-partners-card-in {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes about-clients-card-in {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes certifications-card-in {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-story__image,
  .about-story__photo,
  .about-clients__track,
  .certifications__card,
  .about-partners__card,
  .about-clients__card {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
    gap: 18px 22px;
    min-height: auto;
    padding: 12px 0 14px;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    gap: 32px;
    padding-top: 18px;
  }

  .hero-slider__frame {
    min-height: 560px;
  }

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

  .design-hub-preview__grid {
    grid-template-columns: 1fr;
  }

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

  .before-after-showcase__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .before-after-current {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .before-after-collection-nav {
    gap: 8px;
  }

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

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

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

  .contact-section__layout {
    grid-template-columns: 1fr;
  }

  .about-story__shell {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    gap: 40px;
  }

  .about-story__title {
    font-size: 3.2rem;
  }

  .about-story__copy {
    max-width: 100%;
  }

  .about-manufacturing {
    padding: 78px 0 84px;
  }

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

  .about-partners__grid {
    gap: 24px 42px;
  }

  .about-clients__card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .about-vision__panel {
    gap: 26px;
    padding: 46px 30px;
  }

  .faq-overview,
  .faq-group,
  .faq-certifications__shell {
    grid-template-columns: 1fr;
  }

  .faq-overview__title,
  .faq-certifications__title {
    max-width: 100%;
  }

  .faq-group__copy {
    max-width: 46ch;
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 14px 16px;
    padding: 12px 0 14px;
  }

  .brand {
    justify-content: flex-start;
  }

  .site-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .site-actions {
    display: none;
    grid-column: 1 / -1;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .site-header.is-menu-open .site-nav__item {
    width: 100%;
  }

  .site-header.is-menu-open .site-nav__submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-header.is-menu-open .site-nav__submenu-link {
    padding: 7px 0;
  }

  .site-header.is-menu-open .site-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    width: 100%;
    padding-top: 14px;
  }

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

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

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

  .site-nav__link {
    white-space: nowrap;
  }

  .site-nav__link--active::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
    padding: 22px 0 44px;
  }

  .hero__title {
    font-size: clamp(2.15rem, 6.4vw, 2.7rem);
    line-height: 1.04;
  }

  .hero__description {
    font-size: 16px;
    line-height: 1.68;
  }

  .hero__content,
  .hero__description {
    max-width: 100%;
  }

  .hero-slider__frame {
    min-height: 440px;
  }

  .categories {
    margin-bottom: 56px;
    padding-bottom: 36px;
  }

  .section-heading {
    align-items: center;
    margin-bottom: 22px;
    padding: 0 24px;
  }

  .section-heading__title {
    font-size: 2rem;
  }

  .products {
    padding: 56px 0 68px;
  }

  .certifications__grid {
    grid-template-columns: repeat(2, minmax(250px, 330px));
    gap: 18px 20px;
  }

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

  .before-after-showcase {
    padding: 56px 0 68px;
  }

  .before-after-showcase__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .before-after-showcase__sidebar {
    gap: 18px;
  }

  .before-after-viewer {
    min-height: 360px;
  }

  .products__sidebar {
    gap: 18px;
  }

  .certifications {
    padding: 8px 0 68px;
  }

  .certifications__inner {
    gap: 30px;
  }

  .certifications__copy {
    max-width: 100%;
    font-size: 16px;
  }

  .certifications__grid {
    grid-template-columns: minmax(280px, 420px);
    justify-content: center;
  }

  .certifications__media {
    min-height: 228px;
    padding: 0;
  }

  .blogs-section {
    padding: 20px 0 56px;
  }

  .blogs-section__header {
    margin-bottom: 36px;
  }

  .blogs-section__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats-band {
    margin-bottom: 64px;
    padding: 52px 28px;
  }

  .stats-band__grid {
    gap: 34px 24px;
  }

  .contact-section {
    padding: 68px 0 72px;
  }

  .contact-section__content {
    padding-bottom: 0;
  }

  .inquiry-card {
    padding: 28px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__nav {
    justify-content: center;
    gap: 18px 28px;
  }

  .about-main {
    padding-top: 0;
  }

  .about-story {
    padding: 0 0 50px;
  }

  .about-story__shell {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }

  .about-story__media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .about-story__image--accent {
    --story-float-start: 0px;
    --story-float-end: -12px;
  }

  .about-story__content {
    gap: 20px;
  }

  .about-story__title {
    font-size: 2.9rem;
  }

  .about-manufacturing {
    padding: 68px 0 72px;
  }

  .about-manufacturing__content {
    gap: 30px;
  }

  .about-manufacturing__title {
    max-width: 15ch;
    font-size: 3rem;
    white-space: normal;
  }

  .about-manufacturing__copy {
    font-size: 16px;
  }

  .about-manufacturing__grid {
    grid-template-columns: 1fr;
  }

  .about-manufacturing__card {
    min-height: auto;
  }

  .about-partners {
    padding: 50px 0 60px;
  }

  .about-clients {
    padding: 40px 0 64px;
  }

  .about-partners__inner,
  .about-clients__inner {
    gap: 24px;
  }

  .about-partners__intro {
    font-size: 16px;
  }

  .about-partners__partner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-partners__logo {
    min-height: 150px;
  }

  .about-clients__toolbar {
    flex-direction: column;
    align-items: center;
  }

  .about-clients__toolbar .about-clients__header {
    justify-items: center;
    text-align: center;
  }

  .about-partners__grid {
    gap: 20px 34px;
  }

  .about-partners__image {
    max-width: 190px;
    max-height: 96px;
  }

  .about-clients__track {
    gap: 20px;
  }

  .about-clients__card {
    flex-basis: clamp(240px, 30vw, 320px);
  }

  .about-clients__media {
    min-height: auto;
  }

  .about-vision {
    padding: 56px 0 72px;
  }

  .about-vision__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-vision__panel {
    padding: 34px 28px;
  }

  .faq-hero {
    min-height: auto;
    padding: 84px 0 64px;
  }

  .faq-hero__inner {
    gap: 18px;
  }

  .faq-hero__title {
    font-size: clamp(2.65rem, 8vw, 4rem);
  }

  .faq-hero__copy {
    max-width: 100%;
    font-size: 16px;
  }

  .faq-overview {
    gap: 24px;
    padding: 52px 0 34px;
  }

  .faq-overview__title {
    max-width: 16ch;
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .faq-groups {
    padding: 12px 0 56px;
  }

  .faq-group {
    gap: 22px;
    padding: 34px 0;
  }

  .faq-group__title {
    font-size: clamp(1.9rem, 5.8vw, 2.45rem);
  }

  .faq-item__question {
    padding: 20px 0;
    font-size: 1.04rem;
  }

  .faq-certifications {
    padding: 56px 0 64px;
  }

  .faq-certifications__shell {
    gap: 28px;
  }

  .faq-certifications__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header__inner {
    width: min(var(--content-width), calc(100% - 28px));
  }

  .brand__mark {
    width: 142px;
    height: 46px;
  }

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

  .site-header.is-menu-open .site-nav {
    gap: 12px;
    padding-top: 16px;
  }

  .site-header.is-menu-open .site-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-header.is-menu-open .site-actions .button--primary,
  .site-header.is-menu-open .site-actions .button--ghost {
    width: 100%;
    min-height: 44px;
    flex: 1 1 auto;
  }

  .site-nav__link {
    font-size: 13px;
  }

  .hero {
    padding: 16px 0 36px;
  }

  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .hero__title {
    font-size: clamp(1.65rem, 7.4vw, 2.15rem);
    line-height: 1.08;
  }

  .hero__description {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.62;
  }

  .hero__chips,
  .hero__cta {
    gap: 12px;
  }

  .support-chip,
  .button--hero-primary,
  .button--hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-slider__frame {
    min-height: 360px;
  }

  .hero-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 10px;
    padding: 8px 12px 8px 8px;
  }

  .hero-badge__icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .hero-badge__icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-badge__title {
    font-size: 14px;
  }

  .hero-badge__text {
    font-size: 11px;
  }

  .categories {
    padding-bottom: 26px;
    margin-bottom: 44px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 0 18px;
  }

  .section-heading__copy {
    max-width: 100%;
  }

  .section-heading__title {
    font-size: 1.8rem;
  }

  .section-heading__rule {
    margin-bottom: 0;
  }

  .categories__grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .category-tile {
    min-height: 280px;
  }

  .category-tile__content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .category-tile__title {
    font-size: 1.35rem;
  }

  .design-hub-preview {
    padding: 46px 0 56px;
  }

  .design-hub-preview__grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .design-hub-card {
    min-height: 300px;
  }

  .design-hub-card__content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .products {
    padding: 42px 0 56px;
  }

  .certifications {
    padding: 0 0 52px;
  }

  .certifications__inner {
    width: min(1440px, calc(100% - 28px));
    gap: 24px;
  }

  .certifications__header {
    gap: 10px;
  }

  .certifications__title {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .certifications__copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .certifications__card {
    gap: 14px;
    padding: 16px;
  }

  .certifications__media {
    min-height: 204px;
    padding: 0;
  }

  .certifications__image {
    max-height: 170px;
  }

  .certifications__meta {
    font-size: 10px;
  }

  .products__title {
    font-size: 2.3rem;
  }

  .blogs-section {
    padding-bottom: 44px;
  }

  .blogs-section__header {
    margin-bottom: 28px;
  }

  .blogs-section__title {
    font-size: 1.9rem;
  }

  .blog-card {
    gap: 18px;
  }

  .blog-card__content {
    flex-direction: column;
    gap: 12px;
  }

  .blog-card__title {
    font-size: 1.28rem;
  }

  .products-nav__summary,
  .products-nav__row {
    padding: 16px 14px;
  }

  .products-nav__submenu {
    padding: 0 14px 14px;
  }

  .products__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .before-after-showcase {
    padding: 42px 0 56px;
  }

  .before-after-showcase__header {
    margin-bottom: 28px;
  }

  .before-after-showcase__title {
    font-size: 1.7rem;
  }

  .before-after-viewer {
    min-height: 260px;
    aspect-ratio: var(--viewer-aspect-ratio, 4 / 3);
  }

  .before-after-viewer__labels {
    inset: 12px 12px auto;
  }

  .before-after-viewer__labels span {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 10px;
  }

  .before-after-viewer__handle {
    width: 40px;
    height: 40px;
  }

  .before-after-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .before-after-gallery__item {
    grid-template-columns: 84px minmax(0, 1fr);
    min-height: 96px;
    padding: 8px;
  }

  .before-after-gallery__thumb {
    width: 84px;
    height: 68px;
  }

  .product-card__image {
    padding: 14px;
  }

  .stats-band {
    padding: 40px 18px;
    margin-bottom: 48px;
  }

  .stats-band__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-section {
    padding: 48px 0 56px;
  }

  .contact-section__header {
    gap: 18px;
  }

  .contact-section__title {
    font-size: 2rem;
  }

  .contact-section__description {
    font-size: 16px;
  }

  .contact-details__item {
    align-items: flex-start;
  }

  .contact-details__value {
    font-size: 16px;
  }

  .contact-section__actions {
    flex-direction: column;
  }

  .contact-action {
    width: 100%;
  }

  .inquiry-card {
    gap: 24px;
    padding: 22px 18px;
  }

  .inquiry-card__title {
    font-size: 26px;
  }

  .inquiry-form__row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer__inner {
    padding: 24px 0;
    gap: 18px;
  }

  .site-footer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
    gap: 12px 20px;
    width: 100%;
  }

  .site-footer__nav a {
    text-align: center;
  }

  .about-main {
    width: 100%;
    padding-top: 0;
  }

  .about-story {
    padding: 0 0 42px;
  }

  .about-story__shell {
    gap: 22px;
    padding: 22px 18px;
  }

  .about-story__media {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-story__image--accent,
  .about-story__image--main {
    aspect-ratio: 1.1 / 1;
  }

  .about-story__image--accent {
    --story-float-start: 0px;
    --story-float-end: -8px;
  }

  .about-story__image--main {
    --story-float-start: 0px;
    --story-float-end: 10px;
  }

  .about-story__heading {
    gap: 12px;
  }

  .about-story__bar {
    width: 3px;
    height: 34px;
    flex-basis: 3px;
    margin-top: 7px;
  }

  .about-story__title {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.02;
  }

  .about-story__copy {
    font-size: 14px;
    line-height: 1.62;
  }

  .about-story__copy-group {
    gap: 14px;
  }

  .about-story__copy-item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
  }

  .about-story__copy-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
  }

  .about-story__copy-icon svg {
    width: 15px;
    height: 15px;
  }

  .about-story__cta {
    width: 100%;
  }

  .about-manufacturing {
    padding: 56px 0 60px;
  }

  .about-manufacturing__content {
    width: min(1440px, calc(100% - 28px));
    gap: 24px;
  }

  .about-manufacturing__title {
    max-width: 11ch;
    font-size: clamp(2rem, 9vw, 2.7rem);
    line-height: 1.02;
    white-space: normal;
  }

  .about-manufacturing__copy {
    font-size: 15px;
  }

  .about-manufacturing__card {
    gap: 16px;
    padding: 20px 18px;
  }

  .about-manufacturing__card-title {
    font-size: 1.14rem;
  }

  .about-manufacturing__card-text {
    font-size: 13px;
  }

  .about-partners {
    padding: 38px 0 48px;
  }

  .about-clients {
    padding: 34px 0 52px;
  }

  .about-partners__inner,
  .about-clients__inner {
    width: min(1440px, calc(100% - 28px));
    gap: 18px;
  }

  .about-partners__header,
  .about-clients__header {
    justify-items: center;
    text-align: center;
  }

  .about-partners__title,
  .about-clients__title {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
    line-height: 1.02;
  }

  .about-partners__copy,
  .about-clients__copy {
    font-size: 15px;
  }

  .about-partners__intro {
    margin-top: 12px;
    font-size: 14.5px;
    line-height: 1.68;
  }

  .about-partners__list {
    gap: 14px;
  }

  .about-partners__partner {
    padding: 20px 18px;
    gap: 18px;
  }

  .about-partners__number {
    width: 38px;
    height: 30px;
    font-size: 12px;
  }

  .about-partners__partner-title {
    font-size: 1.16rem;
  }

  .about-partners__partner-text {
    font-size: 14px;
    line-height: 1.62;
  }

  .about-partners__logo {
    min-height: 132px;
  }

  .about-partners__image {
    min-height: 132px;
  }

  .about-clients__toolbar {
    gap: 14px;
  }

  .about-clients__controls {
    gap: 8px;
  }

  .about-clients__control {
    width: 34px;
    height: 34px;
  }

  .about-partners__grid {
    gap: 18px 28px;
  }

  .about-partners__image {
    max-width: 168px;
    max-height: 82px;
  }

  .about-clients__track {
    gap: 16px;
  }

  .about-clients__card {
    flex-basis: 228px;
  }

  .about-clients__media {
    min-height: auto;
  }

  .about-clients__image {
    max-width: 164px;
    max-height: 92px;
  }

  .about-partners__meta,
  .about-clients__meta {
    font-size: 10px;
  }

  .about-vision {
    padding: 42px 0 56px;
  }

  .about-vision__grid {
    width: min(1440px, calc(100% - 28px));
  }

  .about-vision__panel {
    grid-template-columns: 3px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 18px;
  }

  .about-vision__bar {
    width: 3px;
  }

  .about-vision__body {
    gap: 16px;
  }

  .about-vision__title {
    font-size: 2.15rem;
  }

  .about-vision__copy {
    font-size: 15px;
  }

  .faq-hero {
    padding: 68px 0 52px;
  }

  .faq-hero__inner {
    width: min(1440px, calc(100% - 28px));
    gap: 16px;
  }

  .faq-hero__title {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1;
  }

  .faq-hero__copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .faq-hero__actions {
    flex-direction: column;
  }

  .faq-hero__actions .button {
    width: 100%;
  }

  .faq-overview {
    width: min(1440px, calc(100% - 28px));
    gap: 20px;
    padding: 40px 0 24px;
  }

  .faq-overview__title {
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .faq-overview__copy {
    font-size: 15px;
  }

  .faq-overview__item {
    gap: 14px;
    padding: 18px 0;
  }

  .faq-overview__item-title {
    font-size: 1rem;
  }

  .faq-overview__item-text {
    font-size: 14px;
  }

  .faq-groups {
    width: min(1440px, calc(100% - 28px));
    padding: 8px 0 44px;
  }

  .faq-group {
    gap: 18px;
    padding: 28px 0;
  }

  .faq-group__title {
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }

  .faq-group__copy {
    font-size: 15px;
  }

  .faq-item__question {
    gap: 14px;
    padding: 18px 0;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .faq-item__answer {
    gap: 12px;
    padding: 0 0 18px;
  }

  .faq-item__answer p,
  .faq-item__list {
    font-size: 14px;
  }

  .faq-certifications {
    padding: 44px 0 52px;
  }

  .faq-certifications__shell {
    width: min(1440px, calc(100% - 28px));
    gap: 22px;
  }

  .faq-certifications__title {
    max-width: 100%;
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .faq-certifications__copy {
    font-size: 15px;
  }

  .faq-certifications__item {
    gap: 10px;
    padding-top: 18px;
  }

  .faq-certifications__item-title {
    font-size: 1.2rem;
  }

  .faq-certifications__item-text {
    font-size: 14px;
  }
}

.product-page {
  --product-cyan: #63b7ca;
  --product-blue: #7aa7c2;
  --product-lavender: #9588b5;
  --product-purple: #a669a8;
  --product-bg: #f7f7f7;
  --product-border: #d9e0e5;
  --product-text: #24303a;
  --product-muted: #667481;
  background: var(--product-bg);
  color: var(--product-text);
}

.product-page .page-main {
  width: 100%;
}

.product-main {
  padding-bottom: 0;
}

.product-page .product-breadcrumb,
.product-page .product-overview,
.product-page .product-tabs,
.product-page .related-products {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}

.product-page .site-footer__inner {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.product-breadcrumb {
  padding: 22px 0 18px;
}

.product-breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--product-muted);
  font-size: 13px;
  line-height: 1.5;
}

.product-breadcrumb__inner a {
  color: var(--product-text);
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(224px, 246px) minmax(420px, 1fr) minmax(320px, 360px);
  gap: 28px;
  align-items: stretch;
}

.product-sidebar__panel,
.product-summary,
.product-tabs__panels {
  background: #fff;
  border: 1px solid var(--product-border);
}

.product-sidebar__title {
  margin: 0;
  padding: 22px 22px 10px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product-sidebar__group {
  border-top: 1px solid var(--product-border);
}

.product-sidebar__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

.product-sidebar__summary::-webkit-details-marker {
  display: none;
}

.product-sidebar__links {
  display: grid;
  gap: 10px;
  padding: 0 22px 22px;
}

.product-sidebar__link {
  display: block;
  padding: 11px 14px;
  color: var(--product-muted);
  font-size: 14px;
  background: #fbfcfd;
  border: 1px solid var(--product-border);
}

.product-sidebar__link.is-active {
  color: var(--product-text);
  background: linear-gradient(135deg, rgba(99, 183, 202, 0.12) 0%, rgba(166, 105, 168, 0.08) 100%);
  border-color: rgba(99, 183, 202, 0.42);
}

.product-sidebar__chevron {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: var(--product-muted);
  transition: transform 180ms ease;
}

.product-sidebar__chevron svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.product-sidebar__group[open] .product-sidebar__chevron {
  transform: rotate(180deg);
}

.product-gallery {
  display: grid;
  gap: 16px;
  align-content: start;
}

.product-gallery__frame,
.product-features__media,
.related-product-card__media,
.product-quote-panel__preview {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--product-border);
}

.product-gallery__frame {
  position: relative;
  aspect-ratio: 1 / 1.04;
  min-height: 0;
}

.product-gallery__image,
.product-features__media img,
.related-product-card__media img,
.product-quote-panel__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #2f8ea5;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(117, 176, 193, 0.38);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(24, 43, 58, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-gallery__nav--prev {
  left: 16px;
}

.product-gallery__nav--next {
  right: 16px;
}

.product-gallery__nav:hover,
.product-gallery__nav:focus-visible {
  color: #ffffff;
  background: #3a9eb6;
  border-color: #3a9eb6;
  box-shadow: 0 18px 34px rgba(58, 158, 182, 0.22);
}

.product-gallery__nav:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
}

.product-gallery__nav svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.product-gallery__thumb {
  aspect-ratio: 1 / 1;
  padding: 0;
  background: #fff;
  border: 1px solid var(--product-border);
  cursor: pointer;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumb.is-active {
  border-color: var(--product-cyan);
}

.product-summary {
  display: grid;
  gap: 22px;
  align-content: start;
  padding: 28px 24px 24px;
  min-height: 0;
}

.product-summary__eyebrow,
.product-tabs__eyebrow,
.related-products__eyebrow,
.product-quote-panel__label {
  margin: 0;
  color: var(--product-blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-summary__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
}

.product-summary__title {
  margin: 0;
  max-width: 14ch;
  font-size: 33px;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.product-summary__description {
  margin: 0;
  color: var(--product-muted);
  max-width: 28ch;
  font-size: 1rem;
  line-height: 1.68;
}

.product-summary__specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 0;
}

.product-summary__spec-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(217, 224, 229, 0.72);
}

.product-summary__spec-row dt,
.product-summary__spec-row dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.product-summary__spec-row dt {
  color: var(--product-muted);
  font-weight: 500;
}

.product-summary__spec-row dd {
  color: var(--product-text);
}

.product-summary__actions {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

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

.product-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 14px 18px;
  color: var(--product-text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(149, 136, 181, 0.24);
  border-radius: 10px;
  cursor: pointer;
}

.product-action-button--soft {
  background: linear-gradient(135deg, rgba(99, 183, 202, 0.14) 0%, rgba(122, 167, 194, 0.08) 50%, rgba(166, 105, 168, 0.12) 100%);
}

.product-action-button--primary {
  min-height: 56px;
  color: #fff;
  border-color: transparent;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--product-cyan) 0%, var(--product-blue) 50%, var(--product-lavender) 100%);
}

.product-action-button__icon {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
}

.product-action-button__icon--quote {
  width: 22px;
  height: 22px;
}

.product-action-button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.product-quote-panel {
  display: grid;
  gap: 24px;
  padding-top: 0;
  border-top: 0;
}

.product-quote-panel[hidden] {
  display: none;
}

.product-quote-panel__product {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
  background: #fbfcfd;
  border: 1px solid var(--product-border);
}

.product-quote-panel__preview {
  aspect-ratio: 1.25 / 1;
  min-height: 118px;
  margin: 0;
  background: #ffffff;
}

.product-quote-panel__title {
  max-width: 42ch;
  margin: 8px 0 0;
  color: var(--product-text);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.025em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-quote-panel__meta {
  min-width: 0;
  display: grid;
  align-content: center;
}

.product-quote-form__grid,
.product-specifications__grid,
.related-products__grid {
  display: grid;
  gap: 14px;
}

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

.product-field {
  display: grid;
  gap: 8px;
}

.product-field--full {
  grid-column: 1 / -1;
}

.product-field__label {
  color: var(--product-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-field__input {
  width: 100%;
  min-height: 46px;
  padding: 13px 14px;
  color: var(--product-text);
  font: inherit;
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--product-border);
  outline: none;
}

.product-field__input--select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--product-muted) 50%),
    linear-gradient(135deg, var(--product-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.product-field__input:focus {
  border-color: rgba(99, 183, 202, 0.82);
}

.product-field__input[aria-invalid="true"] {
  border-color: #b42318;
}

.product-field__error {
  min-height: 1.2em;
  color: #b42318;
  font-size: 12px;
}

.product-field__input--textarea {
  min-height: 120px;
  resize: vertical;
}

.product-quote-open {
  overflow: hidden;
}

.product-quote-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product-quote-modal[hidden] {
  display: none;
}

.product-quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 48, 58, 0.34);
  border: 0;
  cursor: pointer;
}

.product-quote-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 40px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--product-border);
}

.product-quote-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.product-quote-modal__heading {
  display: grid;
  gap: 8px;
}

.product-quote-modal__title {
  margin: 0;
  font-size: clamp(1.36rem, 2.2vw, 1.74rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.product-quote-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--product-text);
  font: inherit;
  font-size: 24px;
  background: #fff;
  border: 1px solid var(--product-border);
  cursor: pointer;
}

.product-quote-form__submit {
  width: 100%;
  min-height: 50px;
  margin-top: 14px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--product-cyan) 0%, var(--product-blue) 50%, var(--product-lavender) 100%);
  cursor: pointer;
}

.product-quote-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.product-quote-form__status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: #087443;
  font-size: 13px;
}

.product-quote-form__status.is-error {
  color: #b42318;
}

.product-quote-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.product-tabs,
.related-products {
  margin-top: 44px;
}

.related-products {
  margin-bottom: 72px;
}

.product-tabs__header {
  display: grid;
  gap: 20px;
  margin-bottom: 18px;
}

.product-tabs__title,
.related-products__title {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.product-tabs__title {
  font-size: clamp(1.52rem, 2.15vw, 1.86rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.product-tabs__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-tab {
  padding: 13px 18px;
  color: var(--product-muted);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--product-border);
  cursor: pointer;
}

.product-tab.is-active {
  color: var(--product-text);
  border-color: rgba(99, 183, 202, 0.42);
  background: linear-gradient(135deg, rgba(99, 183, 202, 0.12) 0%, rgba(166, 105, 168, 0.08) 100%);
}

.product-tabs__panels {
  padding: 28px;
}

.product-features {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.product-features__content {
  display: grid;
  gap: 18px;
}

.product-features__intro,
.product-specifications__intro,
.related-product-card__text {
  margin: 0;
  color: var(--product-muted);
  font-size: 15px;
  line-height: 1.72;
}

.product-features__card,
.product-specifications__card {
  padding: 24px;
  background: #ecf5ff;
  border: 1px solid rgba(122, 167, 194, 0.18);
}

.product-specifications__card {
  padding: 30px;
  background: #f4f9ff;
  border-color: rgba(122, 167, 194, 0.22);
}

.product-features__card-title,
.product-specifications__card-title {
  margin: 0 0 14px;
  color: var(--product-text);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-specifications__card-title {
  margin-bottom: 20px;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-features__list {
  display: grid;
  gap: 0;
}

.product-feature-card,
.product-specifications__item,
.related-product-card {
  border: 1px solid var(--product-border);
  background: #fff;
}

.product-feature-card {
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(122, 167, 194, 0.2);
}

.product-feature-card__title,
.related-product-card__title {
  margin: 0;
  color: var(--product-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.product-feature-card__text {
  margin: 8px 0 0;
  color: var(--product-muted);
  font-size: 14px;
  line-height: 1.68;
}

.product-features__media {
  aspect-ratio: 1 / 1.02;
}

.related-products__grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 280px));
  gap: 18px;
  justify-content: start;
}

.product-specifications {
  display: grid;
  gap: 18px;
}

.product-specifications__grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
}

.product-specifications__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-content: start;
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(122, 167, 194, 0.2);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(20, 57, 85, 0.05);
}

.product-specifications__label,
.related-product-card__category {
  color: var(--product-blue);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.product-specifications__value {
  color: var(--product-text);
  font-size: 15px;
  line-height: 1.55;
}

.related-products__header {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.related-product-card__category {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-product-card__text {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
  min-height: 3.1em;
  max-height: 3.1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.related-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  max-width: 280px;
  min-width: 0;
  height: 100%;
  box-sizing: border-box;
  padding: 0;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(122, 167, 194, 0.18);
  border-radius: 0;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.related-product-card:hover,
.related-product-card:focus-visible {
  border-color: rgba(99, 183, 202, 0.34);
  box-shadow: none;
}

.related-product-card__media {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.72;
  margin: 0;
  padding: 14px;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.related-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.related-product-card__title,
.related-product-card__text {
  padding-inline: 0;
}

.related-product-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 0 14px 14px;
}

@media (max-width: 1180px) {
  .product-overview {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  }

  .product-sidebar {
    grid-column: 1 / -1;
  }

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

  .product-gallery__frame,
  .product-summary {
    min-height: auto;
  }

  .product-summary {
    padding: 26px 22px 22px;
  }

  .product-summary__eyebrow {
    font-size: 12px;
    letter-spacing: 0.22em;
  }

  .product-summary__title {
    max-width: 14ch;
    font-size: 33px;
    line-height: 1.03;
  }

  .product-summary__description {
    max-width: none;
    font-size: 1rem;
    line-height: 1.68;
  }

  .related-products__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 280px));
  }
}

@media (max-width: 920px) {
  .product-overview,
  .related-products__grid {
    grid-template-columns: 1fr;
  }

  .product-tabs__controls {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .product-gallery__frame {
    aspect-ratio: 1 / 0.92;
    min-height: 0;
  }

  .product-gallery__nav {
    width: 40px;
    height: 40px;
  }

  .product-gallery__nav--prev {
    left: 12px;
  }

  .product-gallery__nav--next {
    right: 12px;
  }

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

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

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

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

  .product-quote-panel__product {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
  }

  .product-quote-panel__preview {
    min-height: 104px;
  }

  .product-field--full {
    grid-column: auto;
  }

  .product-feature-card,
  .product-specifications__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-specifications__card {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  .product-main {
    padding-bottom: 56px;
  }

  .product-breadcrumb {
    padding: 18px 0 16px;
  }

  .product-breadcrumb__inner {
    font-size: 12px;
  }

  .product-summary,
  .product-tabs__panels,
  .product-quote-modal__dialog {
    padding: 18px;
  }

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

  .product-gallery__nav {
    width: 36px;
    height: 36px;
  }

  .product-gallery__nav svg {
    width: 16px;
    height: 16px;
  }

  .product-summary__title,
  .product-tabs__title {
    font-size: 33px;
  }

  .product-summary__title {
    max-width: 14ch;
  }

  .product-summary__eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .product-summary__description {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .related-products__title {
    font-size: 1.8rem;
  }

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

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

  .product-quote-panel__preview {
    width: 100%;
    max-width: 180px;
    min-height: 120px;
  }
}

@media (max-width: 1180px) {
  .design-3d-showcase__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

@media (max-width: 920px) {
  .design-3d-showcase {
    padding: 56px 0 68px;
  }

  .design-3d-showcase__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .design-3d-showcase__sidebar {
    gap: 18px;
  }

  .design-3d-video {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .design-3d-showcase {
    padding: 42px 0 56px;
  }

  .design-3d-showcase__header {
    margin-bottom: 28px;
  }

  .design-3d-showcase .section-heading__title {
    font-size: 1.6rem;
    line-height: 1.14;
  }

  .design-3d-showcase__title {
    font-size: 1.45rem;
    line-height: 1.12;
  }

  .design-3d-video {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .design-3d-video__caption {
    font-size: 13px;
  }

  .design-3d-gallery-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .design-3d-gallery-head__rule {
    width: 100%;
  }

  .design-3d-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .design-3d-card__image {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 1180px) {
  .site-footer__inner {
    display: block;
    text-align: left;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 40px;
  }

  .site-footer__brand,
  .site-footer__inquiry {
    max-width: none;
  }
}

@media (max-width: 920px) {
  .site-footer__inner {
    display: block;
    text-align: left;
    padding: 48px 0 24px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    display: block;
    text-align: left;
    width: min(var(--content-width), calc(100% - 28px));
    padding: 38px 0 22px;
  }

  .site-footer__top {
    gap: 24px;
  }

  .site-footer__brand {
    gap: 18px;
  }

  .site-footer__logo-link {
    width: 162px;
  }

  .site-footer__title {
    font-size: 1rem;
  }

  .site-footer__address,
  .site-footer__copy,
  .site-footer__links a {
    font-size: 13px;
  }

  .site-footer__cta {
    width: 100%;
  }

  .site-footer__bottom {
    margin-top: 32px;
    padding-top: 18px;
  }

  .site-footer__legal {
    gap: 12px 18px;
  }
}

.contact-hero {
  margin: 0 calc(50% - 50vw);
  padding: clamp(56px, 8vw, 96px) 0 44px;
  background:
    linear-gradient(180deg, rgba(10, 27, 38, 0.76) 0%, rgba(10, 27, 38, 0.68) 100%),
    url("../images/Manufacturing facility.png") center / cover no-repeat;
}

.contact-hero__inner {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.contact-hero__eyebrow {
  margin: 0;
  color: #a9e7f2;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.contact-hero__title {
  max-width: 10ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 550;
  line-height: 0.96;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.contact-hero__copy {
  max-width: 34ch;
  margin: 0;
  color: rgba(241, 249, 252, 0.92);
  font-size: 18px;
  line-height: 1.68;
  text-wrap: pretty;
}

.project-type-page {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.project-type-main {
  width: 100%;
  padding-top: 0;
}

.project-type-hero,
.project-type-catalog,
.project-type-cta {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.project-type-hero {
  display: grid;
  gap: 18px;
  padding: 52px 0 32px;
}

.project-type-hero__eyebrow,
.project-type-catalog__eyebrow,
.project-type-cta__eyebrow {
  margin: 0;
  color: #0f8aa1;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.project-type-hero__title,
.project-type-catalog__title,
.project-type-cta__title {
  margin: 0;
  color: #142028;
  font-weight: 500;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.project-type-hero__title {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 0.95;
}

.project-type-hero__copy,
.project-type-catalog__copy,
.project-type-card__copy,
.project-type-card__list,
.project-type-cta__copy {
  margin: 0;
  color: #56636d;
  font-size: 16px;
  line-height: 1.72;
  text-wrap: pretty;
}

.project-type-hero__copy {
  max-width: 46ch;
}

.project-type-catalog {
  display: grid;
  gap: 28px;
  padding: 18px 0 68px;
}

.project-type-catalog__header {
  display: grid;
  gap: 12px;
  max-width: 58ch;
}

.project-type-catalog__title {
  font-size: clamp(2rem, 3.3vw, 2.95rem);
  line-height: 0.98;
}

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

.project-type-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 26px 24px;
  background: #ffffff;
  border: 1px solid #dbe7ec;
  box-shadow: 0 18px 42px rgba(24, 43, 58, 0.06);
}

.project-type-card__title {
  margin: 0;
  color: #16222b;
  font-size: 1.36rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.project-type-card__list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.project-type-card__list li::marker {
  color: #35a0b9;
}

.project-type-cta {
  padding-bottom: 72px;
}

.project-type-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px;
  background: linear-gradient(135deg, rgba(83, 184, 208, 0.12) 0%, rgba(134, 212, 226, 0.08) 50%, rgba(149, 136, 181, 0.12) 100%);
  border: 1px solid rgba(152, 184, 198, 0.34);
}

.project-type-cta__content {
  display: grid;
  gap: 10px;
  max-width: 44ch;
}

.project-type-cta__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.project-type-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-type-page .site-footer__inner {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

@media (max-width: 920px) {
  .product-overview {
    gap: 20px;
  }

  .product-summary {
    order: 1;
  }

  .product-gallery {
    order: 2;
  }

  .product-sidebar {
    order: 3;
  }

  .about-story__content {
    order: 1;
  }

  .about-story__media {
    order: 2;
  }

  .contact-hero__title,
  .project-type-hero__title {
    max-width: 100%;
  }

  .project-type-grid {
    grid-template-columns: 1fr;
  }

  .project-type-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .faq-simple,
  .contact-section--page,
  .project-type-hero,
  .project-type-catalog,
  .project-type-cta,
  .product-page .product-breadcrumb,
  .product-page .product-overview,
  .product-page .product-tabs,
  .product-page .related-products {
    width: auto;
    margin-left: 14px;
    margin-right: 14px;
  }

  .hero__content {
    display: grid;
    gap: 18px;
  }

  .hero__title {
    max-width: 100%;
    font-size: clamp(1.6rem, 6.8vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .hero__title-line {
    display: inline;
  }

  .hero__title-line + .hero__title-line {
    margin-top: 0;
  }

  .hero__description {
    margin-top: 0;
  }

  .products__title,
  .before-after-showcase__title,
  .design-3d-showcase__title,
  .faq-simple__title,
  .contact-hero__title,
  .about-story__title,
  .product-summary__title,
  .product-tabs__title,
  .before-after-current__title,
  .design-3d-current__title {
    max-width: 100%;
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .products__title {
    font-size: clamp(1.95rem, 9vw, 2.35rem);
    line-height: 1.02;
  }

  .product-summary {
    gap: 18px;
  }

  .product-summary__title,
  .product-tabs__title {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .product-summary__actions {
    margin-top: 0;
  }

  .about-story__media {
    grid-template-columns: 1fr;
  }

  .about-story__image--accent {
    display: none;
  }

  .about-story__image--main {
    aspect-ratio: 16 / 10;
  }

  .faq-simple__intro {
    justify-items: start;
    text-align: left;
  }

  .faq-simple__title {
    max-width: 13ch;
    line-height: 1.06;
  }

  .faq-simple__copy {
    max-width: 100%;
  }

  .faq-simple__summary-line {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .contact-hero {
    padding: 44px 0 28px;
  }

  .contact-hero__inner {
    width: min(1440px, calc(100% - 28px));
    gap: 12px;
  }

  .contact-hero__title {
    max-width: 8ch;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .contact-hero__copy {
    max-width: 100%;
    font-size: 15px;
  }

  .design-3d-secondary {
    display: none;
  }

  .project-type-hero,
  .project-type-catalog,
  .project-type-cta {
    width: min(1440px, calc(100% - 28px));
  }

  .project-type-hero {
    padding: 42px 0 24px;
  }

  .project-type-hero__title {
    max-width: 9ch;
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .hero__description,
  .product-summary__description,
  .about-story__copy,
  .contact-hero__copy,
  .contact-section__description,
  .faq-simple__copy,
  .faq-simple__summary-line,
  .faq-simple__answer p,
  .faq-simple__answer-list,
  .project-type-hero__copy,
  .project-type-catalog__copy,
  .project-type-card__copy,
  .project-type-card__list,
  .project-type-cta__copy,
  .product-summary__spec-row dt,
  .product-summary__spec-row dd {
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .project-type-hero__copy,
  .project-type-catalog__copy,
  .project-type-card__copy,
  .project-type-card__list,
  .project-type-cta__copy {
    font-size: 15px;
  }

  .project-type-catalog {
    gap: 20px;
    padding: 14px 0 52px;
  }

  .project-type-catalog__title {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.02;
  }

  .project-type-card {
    gap: 14px;
    padding: 20px 18px;
  }

  .project-type-card__title {
    font-size: 1.14rem;
  }

  .project-type-cta {
    padding-bottom: 56px;
  }

  .project-type-cta__inner {
    gap: 18px;
    padding: 22px 18px;
  }

  .project-type-cta__title {
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    line-height: 1.04;
  }

  .project-type-cta__actions {
    width: 100%;
  }

  .project-type-cta__actions .button {
    width: 100%;
  }
}

.site-footer {
  width: auto;
  margin-inline: calc(50% - 50vw);
  overflow-x: clip;
}

.site-footer__top {
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.74fr)) minmax(0, 0.96fr);
}

.site-footer__top > *,
.site-footer__bottom > * {
  min-width: 0;
}

.site-footer__brand,
.site-footer__column,
.site-footer__inquiry {
  align-content: start;
}

.site-footer__address,
.site-footer__copy,
.site-footer__caption,
.site-footer__links a,
.site-footer__legal a {
  overflow-wrap: anywhere;
}

.site-footer__caption {
  max-width: 62ch;
}

.site-footer__legal {
  align-items: center;
}

.project-type-page .site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  padding: 30px 0 24px;
}

.project-type-page .site-footer__brand {
  gap: 10px;
  max-width: none;
}

.project-type-page .site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
}

.project-type-page .site-footer__nav a {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.project-type-page .site-footer__nav a:hover,
.project-type-page .site-footer__nav a:focus-visible {
  color: #0a7084;
}

@media (max-width: 1180px) {
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }

  .site-footer__bottom {
    flex-wrap: wrap;
  }

  .project-type-page .site-footer__inner {
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .site-footer__inner {
    padding: 46px 0 24px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__brand,
  .site-footer__column,
  .site-footer__inquiry {
    gap: 14px;
  }

  .site-footer__heading {
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .site-footer__bottom {
    margin-top: 28px;
    padding-top: 18px;
    gap: 12px;
  }

  .site-footer__legal {
    gap: 10px 18px;
  }

  .project-type-page .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-type-page .site-footer__nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-footer__inner {
    width: min(var(--content-width), calc(100% - 32px));
    padding: 34px 0 20px;
    text-align: center;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .site-footer__brand,
  .site-footer__column,
  .site-footer__inquiry {
    width: 100%;
    gap: 12px;
    justify-items: center;
    text-align: center;
  }

  .site-footer__links,
  .site-footer__address {
    justify-items: center;
  }

  .site-footer__top > :nth-child(1) {
    order: 1;
  }

  .site-footer__top > :nth-child(3) {
    order: 2;
  }

  .site-footer__top > :nth-child(2) {
    order: 3;
  }

  .site-footer__top > :nth-child(4) {
    order: 4;
  }

  .site-footer__logo-link {
    width: 140px;
  }

  .site-footer__title {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .site-footer__address,
  .site-footer__copy,
  .site-footer__links a {
    font-size: 13px;
    line-height: 1.6;
  }

  .site-footer__cta {
    width: auto;
    min-width: 168px;
    max-width: 100%;
    min-height: 40px;
    margin-inline: auto;
    padding: 11px 18px;
    font-size: 11.5px;
    letter-spacing: 0.05em;
  }

  .site-footer__bottom {
    margin-top: 26px;
    padding-top: 16px;
    align-items: center;
    text-align: center;
  }

  .site-footer__caption,
  .site-footer__legal a {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .site-footer__caption {
    max-width: 34ch;
  }

  .site-footer__legal {
    justify-content: center;
    gap: 10px 16px;
  }

  .project-type-page .site-footer__inner {
    align-items: center;
    padding: 24px 0 20px;
    text-align: center;
  }

  .project-type-page .site-footer__nav {
    justify-content: center;
    gap: 10px 16px;
  }
}

@media (max-width: 420px) {
  .site-footer__inner {
    width: calc(100% - 24px);
    padding: 30px 0 18px;
  }

  .site-footer__top {
    gap: 18px;
  }

  .site-footer__brand,
  .site-footer__column,
  .site-footer__inquiry {
    gap: 12px;
  }

  .site-footer__logo-link {
    width: 132px;
  }

  .site-footer__address,
  .site-footer__copy,
  .site-footer__links a {
    font-size: 12.5px;
  }

  .site-footer__cta {
    min-width: 156px;
    padding: 10px 16px;
  }

  .site-footer__caption {
    letter-spacing: 0.06em;
  }

  .project-type-page .site-footer__nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .before-after-showcase {
    padding: 56px 0 64px;
  }

  .before-after-showcase__layout {
    gap: 24px;
  }

  .before-after-gallery__item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    min-height: 98px;
  }

  .before-after-gallery__thumb {
    width: 82px;
    height: 66px;
  }
}

@media (max-width: 920px) {
  .before-after-showcase {
    padding: 44px 0 56px;
  }

  .before-after-showcase__layout {
    gap: 20px;
  }

  .before-after-showcase__sidebar {
    gap: 16px;
  }

  .before-after-current__title {
    font-size: clamp(1.38rem, 4.4vw, 1.7rem);
  }

  .before-after-viewer {
    min-height: 320px;
  }

  .before-after-gallery__item {
    grid-template-columns: 78px minmax(0, 1fr);
    min-height: auto;
  }

  .before-after-gallery__thumb {
    width: 78px;
    height: 60px;
  }
}

@media (max-width: 640px) {
  .before-after-showcase {
    padding: 36px 0 48px;
  }

  .before-after-showcase__header {
    gap: 12px;
    margin-bottom: 22px;
  }

  .before-after-showcase .section-heading__eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .before-after-showcase .section-heading__title {
    font-size: clamp(1.6rem, 7vw, 1.95rem);
    line-height: 1.06;
  }

  .before-after-showcase__layout {
    gap: 18px;
  }

  .before-after-showcase__sidebar {
    gap: 14px;
  }

  .before-after-showcase__title {
    font-size: clamp(1.72rem, 8.4vw, 2.08rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .before-after-space__item.products-nav__row {
    gap: 12px;
    padding: 15px 16px;
    font-size: 0.95rem;
  }

  .before-after-current {
    gap: 8px;
    padding-bottom: 10px;
  }

  .before-after-current__space {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .before-after-current__title {
    font-size: clamp(1.3rem, 6.4vw, 1.6rem);
    line-height: 1.08;
  }

  .before-after-viewer {
    min-height: 252px;
    aspect-ratio: var(--viewer-aspect-ratio, 4 / 3);
  }

  .before-after-viewer__labels {
    inset: 12px 12px auto;
  }

  .before-after-viewer__labels span {
    min-height: 26px;
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .before-after-collection-button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 12px;
  }

  .before-after-viewer__handle {
    grid-template-columns: repeat(2, 5px);
    gap: 4px;
    width: 40px;
    height: 40px;
  }

  .before-after-viewer__handle span {
    border-top-width: 5px;
    border-bottom-width: 5px;
  }

  .before-after-viewer__handle span:first-child {
    border-right-width: 6px;
  }

  .before-after-viewer__handle span:last-child {
    border-left-width: 6px;
  }

  .before-after-gallery {
    gap: 10px;
  }

  .before-after-gallery__item {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
  }

  .before-after-gallery__thumb {
    width: 72px;
    height: 56px;
  }

  .before-after-gallery__copy {
    gap: 4px;
  }

  .before-after-gallery__title {
    font-size: 14px;
  }

  .before-after-gallery__text {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 420px) {
  .before-after-showcase {
    padding: 30px 0 42px;
  }

  .before-after-showcase .section-heading__title {
    font-size: 1.5rem;
  }

  .before-after-showcase__title {
    font-size: clamp(1.52rem, 8vw, 1.76rem);
  }

  .before-after-space__item.products-nav__row {
    padding: 14px;
    font-size: 0.92rem;
  }

  .before-after-current__title {
    font-size: 1.22rem;
  }

  .before-after-current__description {
    font-size: 13px;
  }

  .before-after-viewer {
    min-height: 220px;
  }

  .before-after-viewer__labels {
    inset: 10px 10px auto;
  }

  .before-after-viewer__labels span {
    padding: 4px 8px;
    font-size: 9px;
  }

  .before-after-gallery__item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 10px;
  }

  .before-after-gallery__thumb {
    width: 64px;
    height: 50px;
  }

  .before-after-gallery__title {
    font-size: 13px;
  }

  .before-after-gallery__text {
    font-size: 11.5px;
  }
}

.design-process-page {
  background:
    radial-gradient(circle at 8% 18%, rgba(83, 184, 208, 0.13) 0, rgba(83, 184, 208, 0) 28%),
    radial-gradient(circle at 92% 12%, rgba(160, 194, 220, 0.22) 0, rgba(160, 194, 220, 0) 30%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 48%, #ffffff 100%);
}

.design-process-main {
  width: 100%;
  padding-top: 0;
  overflow-x: clip;
}

.design-process-hero,
.design-process-timeline,
.design-process-cta {
  width: min(1440px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.design-process-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  min-height: auto;
  padding: clamp(42px, 5vw, 72px) 0 clamp(38px, 5vw, 66px);
}

.design-process-hero::before {
  content: "";
  position: absolute;
  left: -5vw;
  right: -5vw;
  bottom: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(52, 153, 178, 0.42) 20%, rgba(52, 153, 178, 0.16) 80%, transparent 100%);
  pointer-events: none;
}

.design-process-hero__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  animation: design-process-rise 620ms ease both;
}

.design-process-hero__eyebrow,
.design-process-timeline__eyebrow,
.design-process-cta__eyebrow {
  margin: 0;
  color: #0a7f96;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.design-process-hero__title {
  margin: 12px 0 0;
  color: #12202c;
  font-size: clamp(2.4rem, 4.6vw, 4.35rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.design-process-hero__subtitle {
  margin: 14px 0 0;
  color: #1b3444;
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.design-process-hero__copy {
  max-width: 50ch;
  margin: 16px 0 0;
  color: #52616c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.72;
  text-wrap: pretty;
}

.design-process-hero__button {
  min-width: 170px;
  margin-top: 26px;
  font-weight: 600;
  letter-spacing: 0;
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: none;
}

.design-process-hero__button:hover,
.design-process-hero__button:focus-visible {
  color: #ffffff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: none;
}

.design-process-hero__media {
  position: relative;
  z-index: 1;
  margin: 0;
  min-width: 0;
  max-width: 860px;
  justify-self: end;
  padding: clamp(8px, 1vw, 14px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86) 0%, rgba(234, 246, 252, 0.96) 100%);
  border: 1px solid rgba(154, 201, 216, 0.36);
  box-shadow: 0 30px 70px rgba(24, 43, 58, 0.11);
  animation: design-process-image-in 760ms 120ms ease both;
}

.design-process-hero__media::before,
.design-process-hero__media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.design-process-hero__media::before {
  inset: auto auto -28px -28px;
  width: 76px;
  height: 76px;
  border-left: 2px solid rgba(52, 153, 178, 0.38);
  border-bottom: 2px solid rgba(52, 153, 178, 0.38);
}

.design-process-hero__media::after {
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  background:
    linear-gradient(90deg, transparent 47%, rgba(52, 153, 178, 0.62) 47%, rgba(52, 153, 178, 0.62) 53%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(52, 153, 178, 0.62) 47%, rgba(52, 153, 178, 0.62) 53%, transparent 53%);
  opacity: 0.65;
}

.design-process-hero__image {
  width: 100%;
  height: auto;
  border: 1px solid rgba(197, 218, 226, 0.52);
  object-fit: contain;
  box-shadow: 0 18px 36px rgba(28, 57, 76, 0.08);
}

.design-process-timeline {
  position: relative;
  padding: clamp(42px, 5vw, 70px) 0 clamp(44px, 6vw, 72px);
}

.design-process-timeline__header {
  max-width: 660px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  display: grid;
  gap: 10px;
  text-align: center;
}

.design-process-timeline__title {
  margin: 0;
  color: #142028;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.design-process-timeline__copy {
  max-width: 58ch;
  margin: 0 auto;
  color: #52616c;
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.process-steps {
  --process-line-progress: 0;
  position: relative;
  display: grid;
  gap: clamp(30px, 4vw, 46px);
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg, rgba(52, 153, 178, 0.16), rgba(52, 153, 178, 0.34));
  transform: translateX(-50%);
}

.process-steps::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: calc(100% - 16px);
  background: linear-gradient(180deg, #6bb9c9 0%, #0b8198 100%);
  box-shadow: 0 0 0 5px rgba(52, 153, 178, 0.08);
  transform: translateX(-50%) scaleY(var(--process-line-progress));
  transform-origin: top;
  transition: transform 180ms linear;
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: center;
  min-height: 142px;
}

.process-step::before {
  content: "";
  position: relative;
  z-index: 3;
  grid-column: 2;
  justify-self: center;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 4px solid #68b4c6;
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(104, 180, 198, 0.14);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.process-step__card {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 400px);
  min-height: 100%;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(183, 210, 220, 0.78);
  box-shadow: 0 14px 34px rgba(24, 43, 58, 0.07);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.process-step__card::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 36px;
  height: 1px;
  background: rgba(104, 180, 198, 0.58);
  transform: translateY(-50%);
}

.process-step--left .process-step__card {
  grid-column: 1;
  justify-self: end;
}

.process-step--left .process-step__card::before {
  left: 100%;
}

.process-step--right .process-step__card {
  grid-column: 3;
  justify-self: start;
}

.process-step--right .process-step__card::before {
  right: 100%;
}

.process-steps.is-enhanced .process-step__card {
  opacity: 0;
  transform: translateY(20px);
}

.process-steps.is-enhanced .process-step.is-visible .process-step__card {
  opacity: 1;
  transform: translateY(0);
}

.process-step.is-visible::before {
  border-color: #0b8198;
  box-shadow: 0 0 0 8px rgba(104, 180, 198, 0.18), 0 0 24px rgba(11, 129, 152, 0.24);
  transform: scale(1.08);
}

.process-step__card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 174, 193, 0.7);
  box-shadow: 0 20px 40px rgba(24, 43, 58, 0.1);
}

.process-step__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #0a8198;
  background: linear-gradient(180deg, #edf8fb 0%, #ffffff 100%);
  border: 1px solid rgba(95, 177, 195, 0.42);
}

.process-step__icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.process-step__content {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.process-step__number {
  color: #0b8198;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-step__title {
  margin: 0;
  color: #16242f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.process-step__copy {
  margin: 0;
  color: #56636d;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.5;
  text-wrap: pretty;
}

.design-process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(58px, 7vw, 88px);
  padding: clamp(26px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(18, 32, 44, 0.94) 0%, rgba(21, 82, 98, 0.92) 100%),
    linear-gradient(90deg, rgba(52, 153, 178, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  color: #ffffff;
  overflow: hidden;
}

.design-process-cta__content {
  max-width: 680px;
  display: grid;
  gap: 12px;
}

.design-process-cta__eyebrow {
  color: #9ee4f1;
}

.design-process-cta__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.design-process-cta__copy {
  margin: 0;
  color: rgba(241, 249, 252, 0.82);
  font-size: 15px;
  line-height: 1.7;
  text-wrap: pretty;
}

.design-process-cta__button {
  flex: 0 0 auto;
  min-width: 180px;
  background: #5eb6ca;
}

@keyframes design-process-rise {
  from {
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes design-process-image-in {
  from {
    transform: translateY(22px) scale(0.985);
  }

  to {
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .design-process-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 46px;
  }

  .design-process-hero__content {
    max-width: 680px;
  }

  .design-process-hero__media {
    max-width: 820px;
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .process-steps {
    max-width: 720px;
    padding-left: 22px;
  }

  .process-steps::before,
  .process-steps::after {
    left: 9px;
  }

  .process-step {
    grid-template-columns: 36px minmax(0, 1fr);
    min-height: 100%;
  }

  .process-step::before {
    grid-column: 1;
    justify-self: start;
    margin-left: -22px;
  }

  .process-step--left .process-step__card,
  .process-step--right .process-step__card {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
  }

  .process-step--left .process-step__card::before,
  .process-step--right .process-step__card::before {
    left: auto;
    right: 100%;
    width: 28px;
  }

  .design-process-cta {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (max-width: 640px) {
  .design-process-hero,
  .design-process-timeline,
  .design-process-cta {
    width: min(1440px, calc(100% - 28px));
    max-width: calc(100vw - 28px);
  }

  .design-process-hero {
    gap: 28px;
    padding: 42px 0 52px;
  }

  .design-process-hero::before {
    bottom: 18px;
  }

  .design-process-hero__title {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .design-process-hero__copy,
  .design-process-timeline__copy,
  .process-step__copy,
  .design-process-cta__copy {
    font-size: 14px;
    text-wrap: wrap;
    overflow-wrap: anywhere;
  }

  .design-process-hero__button,
  .design-process-cta__button {
    width: 100%;
  }

  .design-process-hero__media {
    width: 100%;
    max-width: 100%;
    padding: 8px;
    overflow: hidden;
  }

  .design-process-hero__media::before,
  .design-process-hero__media::after {
    display: none;
  }

  .design-process-timeline {
    padding: 46px 0 52px;
  }

  .design-process-timeline__header {
    margin-bottom: 34px;
    text-align: left;
  }

  .design-process-timeline__copy {
    margin: 0;
  }

  .design-process-timeline__title {
    font-size: clamp(1.72rem, 8vw, 2.2rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-left: 18px;
  }

  .process-step__card {
    gap: 10px;
    padding: 15px 13px;
  }

  .process-step__icon {
    width: 44px;
    height: 44px;
  }

  .process-step__icon svg {
    width: 22px;
    height: 22px;
  }

  .process-step__title {
    font-size: 0.96rem;
  }

  .design-process-cta {
    margin-bottom: 56px;
    padding: 24px 18px;
  }

  .design-process-cta__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.06;
  }

}

@media (max-width: 420px) {
  .design-process-hero,
  .design-process-timeline,
  .design-process-cta {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
  }

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

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

  .process-step__icon {
    width: 50px;
    height: 50px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .design-process-hero__content,
  .design-process-hero__media {
    animation: none;
  }

  .process-steps::after,
  .process-step,
  .process-step::before,
  .process-step__card {
    transition: none;
  }

  .process-steps.is-enhanced .process-step__card {
    opacity: 1;
    transform: none;
  }
}
