@charset "utf-8";

#home-photo {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1016 / 359;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-soft), #ffffff);
}

#home-photo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 4px;
  background: linear-gradient(90deg, var(--color-brand), rgba(44, 158, 163, 0.16), var(--color-accent));
  content: "";
  pointer-events: none;
}

#home-photo .item {
  width: 100% !important;
  height: 100%;
}

#home-photo .item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-content {
  margin: 0;
  padding: 34px 32px 16px;
}

.home-content-table {
  width: 100%;
  table-layout: fixed;
}

.section-title {
  position: relative;
  margin: 0 0 22px;
  padding: 0 0 12px 16px;
  color: var(--color-ink);
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  top: 1px;
  bottom: 12px;
  left: 0;
  width: 4px;
  border-radius: 2px;
  background: var(--color-brand);
  content: "";
}

.section-title::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 16px;
  height: 1px;
  background: var(--color-line);
  content: "";
}

.home-content .new-products {
  width: 68%;
  padding-right: 32px;
  border-right: 1px solid var(--color-line);
}

.home-content .new-products .detail {
  padding-bottom: 0;
}

.home-content .new-products .detail .detail-container {
  height: 130px;
  overflow: hidden;
}

.home-content .contact-us {
  width: 32%;
  padding-left: 32px;
}

.home-content .contact-us a {
  color: var(--color-brand-dark);
  font-weight: 600;
}

.home-content .contact-us a:hover {
  color: var(--color-accent);
}

.home-content .contact-us .contact-detail {
  position: relative;
  width: 100%;
  min-height: 150px;
  padding: 68px 18px 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.94)),
    url(../images/home/map-bg.jpg) no-repeat top center;
  background-size: cover;
}

.home-content .contact-us .contact-detail .detail {
  position: static;
}

.home-content .contact-us .contact-detail .company-name {
  padding-bottom: 8px;
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.home-content .contact-us .contact-detail .icon {
  width: 24px;
  padding-right: 8px;
  text-align: center;
  vertical-align: middle;
}

.home-content .contact-us .contact-detail td {
  padding: 2px 0;
  font-size: 13px;
  vertical-align: middle;
}

#home-new-product-list {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 222px;
  overflow: hidden;
}

#home-new-product-list .item {
  position: absolute;
  top: 0;
  width: 50%;
  min-height: 150px;
  padding: 10px 18px 10px 0;
}

#home-new-product-list .item .photo {
  display: flex;
  float: left;
  width: 48%;
  height: 140px;
  padding: 10px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #ffffff, var(--color-soft));
  align-items: center;
  justify-content: center;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast);
}

#home-new-product-list .item:hover .photo {
  border-color: rgba(44, 158, 163, 0.5);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

#home-new-product-list .item .photo table,
#home-new-product-list .item .photo tbody,
#home-new-product-list .item .photo tr,
#home-new-product-list .item .photo td {
  height: 100%;
}

#home-new-product-list .item .photo img {
  max-width: 100%;
  max-height: 118px;
}

#home-new-product-list .item .detail {
  float: left;
  width: 52%;
  padding: 8px 0 0 16px;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.55;
}

#home-new-product-list .item .type {
  padding-bottom: 8px;
}

#home-new-product-list .item .type img {
  max-width: 26px;
  max-height: 26px;
  margin-right: 4px;
  vertical-align: middle;
}

#home-new-product-list .item .detail table,
#home-new-product-list .item .detail tbody,
#home-new-product-list .item .detail tr,
#home-new-product-list .item .detail td {
  height: 100%;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .home-content {
    padding: 28px 24px 14px;
  }

  .home-content .new-products {
    width: 64%;
    padding-right: 24px;
  }

  .home-content .contact-us {
    width: 36%;
    padding-left: 24px;
  }

  #home-new-product-list .item {
    width: 320px;
  }
}

@media (max-width: 760px) {
  #home-photo {
    aspect-ratio: 1016 / 420;
  }

  #home-photo .item img {
    object-position: center;
  }

  .home-content {
    padding: 28px 20px 8px;
  }

  .home-content-table,
  .home-content-table tbody,
  .home-content-table tr,
  .home-content-table td {
    display: block;
    width: 100%;
  }

  .home-content .new-products {
    width: 100%;
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .home-content .contact-us {
    width: 100%;
    padding: 28px 0 0;
  }

  #home-new-product-list {
    display: grid;
    width: 100%;
    max-width: none;
    height: auto;
    overflow: visible;
    gap: 14px;
  }

  #home-new-product-list .item {
    display: none;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100%;
    min-height: 150px;
    padding: 0;
    overflow: hidden;
  }

  #home-new-product-list .item:nth-child(-n + 2) {
    display: block;
  }

  #home-new-product-list .item .detail {
    min-width: 0;
    overflow: hidden;
  }

  #home-new-product-list .item .detail table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
  }

  #home-new-product-list .item .detail a,
  #home-new-product-list .item .detail p,
  #home-new-product-list .item .type {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 460px) {
  #home-photo {
    aspect-ratio: 1016 / 500;
  }

  #home-new-product-list .item .photo {
    width: 44%;
  }

  #home-new-product-list .item .detail {
    width: 56%;
    padding-left: 12px;
  }
}

/* Technology-led homepage composition */
#home-photo {
  width: calc(100% - 36px);
  margin: 18px 18px 0;
  overflow: hidden;
  border: 1px solid rgba(67, 213, 209, 0.28);
  border-radius: 16px;
  background: var(--color-panel);
  box-shadow: 0 18px 44px rgba(12, 27, 36, 0.18);
}

#home-photo::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    linear-gradient(90deg, rgba(8, 21, 28, 0.16), transparent 45%),
    linear-gradient(0deg, rgba(8, 21, 28, 0.82), transparent 46%);
  content: "";
  pointer-events: none;
}

#home-photo::after {
  z-index: 9;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand-light), rgba(67, 213, 209, 0.1) 72%, var(--color-accent));
  box-shadow: 0 0 14px rgba(67, 213, 209, 0.52);
}

#home-photo .item {
  z-index: 1;
}

.home-command-bar {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 8;
  display: flex;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  background: rgba(10, 25, 33, 0.88);
  box-shadow: 0 18px 38px rgba(5, 16, 22, 0.28);
  color: #ffffff;
  backdrop-filter: blur(14px);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-command-copy {
  min-width: 0;
}

.home-command-copy .home-eyebrow,
.overview-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--color-brand-light);
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-command-copy strong {
  display: block;
  color: #ffffff;
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.home-command-copy small {
  display: block;
  margin-top: 5px;
  color: #9db0b8;
  font-size: 12px;
}

.home-command-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.home-tech-strip {
  display: grid;
  margin: 14px 18px 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background: #f7fbfb;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 10px 26px rgba(12, 35, 46, 0.06);
}

.tech-point {
  position: relative;
  min-height: 88px;
  padding: 17px 18px 15px 64px;
  border-right: 1px solid var(--color-line);
}

.tech-point:last-child {
  border-right: 0;
}

.tech-point > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(7, 157, 165, 0.35);
  border-radius: 8px;
  background: rgba(7, 157, 165, 0.08);
  color: var(--color-brand-dark);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 10px;
  font-weight: 700;
  place-items: center;
}

.tech-point strong,
.tech-point small {
  display: block;
}

.tech-point strong {
  color: var(--color-ink);
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: 14px;
  letter-spacing: 0.025em;
}

.tech-point small {
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 11px;
}

.home-content {
  padding: 34px 34px 18px;
}

.section-title {
  padding: 0 0 14px;
  font-size: 20px;
  letter-spacing: 0.075em;
}

.section-title::before {
  top: auto;
  bottom: 0;
  width: 48px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-brand-light));
}

.section-title::after {
  left: 58px;
}

#home-new-product-list {
  height: 208px;
}

#home-new-product-list .item {
  width: calc(50% - 8px);
  height: 194px;
  min-height: 194px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(7, 157, 165, 0.04), transparent 48%),
    #ffffff;
  box-shadow: 0 9px 24px rgba(12, 35, 46, 0.07);
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast);
}

#home-new-product-list .item:hover {
  border-color: rgba(7, 157, 165, 0.45);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

#home-new-product-list .item .photo {
  width: 43%;
  height: 168px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, #ffffff, #eaf2f3);
}

#home-new-product-list .item:hover .photo {
  box-shadow: none;
  transform: none;
}

#home-new-product-list .item .detail {
  width: 57%;
  height: 168px;
  min-width: 0;
  padding: 7px 0 0 14px;
  overflow: hidden;
  color: var(--color-text);
}

#home-new-product-list .item .detail table {
  width: 100%;
  table-layout: fixed;
}

#home-new-product-list .item .detail p {
  margin: 0 0 8px;
  padding: 0;
  overflow-wrap: anywhere;
  line-height: 1.4;
  word-break: break-word;
}

#home-new-product-list .item .detail br {
  display: none;
}

.home-content .contact-us .contact-detail {
  min-height: 194px;
  padding: 72px 20px 20px;
  overflow: hidden;
  border-color: rgba(67, 213, 209, 0.19);
  border-radius: 14px;
  background:
    linear-gradient(150deg, rgba(12, 27, 36, 0.96), rgba(17, 48, 59, 0.91)),
    url(../images/home/map-bg.jpg) no-repeat top center;
  background-size: cover;
  box-shadow: 0 14px 34px rgba(12, 35, 46, 0.18);
}

.home-content .contact-us .contact-detail::before {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(67, 213, 209, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(67, 213, 209, 0.04);
  content: "";
}

.home-content .contact-us .contact-detail .company-name {
  color: #ffffff;
}

.home-content .contact-us .contact-detail td {
  color: #a8bbc2;
}

.home-content .contact-us a {
  color: var(--color-brand-light);
}

@media (max-width: 900px) {
  .home-command-copy small {
    display: none;
  }

  .home-command-bar {
    min-height: 92px;
  }

  .home-command-actions .tech-button {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 760px) {
  #home-photo {
    width: calc(100% - 24px);
    margin: 12px 12px 0;
    border-radius: 12px;
  }

  .home-command-bar {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 78px;
    padding: 11px 12px;
    border-radius: 10px;
    gap: 10px;
  }

  .home-command-copy .home-eyebrow,
  .home-command-copy small,
  .home-command-actions .secondary {
    display: none;
  }

  .home-command-copy strong {
    font-size: 15px;
    line-height: 1.25;
  }

  .home-command-actions .tech-button {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 10px;
    white-space: nowrap;
  }

  .home-tech-strip {
    margin: 10px 12px 0;
  }

  .tech-point {
    min-height: 82px;
    padding: 15px 10px 12px 46px;
  }

  .tech-point > span {
    top: 15px;
    left: 10px;
    width: 27px;
    height: 27px;
  }

  .tech-point strong {
    font-size: 12px;
  }

  .tech-point small {
    font-size: 10px;
    line-height: 1.35;
  }

  #home-new-product-list .item {
    width: 100%;
    height: 194px;
    min-height: 194px;
    padding: 11px;
  }
}

@media (max-width: 460px) {
  .home-command-bar {
    min-height: 68px;
  }

  .home-command-copy strong {
    font-size: 13px;
  }

  .home-tech-strip {
    grid-template-columns: 1fr;
  }

  .tech-point {
    min-height: 64px;
    padding: 13px 14px 11px 58px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .tech-point:last-child {
    border-bottom: 0;
  }

  .tech-point > span {
    top: 15px;
    left: 16px;
  }

  #home-new-product-list .item .photo {
    width: 42%;
  }

  #home-new-product-list .item .detail {
    width: 58%;
  }
}

/* Preserve the source video's native 16:9 frame without cropping. */
#home-photo.home-video-stage {
  aspect-ratio: 16 / 9;
  background: #050b0f;
}

#home-photo.home-video-stage::before {
  display: none;
}

#home-photo .home-video {
  position: relative;
  z-index: 6;
  display: block;
  width: 100%;
  height: 100%;
  background: #050b0f;
  object-fit: contain;
}

/* Full-width homepage composition inspired by premium manufacturer sites. */
body {
  background: #f4f5f3;
}

#body-container {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

#body-container::before {
  display: none;
}

#home-photo.home-video-stage {
  width: min(
    calc(100% - clamp(72px, 8vw, 160px)),
    max(640px, calc(177.778vh - 498px))
  );
  margin: clamp(18px, 2.2vw, 30px) auto 0;
  border: 0;
  border-radius: 2px;
  box-shadow: 0 18px 46px rgba(12, 35, 46, 0.1);
}

#home-photo.home-video-stage::after {
  display: none;
}

.home-tech-strip {
  width: calc(100% - clamp(48px, 8vw, 160px));
  margin: 36px auto 0;
}

.home-content {
  width: 100%;
  margin: 0;
  padding: 36px 0 0;
  overflow: hidden;
}

#footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 42px clamp(24px, 6vw, 120px);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

@media (max-width: 760px) {
  #home-photo.home-video-stage {
    width: calc(100% - 24px);
    margin: 12px auto 0;
    border-radius: 2px;
  }

  .home-tech-strip,
  .home-content {
    width: calc(100% - 24px);
  }

  .home-tech-strip {
    margin-top: 18px;
  }

  .home-content {
    width: 100%;
    padding-top: 20px;
  }

  #footer {
    width: 100%;
    padding: 34px 20px;
  }
}

/* Expanded homepage storytelling and product discovery. */
.home-content {
  color: var(--color-ink);
}

.home-section {
  padding: clamp(76px, 7vw, 136px) clamp(24px, 6vw, 120px);
  border-bottom: 0;
}

.home-section:first-child {
  padding-top: clamp(76px, 7vw, 136px);
}

.home-section-heading {
  display: flex;
  margin-bottom: clamp(36px, 3.5vw, 64px);
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.home-category-section {
  background:
    linear-gradient(rgba(33, 123, 128, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 123, 128, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: 48px 48px;
}

.home-eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--color-brand-dark);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-section h1,
.home-section h2,
.home-contact-band h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: "Bahnschrift", "Arial Narrow", "Segoe UI", sans-serif;
  font-size: clamp(32px, 3.7vw, 54px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.home-text-link,
.home-action-link {
  display: inline-flex;
  color: var(--color-ink);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
}

.home-text-link span,
.home-action-link span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid #cbd7da;
  border-radius: 50%;
  transition: color var(--motion-fast), border-color var(--motion-fast), background var(--motion-fast), transform var(--motion-fast);
  place-items: center;
}

.home-text-link:hover,
.home-action-link:hover {
  color: var(--color-brand-dark);
}

.home-text-link:hover span,
.home-action-link:hover span {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: #ffffff;
  transform: translateX(3px);
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 24px);
}

.category-card {
  position: relative;
  display: flex;
  min-height: clamp(340px, 22vw, 480px);
  padding: clamp(22px, 2vw, 36px);
  overflow: hidden;
  border: 1px solid #dce5e7;
  background: linear-gradient(145deg, #f8fbfb 0%, #eef3f4 100%);
  color: var(--color-ink);
  flex-direction: column;
  isolation: isolate;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast);
}

.category-card::before {
  position: absolute;
  inset: auto -20% -55% 30%;
  z-index: -1;
  height: 85%;
  border-radius: 50%;
  background: rgba(42, 177, 182, 0.1);
  content: "";
  transition: transform 450ms ease;
}

.category-card:hover {
  z-index: 2;
  border-color: rgba(7, 157, 165, 0.55);
  box-shadow: 0 24px 52px rgba(10, 35, 45, 0.14);
  color: var(--color-ink);
  transform: translateY(-5px);
}

.category-card:hover::before {
  transform: scale(1.2);
}

.category-card-wide {
  grid-column: span 2;
}

.category-number {
  color: var(--color-brand-dark);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.category-copy {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 70%;
  margin-top: clamp(22px, 2vw, 34px);
}

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

.category-copy strong {
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.1;
}

.category-copy small {
  max-width: 240px;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

.category-card > img {
  position: absolute;
  right: 5%;
  bottom: 3%;
  z-index: 1;
  width: 72%;
  height: 62%;
  object-fit: contain;
  object-position: right bottom;
  mix-blend-mode: multiply;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card:not(.category-card-wide) > img {
  right: 7%;
  width: 82%;
  height: 52%;
}

.category-card:hover > img {
  transform: scale(1.04) translateX(-4px);
}

.category-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid #cad7da;
  border-radius: 50%;
  font-size: 16px;
  place-items: center;
}

.home-new-products #home-new-product-list {
  display: grid;
  width: 100%;
  max-width: none;
  height: auto;
  overflow: visible;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 24px);
}

.home-new-products {
  background:
    radial-gradient(circle at 92% 8%, rgba(44, 158, 163, 0.12), transparent 24rem),
    #edf3f3;
}

.home-new-products #home-new-product-list .item {
  position: relative !important;
  left: auto !important;
  display: flex;
  width: auto;
  height: clamp(350px, 23vw, 460px);
  min-height: 350px;
  padding: 0;
  border-radius: 0;
  border: 1px solid #d8e3e4;
  background: #ffffff;
  flex-direction: column;
}

.home-new-products #home-new-product-list .item:nth-child(n+5) {
  display: none;
}

.home-new-products #home-new-product-list .item .photo {
  float: none;
  width: 100%;
  height: clamp(215px, 14.5vw, 292px);
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #ffffff;
}

.home-new-products #home-new-product-list .item .photo table,
.home-new-products #home-new-product-list .item .photo tbody,
.home-new-products #home-new-product-list .item .photo tr,
.home-new-products #home-new-product-list .item .photo td,
.home-new-products #home-new-product-list .item .photo a {
  width: 100%;
  height: 100%;
}

.home-new-products #home-new-product-list .item .photo a {
  --product-image-gap: clamp(28px, 2.4vw, 48px);
  position: relative;
  display: block;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
}

.home-new-products #home-new-product-list .item .photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: calc(100% - var(--product-image-gap));
  height: calc(100% - var(--product-image-gap));
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
}

.home-new-products #home-new-product-list .item .detail {
  float: none;
  width: 100%;
  height: auto;
  min-height: 134px;
  padding: 18px 20px;
  background: #ffffff;
  font-size: 12px;
  flex: 1;
}

.home-new-products #home-new-product-list .item .detail .type {
  margin-bottom: 5px;
  padding: 0;
  color: var(--color-brand-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.capability-section {
  display: grid;
  padding: clamp(72px, 6vw, 112px) clamp(24px, 6vw, 120px);
  background:
    radial-gradient(circle at 6% 12%, rgba(67, 213, 209, 0.1), transparent 24rem),
    #edf2f2;
  grid-template-columns: minmax(420px, 0.9fr) minmax(540px, 1.1fr);
  align-items: center;
  gap: clamp(48px, 5vw, 96px);
}

.capability-photo {
  position: relative;
  width: 100%;
  min-height: 460px;
  max-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(16, 29, 38, 0.12);
  background: #dfe8e8;
  box-shadow: 0 28px 70px rgba(16, 29, 38, 0.14);
  aspect-ratio: 5 / 3;
}

.capability-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 20, 27, 0.58));
  content: "";
  pointer-events: none;
}

.capability-photo img {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.capability-photo:hover img {
  transform: scale(1.025);
}

.capability-photo-caption {
  position: absolute;
  right: clamp(20px, 2.2vw, 34px);
  bottom: clamp(20px, 2.2vw, 32px);
  left: clamp(20px, 2.2vw, 34px);
  z-index: 1;
  display: flex;
  color: #ffffff;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.capability-photo-caption span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capability-photo-caption strong {
  font-size: clamp(18px, 1.4vw, 24px);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.capability-copy {
  display: flex;
  min-width: 0;
  padding: clamp(10px, 1vw, 20px) 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
}

.capability-copy h2,
.quality-copy h2 {
  font-size: clamp(34px, 3.35vw, 50px);
}

.capability-copy > p,
.quality-copy > p {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--color-text);
  font-size: clamp(16px, 0.85vw, 18px);
  line-height: 1.7;
}

.capability-process {
  display: grid;
  margin-top: clamp(30px, 2.6vw, 44px);
  border-top: 1px solid #c7d6d7;
  border-bottom: 1px solid #c7d6d7;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.capability-process > div {
  min-width: 0;
  padding: 22px clamp(16px, 1.5vw, 28px) 24px 0;
}

.capability-process > div + div {
  padding-left: clamp(16px, 1.5vw, 28px);
  border-left: 1px solid #c7d6d7;
}

.capability-process span,
.capability-process strong,
.capability-process small {
  display: block;
}

.capability-process span {
  margin-bottom: 16px;
  color: var(--color-brand-dark);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.capability-process strong {
  color: var(--color-ink);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: clamp(17px, 1.05vw, 21px);
  font-weight: 600;
  line-height: 1.25;
}

.capability-process small {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: clamp(13px, 0.72vw, 15px);
  line-height: 1.55;
}

.capability-stats {
  display: grid;
  margin: clamp(26px, 2.2vw, 36px) 0 0;
  border: 1px solid #cbd9da;
  background: rgba(255, 255, 255, 0.7);
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.capability-stats > div {
  min-width: 0;
  padding: 22px clamp(14px, 1.25vw, 24px);
}

.capability-stats > div + div {
  border-left: 1px solid #d4e0e1;
}

.capability-stats strong,
.capability-stats small {
  display: block;
}

.capability-stats strong {
  color: var(--color-brand-dark);
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: clamp(24px, 1.65vw, 32px);
  line-height: 1.05;
}

.capability-stats small {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.45;
}

.capability-copy .home-action-link {
  min-height: 44px;
  margin-top: 24px;
  align-self: flex-start;
}

.quality-section {
  display: grid;
  min-height: clamp(560px, 42vw, 760px);
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 83% 20%, rgba(37, 185, 190, 0.22), transparent 28%),
    #0b2029;
  grid-template-columns: minmax(400px, 0.72fr) minmax(0, 1.28fr);
}

.quality-copy {
  display: flex;
  padding: clamp(54px, 6vw, 120px);
  flex-direction: column;
  justify-content: center;
}

.quality-copy .home-eyebrow {
  color: #6ee1df;
}

.quality-copy h2,
.quality-copy > p,
.quality-copy .home-action-link {
  color: #ffffff;
}

.quality-copy > p {
  color: #a9bbc1;
}

.quality-copy .home-action-link {
  margin-top: 34px;
}

.quality-copy .home-action-link span {
  border-color: rgba(255, 255, 255, 0.35);
}

.quality-visual {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 72px clamp(48px, 6vw, 120px) 58px 20px;
  align-items: center;
  justify-content: center;
}

.testing-equipment {
  width: min(100%, 760px);
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, 0.3));
}

.certificate-stack {
  position: absolute;
  right: 36px;
  bottom: 32px;
  display: flex;
  gap: 10px;
}

.certificate-stack img {
  width: 78px;
  height: 104px;
  border: 4px solid rgba(255, 255, 255, 0.94);
  background: #ffffff;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
  transform: rotate(-3deg);
}

.certificate-stack img:last-child {
  transform: translateY(8px) rotate(4deg);
}

.home-contact-band {
  display: flex;
  margin-top: 0;
  padding: clamp(64px, 7vw, 132px) clamp(24px, 6vw, 120px);
  background:
    linear-gradient(110deg, rgba(44, 158, 163, 0.13), transparent 42%),
    #f4f7f6;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.home-contact-band h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.2vw, 46px);
}

.home-contact-actions {
  display: flex;
  min-width: 270px;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.home-contact-actions > a:first-child {
  color: var(--color-brand-dark);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.home-contact-button {
  display: flex;
  min-height: 54px;
  padding: 0 22px;
  background: var(--color-panel);
  color: #ffffff;
  font-family: "Bahnschrift", "Arial Narrow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  justify-content: space-between;
  transition: background var(--motion-fast), transform var(--motion-fast);
}

.home-contact-button:hover {
  background: var(--color-brand-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 1050px) {
  .home-category-grid,
  .home-new-products #home-new-product-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card-wide {
    grid-column: span 1;
  }

  .capability-section,
  .quality-section {
    grid-template-columns: 1fr;
  }

  .capability-photo {
    width: min(100%, 880px);
    min-height: 0;
    max-height: 540px;
    aspect-ratio: 16 / 9;
  }

  .quality-visual {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .home-section {
    padding: 56px 20px;
  }

  .home-section:first-child {
    padding-top: 56px;
  }

  .home-section-heading,
  .home-contact-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .home-section h1,
  .home-section h2,
  .home-contact-band h2 {
    font-size: 31px;
  }

  .home-category-grid,
  .home-new-products #home-new-product-list {
    grid-template-columns: 1fr;
  }

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

  .home-new-products #home-new-product-list .item:nth-child(n+4) {
    display: none;
  }

  .capability-photo {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .capability-copy,
  .quality-copy {
    padding: 40px 24px;
  }

  .capability-section,
  .quality-section {
    padding: 0;
  }

  .capability-section {
    padding: 40px 20px 56px;
    gap: 36px;
  }

  .capability-copy {
    padding: 0;
  }

  .capability-process {
    grid-template-columns: 1fr;
  }

  .capability-process > div,
  .capability-process > div + div {
    padding: 18px 0 20px;
    border-left: 0;
  }

  .capability-process > div + div {
    border-top: 1px solid #c7d6d7;
  }

  .capability-stats {
    grid-template-columns: 1fr;
  }

  .capability-stats > div {
    display: grid;
    padding: 16px 18px;
    grid-template-columns: 94px 1fr;
    align-items: center;
  }

  .capability-stats > div + div {
    border-top: 1px solid #d4e0e1;
    border-left: 0;
  }

  .capability-stats small {
    margin-top: 0;
  }

  .quality-visual {
    min-height: 280px;
    padding: 42px 20px 72px;
  }

  .certificate-stack {
    right: 22px;
    bottom: 18px;
  }

  .certificate-stack img {
    width: 58px;
    height: 78px;
  }

  .home-contact-band {
    margin-top: 0;
    padding: 52px 20px;
  }

  .home-contact-actions {
    width: 100%;
    min-width: 0;
  }
}
