.hero-gradient {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.52) 38%, rgba(15, 23, 42, 0.28) 72%, rgba(15, 23, 42, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 20, 48, 0.34) 0%, rgba(9, 20, 48, 0.18) 100%);
}

.home-hero {
  padding-top: clamp(128px, 13vh, 176px);
  padding-bottom: clamp(64px, 8vh, 104px);
}

.soft-gradient-section {
  background:
    radial-gradient(circle at 12% 32%, rgba(40, 168, 232, 0.09), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(228, 90, 32, 0.055), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f1f7fd 100%);
}

.trust-strip {
  background: #ffffff;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0.75rem 1rem;
  width: 100%;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  padding-bottom: 0.9rem;
}

.product-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0 0 0.55rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: none !important;
  transform: none !important;
}

.product-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.95rem;
  height: 2px;
  background: transparent;
  transition: background-color 0.25s ease;
}

.product-tab:hover {
  color: var(--color-primary);
}

.product-tab:hover::after,
.product-tab.is-active::after {
  background: var(--color-primary);
}

.product-tab.is-active {
  color: var(--color-primary);
}

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

.category-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 1.5rem;
  align-items: center;
}

.category-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.category-section-kicker span {
  width: 32px;
  height: 2px;
  flex: 0 0 32px;
  background: var(--color-primary);
  transform: translateY(1px);
}

.category-section-kicker p {
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-section-header h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.category-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: #ffffff;
  padding: 0 0.9rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-search:focus-within {
  border-color: rgba(228, 90, 32, 0.72);
  box-shadow: 0 0 0 3px rgba(228, 90, 32, 0.08);
}

.category-search .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 20px;
}

.category-search input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 0 !important;
  outline: 0 !important;
  background: transparent;
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: none !important;
  --tw-ring-color: transparent !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
}

.category-search input:focus,
.category-search input:focus-visible {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.category-search input::placeholder {
  color: rgba(51, 65, 85, 0.58);
}

.category-section-divider {
  height: 1px;
  margin: 1.9rem 0 1.8rem;
  background: var(--color-border);
}

.category-carousel {
  width: 100%;
}

.category-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 1.4rem 1rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border-radius: var(--radius-md);
  border: 0;
  background: #ffffff;
  box-shadow: none;
}

.category-card[hidden] {
  display: none;
}

.category-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #f8fafc;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.48s ease;
}

.category-card:hover .category-card__media img {
  transform: scale(1.06);
}

.category-card__body {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.5rem 0;
  background: #ffffff;
  text-align: center;
}

.category-card__body h3 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.industry-clusters-section {
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f1f6fb 100%);
}

.industry-clusters-header {
  max-width: 860px;
  margin: 0 auto 2.6rem;
  text-align: center;
}

.industry-clusters-header .category-section-kicker {
  justify-content: center;
}

.industry-clusters-header .category-section-kicker::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.industry-clusters-header h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
}

.industry-clusters-header > p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1rem;
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.7;
}

.industry-cluster-viewport {
  overflow: hidden;
}

.industry-cluster-card__panel {
  overflow: hidden;
  border: 1px solid rgba(15, 35, 61, 0.12);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.industry-cluster-card__media {
  overflow: hidden;
  background: #e9eef4;
}

.industry-cluster-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 0.45s ease;
}

.industry-cluster-card__body {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 0.55rem;
  padding: 0.85rem;
}

.industry-cluster-card__body > .material-symbols-outlined {
  color: var(--color-primary);
  font-size: 21px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.industry-cluster-card h3 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.25;
}

.industry-cluster-card p {
  margin-top: 0.35rem;
  color: var(--color-slate);
  font-size: 0.75rem;
  line-height: 1.45;
}

.industry-cluster-collection {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: 540px;
}

.industry-cluster-collection::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5%;
  left: 1.5%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(228, 90, 32, 0.2), var(--color-primary), rgba(15, 35, 61, 0.2));
}

.industry-cluster-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr 46px 1fr;
  min-width: 0;
  padding: 0 0.45rem;
}

.industry-cluster-card:nth-child(odd) .industry-cluster-card__panel {
  grid-row: 1;
  align-self: end;
  margin-bottom: 1rem;
}

.industry-cluster-card:nth-child(even) .industry-cluster-card__panel {
  grid-row: 3;
  align-self: start;
  margin-top: 1rem;
}

.industry-cluster-card__media {
  aspect-ratio: 4 / 3;
}

.industry-cluster-card__node {
  position: relative;
  z-index: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(228, 90, 32, 0.3);
}

.industry-cluster-card::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 42px;
  background: rgba(228, 90, 32, 0.42);
}

.industry-cluster-card:nth-child(odd)::after {
  top: calc(50% - 42px);
}

.industry-cluster-card:nth-child(even)::after {
  top: 50%;
}

.industry-cluster-card:hover .industry-cluster-card__media img {
  transform: scale(1.05);
}

.product-directory-header {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.product-directory-header h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
}

.product-directory-header > p {
  margin-top: 1.15rem;
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.75;
}

.product-showcase {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(15, 35, 61, 0.12);
  border-radius: var(--radius-md);
  background: #ffffff;
}

.product-category-list {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  border-right: 1px solid rgba(198, 74, 19, 0.18);
  background: #f47b27;
  padding: 1.25rem;
}

.product-category-list__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: -1.25rem -1.25rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding: 1.15rem 1.25rem;
  color: #ffffff;
}

.product-category-list__header > .material-symbols-outlined {
  flex: 0 0 auto;
  font-size: 38px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 40;
}

.product-category-list__header strong,
.product-category-list__header small {
  display: block;
}

.product-category-list__header strong {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-category-list__header small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  line-height: 1.2;
}

.product-category-list button {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  min-height: 43px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  padding: 0.55rem 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.product-category-list button > .material-symbols-outlined {
  flex: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 20;
  letter-spacing: 0;
  transition: color 0.2s ease;
}

.product-category-list button:hover,
.product-category-list button.is-active {
  background: #ffffff;
  color: var(--color-navy);
}

.product-category-list button:hover > .material-symbols-outlined,
.product-category-list button.is-active > .material-symbols-outlined {
  color: #249de3;
}

.product-category-name {
  min-width: 0;
  flex: 1;
}

.product-category-list button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.product-showcase__content {
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.product-category-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(15, 35, 61, 0.11);
  padding-bottom: 1.65rem;
}

.product-category-intro > div {
  max-width: 720px;
}

.product-category-intro h3 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
}

.product-category-intro p {
  margin-top: 0.65rem;
  color: var(--color-slate);
  font-size: 0.94rem;
  line-height: 1.7;
}

.product-category-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  border: 1px solid rgba(15, 35, 61, 0.18);
  border-radius: var(--radius-sm);
  padding: 0 1rem;
  color: var(--color-navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.product-category-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.product-category-link .material-symbols-outlined {
  font-size: 17px;
}

.product-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 190px;
  min-height: 48px;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  padding: 0 1.35rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.22s ease;
}

.product-more-link:hover {
  background: var(--color-primary-dark);
}

.product-more-link .material-symbols-outlined {
  font-size: 18px;
}

.product-showcase__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 540px;
  gap: 1.35rem 1rem;
}

.product-showcase__grid::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  margin: -19px 0 0 -19px;
  border: 3px solid rgba(228, 90, 32, 0.18);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
}

.product-showcase__grid.is-loading::after {
  opacity: 1;
  animation: product-grid-spin 0.72s linear infinite;
}

.product-showcase__grid.is-loading .product-feature-card {
  opacity: 0.22;
  pointer-events: none;
}

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

.product-feature-card {
  overflow: hidden;
  border: 1px solid rgba(15, 35, 61, 0.09);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  will-change: opacity, transform;
}

.product-feature-card.is-leaving {
  animation: product-feature-leave 160ms ease-in both;
  pointer-events: none;
}

.product-feature-card.is-entering {
  animation: product-feature-enter 280ms cubic-bezier(0.22, 1, 0.36, 1) both;
  pointer-events: none;
}

@keyframes product-feature-leave {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(12px);
  }
}

@keyframes product-feature-enter {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

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

.product-feature-card__media {
  overflow: hidden;
  background: #f5f7fa;
}

.product-feature-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 0.65rem;
  transition: transform 0.45s ease;
}

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

.product-feature-card h4 {
  display: -webkit-box;
  min-height: 3.6em;
  overflow: hidden;
  padding: 0.78rem 0.7rem;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-directory-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-layout {
  gap: clamp(3.5rem, 6vw, 6rem);
}

.about-section__watermark {
  position: absolute;
  right: clamp(2rem, 7vw, 8rem);
  bottom: clamp(2rem, 5vw, 5rem);
  width: clamp(180px, 16vw, 310px);
  opacity: 0.16;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.showroom-experience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 55%, rgba(40, 168, 232, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f1f7fd 100%);
}

.showroom-experience__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.62fr);
  gap: 2rem;
  align-items: end;
}

.showroom-experience__header h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.18;
}

.showroom-experience__header > p {
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.7;
}

.showroom-experience__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 520px;
  margin-top: 3rem;
}

.showroom-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.showroom-orbit::before,
.showroom-orbit::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.showroom-orbit::before {
  background: radial-gradient(circle, rgba(40, 168, 232, 0.18) 0 28%, rgba(40, 168, 232, 0.06) 48%, transparent 70%);
}

.showroom-orbit::after {
  border: 1px solid rgba(40, 168, 232, 0.26);
  animation: showroomHalo 2.8s ease-in-out infinite;
}

.showroom-orbit__rings,
.showroom-orbit__rings span {
  position: absolute;
  inset: 50%;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.showroom-orbit__rings span {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(40, 168, 232, 0.28);
  box-shadow: 0 0 30px rgba(40, 168, 232, 0.08);
  animation: showroomRipple 4s ease-out infinite;
}

.showroom-orbit__rings span:nth-child(2) {
  animation-delay: 1.3s;
}

.showroom-orbit__rings span:nth-child(3) {
  animation-delay: 2.6s;
}

.showroom-orbit__logo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(150px, 13vw, 220px);
  height: clamp(150px, 13vw, 220px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  box-shadow: none;
}

.showroom-orbit__logo img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.showroom-carousel {
  position: relative;
  min-height: 430px;
  perspective: 1400px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.showroom-carousel.is-dragging {
  cursor: grabbing;
}

.showroom-carousel__stage {
  position: relative;
  height: 430px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.showroom-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(600px, 68%);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.72) rotateY(0deg);
  transition: transform 0.58s ease, opacity 0.58s ease, filter 0.58s ease;
}

.showroom-slide.is-active {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1) rotateY(0deg);
}

.showroom-slide.is-prev {
  z-index: 2;
  opacity: 0.58;
  filter: saturate(0.82);
  transform: translate(-106%, -50%) scale(0.68) rotateY(32deg);
}

.showroom-slide.is-next {
  z-index: 2;
  opacity: 0.58;
  filter: saturate(0.82);
  transform: translate(6%, -50%) scale(0.68) rotateY(-32deg);
}

.showroom-slide.is-far {
  z-index: 1;
  opacity: 0.28;
  filter: saturate(0.65) blur(0.2px);
  transform: translate(24%, -50%) scale(0.58) rotateY(-35deg);
}

.showroom-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.showroom-slide div {
  padding: 1.2rem 1.35rem 1.35rem;
  background: rgba(255, 255, 255, 0.94);
}

.showroom-slide h3 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.42rem;
  font-weight: 800;
  line-height: 1.15;
}

.showroom-slide p {
  margin-top: 0.55rem;
  color: var(--color-slate);
  font-size: 0.95rem;
  line-height: 1.55;
}

.showroom-carousel__controls {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0.75rem;
}

.showroom-carousel__controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: #ffffff;
  color: var(--color-navy);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.showroom-carousel__controls button:hover {
  color: #ffffff;
  background: var(--color-primary);
}

@keyframes showroomRipple {
  0% {
    width: 180px;
    height: 180px;
    opacity: 0.72;
  }
  100% {
    width: min(560px, 42vw);
    height: min(560px, 42vw);
    opacity: 0;
  }
}

@keyframes showroomHalo {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.92);
  }
  50% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  background: #ffffff;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

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

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  background: #f1f5f9;
  padding: 1.35rem 1.55rem 1.55rem;
}

.product-card__title,
.product-card__meta {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__title {
  -webkit-line-clamp: 2;
  min-height: 2.8rem;
}

.product-card__meta {
  -webkit-line-clamp: 2;
  min-height: 2.8rem;
  margin-top: 0.65rem;
}

.why-choose-section {
  background-color: #ffffff;
  background-image: url("../images/xx.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

.why-choose-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 3.5rem;
  align-items: stretch;
}

.why-choose-content {
  max-width: 560px;
  order: 2;
}

.why-choose-visual {
  order: 1;
}

.why-accordion {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.why-accordion__item {
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--color-border);
}

.why-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent !important;
  padding: 1.15rem 0;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  transition: color 0.25s ease;
  box-shadow: none !important;
  transform: none !important;
}

.why-accordion__trigger:hover,
.why-accordion__trigger:focus,
.why-accordion__trigger:focus-visible,
.why-accordion__trigger:active,
.why-accordion__item.is-open .why-accordion__trigger {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--color-primary);
  outline: 0;
  transform: none !important;
}

.why-accordion__trigger .material-symbols-outlined {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.28s ease;
}

.why-accordion__item.is-open .why-accordion__trigger .material-symbols-outlined {
  transform: rotate(45deg);
}

.why-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.why-accordion__panel > div {
  overflow: hidden;
}

.why-accordion__panel p {
  max-width: 520px;
  padding: 0 2.5rem 1.15rem 0;
  color: var(--color-slate);
  font-size: 0.98rem;
  line-height: 1.65;
}

.why-accordion__item.is-open .why-accordion__panel {
  grid-template-rows: 1fr;
}

.why-choose-visual {
  min-height: 470px;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(226, 232, 240, 0.95);
  background:
    linear-gradient(135deg, rgba(228, 90, 32, 0.1), rgba(40, 168, 232, 0.08)),
    #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
}

.why-choose-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-news-section {
  position: relative;
  background-color: #ffffff;
  background-image: url("../images/news/home-news-bg.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.showroom-news-section > .max-w-container-max {
  position: relative;
  z-index: 1;
}

.showroom-news-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 2.25rem;
  align-items: center;
}

.showroom-news-intro h2 {
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
}

.showroom-news-intro .category-section-kicker {
  display: inline-grid;
  grid-template-columns: 32px auto;
  min-height: 20px;
  align-items: center;
  column-gap: 0.6rem;
  white-space: nowrap;
}

.showroom-news-intro .category-section-kicker span {
  align-self: center;
  transform: none;
}

.showroom-news-intro .category-section-kicker p {
  display: flex;
  min-height: 20px;
  align-items: center;
  margin-top: 0;
  line-height: 20px;
}

.showroom-news-intro p {
  margin-top: 1rem;
  color: var(--color-slate);
  font-size: 1rem;
  line-height: 1.7;
}

.showroom-news-more {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
  color: var(--color-navy);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.showroom-news-more:hover {
  color: var(--color-primary);
}

.showroom-news-more .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 18px;
}

.showroom-news-carousel {
  position: relative;
  min-width: 0;
}

.showroom-news-viewport {
  overflow: hidden;
}

.showroom-news-track {
  --news-gap: 1.25rem;
  display: flex;
  gap: var(--news-gap);
  transition: transform 0.45s ease;
  will-change: transform;
}

.showroom-news-card {
  display: flex;
  flex: 0 0 calc((100% - (var(--news-gap) * 2)) / 3);
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-md);
  background: #ffffff;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.showroom-news-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.showroom-news-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f8fafc;
}

.showroom-news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.showroom-news-card:hover .showroom-news-card__media img {
  transform: scale(1.035);
}

.showroom-news-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.showroom-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.8rem;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.showroom-news-card__body h3 {
  display: -webkit-box;
  min-height: 3.35rem;
  overflow: hidden;
  margin-top: 0.75rem;
  color: var(--color-navy);
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.showroom-news-card__body p {
  display: -webkit-box;
  min-height: 4.8rem;
  overflow: hidden;
  margin-top: 0.85rem;
  color: var(--color-slate);
  font-size: 0.95rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.showroom-news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--color-navy);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.showroom-news-card:hover .showroom-news-card__link {
  color: var(--color-primary);
}

.showroom-news-card:hover .showroom-news-card__body h3 {
  color: var(--color-primary);
}

.showroom-news-card__link .material-symbols-outlined {
  font-size: 18px;
}

.showroom-news-arrow {
  position: absolute;
  top: 40%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-navy);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  transition: color 0.25s ease, background-color 0.25s ease;
}

.showroom-news-arrow:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.showroom-news-arrow--prev {
  left: -21px;
}

.showroom-news-arrow--next {
  right: -21px;
}

.inquiry-form {
  border-radius: var(--radius-lg);
}

.inquiry-form input,
.inquiry-form textarea {
  border-radius: var(--radius-sm);
}

.home-inquiry-form__shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.home-inquiry-form__shell > .fluentform,
.home-inquiry-form__shell .frm-fluent-form,
.home-inquiry-form__shell .frm-fluent-form > fieldset {
  display: contents;
}

.home-inquiry-form__shell .ff_screen_reader_title {
  display: none !important;
}

.home-inquiry-form__shell .ff-errors-in-stack {
  grid-column: 1 / -1;
}

.home-inquiry-form__shell .ff-el-group {
  min-width: 0;
  margin: 0;
}

.home-inquiry-form__shell .hys-inquiry-field--category,
.home-inquiry-form__shell .hys-inquiry-field--message {
  grid-column: 1 / -1;
}

.home-inquiry-form__shell .ff-el-input--label label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-steel-gray);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-inquiry-form__shell .ff-el-form-control {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  padding: 0.75rem 1rem;
  color: var(--color-navy);
  font-size: 0.875rem;
  outline: 0;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.home-inquiry-form__shell .ff-el-form-control:focus {
  border-color: var(--color-primary);
  box-shadow: none;
}

.home-inquiry-form__shell textarea.ff-el-form-control {
  min-height: 120px;
}

.home-inquiry-form__shell .ff_submit_btn_wrapper {
  grid-column: 1;
  align-self: center;
  margin: 0;
}

.home-inquiry-form__shell .ff-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 168px;
  min-height: 64px;
  border-radius: var(--radius-md);
}

.home-inquiry-form__shell .ff-btn-submit::after {
  content: "arrow_forward";
  font-family: "Material Symbols Outlined";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
}

.home-inquiry-form__email {
  grid-column: 2;
  align-self: center;
  min-width: 0;
  line-height: 1.5;
}

.home-inquiry-form__shell .ff-message-success {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  background: #f0fdf4;
  padding: 0.875rem 1rem;
  color: #166534;
  font-size: 0.875rem;
}

.home-inquiry-form__email a:hover {
  color: var(--color-primary);
}

.inquiry-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.inquiry-form-actions__button {
  flex: 0 0 168px;
  min-height: 64px;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

.inquiry-form-actions__email {
  flex: 1;
  min-width: 0;
  line-height: 1.5;
}

.footer-map {
  display: block;
  width: min(100%, 160px);
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.footer-submit-link {
  border-radius: var(--radius-md);
}

.about-video-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

.about-video-trigger__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 9999px;
  border: 0;
  background: rgba(228, 90, 32, 0.92);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  pointer-events: auto;
}

.about-video-trigger__button::before,
.about-video-trigger__button::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.55);
  animation: ripplePulse 2.6s ease-out infinite;
}

.about-video-trigger__button::after {
  animation-delay: 1.1s;
}

.about-video-trigger__button:hover {
  background: rgba(200, 47, 30, 0.92);
}

.about-video-trigger__icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
}

@keyframes ripplePulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.42);
    opacity: 0;
  }

  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .industry-cluster-viewport {
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .industry-cluster-card {
    scroll-snap-align: start;
  }

  .industry-cluster-collection {
    grid-template-columns: repeat(6, 200px);
    min-width: 1200px;
    min-height: 520px;
  }

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

  .category-section-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .category-search {
    max-width: 420px;
  }

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

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

  .product-category-list {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem;
    scrollbar-width: thin;
  }

  .product-category-list__header {
    flex: 0 0 auto;
    margin: -0.85rem 0 -0.85rem -0.85rem;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 0;
    padding: 0.75rem 1rem;
  }

  .product-category-list__header > .material-symbols-outlined {
    font-size: 28px;
  }

  .product-category-list__header small {
    display: none;
  }

  .product-category-list button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-choose-content {
    max-width: none;
    order: 1;
  }

  .why-choose-visual {
    order: 2;
    min-height: 380px;
  }

  .showroom-news-layout {
    grid-template-columns: 1fr;
  }

  .showroom-news-intro {
    max-width: 680px;
  }

  .showroom-news-card {
    flex-basis: calc((100% - var(--news-gap)) / 2);
  }

  .showroom-experience__header,
  .showroom-experience__body {
    grid-template-columns: 1fr;
  }

  .showroom-orbit {
    min-height: 280px;
  }

  .showroom-carousel,
  .showroom-carousel__stage {
    min-height: 390px;
    height: 390px;
  }
}

@media (max-width: 767px) {
  .industry-clusters-header {
    margin-bottom: 1.8rem;
  }

  .industry-clusters-header h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .industry-cluster-viewport {
    overflow: visible;
    padding-bottom: 0;
  }

  .industry-cluster-collection {
    grid-template-columns: minmax(0, 1fr);
    min-width: 0;
    min-height: 0;
    gap: 1rem;
    padding-left: 28px;
  }

  .industry-cluster-collection::before {
    top: 66px;
    right: auto;
    bottom: 66px;
    left: 8px;
    width: 2px;
    height: auto;
    transform: none;
    background: linear-gradient(180deg, rgba(228, 90, 32, 0.18), var(--color-primary), rgba(15, 35, 61, 0.18));
  }

  .industry-cluster-card {
    display: block;
    min-width: 0;
    padding: 0;
  }

  .industry-cluster-card:nth-child(odd) .industry-cluster-card__panel,
  .industry-cluster-card:nth-child(even) .industry-cluster-card__panel {
    margin: 0;
  }

  .industry-cluster-card__panel {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    min-height: 132px;
    align-items: stretch;
  }

  .industry-cluster-card__media {
    min-height: 132px;
    aspect-ratio: auto;
  }

  .industry-cluster-card__body {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    gap: 0.35rem 0.5rem;
    align-content: center;
    padding: 0.85rem;
  }

  .industry-cluster-card__body > div {
    display: contents;
  }

  .industry-cluster-card__body > .material-symbols-outlined {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 20px;
  }

  .industry-cluster-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    font-size: 0.9rem;
  }

  .industry-cluster-card p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .industry-cluster-card__node {
    position: absolute;
    top: 50%;
    left: -27px;
    width: 14px;
    height: 14px;
    border-width: 3px;
    transform: translateY(-50%);
  }

  .industry-cluster-card::after,
  .industry-cluster-card:nth-child(odd)::after,
  .industry-cluster-card:nth-child(even)::after {
    top: 50%;
    left: -20px;
    width: 20px;
    height: 1px;
    transform: none;
  }

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

  .category-section-header h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .category-search {
    max-width: none;
  }

  .category-section-divider {
    margin: 1.6rem 0 1.5rem;
  }

  .category-track {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-layout {
    gap: 2.5rem;
  }

  .about-section__watermark {
    right: 1rem;
    bottom: 1rem;
    width: 170px;
    opacity: 0.12;
  }

  .product-directory-header h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .product-directory-header {
    margin-bottom: 1.75rem;
  }

  .product-showcase {
    display: block;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .product-category-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    overflow: visible;
    border: 1px solid rgba(15, 35, 61, 0.1);
    border-radius: var(--radius-md);
    background: #f6f9fc;
    padding: 0.75rem;
  }

  .product-category-list__header {
    grid-column: 1 / -1;
    min-height: 62px;
    margin: -0.75rem -0.75rem 0.1rem;
    border-right: 0;
    border-bottom: 0;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: #f47b27;
    padding: 0.8rem 1rem;
  }

  .product-category-list__header small {
    display: block;
  }

  .product-category-list button {
    width: 100%;
    min-height: 64px;
    border: 1px solid rgba(15, 35, 61, 0.09);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 0.7rem;
    color: var(--color-navy);
    white-space: normal;
  }

  .product-category-list button:hover,
  .product-category-list button.is-active {
    border-color: rgba(36, 157, 227, 0.28);
    background: #ffffff;
  }

  .product-category-list button > .material-symbols-outlined {
    flex-basis: 22px;
    color: #249de3;
    font-size: 20px;
  }

  .product-category-name {
    min-width: 0;
  }

  .product-category-zone-suffix {
    display: none;
  }

  .product-showcase__content {
    display: none;
  }

  .product-category-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .product-category-link {
    min-height: 40px;
  }

  .product-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .product-feature-card h4 {
    min-height: 3.8em;
    padding: 0.65rem 0.55rem;
    font-size: 0.82rem;
  }

  .product-directory-footer {
    display: none;
  }

  .why-accordion__trigger {
    font-size: 1rem;
  }

  .why-choose-visual {
    min-height: 280px;
  }

  .showroom-news-card__body h3 {
    min-height: auto;
    font-size: 1.3rem;
  }

  .showroom-news-card__body p {
    min-height: auto;
  }

  .showroom-news-layout {
    gap: 1.75rem;
  }

  .showroom-news-intro h2 {
    font-size: 30px;
  }

  .showroom-news-card {
    flex-basis: 100%;
  }

  .showroom-news-arrow {
    top: auto;
    bottom: 7px;
  }

  .showroom-news-arrow--prev {
    left: 50%;
    transform: translateX(-50px);
  }

  .showroom-news-arrow--next {
    right: auto;
    left: 50%;
    transform: translateX(8px);
  }

  .showroom-news-carousel {
    padding-bottom: 58px;
  }

  .showroom-experience__header h2 {
    font-size: 30px;
  }

  .showroom-carousel {
    min-height: 420px;
    height: 420px;
  }

  .showroom-carousel__stage {
    min-height: 360px;
    height: 360px;
  }

  .showroom-slide {
    width: 80%;
  }

  .showroom-slide.is-prev {
    transform: translate(-104%, -50%) scale(0.64) rotateY(24deg);
  }

  .showroom-slide.is-next {
    transform: translate(4%, -50%) scale(0.64) rotateY(-24deg);
  }

  .showroom-carousel__controls {
    right: auto;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
  }

  .inquiry-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .inquiry-form-actions__button {
    flex-basis: auto;
    min-height: 54px;
    width: 100%;
  }

  .home-inquiry-form__shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-inquiry-form__shell .ff-el-group,
  .home-inquiry-form__shell .hys-inquiry-field--category,
  .home-inquiry-form__shell .hys-inquiry-field--message,
  .home-inquiry-form__shell .ff_submit_btn_wrapper,
  .home-inquiry-form__email {
    grid-column: 1;
  }

  .home-inquiry-form__shell .ff-btn-submit {
    width: 100%;
    min-height: 54px;
  }
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
