﻿@font-face {
  font-family: "Strawford";
  src: url("./assets/fonts/Strawford-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("./assets/fonts/Inter.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #f6f5f8;
  --surface: #ffffff;
  --text: #131313;
  --action: #0197f8;
  --muted: #5f5f67;
  --page-gutter: clamp(14px, 3vw, 32px);
  --section-space: clamp(56px, 7vw, 84px);
  --shadow-soft: 0 10px 30px rgba(20, 28, 40, 0.08);
  --shadow-card: 0 6px 18px rgba(20, 28, 40, 0.08);
  --gradient-band: linear-gradient(90deg, #20ef82 0%, #11ead1 10%, #22b9ff 24%, #2456d8 38%, #7b2fff 52%, #cf19ff 64%, #ff4f9f 74%, #ff8a19 84%, #ff3a22 92%, #ff8a19 96%, #20ef82 100%);
  --gradient-button: linear-gradient(90deg, #ff6468 0%, #a514ff 54%, #0b59df 100%);
  --gradient-orb:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0 10%, rgba(255, 255, 255, 0.03) 18%, rgba(255, 255, 255, 0) 38%),
    conic-gradient(
      from 200deg at 50% 50%,
      #1bded2 0deg,
      #2a7bff 74deg,
      #8b1fff 148deg,
      #ff57bf 208deg,
      #ff8b1f 274deg,
      #78ee36 330deg,
      #1bded2 360deg
    );
  --mint: linear-gradient(180deg, #ffffff 0%, #dff8fa 100%);
  --rose: linear-gradient(180deg, #ffffff 0%, #f8e4f7 100%);
  --cream: linear-gradient(180deg, #ffffff 0%, #f8f3dd 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

html:has(body.page-id-1280) {
  margin-top: 0 !important;
}

body.page-id-1280 {
  margin-top: 0 !important;
  background: var(--bg);
}

body.page-id-1280 #wpadminbar,
body.page-id-1280 #masthead,
body.page-id-1280 #site-footer,
body.page-id-1280 .page-header,
body.page-id-1280 .joinchat {
  display: none !important;
}

body.page-id-1280 #page,
body.page-id-1280 main#content,
body.page-id-1280 .page-content {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.page-id-1280 .page-content > *:not(style):not(script):not(main):not(section):not(header):not(footer):not(div) {
  display: none !important;
}

.liquid-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-shell {
  width: min(100% - (var(--page-gutter) * 2), 1380px);
  margin: 0 auto;
}

.sticky-chrome {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

@keyframes rgb-top-bar-shift {
  0% {
    background-position: 14% 50%;
  }

  50% {
    background-position: 76% 50%;
  }

  100% {
    background-position: 14% 50%;
  }
}

.top-band,
.authority,
.site-footer__bottom {
  background-image: var(--gradient-band);
  background-size: 190% 100%;
  background-position: 14% 50%;
  animation: rgb-top-bar-shift 12s ease-in-out infinite;
}

.top-band {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  width: 100%;
  padding: 0 16px;
}

@media (prefers-reduced-motion: reduce) {
  .top-band,
  .authority,
  .site-footer__bottom {
    animation: none;
    background-position: 50% 50%;
  }
}

.site-header {
  position: relative;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  box-sizing: border-box;
  background: rgba(246, 245, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.04);
}

.site-header__inner {
  position: relative;
  width: min(100% - (var(--page-gutter) * 2), 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 88px;
}

.site-brand img {
  width: 165px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  white-space: nowrap;
  color: rgba(19, 19, 19, 0.72);
}

.site-nav a {
  text-decoration: none !important;
  text-underline-offset: 0 !important;
  text-decoration-thickness: 0 !important;
  box-shadow: none !important;
  transition: color 180ms ease;
}

.site-nav a:hover {
  text-decoration: none !important;
  color: var(--text);
}

.site-nav a:focus-visible,
.site-nav a:visited,
.site-nav a:active {
  text-decoration: none !important;
  box-shadow: none !important;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19, 19, 19, 0.14);
  border-radius: 999px;
  background: transparent;
  padding: 0;
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 56px;
  padding: 0 clamp(20px, 3vw, 34px);
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Strawford", Arial, sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.15;
  text-align: center;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

a.button,
a.button:visited,
a.button:hover,
a.button:active,
button.button,
button.button:hover,
button.button:active {
  font-family: "Strawford", Arial, sans-serif !important;
  font-weight: 400 !important;
  text-decoration: none !important;
}

.button:hover {
  transform: none;
}

.button--outline {
  min-height: 50px;
  padding: 0 28px;
  border-color: rgba(19, 19, 19, 0.42);
  background: transparent;
  box-shadow: none;
}

.button--outline:hover {
  background: var(--action);
  color: #ffffff;
  border-color: var(--action);
  box-shadow: none;
}

.button--liquid {
  --btn-x: 50%;
  --btn-y: 50%;
  --btn-dx: 0px;
  --btn-dy: 0px;
  --btn-energy: 0;
  --btn-core: 12%;
  --btn-fade: 30%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.button--liquid:hover,
.button--liquid.is-liquid-active {
  transform: none;
}

.button--gradient {
  color: var(--text);
  background: transparent;
  border-color: rgba(19, 19, 19, 0.72);
  box-shadow: none;
}

a.button--gradient,
a.button--gradient:visited,
a.button--gradient:hover,
a.button--gradient:active,
button.button--gradient,
button.button--gradient:hover,
button.button--gradient:active {
  color: var(--text) !important;
}

.button--liquid::before {
  content: none;
  position: absolute;
  inset: -6%;
  border-radius: inherit;
  pointer-events: none;
  background: var(--gradient-button);
  filter: url("#liquid-warp") saturate(1.18) contrast(1.12);
  opacity: 0;
  transform: translate(calc(var(--btn-dx) * 0.28), calc(var(--btn-dy) * 0.28));
  transition: opacity 180ms ease, transform 140ms ease;
  -webkit-mask-image: radial-gradient(circle at var(--btn-x) var(--btn-y), #000 0, #000 var(--btn-core), transparent var(--btn-fade));
  mask-image: radial-gradient(circle at var(--btn-x) var(--btn-y), #000 0, #000 var(--btn-core), transparent var(--btn-fade));
}

.button--liquid:hover::before,
.button--liquid.is-liquid-active::before {
  opacity: 0;
}

.button--outline.button--liquid.is-liquid-active,
.button--outline.button--liquid:hover {
  color: var(--text);
  border-color: rgba(19, 19, 19, 0.72);
  background: transparent;
  box-shadow: none;
}

a.button--outline.button--liquid.is-liquid-active,
a.button--outline.button--liquid:hover,
a.button--outline.button--liquid:active {
  color: var(--text) !important;
}

.button--small {
  min-height: 48px;
  padding: 0 28px;
  font-size: 16px;
}

.button--header {
  min-width: 0;
  min-height: 32px;
  padding-inline: 63px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}

.button--header.button--outline {
  border-width: 1.5px;
  border-color: rgba(19, 19, 19, 0.72);
  background: transparent;
  box-shadow: none;
}

.button--header.button--outline:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 46vw, 860px);
  overflow: hidden;
}

.hero__media,
.hero__media img,
.hero__media video,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background: #000;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media video {
  opacity: 0.82;
  filter: brightness(0.82) contrast(0.92) saturate(1.04);
  transform: scale(1.03);
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(90deg, rgba(10, 18, 32, 0.14) 0%, rgba(10, 18, 32, 0.1) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 56px) 0;
  text-align: center;
}

.hero h1 {
  margin: 0;
  max-width: min(1180px, 92vw);
  color: #f8f7fa;
  font-family: "Strawford", Arial, sans-serif;
  font-size: clamp(34px, 6vw, 104px);
  line-height: 0.95;
  letter-spacing: clamp(0.06em, 0.22vw, 0.18em);
  text-transform: uppercase;
  font-weight: 400;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  margin-top: 22px;
}

.section-block {
  padding: var(--section-space) 0;
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.section-heading--catalog {
  margin-bottom: 38px;
}

.section-heading h2,
.authority h2,
.site-footer h3 {
  margin: 0;
  font-family: "Strawford", Arial, sans-serif;
  font-weight: 400;
}

.section-heading h2,
.authority h2 {
  font-size: clamp(38px, 3.1vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.segments {
  padding-top: 72px;
  overflow-x: clip;
}

.shelf {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.shelf--compact {
  margin-bottom: 34px;
}

.shelf__viewport {
  overflow: hidden;
}

.shelf__nav,
.catalog-carousel__nav,
.catalog-model-picker__nav {
  width: 54px;
  height: 54px;
  border: 0 !important;
  border-radius: 999px;
  background: rgba(225, 225, 231, 0.84) !important;
  color: rgba(109, 114, 127, 0.9) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 10px 22px rgba(20, 28, 40, 0.08);
  cursor: pointer;
  line-height: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: transform 220ms ease, background-color 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.shelf__nav:hover:not(:disabled),
.catalog-carousel__nav:hover:not(:disabled),
.catalog-model-picker__nav:hover:not(:disabled) {
  transform: scale(1.04);
  background: rgba(212, 212, 219, 0.94) !important;
  box-shadow: 0 12px 26px rgba(20, 28, 40, 0.1);
}

.shelf__nav:disabled,
.catalog-carousel__nav:disabled,
.catalog-model-picker__nav:disabled {
  opacity: 0.24;
  pointer-events: none;
}

.shelf__nav svg,
.catalog-carousel__nav svg,
.catalog-model-picker__nav svg {
  display: block;
  width: 15px;
  height: 24px;
  stroke: currentColor !important;
  stroke-width: 2.4;
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translate3d(0, -1px, 0);
}

.shelf__nav svg path,
.catalog-carousel__nav svg path,
.catalog-model-picker__nav svg path {
  stroke: currentColor !important;
  stroke-width: 2.4;
  fill: none !important;
  vector-effect: non-scaling-stroke;
}

.shelf__nav--prev svg,
.catalog-carousel__nav--prev svg,
.catalog-model-picker__nav--prev svg {
  transform: translate3d(-0.5px, -1px, 0);
}

.shelf__nav--next svg,
.catalog-carousel__nav--next svg,
.catalog-model-picker__nav--next svg {
  transform: translate3d(0.75px, -1px, 0);
}

.segments__track,
.product-strip {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 2px 22px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
}

.segments__track::-webkit-scrollbar,
.product-strip::-webkit-scrollbar {
  display: none;
}

.segments__track.is-dragging,
.product-strip.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.segment-card {
  position: relative;
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 286px;
  min-height: 458px;
  border-radius: 28px;
  overflow: hidden;
  padding: 26px 22px 207px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #333333;
  box-shadow: 2px 4px 12px rgba(15, 18, 24, 0.16);
  scroll-snap-align: start;
  transform-origin: center center;
  transition: transform 300ms cubic-bezier(0, 0, 0.5, 1), box-shadow 300ms cubic-bezier(0, 0, 0.5, 1);
  will-change: transform, box-shadow;
}

.segment-card:hover {
  transform: scale(1.02);
  box-shadow: 2px 4px 16px rgba(15, 18, 24, 0.24);
}

.segment-card--text-only {
  padding-bottom: 32px;
}

.segment-card__copy {
  position: relative;
  z-index: 2;
  max-width: none;
}

.segment-card--text-only .segment-card__copy {
  max-width: none;
}

.segment-card h3 {
  margin: 0 0 14px;
  font-family: "Strawford", Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: #ffffff;
}

.segment-card__title-line {
  display: block;
}

.segment-card--maintenance h3 {
  min-height: 2.16em;
}

.segment-card p {
  margin: 0;
  max-width: none;
  font-size: 14px;
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.86);
}

.segment-card__media {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 207px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 14px 14px;
  pointer-events: none;
}

.segment-card img {
  z-index: 1;
  width: auto;
  max-width: 72%;
  max-height: 78%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.18));
  transition: transform 300ms cubic-bezier(0, 0, 0.5, 1);
  transform: translateY(var(--segment-image-offset-y, 0px)) scale(var(--segment-image-scale, 1));
  transform-origin: center center;
}

.segment-card:hover img {
  transform: translateY(var(--segment-image-offset-y, 0px)) scale(var(--segment-image-scale, 1));
}

.segment-card--text-only img {
  display: none;
}

.segment-card--sale .segment-card__media,
.segment-card--maintenance .segment-card__media {
  align-items: center;
}

.segment-card--rental .segment-card__media,
.segment-card--team .segment-card__media,
.segment-card--support .segment-card__media {
  align-items: flex-end;
  padding-bottom: 0;
}

.segment-card--sale img {
  --segment-image-scale: 1.5;
  --segment-image-offset-y: 2px;
  max-width: 76%;
  max-height: 76%;
}

.segment-card--rental img {
  --segment-image-scale: 1.8;
  --segment-image-offset-y: 0px;
  max-width: 76%;
  max-height: 100%;
  object-position: center bottom;
  transform-origin: center bottom;
}

.segment-card--team img {
  --segment-image-scale: 1.11;
  max-width: 81%;
  max-height: 100%;
  object-position: center bottom;
  transform-origin: center bottom;
}

.segment-card--maintenance img {
  --segment-image-scale: 1.5;
  --segment-image-offset-y: 2px;
  max-width: 74%;
  max-height: 78%;
}

.segment-card--content img {
  --segment-image-scale: 1.5;
  --segment-image-offset-y: 2px;
}

.segment-card--support img {
  --segment-image-scale: 1.11;
  max-width: 81%;
  max-height: 100%;
  object-position: center bottom;
  transform-origin: center bottom;
}

.segments .shelf {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: block;
}

.segments .shelf__viewport {
  overflow: hidden !important;
  padding-left: 19px !important;
  padding-right: 0 !important;
}

.segments .shelf__nav {
  position: absolute !important;
  top: 50% !important;
  z-index: 3 !important;
  transform: translateY(-50%) !important;
}

.segments .shelf__nav:hover {
  transform: translateY(-50%) scale(1.04) !important;
}

.segments .shelf__nav--prev {
  left: clamp(8px, 1.8vw, 24px);
}

.segments .shelf__nav--next {
  right: clamp(8px, 1.8vw, 24px);
}

.segments .segments__track {
  gap: 24px;
  padding: 12px 0 30px;
  scroll-padding-inline-start: 19px;
  scroll-padding-inline-end: 0;
}

.segments .segments__track.is-centered {
  justify-content: center;
  cursor: default;
}

.segments .segment-card {
  flex: 0 0 clamp(258px, 22vw, 340px);
  min-width: 0;
}

.section-cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.authority {
  padding: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  max-width: none !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: #5d44fb;
  background-image: var(--gradient-band);
  color: #fff;
}

.authority__liquid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.authority__smear {
  --smear-x: 50%;
  --smear-y: 50%;
  --smear-core: 5.5%;
  --smear-fade: 14.5%;
  --smear-shift-x: 0px;
  --smear-shift-y: 0px;
  position: absolute;
  inset: -3%;
  background: var(--gradient-band);
  background-repeat: no-repeat;
  background-size: calc(100% + 180px) calc(100% + 80px);
  background-position: var(--smear-shift-x) var(--smear-shift-y);
  opacity: 0;
  filter: url("#liquid-warp") saturate(1.16) contrast(1.08) blur(2.8px);
  transform: translate3d(0, 0, 0) scale(1);
  will-change: transform, opacity, background-position;
  -webkit-mask-image: radial-gradient(circle at var(--smear-x) var(--smear-y), #000 0, #000 var(--smear-core), transparent var(--smear-fade));
  mask-image: radial-gradient(circle at var(--smear-x) var(--smear-y), #000 0, #000 var(--smear-core), transparent var(--smear-fade));
}

.authority .site-shell {
  position: relative;
  z-index: 1;
  min-height: clamp(320px, 26vw, 380px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: 38px 0 26px;
  transform: none;
}

.authority h2 {
  margin: 0 0 34px;
  text-align: center;
  font-size: clamp(34px, 3vw, 54px);
}

.authority__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px);
}

.authority__item {
  text-align: center;
  padding: 14px 18px 18px;
}

.authority__item img {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
}

.authority__item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Strawford", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.authority__item span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(0, 560px);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 38px);
  max-width: min(100%, 1010px);
  margin-inline: auto;
}

.about__grid > *,
.contact__grid > *,
.product-family__header > *,
.product-showcase > * {
  min-width: 0;
}

.about__media {
  width: min(100%, 390px);
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.about__media video {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  background: transparent;
}

.about__copy {
  max-width: 560px;
  justify-self: start;
  font-size: 21px;
  line-height: 1.55;
  color: rgba(19, 19, 19, 0.88);
}

.about__copy p + p {
  margin-top: 24px;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 44px) clamp(22px, 2.6vw, 36px);
  align-items: center;
  justify-items: center;
}

.trust__logo {
  width: 100%;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
}

.trust__logo img {
  width: min(100%, 184px);
  height: 72px;
  object-fit: contain;
  object-position: center;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.testimonial-card {
  text-align: center;
  padding: 4px 10px;
}

.testimonial-card img {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 0;
  font-family: "Strawford", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.testimonial-card__role {
  margin: 8px 0 0;
  font-size: 15px;
  color: rgba(19, 19, 19, 0.62);
}

.testimonial-card blockquote {
  margin: 16px auto 0;
  max-width: 280px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(19, 19, 19, 0.84);
  text-wrap: pretty;
}

.catalog {
  position: relative;
  z-index: 0;
  isolation: isolate;
  padding-top: 42px;
}

.catalog::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(239, 239, 243, 0.95) 0%, rgba(230, 230, 235, 0.99) 100%),
    #e5e5ea;
}

.product-family {
  position: relative;
  z-index: 0;
  padding: 52px 0 68px;
}

.product-family + .product-family {
  border-top: 1px solid rgba(19, 19, 19, 0.04);
}

.product-family::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((100vw - 100%) / -2);
  right: calc((100vw - 100%) / -2);
  z-index: -1;
}

.product-family--base::before {
  background: var(--bg);
}

.product-family--shade::before {
  background: #efedf2;
}

.product-family__header {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(0, 0.8fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 28px;
}

.product-family__header h3 {
  margin: 0;
  font-family: "Strawford", Arial, sans-serif;
  font-size: clamp(34px, 2.4vw, 54px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.product-family__header p {
  margin: 8px 0 0;
}

.product-family__intro {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  text-align: right;
  color: rgba(19, 19, 19, 0.86);
}

.product-strip {
  gap: 26px;
  align-items: center;
}

.product-chip {
  flex: 0 0 auto;
  min-width: 150px;
  display: inline-flex;
  appearance: none;
  -webkit-appearance: none;
  align-items: center;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  color: inherit;
  text-align: left;
  cursor: pointer;
  scroll-snap-align: start;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-chip:hover,
.product-chip:focus-visible,
.product-chip--active {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.product-chip__visual {
  position: relative;
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: visible;
  pointer-events: none;
}

.product-chip__orb {
  --orb-x: 50%;
  --orb-y: 50%;
  --orb-dx: 0px;
  --orb-dy: 0px;
  --orb-energy: 0;
  --orb-mask-core: 8%;
  --orb-mask-fade: 18%;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 28, 40, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease, background 220ms ease;
  pointer-events: none;
}

.product-chip img {
  position: relative;
  z-index: 1;
  width: 128%;
  height: 128%;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  transition: transform 180ms ease;
  pointer-events: none;
  transform: translate(1px, -7px);
  transform-origin: center center;
}

.product-chip__label {
  font-family: "Strawford", Arial, sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  white-space: nowrap;
  color: rgba(19, 19, 19, 0.76);
  transition: color 180ms ease;
  pointer-events: none;
}

.product-chip:hover,
.product-chip:focus-visible,
.product-chip--active {
  opacity: 1;
}

.product-chip:focus-visible {
  outline: none;
}

.product-chip:hover .product-chip__visual,
.product-chip:focus-visible .product-chip__visual,
.product-chip--active .product-chip__visual {
  transform: translateY(-2px);
}

.product-chip:hover img,
.product-chip:focus-visible img,
.product-chip--active img {
  transform: translate(2px, -8px) scale(1.05);
}

.product-chip:hover .product-chip__label,
.product-chip:focus-visible .product-chip__label,
.product-chip--active .product-chip__label {
  color: var(--text);
}

.product-chip--active .product-chip__orb {
  box-shadow: 0 12px 24px rgba(20, 28, 40, 0.12);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 0.8fr);
  gap: 56px;
  align-items: center;
  padding: 28px 0;
}

.product-visual {
  --orb-size: clamp(320px, 32vw, 408px);
  --orb-left: clamp(14px, 2vw, 30px);
  --orb-top: 20px;
  --orb-center-x: calc(var(--orb-left) + (var(--orb-size) / 2));
  --orb-center-y: calc(var(--orb-top) + (var(--orb-size) / 2));
  --image-size: calc(var(--orb-size) * 1.1);
  position: relative;
  width: calc(var(--orb-left) + var(--orb-size) + 56px);
  min-height: calc(var(--orb-top) + var(--orb-size) + 46px);
  overflow: visible;
}

.product-visual__orb {
  --orb-x: 50%;
  --orb-y: 50%;
  --orb-dx: 0px;
  --orb-dy: 0px;
  --orb-energy: 0;
  --orb-mask-core: 8%;
  --orb-mask-fade: 18%;
  position: absolute;
  left: var(--orb-left);
  top: var(--orb-top);
  width: var(--orb-size);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gradient-orb);
  isolation: isolate;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 280ms ease, filter 280ms ease;
  will-change: transform, filter;
}

.product-chip__orb::before,
.product-chip__orb::after,
.product-visual__orb::before,
.product-visual__orb::after {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 220ms ease, transform 180ms ease;
  background: var(--gradient-orb);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.product-chip__orb::before,
.product-visual__orb::before {
  filter: url("#liquid-warp") saturate(1.22) contrast(1.14);
  opacity: 0;
  transform: translate(calc(var(--orb-dx) * 0.3), calc(var(--orb-dy) * 0.3)) scale(calc(1.015 + (var(--orb-energy) * 0.06)));
  -webkit-mask-image: radial-gradient(circle at var(--orb-x) var(--orb-y), #000 0, #000 var(--orb-mask-core), transparent var(--orb-mask-fade));
  mask-image: radial-gradient(circle at var(--orb-x) var(--orb-y), #000 0, #000 var(--orb-mask-core), transparent var(--orb-mask-fade));
}

.product-chip__orb::after,
.product-visual__orb::after {
  filter: blur(calc(10px + (var(--orb-energy) * 14px))) saturate(1.18) contrast(1.08);
  opacity: 0;
  transform: translate(calc(var(--orb-dx) * 0.46), calc(var(--orb-dy) * 0.46)) scale(calc(1.03 + (var(--orb-energy) * 0.1)));
  -webkit-mask-image: radial-gradient(circle at calc(var(--orb-x) + (var(--orb-dx) * 0.05)) calc(var(--orb-y) + (var(--orb-dy) * 0.05)), #000 0, #000 calc(var(--orb-mask-core) * 0.8), transparent calc(var(--orb-mask-fade) + 6%));
  mask-image: radial-gradient(circle at calc(var(--orb-x) + (var(--orb-dx) * 0.05)) calc(var(--orb-y) + (var(--orb-dy) * 0.05)), #000 0, #000 calc(var(--orb-mask-core) * 0.8), transparent calc(var(--orb-mask-fade) + 6%));
}

.product-chip__visual.is-liquid-active .product-chip__orb {
  background: var(--gradient-orb);
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.04);
  box-shadow: 0 14px 28px rgba(20, 28, 40, 0.14);
}

.product-chip__visual.is-liquid-active .product-chip__orb::before {
  opacity: calc(0.2 + (var(--orb-energy) * 0.16));
}

.product-chip__visual.is-liquid-active .product-chip__orb::after {
  opacity: calc(0.1 + (var(--orb-energy) * 0.12));
}

.product-chip__orb::before {
  filter: url("#liquid-warp") saturate(1.08) contrast(1.04) blur(1.8px);
}

.product-chip__orb::after {
  filter: blur(calc(18px + (var(--orb-energy) * 10px))) saturate(1.08) contrast(1.03);
}

.product-chip__visual.is-liquid-active img {
  transform: translate(calc(2px + (var(--liquid-shift-x, 0px) * 0.28)), calc(-8px + (var(--liquid-shift-y, 0px) * 0.28))) scale(1.06);
}

.product-visual.is-liquid-active .product-visual__orb {
  background: var(--gradient-orb);
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.04);
  box-shadow: 0 18px 34px rgba(20, 28, 40, 0.14);
}

.product-visual.is-liquid-active .product-visual__orb::before {
  opacity: calc(0.2 + (var(--orb-energy) * 0.16));
}

.product-visual.is-liquid-active .product-visual__orb::after {
  opacity: calc(0.1 + (var(--orb-energy) * 0.12));
}

.product-visual.is-liquid-active .product-visual__image {
  transform:
    translate(
      calc(-51.5% + (var(--liquid-shift-x, 0px) * 0.22)),
      calc(-56.5% + (var(--liquid-shift-y, 0px) * 0.22))
    )
    scale(1.05);
}

.product-visual__image {
  position: absolute;
  z-index: 1;
  width: var(--image-size);
  height: var(--image-size);
  left: var(--orb-center-x);
  top: var(--orb-center-y);
  max-width: none;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transform: translate(-51.5%, -56.5%);
  transform-origin: center center;
  transition: transform 180ms ease;
}

.product-copy h4 {
  margin: 0 0 16px;
  font-family: "Strawford", Arial, sans-serif;
  font-size: clamp(26px, 2vw, 32px);
  font-weight: 400;
}

.product-copy {
  padding-top: 44px;
}

.product-copy p {
  margin: 0 0 20px;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.5;
  color: rgba(19, 19, 19, 0.86);
}

.product-copy ul {
  margin: 0 0 28px;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.7;
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.contact__media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.contact__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact__panel {
  padding: 12px 0;
}

.contact-form label {
  display: block;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(19, 19, 19, 0.75);
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1.5px solid rgba(19, 19, 19, 0.42);
  border-radius: 999px;
  background: transparent;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.contact-form__row--phone {
  grid-template-columns: 120px minmax(0, 1fr);
}

.contact-form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 28px;
}

.contact-form__check input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.contact-form__check span {
  margin: 0;
  font-size: 13px;
}

.contact-form__submit {
  width: min(100%, 368px);
  min-height: 48px;
  padding: 0 28px;
  font-size: 16px;
  line-height: 1.15;
}

.faq__inner {
  max-width: 920px;
}

.faq__list {
  display: grid;
}

.faq-item {
  border-bottom: 1px solid rgba(19, 19, 19, 0.38);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 52px 24px 0;
  font-size: clamp(17px, 1.4vw, 20px);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 38px;
  line-height: 1;
  color: rgba(19, 19, 19, 0.76);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(19, 19, 19, 0.82);
}

.site-footer {
  width: 100vw;
  max-width: none !important;
  margin: 0 !important;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  display: block;
  box-sizing: border-box;
  background: #030303;
  color: #fff;
  padding: 0 !important;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 190px minmax(240px, 320px);
  gap: 36px;
  min-height: 312px;
  align-items: start;
  align-content: center;
  padding-bottom: 0;
}

.site-footer__brand {
  transform: none;
  align-self: start;
}

.site-footer__brand img {
  width: 170px;
  filter: brightness(0) invert(1);
}

.site-footer__links h3,
.site-footer__company h3 {
  margin-bottom: 28px;
  font-size: 18px;
}

.site-footer__links,
.site-footer__company address {
  display: grid;
  gap: 14px;
}

.site-footer__links--site {
  transform: translate(100px, 0);
  align-self: start;
}

.site-footer__links--legal {
  transform: translate(24px, 0);
  align-self: start;
}

.site-footer__company {
  align-self: start;
}

.site-footer__company address {
  margin: 0;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__company strong {
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer__company span,
.site-footer__company a {
  font-size: 14px;
  line-height: 1.45;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.site-footer__social-link,
.site-footer__social-link:any-link,
.site-footer__social-link:hover,
.site-footer__social-link:focus,
.site-footer__social-link:focus-visible,
.site-footer__social-link:visited,
.site-footer__social-link:active {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.site-footer__social-link svg {
  width: 19px;
  height: 19px;
  display: block;
}

.site-footer__social-link img {
  width: 19px;
  height: 19px;
  display: block;
}

.site-footer__social-link[aria-label="Instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__social-link[aria-label="Instagram"] {
  background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 48%, #6228d7 100%);
}

.site-footer__social-link[aria-label="Instagram"]:hover,
.site-footer__social-link[aria-label="Instagram"]:focus-visible {
  background: linear-gradient(135deg, #ffd34d 0%, #f23886 48%, #6d31ea 100%);
}

.site-footer__social-link[aria-label="Instagram"] .site-footer__social-dot {
  fill: currentColor;
  stroke: none;
}

.site-footer__social-link[aria-label="Facebook"] svg {
  fill: currentColor;
}

.site-footer__social-link[aria-label="Facebook"] {
  background: #1877f2;
}

.site-footer__social-link[aria-label="Facebook"]:hover,
.site-footer__social-link[aria-label="Facebook"]:focus-visible {
  background: #2a84f7;
}

.site-footer__links a {
  font-size: 16px;
}

.site-footer__links a,
.site-footer__links a:any-link,
.site-footer__links a:hover,
.site-footer__links a:focus,
.site-footer__links a:focus-visible,
.site-footer__links a:visited,
.site-footer__links a:active,
.site-footer__company a,
.site-footer__company a:any-link,
.site-footer__company a:hover,
.site-footer__company a:focus,
.site-footer__company a:focus-visible,
.site-footer__company a:visited,
.site-footer__company a:active {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none !important;
  text-decoration-line: none !important;
  -webkit-text-decoration-line: none !important;
  text-underline-offset: 0 !important;
  text-decoration-thickness: 0 !important;
  box-shadow: none !important;
}

.site-footer__bottom {
  border-top: 0;
  background-color: #5d44fb;
  background-image: var(--gradient-band);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-family: "Strawford", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: none;
  padding: 10px 16px 9px;
}

.whatsapp-float,
.whatsapp-float:visited {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  display: block;
  fill: currentColor;
}

@media (max-width: 640px) {
  .whatsapp-float,
  .whatsapp-float:visited {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 1320px) {
  .site-header__inner {
    gap: 22px;
  }

  .site-brand img {
    width: 152px;
  }

  .site-nav {
    gap: 20px;
    font-size: 14px;
  }

  .button--header {
    min-width: 0;
    min-height: 34px;
    padding-inline: 50px;
    font-size: 13px;
  }
}

@media (max-width: 1140px) {
  .site-header__inner {
    gap: 18px;
  }

  .site-brand img {
    width: 142px;
  }

  .site-nav {
    gap: 16px;
    font-size: 13px;
  }

  .button--header {
    min-width: 0;
    min-height: 32px;
    padding-inline: 40px;
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    align-items: center;
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "nav nav";
    gap: 18px;
  }

  .site-brand {
    grid-area: brand;
  }

  .site-nav {
    display: none;
    grid-area: nav;
  }

  .site-nav.is-open {
    position: static;
    display: grid;
    width: 100%;
    gap: 14px;
    margin: 2px 0 16px;
    padding: 16px 0 4px;
    border-top: 1px solid rgba(19, 19, 19, 0.08);
    background: transparent;
    box-shadow: none;
    justify-items: start;
    white-space: normal;
  }

  .site-nav.is-open a {
    width: 100%;
    padding: 2px 0;
    font-size: 16px;
    color: rgba(19, 19, 19, 0.82);
  }

  .site-header__toggle {
    display: inline-block;
    grid-area: toggle;
    justify-self: end;
  }

  .button--header {
    display: none;
  }

  .segments .shelf__viewport {
    padding-left: 19px;
    padding-right: 0;
  }

  .segments .segments__track {
    padding-inline: 0;
    scroll-padding-inline-start: 19px;
    scroll-padding-inline-end: 0;
  }

  .segments .segment-card {
    flex-basis: clamp(248px, 62vw, 310px);
  }

  .about__grid,
  .contact__grid,
  .product-showcase,
  .product-family__header {
    grid-template-columns: 1fr;
  }

  .about__media,
  .about__copy {
    justify-self: center;
  }

  .product-family__intro {
    text-align: left;
  }

  .trust__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    min-height: auto;
    padding-top: 56px;
  }

  .site-footer__brand {
    transform: none;
  }

  .site-footer__links--site,
  .site-footer__links--legal,
  .site-footer__company {
    transform: none;
    align-self: start;
  }
}

@media (max-width: 1100px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .top-band {
    font-size: 11px;
    padding: 7px 14px;
  }

  .site-header__inner {
    min-height: 76px;
    gap: 14px;
  }

  .site-brand img {
    width: 138px;
  }

  .site-nav {
    gap: 12px;
    font-size: 12px;
  }

  .button--header {
    min-width: 0;
    min-height: 30px;
    padding-inline: 30px;
    font-size: 12px;
  }

  .hero {
    min-height: min(510px, calc(100svh - 84px));
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 0.98;
    letter-spacing: clamp(0.04em, 0.8vw, 0.08em);
  }

  .hero h1 span {
    margin-top: 14px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .shelf {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .shelf__nav {
    display: flex !important;
    width: 42px;
    height: 42px;
  }

  .shelf__nav svg {
    width: 13px;
    height: 21px;
  }

  .segments .shelf__nav--prev,
  .testimonials .shelf__nav--prev {
    left: 10px;
  }

  .segments .shelf__nav--next,
  .testimonials .shelf__nav--next {
    right: 10px;
  }

  .segment-card {
    flex-basis: 82vw;
    min-width: 82vw;
    min-height: 369px;
    padding: 22px 20px 173px;
    border-radius: 24px;
  }

  .segment-card h3 {
    font-size: clamp(21px, 5.6vw, 24px);
  }

  .segment-card p {
    max-width: none;
    font-size: 13px;
    line-height: 1.34;
  }

  .segment-card--text-only {
    padding-bottom: 24px;
  }

  .segment-card--text-only p {
    max-width: none;
  }

  .segment-card__media {
    height: 173px;
    padding-bottom: 10px;
  }

  .segment-card--rental .segment-card__media,
  .segment-card--team .segment-card__media,
  .segment-card--support .segment-card__media {
    padding-bottom: 0;
  }

  .authority__grid {
    grid-template-columns: 1fr;
  }

  .authority .site-shell {
    min-height: auto;
    padding: 40px 0 36px;
  }

  .about__copy,
  .product-family__intro {
    font-size: 16px;
  }

  .trust__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 18px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .trust__logo {
    min-height: 78px;
  }

  .trust__logo img {
    width: min(100%, 156px);
    height: 60px;
  }

  .product-chip {
    min-width: 142px;
  }

  .product-chip span {
    font-size: 16px;
  }

  .product-showcase {
    gap: 32px;
  }

  .product-copy {
    padding-top: 0;
  }

  .product-visual {
    --orb-size: min(72vw, 300px);
    --orb-left: calc(50% - (var(--orb-size) / 2));
    --orb-top: 6px;
    --orb-center-x: 50%;
    --orb-center-y: calc(var(--orb-top) + (var(--orb-size) / 2));
    --image-size: calc(var(--orb-size) * 1.1);
    width: 100%;
    min-height: calc(var(--orb-top) + var(--orb-size) + 40px);
  }

  .product-visual__orb {
    left: var(--orb-left);
    right: auto;
    top: var(--orb-top);
    width: var(--orb-size);
    margin-inline: 0;
  }

  .contact-form__row,
  .contact-form__row--phone,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__grid {
    min-height: auto;
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 20px;
    align-content: start;
  }

  .site-footer__brand,
  .site-footer__links--site,
  .site-footer__links--legal,
  .site-footer__company {
    transform: none;
    align-self: start;
  }

  .site-footer__links h3,
  .site-footer__company h3 {
    margin-bottom: 14px;
  }

  .site-footer__links,
  .site-footer__company address {
    gap: 10px;
  }

  .contact-form__submit {
    width: 100%;
  }

  .faq-item summary {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .button {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2,
  .authority h2 {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .hero h1 span {
    margin-top: 10px;
  }

  .segment-card {
    min-width: 86vw;
    min-height: 328px;
    padding: 18px 18px 150px;
  }

  .segment-card h3 {
    max-width: none;
    font-size: clamp(19px, 7vw, 22px);
  }

  .segment-card p {
    max-width: none;
    font-size: 12.5px;
    line-height: 1.3;
  }

  .segment-card--text-only {
    padding-bottom: 20px;
  }

  .segment-card--text-only p {
    max-width: none;
  }

  .segment-card__media {
    height: 150px;
    padding: 0 12px 8px;
  }

  .segment-card--rental .segment-card__media,
  .segment-card--team .segment-card__media,
  .segment-card--support .segment-card__media {
    padding-bottom: 0;
  }

  .segment-card img {
    max-width: 70%;
    max-height: 76%;
  }

  .segment-card--sale img,
  .segment-card--content img {
    max-width: 72%;
    max-height: 72%;
  }

  .segment-card--rental img {
    max-width: 76%;
    max-height: 100%;
  }

  .segment-card--team img,
  .segment-card--support img {
    max-width: 78%;
    max-height: 100%;
  }

  .segment-card--maintenance img {
    max-width: 72%;
    max-height: 74%;
  }

  .product-family {
    padding: 44px 0 56px;
  }

  .product-copy ul {
    padding-left: 18px;
  }
}

@media (max-width: 620px) {
  .trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .trust__logo {
    min-height: 70px;
    padding-inline: 4px;
  }

  .trust__logo img {
    width: min(100%, 138px);
    height: 52px;
  }
}

.button.button--liquid,
.button.button--gradient,
.button.contact-form__submit {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  animation: none !important;
  transform: none !important;
  color: var(--text) !important;
}

.button.button--liquid,
.button.button--gradient,
.button.contact-form__submit {
  border-color: rgba(19, 19, 19, 0.72) !important;
}

.button.button--liquid::before,
.button.button--liquid::after,
.button.button--gradient::before,
.button.button--gradient::after,
.button.contact-form__submit::before,
.button.contact-form__submit::after {
  content: none !important;
  display: none !important;
}

.button.button--liquid:hover,
.button.button--gradient:hover,
.button.contact-form__submit:hover,
.button.button--liquid.is-liquid-active,
.button.button--gradient.is-liquid-active,
.button.contact-form__submit.is-liquid-active {
  background: var(--action) !important;
  color: #ffffff !important;
  border-color: var(--action) !important;
}

a.button.button--liquid,
a.button.button--liquid:visited,
a.button.button--gradient,
a.button.button--gradient:visited,
button.button.button--liquid,
button.button.button--gradient,
button.button.contact-form__submit {
  background-color: transparent !important;
  background-image: none !important;
  color: #111111 !important;
  border-color: rgba(19, 19, 19, 0.72) !important;
}

a.button.button--liquid:hover,
a.button.button--liquid:active,
a.button.button--gradient:hover,
a.button.button--gradient:active,
button.button.button--liquid:hover,
button.button.button--gradient:hover,
button.button.contact-form__submit:hover,
a.button.button--liquid.is-liquid-active,
a.button.button--gradient.is-liquid-active,
button.button.button--liquid.is-liquid-active,
button.button.button--gradient.is-liquid-active,
button.button.contact-form__submit.is-liquid-active {
  background-color: var(--action) !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: var(--action) !important;
}

a.button.button--header.button--outline.button--liquid:hover,
a.button.button--header.button--outline.button--liquid:active,
a.button.button--header.button--outline.button--liquid.is-liquid-active {
  background-color: #111111 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: #111111 !important;
  box-shadow: none !important;
}

button.button.contact-form__submit:hover,
button.button.contact-form__submit:active,
button.button.contact-form__submit.is-liquid-active {
  background-color: #111111 !important;
  background-image: none !important;
  color: #ffffff !important;
  border-color: #111111 !important;
}

.catalog-carousel {
  --catalog-gap: clamp(18px, 2.2vw, 28px);
  position: relative;
  padding-bottom: 12px;
}

.catalog-carousel__viewport {
  overflow: hidden;
}

.catalog-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: var(--catalog-gap);
  transform: translateX(calc((var(--catalog-index, 0) * -100%) - (var(--catalog-index, 0) * var(--catalog-gap))));
  transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
  color: #111111;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.catalog-carousel__nav svg {
  width: 16px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-carousel__nav:hover:not(:disabled) {
  transform: scale(1.06);
  background: rgba(17, 17, 17, 0.14);
}

.catalog-carousel__nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.catalog-carousel__nav--prev {
  left: clamp(-18px, -2.4vw, -8px);
}

.catalog-carousel__nav--next {
  right: clamp(-18px, -2.4vw, -8px);
}

.catalog-carousel__nav {
  display: none;
}

.catalog-family-switcher {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.catalog-family-switcher__item {
  position: absolute;
  left: var(--family-switcher-left, 50%);
  top: var(--family-switcher-top, 0px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 96px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(19, 19, 19, 0.72);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: transform 180ms ease, color 180ms ease;
}

.catalog-family-switcher__item:hover,
.catalog-family-switcher__item:focus-visible,
.catalog-family-switcher__item.is-active {
  color: var(--text);
  transform: translate(-50%, -4px);
}

.catalog-family-switcher__item:focus-visible {
  outline: none;
}

.catalog-family-switcher__visual {
  position: relative;
  display: grid;
  place-items: center;
  width: var(--family-switcher-size, 84px);
  height: var(--family-switcher-size, 84px);
  border-radius: 50%;
  overflow: visible;
  background: linear-gradient(180deg, rgba(16, 16, 18, 0.98) 0%, rgba(28, 30, 36, 0.96) 100%);
  box-shadow: 0 12px 22px rgba(8, 10, 14, 0.28);
}

.catalog-family-switcher__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.catalog-family-switcher__item:hover .catalog-family-switcher__visual,
.catalog-family-switcher__item:focus-visible .catalog-family-switcher__visual,
.catalog-family-switcher__item.is-active .catalog-family-switcher__visual {
  box-shadow:
    0 16px 28px rgba(20, 28, 40, 0.18),
    0 0 0 1px rgba(17, 17, 17, 0.08);
}

.catalog-family-switcher__item.is-active .catalog-family-switcher__visual {
  background: var(--family-orb-gradient, var(--gradient-orb));
}

.catalog-family-switcher__visual img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 110%;
  height: 110%;
  object-fit: contain;
  object-position: center center;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 160ms ease;
  pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(20, 28, 40, 0.16));
}

.catalog-family-switcher__item:hover .catalog-family-switcher__visual img,
.catalog-family-switcher__item:focus-visible .catalog-family-switcher__visual img,
.catalog-family-switcher__item.is-active .catalog-family-switcher__visual img {
  transform: translate(-50%, -50%) scale(1.06);
}

.catalog-family-switcher__label {
  max-width: 96px;
  font-family: "Strawford", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
}

.catalog-family {
  opacity: 0.48;
  transition: opacity 260ms ease;
}

.catalog-family.is-active {
  opacity: 1;
}

.catalog-family__surface {
  min-height: 720px;
  padding: clamp(20px, 2.1vw, 30px) clamp(28px, 3vw, 42px);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(239, 239, 243, 0.95) 0%, rgba(230, 230, 235, 0.99) 100%),
    #e5e5ea;
  box-shadow: none;
}

.catalog-family__top {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 64px);
  align-items: start;
  min-height: var(--catalog-top-height, auto);
}

.catalog-family__heading h3 {
  margin: 0;
  font-family: "Strawford", Arial, sans-serif;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.catalog-family__heading p {
  margin: 10px 0 0;
  font-size: clamp(18px, 1.5vw, 24px);
  color: rgba(19, 19, 19, 0.82);
}

.catalog-family__intro {
  max-width: 530px;
  margin: 0;
  justify-self: end;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.55;
  text-align: center;
  color: rgba(19, 19, 19, 0.84);
  text-wrap: pretty;
}

.catalog-family__divider {
  height: 1px;
  margin: 24px 0 20px;
  background: rgba(19, 19, 19, 0.18);
}

.catalog-family__body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 82px);
  align-items: start;
}

.catalog-family__selector {
  display: grid;
  gap: 8px;
  width: min(100%, 440px);
  align-content: start;
}

.catalog-family__eyebrow {
  margin: 0;
  min-height: var(--catalog-eyebrow-height, auto);
  display: flex;
  align-items: flex-start;
  font-family: "Strawford", Arial, sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  letter-spacing: -0.03em;
}

.catalog-wheel {
  position: relative;
  left: 38px;
  width: min(100%, 440px);
  min-height: 520px;
  padding: 0 0 10px;
}

.catalog-wheel__chart-shell {
  position: absolute;
  left: 71px;
  top: 0;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--family-orb-gradient, var(--gradient-orb));
  overflow: hidden;
  box-shadow: none;
}

.catalog-wheel__chart {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-18deg);
}

.catalog-wheel__slice {
  cursor: pointer;
  opacity: 1;
  fill: rgba(255, 255, 255, 0.001);
  pointer-events: all;
  stroke: none;
  transition: opacity 180ms ease, transform 180ms ease, fill 180ms ease;
}

.catalog-wheel__slice:hover,
.catalog-wheel__slice.is-active {
  opacity: 1;
  fill: rgba(255, 255, 255, 0.001);
}

.catalog-wheel__chart-gloss {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.16), transparent 34%);
  pointer-events: none;
}

.catalog-hero-visual {
  --orb-size: 276px;
  --image-size: calc(var(--orb-size) * 1.5);
  position: absolute;
  left: 93px;
  top: 22px;
  width: var(--orb-size);
  height: var(--orb-size);
}

.catalog-hero-visual__orb {
  --orb-x: 50%;
  --orb-y: 50%;
  --orb-dx: 0px;
  --orb-dy: 0px;
  --orb-energy: 0;
  --orb-mask-core: 8%;
  --orb-mask-fade: 18%;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
  transition: transform 280ms ease, filter 280ms ease;
}

.catalog-hero-visual__image {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: var(--image-size);
  height: var(--image-size);
  object-fit: contain;
  object-position: center center;
  transform: translate(-50%, -50%) scale(var(--hero-image-scale, 1));
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    filter 220ms ease;
  opacity: 1;
  filter: blur(0);
  pointer-events: none;
}

.catalog-hero-visual.is-hero-exit .catalog-hero-visual__image {
  opacity: 0;
  filter: blur(10px);
  transform: translate(-50%, -50%) scale(var(--hero-image-enter-scale, 1.12));
}

.catalog-hero-visual.is-hero-pre-enter .catalog-hero-visual__image {
  opacity: 0;
  filter: blur(10px);
  transition: none;
  transform: translate(-50%, -50%) scale(var(--hero-image-enter-scale, 1.12));
}

.catalog-chip-list {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.catalog-chip-list__bracket {
  position: absolute;
  top: 322px;
  width: 14px;
  height: 14px;
  border-top: 2px solid rgba(18, 35, 56, 0.82);
  border-left: 2px solid rgba(18, 35, 56, 0.82);
  pointer-events: none;
}

.catalog-chip-list__bracket--left {
  left: 32px;
  transform: rotate(-6deg);
}

.catalog-chip-list__bracket--right {
  right: 32px;
  transform: rotate(174deg);
}

.catalog-chip {
  position: absolute;
  left: var(--chip-left);
  top: var(--chip-top);
  z-index: 2;
  width: var(--chip-width, 86px);
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: auto;
  transition: transform 220ms ease;
}

.catalog-chip--active {
  z-index: 3;
}

.catalog-chip__visual {
  position: relative;
  width: var(--chip-size, 66px);
  height: var(--chip-size, 66px);
  margin: 0 auto;
}

.catalog-chip__orb {
  --orb-x: 50%;
  --orb-y: 50%;
  --orb-dx: 0px;
  --orb-dy: 0px;
  --orb-energy: 0;
  --orb-mask-core: 8%;
  --orb-mask-fade: 18%;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 246, 248, 0.96) 100%);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(20, 28, 40, 0.08);
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.catalog-chip img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 136%;
  height: 136%;
  object-fit: contain;
  object-position: center center;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 180ms ease;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(20, 28, 40, 0.16));
}

.catalog-chip__label {
  display: block;
  min-height: 2.4em;
  max-width: 100%;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.15;
  text-wrap: balance;
  color: rgba(19, 19, 19, 0.82);
}

.catalog-chip--active .catalog-chip__label {
  display: block;
}

.catalog-chip-list--dense .catalog-chip__label {
  display: block;
  font-size: 10.5px;
  line-height: 1.15;
}

.catalog-chip:hover .catalog-chip__visual,
.catalog-chip:focus-visible .catalog-chip__visual,
.catalog-chip--active .catalog-chip__visual {
  transform: translateY(-3px);
}

.catalog-chip:hover .catalog-chip__orb,
.catalog-chip:focus-visible .catalog-chip__orb,
.catalog-chip.catalog-chip--active .catalog-chip__orb {
  background: var(--family-orb-gradient, var(--gradient-orb));
  box-shadow: 0 10px 20px rgba(20, 28, 40, 0.08);
  filter: saturate(1.06) contrast(1.03);
}

.catalog-chip:hover img,
.catalog-chip:focus-visible img,
.catalog-chip--active img {
  transform: translate(-50%, -50%) scale(1.03);
}

.catalog-chip:hover .catalog-chip__label,
.catalog-chip:focus-visible .catalog-chip__label,
.catalog-chip--active .catalog-chip__label {
  color: #111111;
  font-weight: 600;
}

.catalog-detail {
  position: relative;
  display: grid;
  gap: 24px;
  align-content: start;
  padding-top: var(--catalog-detail-offset, 21px);
  overflow: hidden;
  isolation: isolate;
}

.catalog-detail__media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(20, 28, 40, 0.14);
  background: #d8d8de;
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, filter 220ms ease;
  will-change: transform, opacity;
}

.catalog-detail__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.catalog-detail__media > img {
  display: block;
}

.catalog-detail__media > img[hidden],
.catalog-detail__image-carousel[hidden] {
  display: none;
}

.catalog-detail__image-carousel {
  --catalog-detail-slide: 0;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.catalog-detail__image-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.36);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.catalog-detail__image-nav:hover {
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  border-color: rgba(255, 255, 255, 0.94);
  transform: translateY(-50%) scale(1.04);
}

.catalog-detail__image-nav--prev {
  left: 14px;
}

.catalog-detail__image-nav--next {
  right: 14px;
}

.catalog-detail__image-nav svg {
  display: block;
  width: 15px;
  height: 24px;
  stroke: currentColor !important;
  stroke-width: 2.4;
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-detail__image-nav svg path {
  stroke: currentColor !important;
  stroke-width: 2.4;
  fill: none !important;
  vector-effect: non-scaling-stroke;
}

.catalog-detail__image-nav--prev svg {
  transform: translate3d(-0.5px, -1px, 0);
}

.catalog-detail__image-nav--next svg {
  transform: translate3d(0.75px, -1px, 0);
}

.catalog-detail__image-track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translateX(calc(var(--catalog-detail-slide) * -100%));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.catalog-detail__image-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.catalog-detail__image-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.catalog-detail__image-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.22);
  transition: background-color 160ms ease, transform 160ms ease;
}

.catalog-detail__image-dot.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

.catalog-detail__copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, filter 220ms ease;
  will-change: transform, opacity;
}

.catalog-detail__copy p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(16px, 1.28vw, 20px);
  line-height: 1.55;
  text-align: center;
  color: rgba(19, 19, 19, 0.86);
}

.catalog-detail__copy .button.button--gradient,
.catalog-detail__copy .button.button--liquid {
  width: min(100%, 438px);
  min-height: 58px;
  padding: 16px 24px;
  border: 1px solid rgba(19, 19, 19, 0.72) !important;
  border-radius: 999px;
  background: transparent !important;
  color: #111111 !important;
  box-shadow: none !important;
}

.catalog-detail__copy .button.button--gradient:hover,
.catalog-detail__copy .button.button--gradient.is-liquid-active,
.catalog-detail__copy .button.button--liquid:hover,
.catalog-detail__copy .button.button--liquid.is-liquid-active {
  background: var(--action) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 32px rgba(1, 151, 248, 0.28) !important;
  transform: translateY(-1px);
}

.catalog-detail.is-drawer-exit .catalog-detail__media,
.catalog-detail.is-drawer-exit .catalog-detail__copy {
  opacity: 0;
  filter: blur(10px);
}

.catalog-detail.is-drawer-exit .catalog-detail__media {
  transform: translateX(-34px) scale(0.98);
}

.catalog-detail.is-drawer-exit .catalog-detail__copy {
  transform: translateX(-52px);
}

.catalog-detail.is-drawer-pre-enter .catalog-detail__media,
.catalog-detail.is-drawer-pre-enter .catalog-detail__copy {
  opacity: 0;
  filter: blur(10px);
  transition: none;
}

.catalog-detail.is-drawer-pre-enter .catalog-detail__media {
  transform: translateX(42px) scale(0.98);
}

.catalog-detail.is-drawer-pre-enter .catalog-detail__copy {
  transform: translateX(58px);
}

.catalog-chip__orb::before,
.catalog-chip__orb::after,
.catalog-hero-visual__orb::before,
.catalog-hero-visual__orb::after {
  content: "";
  position: absolute;
  inset: -4%;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 220ms ease, transform 180ms ease;
  background: var(--family-orb-gradient, var(--gradient-orb));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.catalog-chip__orb::before,
.catalog-hero-visual__orb::before {
  filter: url("#liquid-warp") saturate(1.22) contrast(1.14);
  opacity: 0;
  transform: translate(calc(var(--orb-dx) * 0.3), calc(var(--orb-dy) * 0.3)) scale(calc(1.015 + (var(--orb-energy) * 0.06)));
  -webkit-mask-image: radial-gradient(circle at var(--orb-x) var(--orb-y), #000 0, #000 var(--orb-mask-core), transparent var(--orb-mask-fade));
  mask-image: radial-gradient(circle at var(--orb-x) var(--orb-y), #000 0, #000 var(--orb-mask-core), transparent var(--orb-mask-fade));
}

.catalog-chip__orb::after,
.catalog-hero-visual__orb::after {
  filter: blur(calc(10px + (var(--orb-energy) * 14px))) saturate(1.18) contrast(1.08);
  opacity: 0;
  transform: translate(calc(var(--orb-dx) * 0.46), calc(var(--orb-dy) * 0.46)) scale(calc(1.03 + (var(--orb-energy) * 0.1)));
  -webkit-mask-image: radial-gradient(circle at calc(var(--orb-x) + (var(--orb-dx) * 0.05)) calc(var(--orb-y) + (var(--orb-dy) * 0.05)), #000 0, #000 calc(var(--orb-mask-core) * 0.8), transparent calc(var(--orb-mask-fade) + 6%));
  mask-image: radial-gradient(circle at calc(var(--orb-x) + (var(--orb-dx) * 0.05)) calc(var(--orb-y) + (var(--orb-dy) * 0.05)), #000 0, #000 calc(var(--orb-mask-core) * 0.8), transparent calc(var(--orb-mask-fade) + 6%));
}

.catalog-chip__orb::before,
.catalog-chip__orb::after,
.catalog-hero-visual__orb::before,
.catalog-hero-visual__orb::after {
  display: block;
}

.catalog-chip__visual.is-liquid-active .catalog-chip__orb {
  background: var(--family-orb-gradient, var(--gradient-orb));
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.06);
}

.catalog-chip__visual.is-liquid-active .catalog-chip__orb::before,
.catalog-hero-visual.is-liquid-active .catalog-hero-visual__orb::before {
  opacity: calc(0.2 + (var(--orb-energy) * 0.16));
}

.catalog-chip__visual.is-liquid-active .catalog-chip__orb::after,
.catalog-hero-visual.is-liquid-active .catalog-hero-visual__orb::after {
  opacity: calc(0.1 + (var(--orb-energy) * 0.12));
}

.catalog-chip__visual.is-liquid-active img {
  transform: translate(calc(-50% + (var(--liquid-shift-x, 0px) * 0.24)), calc(-50% + (var(--liquid-shift-y, 0px) * 0.24))) scale(1.03);
}

.catalog-hero-visual.is-liquid-active .catalog-hero-visual__orb {
  transform: scale(1.03);
  filter: saturate(1.1) contrast(1.04);
}

.catalog-hero-visual.is-liquid-active .catalog-hero-visual__image {
  transform:
    translate(
      calc(-50% + (var(--liquid-shift-x, 0px) * 0.18)),
      calc(-50% + (var(--liquid-shift-y, 0px) * 0.18))
    )
    scale(var(--hero-image-hover-scale, 1.02));
}

@media (max-width: 1100px) {
  .catalog-family__top,
  .catalog-family__eyebrow {
    min-height: auto;
  }

  .catalog-family__body {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-detail {
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  .catalog-carousel__nav {
    display: none;
  }

  .catalog-family__surface {
    min-height: auto;
    padding: 24px 18px 26px;
    border-radius: 24px;
  }

  .catalog-family__top {
    grid-template-columns: 1fr;
  }

  .catalog-family__intro {
    justify-self: start;
    max-width: none;
    text-align: left;
  }

  .catalog-wheel {
    --catalog-mobile-chart-size: min(76vw, 300px);
    --catalog-mobile-chart-top: 10px;
    width: min(100%, 360px);
    left: 0;
    margin-inline: auto;
    min-height: auto;
  }

  .catalog-wheel__chart-shell {
    left: 50%;
    top: var(--catalog-mobile-chart-top);
    transform: translateX(-50%);
    width: var(--catalog-mobile-chart-size);
  }

  .catalog-hero-visual {
    --orb-size: 240px;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
  }

  .catalog-family-switcher {
    position: static;
    display: grid;
    grid-template-columns: repeat(5, minmax(54px, 1fr));
    justify-items: center;
    align-items: start;
    gap: 14px 6px;
    width: 100%;
    height: auto;
    padding-top: calc(var(--catalog-mobile-chart-top) + var(--catalog-mobile-chart-size) + 24px);
    pointer-events: auto;
  }

  .catalog-family-switcher__item {
    position: static;
    width: 100%;
    transform: none;
  }

  .catalog-family-switcher__item:hover,
  .catalog-family-switcher__item:focus-visible,
  .catalog-family-switcher__item.is-active {
    transform: translateY(-2px);
  }

  .catalog-family-switcher__visual {
    width: 58px;
    height: 58px;
  }

  .catalog-family-switcher__label {
    font-size: 13px;
  }

  .catalog-chip-list {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
    gap: 14px 10px;
    width: 100%;
    padding-top: calc(var(--catalog-mobile-chart-top) + var(--catalog-mobile-chart-size) + 24px);
    pointer-events: auto;
  }

  .catalog-chip-list__bracket {
    display: none;
  }

  .catalog-chip {
    position: static;
    width: 100%;
    max-width: 92px;
    justify-self: center;
    transform: none;
  }

  .catalog-chip__visual {
    width: 64px;
    height: 64px;
  }

  .catalog-chip__label {
    display: block;
    font-size: 13px;
    line-height: 1.2;
    color: rgba(19, 19, 19, 0.78);
  }
}

@media (max-width: 580px) {
  .catalog-family__heading h3 {
    font-size: 32px;
  }

  .catalog-family__heading p,
  .catalog-family__intro,
  .catalog-detail__copy p {
    font-size: 15px;
  }

  .catalog-wheel {
    --catalog-mobile-chart-size: 240px;
    width: min(100%, 320px);
  }

  .catalog-wheel__chart-shell {
    width: var(--catalog-mobile-chart-size);
    top: var(--catalog-mobile-chart-top);
  }

  .catalog-hero-visual {
    --orb-size: 206px;
    top: 24px;
  }

  .catalog-family-switcher {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
    gap: 12px 4px;
    padding-top: calc(var(--catalog-mobile-chart-top) + var(--catalog-mobile-chart-size) + 20px);
  }

  .catalog-family-switcher__visual {
    width: 56px;
    height: 56px;
  }

  .catalog-family-switcher__label {
    font-size: 12px;
  }

  .catalog-chip-list {
    gap: 12px 8px;
    padding-top: calc(var(--catalog-mobile-chart-top) + var(--catalog-mobile-chart-size) + 20px);
  }

  .catalog-chip {
    max-width: 86px;
  }

  .catalog-chip__visual {
    width: 64px;
    height: 64px;
  }

  .catalog-chip__label {
    font-size: 13px;
  }

  .catalog-detail__copy .button.button--gradient,
  .catalog-detail__copy .button.button--liquid {
    width: 100%;
    min-height: 54px;
    font-size: 15px;
  }
}

.testimonials {
  overflow-x: clip;
}

.testimonials__shell {
  display: grid;
  gap: 22px;
}

.testimonials__carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: block;
}

.testimonials .shelf {
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  display: block !important;
}

.testimonials .shelf__viewport {
  overflow: hidden !important;
  padding-left: 20px !important;
  padding-right: 0 !important;
}

.testimonials .shelf__nav {
  position: absolute !important;
  top: 50% !important;
  z-index: 3 !important;
  transform: translateY(-50%) !important;
}

.testimonials .shelf__nav:hover {
  transform: translateY(-50%) scale(1.04) !important;
}

.testimonials .shelf__nav--prev {
  left: clamp(8px, 1.8vw, 24px);
}

.testimonials .shelf__nav--next {
  right: clamp(8px, 1.8vw, 24px);
}

.testimonials__track {
  display: flex;
  align-items: flex-start;
  gap: clamp(68px, 5.8vw, 76px);
  overflow-x: auto;
  padding: 8px 0 20px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: 20px;
  scroll-behavior: smooth;
  cursor: grab;
}

.testimonials__track.is-centered {
  justify-content: center;
  cursor: default;
}

.shelf.shelf--centered .shelf__nav {
  opacity: 0;
  pointer-events: none;
}

.testimonials__track::-webkit-scrollbar {
  display: none;
}

.testimonials__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.testimonial-card {
  flex: 0 0 clamp(220px, 19vw, 262px);
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 6px;
  text-align: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  scroll-snap-align: start;
}

.testimonial-card img {
  width: 96px;
  height: 96px;
  margin: 0 auto 10px;
  border-radius: 50%;
  object-fit: cover;
  border: 0;
  box-shadow: none;
}

.testimonial-card h3 {
  margin: 0;
  font-family: "Strawford", Arial, sans-serif;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.08;
  font-weight: 400;
}

.testimonial-card__role {
  margin: 0;
  font-size: 13px;
  color: rgba(19, 19, 19, 0.6);
}

.testimonial-card blockquote {
  width: min(100%, 228px);
  margin: 8px auto 0;
  font-size: clamp(13.5px, 0.96vw, 15px);
  line-height: 1.5;
  text-align: left;
  color: rgba(19, 19, 19, 0.84);
  text-wrap: pretty;
  quotes: '"' '"';
}

.testimonial-card blockquote::before {
  content: open-quote;
}

.testimonial-card blockquote::after {
  content: close-quote;
}

@media (max-width: 860px) {
  .testimonials__track {
    gap: 18px;
  }

  .testimonial-card {
    flex-basis: clamp(220px, 62vw, 254px);
  }

  .testimonial-card img {
    width: 88px;
    height: 88px;
  }

  .testimonial-card h3 {
    font-size: 18px;
  }

  .testimonial-card blockquote {
    width: min(100%, 212px);
    font-size: 13.5px;
    line-height: 1.46;
  }
}

@media (max-width: 620px) {
  .testimonials__shell {
    gap: 18px;
  }

  .testimonial-card {
    flex-basis: 74vw;
  }

  .testimonial-card img {
    width: 84px;
    height: 84px;
    margin-bottom: 4px;
  }

  .testimonial-card__role {
    font-size: 13px;
  }

  .testimonial-card blockquote {
    width: min(100%, 204px);
    font-size: 13px;
    line-height: 1.44;
  }
}

/* INLED PROD ABOUT PATCH START */
.about__grid {
  grid-template-columns: minmax(260px, 360px) minmax(0, 510px);
  gap: clamp(12px, 1.5vw, 18px);
  max-width: min(100%, 888px);
}

.about__media {
  width: min(100%, 360px);
  justify-self: end;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.about__media video {
  border-radius: 0;
  background: #111;
}

.about__copy {
  max-width: 510px;
}

@media (max-width: 760px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: min(100%, 520px);
  }

  .about__media {
    justify-self: center;
    width: min(100%, 360px);
    max-width: 100%;
  }

  .about__copy {
    justify-self: center;
    max-width: 100%;
  }
}
/* INLED PROD ABOUT PATCH END */

/* INLED PROD FOOTER WHATSAPP PATCH START */
.whatsapp-float,
.whatsapp-float:visited {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 9999 !important;
  width: 58px !important;
  min-width: 58px !important;
  max-width: 58px !important;
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  line-height: 0 !important;
  background: #25d366 !important;
  color: #fff !important;
}

.whatsapp-float svg {
  width: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  display: block !important;
  flex: 0 0 32px !important;
  fill: currentColor !important;
}

@media (max-width: 760px) {
  .about__grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - (var(--page-gutter) * 2), 520px) !important;
    max-width: 520px !important;
    margin-inline: auto !important;
    gap: 22px !important;
  }

  .about__media,
  .about__copy {
    grid-column: 1 !important;
    justify-self: center !important;
    transform: none !important;
  }

  .about__media {
    width: min(100%, 360px) !important;
    max-width: 100% !important;
  }

  .about__copy {
    width: 100% !important;
    max-width: 100% !important;
  }

  .site-footer {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    overflow: hidden !important;
  }

  .site-footer__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    min-height: auto !important;
    padding-top: 28px !important;
    padding-bottom: 24px !important;
    align-content: start !important;
  }

  .site-footer__brand,
  .site-footer__links--site,
  .site-footer__links--legal,
  .site-footer__company {
    transform: none !important;
    align-self: start !important;
    justify-self: start !important;
    min-width: 0 !important;
  }

  .site-footer__brand img,
  .site-footer__brand-logo {
    width: 150px !important;
    max-width: 68vw !important;
    height: auto !important;
  }

  .whatsapp-float,
  .whatsapp-float:visited {
    right: 16px !important;
    bottom: 16px !important;
    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    max-height: 54px !important;
  }

  .whatsapp-float svg {
    width: 30px !important;
    min-width: 30px !important;
    max-width: 30px !important;
    height: 30px !important;
    min-height: 30px !important;
    max-height: 30px !important;
    flex-basis: 30px !important;
  }
}
/* INLED PROD FOOTER WHATSAPP PATCH END */

/* INLED PROD ABOUT VIDEO RADIUS PATCH START */
.about__media,
.about__media video {
  border-radius: 24px !important;
}

.about__media {
  overflow: hidden !important;
}

.about__media video {
  clip-path: inset(0 round 24px);
  overflow: hidden;
}
/* INLED PROD ABOUT VIDEO RADIUS PATCH END */

/* INLED PROD HIDE PRODUCT TITLE PATCH START */
.catalog-family__eyebrow[data-product-title] {
  display: none !important;
}
/* INLED PROD HIDE PRODUCT TITLE PATCH END */

/* INLED PROD CATALOG ALIGN PATCH START */
@media (min-width: 981px) {
  .catalog-detail {
    padding-top: 15px !important;
    align-content: start;
  }

  .catalog-detail__media,
  .catalog-detail__image-carousel,
  .catalog-detail__media > img {
    aspect-ratio: 16 / 9;
  }

  .catalog-detail__copy {
    grid-template-rows: minmax(140px, auto) auto;
    align-items: start;
    align-content: start;
  }

  .catalog-detail__copy p {
    width: min(100%, 520px);
    margin: 0;
    align-self: stretch;
  }

  .catalog-detail__copy .button.button--gradient,
  .catalog-detail__copy .button.button--liquid {
    align-self: start;
  }
}
/* INLED PROD CATALOG ALIGN PATCH END */


/* DOCX global drop test */
main#topo {
  padding-top: 76px;
}

/* INLED DOCX FOOTER PATCH START */
.site-footer__grid {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 120px;
  box-sizing: border-box;
  padding-top: 76px;
  padding-bottom: 76px;
}

.site-footer__brand {
  flex: 0 0 170px;
}

.site-footer__company {
  flex: 0 0 360px;
  transform: none !important;
  align-self: start;
}

.site-footer__company address {
  margin-top: 42px;
}

.site-footer__links--site {
  flex: 0 0 200px;
  margin-left: 114px;
  transform: none !important;
  align-self: start;
}

.site-footer__links--legal {
  display: none !important;
}

@media (max-width: 760px) {
  .site-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .site-footer__brand,
  .site-footer__company,
  .site-footer__links--site {
    flex: initial;
    margin-left: 0;
    transform: none !important;
  }

  .site-footer__company address {
    margin-top: 0;
  }
}
/* INLED DOCX FOOTER PATCH END */

/* INLED MENU ANCHOR OFFSET START */
html {
  scroll-padding-top: 57px;
}

main#topo,
section[id] {
  scroll-margin-top: 57px;
}
/* INLED MENU ANCHOR OFFSET END */

main#topo {
  margin-top: -3.5cm;
}

/* footer-social-round-20260415 */
.site-footer__social-link,
.site-footer__social-link:any-link,
.site-footer__social-link:hover,
.site-footer__social-link:focus,
.site-footer__social-link:focus-visible,
.site-footer__social-link:visited,
.site-footer__social-link:active {
  border-radius: 999px;
  color: #111111;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.72);
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  background: #f2f2f2;
}

.site-footer__social-link[aria-label="Instagram"],
.site-footer__social-link[aria-label="Instagram"]:hover,
.site-footer__social-link[aria-label="Instagram"]:focus-visible,
.site-footer__social-link[aria-label="Facebook"],
.site-footer__social-link[aria-label="Facebook"]:hover,
.site-footer__social-link[aria-label="Facebook"]:focus-visible {
  background: #ffffff;
}

.site-footer__social-link img {
  width: 18px;
  height: 18px;
}
