:root {
  --ink: #12151b;
  --graphite: #202734;
  --steel: #315979;
  --brand-blue: #155aa8;
  --brand-red: #ed1c24;
  --gold: #b88932;
  --gold-soft: #f1d38f;
  --paper: #f7f6f1;
  --white: #ffffff;
  --silver: #e7ebf0;
  --line: rgba(18, 21, 27, 0.12);
  --muted: #626b77;
  --shadow: 0 24px 70px rgba(18, 21, 27, 0.16);
  --radius: 8px;
  --header-height: 64px;
  --font-body: "Segoe UI Variable Text", Aptos, "Segoe UI", Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", Aptos Display, "Segoe UI", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 12px;
  right: max(14px, calc((100% - 1160px) / 2));
  left: max(14px, calc((100% - 1160px) / 2));
  z-index: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 12px 8px 18px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(18, 21, 27, 0.13);
  backdrop-filter: blur(22px) saturate(1.22);
  animation: headerDrop 720ms var(--ease-out) both;
  transition: box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 14px 42px rgba(18, 21, 27, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 138px;
  height: 38px;
  object-fit: contain;
  transition: transform 260ms var(--ease-out);
}

.brand:hover img {
  transform: translateY(-1px) scale(1.02);
}

.brand span {
  display: none;
}

.brand strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #29313d;
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 720;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(680px, calc(100svh - 116px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--graphite);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(241, 211, 143, 0.16) 46%, transparent 54%);
  opacity: 0.55;
  transform: translateX(-120%);
  animation: scanSweep 5.8s 1.2s ease-in-out infinite;
  pointer-events: none;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-xrf-lab.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-video.is-unavailable {
  display: none;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 21, 27, 0.88) 0%, rgba(18, 21, 27, 0.72) 38%, rgba(18, 21, 27, 0.22) 72%, rgba(18, 21, 27, 0.10) 100%),
    linear-gradient(0deg, rgba(18, 21, 27, 0.28), rgba(18, 21, 27, 0.04));
}

.hero-inner {
  padding: 72px 0;
  color: var(--white);
}

.eyebrow,
.section-kicker,
.product-type {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.section-kicker,
.product-type {
  color: var(--gold);
}

.hero h1,
.section h2,
.cta-section h2 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.07;
  font-weight: 740;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 5.8vw, 4.65rem);
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.hero-tags {
  animation: fadeUp 820ms var(--ease-out) both;
}

.hero .eyebrow {
  animation-delay: 120ms;
}

.hero h1 {
  animation-delay: 220ms;
}

.hero-copy {
  animation-delay: 340ms;
}

.hero-actions {
  animation-delay: 460ms;
}

.hero-tags {
  animation-delay: 580ms;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  border: 1px solid transparent;
  max-width: 100%;
  padding: 0 22px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  transition: transform 240ms var(--ease-out), background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 240ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn::after {
  position: absolute;
  inset: -80% auto -80% -45%;
  z-index: 0;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  transform: skewX(-18deg);
  transition: left 520ms var(--ease-out);
  pointer-events: none;
}

.btn:hover::after {
  left: 120%;
}

.btn-primary {
  color: #15120a;
  background: linear-gradient(135deg, #ffd987, #b88932);
  box-shadow: 0 18px 36px rgba(184, 137, 50, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 24px 48px rgba(184, 137, 50, 0.42);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-tags span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 680;
  transition: transform 240ms var(--ease-out), border-color 240ms ease, background-color 240ms ease;
}

.hero-tags span:hover {
  border-color: rgba(241, 211, 143, 0.72);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.trust-band {
  background: var(--ink);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid div {
  position: relative;
  min-height: 110px;
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.trust-grid div::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  transform: translateX(-100%);
  transition: transform 620ms var(--ease-out);
}

.trust-grid div:hover::before {
  transform: translateX(100%);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 0.98rem;
}

.trust-grid span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.section {
  padding: 92px 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.section-muted {
  background: var(--paper);
}

.intro-section {
  padding: 76px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 1fr;
  gap: 34px;
  align-items: start;
}

.intro-grid h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 720;
  line-height: 1.12;
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  margin-top: 34px;
}

.company-facts div,
.profile-download {
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 44px rgba(18, 21, 27, 0.06);
}

.company-facts div {
  padding: 18px;
}

.company-facts span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.company-facts strong {
  display: block;
  margin-top: 8px;
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 720;
  line-height: 1.22;
}

.profile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(32, 39, 52, 0.98), rgba(49, 89, 121, 0.98)),
    var(--graphite);
  font-weight: 760;
  text-align: center;
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease;
}

.profile-download:hover {
  box-shadow: 0 24px 52px rgba(18, 21, 27, 0.16);
  transform: translateY(-4px);
}

.clients-section {
  padding: 76px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 21, 27, 0.96), rgba(32, 39, 52, 0.94)),
    linear-gradient(135deg, var(--brand-blue), var(--graphite));
}

.clients-grid {
  display: grid;
  grid-template-columns: 0.44fr 1fr;
  gap: 34px;
  align-items: center;
}

.clients-copy h2 {
  max-width: 360px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 720;
  line-height: 1.1;
}

.clients-section .section-kicker {
  color: var(--gold-soft);
}

.client-marquee {
  position: relative;
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 10px 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-track {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  min-width: max-content;
  animation: clientMarquee 24s linear infinite;
}

.client-logo-slot {
  display: inline-flex;
  width: 210px;
  height: 92px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.client-logo-wide {
  width: 270px;
}

.client-logo-square {
  width: 134px;
}

.client-logo-slot span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.client-logo-slot img {
  max-width: 82%;
  max-height: 58px;
  object-fit: contain;
  opacity: 0.96;
  transition: opacity 220ms ease, transform 220ms var(--ease-out);
}

.client-logo-slot:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head h2,
.feature-copy h2,
.cta-section h2 {
  font-size: 3rem;
}

.section-head p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.audience-card,
.product-card,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 260ms var(--ease-out), box-shadow 260ms ease, border-color 260ms ease;
}

.audience-card:hover,
.process-step:hover {
  border-color: rgba(184, 137, 50, 0.32);
  box-shadow: 0 18px 44px rgba(18, 21, 27, 0.08);
  transform: translateY(-5px);
}

.audience-card {
  min-height: 254px;
  padding: 22px;
}

.audience-card span,
.process-step span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.audience-card:nth-child(2) span,
.process-step:nth-child(2) span {
  background: var(--gold);
}

.audience-card:nth-child(3) span,
.process-step:nth-child(3) span {
  background: var(--graphite);
}

.audience-card:nth-child(4) span,
.process-step:nth-child(4) span {
  background: var(--steel);
}

.audience-card:nth-child(5) span {
  background: var(--brand-red);
}

.audience-card h3,
.product-card h3,
.process-step h3 {
  font-family: var(--font-display);
  margin: 18px 0 8px;
  font-weight: 720;
  font-size: 1.14rem;
}

.audience-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.product-card {
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(18, 21, 27, 0.08);
}

.product-card:hover {
  border-color: rgba(21, 90, 168, 0.22);
  box-shadow: 0 26px 68px rgba(18, 21, 27, 0.16);
  transform: translateY(-7px);
}

.product-media {
  min-height: 230px;
  background-image:
    linear-gradient(180deg, rgba(18, 21, 27, 0.08), rgba(18, 21, 27, 0.18)),
    url("assets/hero-xrf-lab.png");
  background-size: auto, cover;
  transition: transform 900ms var(--ease-out), filter 320ms ease;
}

.product-card:hover .product-media {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.055);
}

.media-xrf {
  background-position: center, 76% 38%;
}

.media-portable {
  background-position: center, 96% 55%;
}

.media-coating {
  background-position: center, 52% 83%;
}

.product-body {
  padding: 24px;
}

.product-card h3 {
  margin-top: 0;
  font-size: 1.42rem;
}

.product-card p:not(.product-type) {
  margin: 0;
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 18px;
  color: #303846;
  font-size: 0.94rem;
}

.product-card li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  content: "";
  background: var(--gold);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.category-panel {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--graphite);
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(18, 21, 27, 0.14);
  transition: transform 280ms var(--ease-out), box-shadow 280ms ease;
}

.category-panel::before,
.category-panel::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  transition: transform 800ms var(--ease-out);
}

.category-panel::before {
  background:
    linear-gradient(0deg, rgba(18, 21, 27, 0.94), rgba(18, 21, 27, 0.08)),
    url("assets/hero-xrf-lab.png") center / cover;
}

.category-panel-cutting::before {
  background:
    linear-gradient(0deg, rgba(18, 21, 27, 0.96), rgba(18, 21, 27, 0.22)),
    url("assets/products/nachi-cutting-tools.jpg") center / cover;
}

.category-panel-accessory::before {
  background:
    linear-gradient(0deg, rgba(18, 21, 27, 0.96), rgba(18, 21, 27, 0.14)),
    url("assets/products/vertex-milling-vise.jpg") center / cover;
}

.category-panel::after {
  background: linear-gradient(120deg, transparent 30%, rgba(241, 211, 143, 0.25) 50%, transparent 70%);
  transform: translateX(-120%);
}

.category-panel:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(18, 21, 27, 0.22);
}

.category-panel:hover::before {
  transform: scale(1.045);
}

.category-panel:hover::after {
  transform: translateX(120%);
}

.category-panel > * {
  position: relative;
  z-index: 1;
}

.category-panel span {
  margin-bottom: auto;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(18, 21, 27, 0.24);
  font-size: 0.76rem;
  font-weight: 760;
  backdrop-filter: blur(8px);
}

.category-panel strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.category-panel p {
  max-width: 310px;
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.76);
}

.category-panel small {
  color: var(--gold-soft);
  font-weight: 760;
}

.catalog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.catalog-total {
  flex: 0 0 auto;
  display: grid;
  justify-items: end;
  padding-bottom: 42px;
}

.catalog-total strong {
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

.catalog-total span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.catalog-toolbar {
  position: sticky;
  top: 88px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
  padding: 12px;
  border: 1px solid rgba(18, 21, 27, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(18, 21, 27, 0.08);
  backdrop-filter: blur(18px);
}

.catalog-search {
  min-width: 280px;
  flex: 1 1 360px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.catalog-search:focus-within {
  border-color: rgba(21, 90, 168, 0.55);
  box-shadow: 0 0 0 3px rgba(21, 90, 168, 0.1);
}

.catalog-search svg {
  width: 20px;
  fill: none;
  stroke: var(--steel);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.catalog-search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.catalog-filters {
  flex: 0 0 auto;
  display: flex;
  gap: 6px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #3e4856;
  background: transparent;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 720;
  cursor: pointer;
}

.filter-btn:hover {
  background: var(--silver);
}

.filter-btn.is-active {
  color: var(--white);
  background: var(--graphite);
}

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

.catalog-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  box-shadow: none;
}

.product-media-button {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #f1f3f5;
  cursor: pointer;
}

.catalog-card .product-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 0.78;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f7f8f9, #e7ebef);
}

.catalog-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  mix-blend-mode: multiply;
  transition: transform 700ms var(--ease-out);
}

.catalog-card:hover .product-media {
  filter: none;
  transform: none;
}

.catalog-card:hover .product-media img {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 8px;
  border-radius: 4px;
  color: var(--white);
  background: var(--brand-blue);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 5px 8px;
  border-radius: 4px;
  color: var(--white);
  background: rgba(18, 21, 27, 0.82);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.catalog-card .product-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.catalog-card .product-type {
  margin-bottom: 8px;
  font-size: 0.7rem;
}

.catalog-card h3 {
  margin: 0 0 9px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.catalog-card .product-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.88rem;
}

.product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.detail-button {
  padding: 0;
  border: 0;
  color: var(--brand-blue);
  background: transparent;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 780;
  cursor: pointer;
}

.detail-button:hover {
  color: var(--ink);
}

.product-wa-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
  color: #176b3a;
  background: #e7f7ed;
  font-size: 0.77rem;
  font-weight: 760;
}

.catalog-empty {
  padding: 70px 24px;
  border: 1px dashed rgba(18, 21, 27, 0.2);
  border-radius: var(--radius);
  text-align: center;
  background: var(--paper);
}

.catalog-empty strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.catalog-empty p {
  margin: 8px 0 20px;
  color: var(--muted);
}

.btn-dark {
  padding: 0 18px;
  color: var(--white);
  background: var(--graphite);
  border: 0;
  cursor: pointer;
}

.product-dialog {
  width: min(1060px, calc(100% - 28px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 30px 100px rgba(18, 21, 27, 0.32);
}

.product-dialog::backdrop {
  background: rgba(18, 21, 27, 0.68);
  backdrop-filter: blur(8px);
}

.dialog-shell {
  position: relative;
  overflow-x: hidden;
}

.dialog-close {
  position: sticky;
  top: 14px;
  z-index: 4;
  float: right;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font: 300 1.7rem/1 var(--font-body);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: center;
  padding: 44px;
  background: linear-gradient(145deg, #f2f4f6, #ffffff 62%);
}

.dialog-main-image {
  --zoom-x: 50%;
  --zoom-y: 50%;
  aspect-ratio: 1 / 0.82;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: zoom-in;
}

.dialog-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transform-origin: var(--zoom-x) var(--zoom-y);
  transition: transform 280ms var(--ease-out);
  will-change: transform;
}

.dialog-main-image::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: var(--white);
  background: rgba(18, 21, 27, 0.68);
  content: "⌕  Arahkan cursor untuk zoom";
  font-size: 0.7rem;
  font-weight: 720;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .dialog-main-image.is-zooming {
    cursor: zoom-out;
  }

  .dialog-main-image.is-zooming img {
    transform: scale(2.15);
    transition-duration: 120ms;
  }

  .dialog-main-image.is-zooming::after {
    opacity: 0;
    transform: translateY(6px);
  }
}

.dialog-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.thumbnail-button {
  width: 68px;
  height: 58px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
}

.thumbnail-button.is-active {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 2px rgba(21, 90, 168, 0.12);
}

.thumbnail-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-product-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.dialog-summary {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.dialog-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.dialog-actions .btn {
  padding: 0 20px;
}

.text-link {
  color: var(--brand-blue);
  font-size: 0.86rem;
  font-weight: 720;
}

.dialog-detail {
  padding: 40px 44px 52px;
}

.product-rich-text {
  max-width: 840px;
  color: #303846;
}

.product-overview {
  position: relative;
  margin-bottom: 28px;
  padding: 24px 26px;
  overflow: hidden;
  border-left: 4px solid var(--brand-blue);
  border-radius: 0 8px 8px 0;
  background: linear-gradient(120deg, #edf4fb, #f7f9fb);
}

.product-overview::after {
  position: absolute;
  top: -54px;
  right: -34px;
  width: 150px;
  height: 150px;
  border: 24px solid rgba(21, 90, 168, 0.05);
  border-radius: 999px;
  content: "";
}

.product-overview p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #28394a;
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.product-info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-card-number {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--brand-blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-info-card:nth-child(2) .info-card-number {
  background: var(--gold);
}

.product-info-card h3,
.info-section-heading h3 {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.product-info-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info-card li {
  position: relative;
  padding-left: 20px;
  color: #4c5664;
  font-size: 0.9rem;
}

.product-info-card li::before {
  position: absolute;
  top: 0.56em;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  content: "";
}

.product-spec-section,
.product-video-section {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.info-section-heading span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-section-heading h3 {
  margin-top: 5px;
  font-size: 1.55rem;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0 0;
}

.spec-list div {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(18, 21, 27, 0.08);
  border-radius: 6px;
  background: #f7f8f9;
}

.spec-list dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.spec-note {
  margin: 16px 0 0 !important;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
  color: var(--muted);
  font-size: 0.82rem;
}

.product-video {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: 0 20px 50px rgba(18, 21, 27, 0.16);
}

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

.product-video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
}

.product-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
}

.product-video-poster span {
  position: absolute;
  display: grid;
  width: 74px;
  height: 52px;
  place-items: center;
  padding-left: 4px;
  border-radius: 14px;
  color: var(--white);
  background: #ff0033;
  font-size: 1.45rem;
  box-shadow: 0 12px 34px rgba(18, 21, 27, 0.28);
}

.video-fallback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f8f9;
}

.video-fallback p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.video-fallback a {
  flex: 0 0 auto;
  color: var(--brand-blue);
  font-size: 0.8rem;
  font-weight: 780;
}

.product-rich-text h1,
.product-rich-text h2,
.product-rich-text h3,
.product-rich-text strong {
  color: var(--ink);
}

.product-rich-text p {
  margin: 0 0 14px;
}

.product-rich-text table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.product-rich-text td,
.product-rich-text th {
  padding: 8px 10px;
  border: 1px solid var(--line);
  text-align: left;
}

body.dialog-open {
  overflow: hidden;
}

.feature-section {
  background: linear-gradient(180deg, var(--white), #eef3f7);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.feature-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(18, 21, 27, 0.03), rgba(18, 21, 27, 0.12)),
    url("assets/hero-xrf-lab.png");
  background-position: center, 72% center;
  background-size: auto, cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.26) 50%, transparent 75%);
  transform: translateX(-120%);
  animation: scanSweep 6.5s ease-in-out infinite;
}

.feature-copy h2 {
  margin-bottom: 30px;
}

.value-list {
  display: grid;
  gap: 16px;
}

.value-list div {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: transform 240ms var(--ease-out);
}

.value-list div:hover {
  transform: translateX(6px);
}

.value-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.value-list strong {
  display: block;
  font-size: 1.08rem;
}

.value-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.process-step {
  min-height: 220px;
  padding: 24px;
}

.cta-section {
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(18, 21, 27, 0.98), rgba(32, 39, 52, 0.94)),
    linear-gradient(135deg, var(--brand-blue), var(--brand-red));
}

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

.cta-section .section-kicker {
  color: var(--gold-soft);
}

.cta-section h2 {
  max-width: 760px;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.phone-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 780;
}

.phone-link:hover {
  color: var(--gold-soft);
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #0c1016;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.site-footer img {
  width: 168px;
  height: 46px;
  margin-bottom: 16px;
  object-fit: contain;
  filter: brightness(1.15);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
}

.site-footer strong,
.site-footer a,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a,
.site-footer span {
  margin-top: 8px;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 16px 36px rgba(18, 21, 27, 0.26);
  animation: floatPulse 2.6s ease-in-out infinite;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  display: block;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 46px rgba(18, 21, 27, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 80ms;
}

.reveal:nth-child(3) {
  transition-delay: 150ms;
}

.reveal:nth-child(4) {
  transition-delay: 220ms;
}

.reveal:nth-child(5) {
  transition-delay: 290ms;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.015) translateX(0);
  }
  to {
    transform: scale(1.055) translateX(-14px);
  }
}

@keyframes scanSweep {
  0%,
  46% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes floatPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes clientMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 14px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

}

@media (min-width: 1120px) {
  .brand span {
    display: block;
  }
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 3.5rem;
  }

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

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

  .intro-grid,
  .clients-grid,
  .feature-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

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

  .profile-download {
    grid-column: 1 / -1;
  }

  .clients-copy h2 {
    max-width: 680px;
  }

  .feature-visual {
    min-height: 390px;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-filters {
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

@media (max-width: 920px) and (min-width: 761px) {
  .site-nav {
    gap: 18px;
    font-size: 0.84rem;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 60px;
  }

  .shell {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 8px 10px 8px 14px;
  }

  .brand img {
    width: 126px;
    height: 34px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 18px);
    right: 10px;
    left: 10px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(1.18);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 21, 27, 0.88), rgba(18, 21, 27, 0.58)),
      linear-gradient(0deg, rgba(18, 21, 27, 0.42), rgba(18, 21, 27, 0.08));
  }

  .hero-inner {
    padding: 58px 0 64px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .btn {
    min-width: 0;
    width: 100%;
  }

  .trust-grid,
  .audience-grid,
  .company-facts,
  .product-grid,
  .process-grid,
  .category-showcase {
    grid-template-columns: 1fr;
  }

  .category-panel {
    min-height: 250px;
  }

  .catalog-heading {
    display: block;
  }

  .catalog-total {
    display: none;
  }

  .catalog-toolbar {
    position: static;
  }

  .catalog-search {
    min-width: 0;
    flex-basis: auto;
  }

  .catalog-filters {
    margin: 0 -2px;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .trust-grid {
    border-left: 0;
  }

  .trust-grid div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding: 66px 0;
  }

  .clients-section {
    padding: 58px 0;
  }

  .clients-copy h2 {
    font-size: 1.9rem;
  }

  .client-logo-slot {
    width: 142px;
    height: 74px;
  }

  .client-logo-wide {
    width: 212px;
  }

  .client-logo-square {
    width: 112px;
  }

  .intro-section {
    padding: 58px 0;
  }

  .intro-grid h2,
  .section-head h2,
  .feature-copy h2,
  .cta-section h2 {
    font-size: 2.12rem;
  }

  .audience-card,
  .process-step {
    min-height: auto;
  }

  .product-media {
    min-height: 210px;
  }

  .catalog-card .product-media {
    min-height: 0;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 20px;
  }

  .dialog-detail {
    padding: 30px 20px 40px;
  }

  .dialog-product-copy h2 {
    padding-right: 36px;
  }

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

  .dialog-actions .btn {
    width: 100%;
  }

  .dialog-main-image {
    aspect-ratio: 1 / 0.72;
  }

  .dialog-main-image::after {
    display: none;
  }

  .product-info-grid,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .product-overview {
    padding: 20px;
  }

  .product-overview p {
    font-size: 0.98rem;
  }

  .video-fallback {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-visual {
    min-height: 330px;
  }

  .cta-section {
    padding: 64px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: 14px;
  }

}

@media (max-width: 560px) {
  .hero-inner {
    padding: 50px 0 56px;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .hero-tags {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .intro-grid h2,
  .section-head h2,
  .feature-copy h2,
  .cta-section h2 {
    font-size: 1.9rem;
  }
}
