:root {
  color-scheme: light;
  --navy: #071f58;
  --deep: #0a1834;
  --blue: #0f63bd;
  --sky: #dcecfb;
  --red: #a90f22;
  --orange: #f5823a;
  --ink: #172235;
  --muted: #5e6d7f;
  --soft: #eef3f8;
  --paper: #f7f9fc;
  --line: #d8e1ec;
  --white: #ffffff;
  --shadow: 0 20px 54px rgba(7, 31, 88, 0.13);
  --font-sans: "Helvetica Neue", Arial, sans-serif;
  font-family: var(--font-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  user-select: none;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 44px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(216, 225, 236, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 180px;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #27354a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.site-nav .nav-whatsapp,
.site-nav .nav-quote {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 8px;
}

.site-nav .nav-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #0f63bd, #073f82);
  border: 1px solid rgba(18, 102, 195, 0.35);
  box-shadow: 0 10px 24px rgba(18, 102, 195, 0.18);
}

.site-nav .nav-quote {
  color: var(--white);
  background: var(--red);
}

.site-nav .nav-whatsapp::after,
.site-nav .nav-quote::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--navy);
}

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

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

.hero-media {
  background-image: url("assets/hero-loom.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: -2;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 15, 32, 0.82), rgba(6, 15, 32, 0.62) 43%, rgba(6, 15, 32, 0.10)),
    linear-gradient(180deg, rgba(6, 15, 32, 0.01), rgba(6, 15, 32, 0.34));
  z-index: -1;
}

.hero-content {
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 64px 0 56px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-capabilities .eyebrow,
.contact-section .eyebrow {
  color: #9fc4ff;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 900;
}

.hero-lead {
  margin: 18px 0 0;
  max-width: 650px;
  color: #e6eef8;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 34px rgba(169, 15, 34, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.44);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.metric-strip div {
  min-height: 96px;
  padding: 22px 44px;
  background: var(--white);
}

.metric-strip strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.metric-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.section {
  padding: 66px 44px;
}

.section-header {
  width: min(1120px, 100%);
  margin: 0 auto 28px;
}

.section-header h2,
.application-copy h2,
.company-panel h2,
.contact-copy h2 {
  margin: 0;
  max-width: 780px;
  color: inherit;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.14;
  font-weight: 900;
}

.section-header p:not(.eyebrow),
.application-copy p,
.company-panel p,
.contact-copy p {
  margin: 12px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

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

.product-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  --product-accent-rgb: 18, 102, 195;
  --product-accent: #0f63bd;
  --product-accent-deep: #071f58;
  position: relative;
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 600px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0.9;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.product-card[data-product-card="waterjet"] {
  --product-accent-rgb: 169, 15, 34;
  --product-accent: #a90f22;
  --product-accent-deep: #700817;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 8px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: transparent;
  background: transparent;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(var(--product-accent-rgb), 0.5);
  box-shadow:
    0 24px 62px rgba(7, 31, 88, 0.16),
    0 10px 28px rgba(var(--product-accent-rgb), 0.12);
  outline: none;
  transform: translateY(-3px);
  opacity: 1;
}

.product-card.is-selected {
  border-color: rgba(var(--product-accent-rgb), 0.92);
  opacity: 1;
  transform: translateY(-8px);
  box-shadow:
    0 34px 80px rgba(7, 31, 88, 0.24),
    0 16px 34px rgba(var(--product-accent-rgb), 0.24),
    inset 0 0 0 2px rgba(var(--product-accent-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-card.is-selected::before {
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.95),
    inset 0 0 0 6px rgba(var(--product-accent-rgb), 0.22);
}

.product-card.is-selected::after {
  content: "Selected Product";
  color: var(--white);
  background: linear-gradient(135deg, var(--product-accent), var(--product-accent-deep));
  box-shadow: 0 12px 28px rgba(var(--product-accent-rgb), 0.28);
}

.product-card.is-selected .product-photo {
  box-shadow: inset 0 -10px 26px rgba(var(--product-accent-rgb), 0.12);
}

.product-card.is-selected .product-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(var(--product-accent-rgb), 0.08));
}

.product-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #eaf1f8);
}

.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-photo-air img {
  object-position: center;
}

.product-photo-water img {
  object-position: center 58%;
}

.product-copy {
  padding: 26px;
}

.product-label {
  width: fit-content;
  margin: 0;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--blue);
  background: #edf6ff;
  border: 1px solid rgba(15, 99, 189, 0.14);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.24;
  font-weight: 900;
}

.product-copy p:not(.product-label) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.76;
}

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

.product-copy li {
  position: relative;
  padding-left: 18px;
  color: #344257;
  font-size: 14px;
  line-height: 1.6;
}

.product-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.product-detail-panels {
  width: min(1120px, 100%);
  margin: 22px auto 0;
}

.product-detail-panel {
  --panel-accent-rgb: 18, 102, 195;
  --panel-accent: #0f63bd;
  --panel-accent-deep: #071f58;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(248, 251, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.025) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(7, 31, 88, 0.02) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.22);
  border-radius: 8px;
  box-shadow:
    0 24px 62px rgba(7, 31, 88, 0.14),
    0 10px 26px rgba(var(--panel-accent-rgb), 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.product-detail-panel[data-product-panel="waterjet"] {
  --panel-accent-rgb: 169, 15, 34;
  --panel-accent: #a90f22;
  --panel-accent-deep: #700817;
}

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

.product-detail-panel .button-primary {
  background: linear-gradient(135deg, var(--panel-accent), var(--panel-accent-deep));
  box-shadow: 0 14px 34px rgba(var(--panel-accent-rgb), 0.24);
}

.detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.detail-header h3 {
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 900;
}

.detail-header p:not(.eyebrow) {
  margin: 10px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.detail-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.detail-summary div {
  min-height: 88px;
  padding: 15px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.16);
  border-radius: 8px;
  box-shadow:
    0 12px 26px rgba(var(--panel-accent-rgb), 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.detail-summary span {
  display: block;
  color: var(--panel-accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.detail-summary strong {
  display: block;
  margin-top: 7px;
  color: #24334a;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 800;
}

.detail-section-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 22px;
}

.detail-section-title > span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--panel-accent), var(--panel-accent-deep));
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.detail-section-title h4 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.detail-section-title p {
  margin: 6px 0 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.spec-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.spec-highlight-grid div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: var(--white);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.17);
  border-radius: 8px;
  box-shadow:
    0 14px 30px rgba(var(--panel-accent-rgb), 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.spec-highlight-grid span,
.spec-note span {
  display: block;
  color: var(--panel-accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.spec-highlight-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--navy);
  max-width: 100%;
  font-size: clamp(20px, 1.85vw, 26px);
  line-height: 1.12;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: normal;
}

.spec-highlight-grid p {
  margin: auto 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.spec-note p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.spec-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.spec-block {
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.15);
  border-radius: 8px;
  box-shadow:
    0 14px 30px rgba(var(--panel-accent-rgb), 0.052),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.spec-block h4,
.quality-strip h4 {
  margin: 0;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.28;
  font-weight: 900;
}

.spec-table {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.spec-table div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.13);
  border-left: 3px solid rgba(var(--panel-accent-rgb), 0.34);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.spec-table span {
  color: var(--panel-accent);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.36;
}

.spec-table p {
  margin: 0;
  color: #38485f;
  font-size: 14px;
  line-height: 1.58;
}

.quality-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  margin-top: 16px;
}

.quality-strip-single {
  grid-template-columns: 1fr;
}

.quality-strip > div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.15);
  border-radius: 8px;
  box-shadow:
    0 14px 30px rgba(var(--panel-accent-rgb), 0.052),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.quality-strip ul {
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.quality-strip-single ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
}

.quality-strip-single li:last-child {
  grid-column: 1 / -1;
}

.quality-strip li {
  position: relative;
  padding-left: 18px;
  color: #344257;
  font-size: 14px;
  line-height: 1.58;
}

.quality-strip li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.spec-note {
  align-self: start;
  background: linear-gradient(180deg, #ffffff, rgba(var(--panel-accent-rgb), 0.08)) !important;
}

.visual-config-section {
  margin-top: 12px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.035) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(7, 31, 88, 0.025) 0 1px, transparent 1px 18px);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.18);
  border-radius: 8px;
  box-shadow:
    0 14px 34px rgba(var(--panel-accent-rgb), 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.visual-config-heading {
  max-width: 900px;
}

.visual-config-heading h4 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
}

.visual-config-heading p:not(.eyebrow) {
  margin: 9px 0 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.visual-config-subheading {
  margin-top: 26px;
}

.visual-card-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.visual-card-grid-views {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.visual-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--panel-accent-rgb), 0.15);
  border-radius: 8px;
  box-shadow:
    0 12px 28px rgba(var(--panel-accent-rgb), 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef3f8;
}

.visual-card-grid-views .visual-card {
  background: #ffffff;
  box-shadow:
    0 16px 34px rgba(var(--panel-accent-rgb), 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.visual-card-grid-views .visual-card img {
  padding: 10px;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background:
    linear-gradient(180deg, #f7faff, #eef3f8),
    repeating-linear-gradient(90deg, rgba(var(--panel-accent-rgb), 0.035) 0 1px, transparent 1px 18px);
}

.visual-card-grid-config .visual-card img {
  aspect-ratio: 4 / 3;
}

.visual-card-grid-config .visual-card img.angle-sensor-image {
  object-position: center 62%;
}

.image-zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
  text-align: left;
}

.image-zoom-trigger img {
  display: block;
  transition: transform 180ms ease, filter 180ms ease;
}

.image-zoom-trigger > span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: #ffffff;
  background: rgba(7, 31, 88, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(7, 31, 88, 0.22);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.image-zoom-trigger:hover img,
.image-zoom-trigger:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.015);
}

.image-zoom-trigger:hover > span,
.image-zoom-trigger:focus-visible > span {
  opacity: 1;
  transform: translateY(0);
}

.image-zoom-trigger:focus-visible {
  outline: 3px solid rgba(var(--panel-accent-rgb), 0.38);
  outline-offset: -3px;
}

.visual-card > div {
  padding: 14px;
}

.visual-card-grid-views .visual-card > div {
  padding: 16px 18px 18px;
}

.visual-card span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  color: var(--panel-accent);
  background: rgba(var(--panel-accent-rgb), 0.08);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.visual-card h5 {
  margin: 11px 0 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.28;
  font-weight: 900;
}

.visual-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.56;
}

.visual-card-grid-views .visual-card h5 {
  font-size: 18px;
  line-height: 1.24;
}

.visual-card-grid-views .visual-card p {
  margin-top: 8px;
  color: #536377;
  font-size: 14px;
  line-height: 1.62;
}

.visual-card .image-zoom-trigger > span {
  right: 12px;
  bottom: 12px;
  min-height: 28px;
  padding: 0 10px;
  color: #ffffff;
  background: rgba(7, 31, 88, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 8px 22px rgba(7, 31, 88, 0.22);
  font-size: 11px;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  background: rgba(3, 10, 24, 0.94);
  border: 0;
  cursor: zoom-out;
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 58px minmax(0, 1fr);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #030a18;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.image-lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 22px;
  background: rgba(3, 10, 24, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.image-lightbox-bar h2 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.image-lightbox-close {
  width: 38px;
  height: 38px;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.image-lightbox img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  background: #030a18;
}

body.has-lightbox-open {
  overflow: hidden;
}

.shaft-tech {
  margin-top: 14px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(18, 102, 195, 0.045) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(7, 31, 88, 0.035) 0 1px, transparent 1px 16px);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shaft-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  align-items: stretch;
}

.shaft-intro h4 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.shaft-intro p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.patent-card {
  padding: 18px;
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  border: 1px solid #cddbea;
  border-radius: 8px;
}

.patent-card span {
  display: block;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.patent-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 900;
}

.patent-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.shaft-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 18px;
  margin: 18px 0 0;
  align-items: start;
}

.shaft-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

.shaft-banner img {
  width: 100%;
  border-radius: 6px;
}

.shaft-banner figcaption {
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #dfe8f3;
}

.shaft-banner figcaption strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.32;
  font-weight: 900;
}

.shaft-banner figcaption p {
  margin: 10px 0 0;
  color: #4f5f73;
  font-size: 14px;
  line-height: 1.68;
}

.shaft-banner dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 0;
}

.shaft-banner dl div {
  padding: 12px;
  background: #f7faff;
  border: 1px solid #e3ebf5;
  border-radius: 8px;
}

.shaft-banner dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.shaft-banner dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.shaft-benefits {
  display: grid;
  gap: 10px;
}

.shaft-benefits article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 14px;
  padding: 14px;
  background: #fbfcfe;
  border: 1px solid #dfe8f3;
  border-radius: 8px;
}

.shaft-benefits span {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: #fff5ed;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.shaft-benefits h5 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 900;
}

.shaft-benefits p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section-capabilities {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 26, 59, 0.96), rgba(6, 16, 35, 0.98)),
    var(--deep);
}

.section-capabilities .section-header p:not(.eyebrow) {
  color: #b8c8dd;
}

.capability-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability-grid article {
  min-height: 212px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.capability-grid span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.capability-grid h3 {
  margin: 24px 0 0;
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
}

.capability-grid p {
  margin: 14px 0 0;
  color: #b8c8dd;
  font-size: 15px;
  line-height: 1.72;
}

.section-applications {
  width: min(1120px, calc(100% - 88px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
  padding-left: 0;
  padding-right: 0;
  background: var(--white);
}

.application-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.application-list div {
  padding: 20px;
  background: var(--white);
}

.application-list strong {
  display: block;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
}

.application-list span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.section-company {
  background:
    linear-gradient(180deg, #f7f9fc, #eef3f8);
}

.company-panel {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1.48fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-brand-card {
  min-height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.96)),
    repeating-linear-gradient(90deg, rgba(18, 102, 195, 0.045) 0 1px, transparent 1px 16px),
    repeating-linear-gradient(0deg, rgba(7, 31, 88, 0.035) 0 1px, transparent 1px 16px);
  border: 1px solid #dfe8f3;
  border-radius: 8px;
}

.company-brand-card img {
  width: min(250px, 100%);
}

.company-brand-card p {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  text-transform: uppercase;
}

.company-brand-card p span {
  display: inline-block;
  margin: 0 5px;
  color: var(--red);
}

.company-brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.company-brand-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(18, 102, 195, 0.18);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.company-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 6px 4px;
}

.company-copy h2 {
  max-width: 880px;
}

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

.company-strengths article {
  min-height: 138px;
  padding: 20px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #dfe8f3;
  border-radius: 8px;
  box-shadow:
    0 14px 30px rgba(7, 31, 88, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.company-strengths span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.company-strengths strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
}

.company-strengths p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.contact-section {
  padding: 52px 44px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 31, 88, 0.96), rgba(9, 54, 112, 0.94)),
    var(--navy);
}

.contact-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.contact-copy {
  min-width: 0;
}

.contact-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #d7e4f5;
  font-size: 17px;
  line-height: 1.7;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-side {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.contact-company-info {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 16px 34px rgba(0, 0, 0, 0.14);
}

.contact-company-info div {
  min-width: 0;
  padding: 15px 0;
}

.contact-company-info div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-company-info dt {
  color: #9fc5ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-company-info dd {
  margin: 7px 0 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.contact-company-info .contact-factory-name dd {
  font-size: 17px;
  line-height: 1.38;
  font-weight: 900;
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.contact-actions .button {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 34px 44px;
  color: #5e6d7f;
  background: #f1f4f8;
  border-top: 1px solid #d7e1ef;
  font-size: 13px;
  line-height: 1.55;
}

.footer-brand,
.footer-links,
.footer-contact {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.footer-brand strong {
  color: var(--deep);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.footer-brand span,
.footer-contact span {
  max-width: 430px;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: #0f63bd;
  font-weight: 850;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #0a3f84;
  text-decoration: underline;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 22px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 22px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(7, 31, 88, 0.12);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a,
  .site-nav .nav-whatsapp,
  .site-nav .nav-quote {
    justify-content: flex-start;
    min-height: 46px;
    padding: 12px 0;
    color: #27354a;
    background: transparent;
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .metric-strip,
  .product-grid,
  .capability-grid,
  .section-applications,
  .company-panel,
  .company-strengths,
  .detail-header,
  .detail-summary,
  .spec-highlight-grid,
  .spec-layout,
  .quality-strip,
  .visual-card-grid-views,
  .shaft-intro,
  .shaft-feature-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-side {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
    align-items: stretch;
  }

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

  .product-card {
    min-height: auto;
  }

  .section-applications {
    width: auto;
    margin: 0;
    padding-left: 44px;
    padding-right: 44px;
  }

  .company-panel {
    gap: 20px;
    padding: 20px;
  }

  .contact-company-info {
    min-width: 0;
    width: 100%;
  }

  .company-brand-card {
    min-height: auto;
  }

  .contact-copy,
  .contact-actions {
    margin-left: 0;
    margin-right: 0;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .product-detail-panel {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 68px;
  }

  .brand img {
    width: 148px;
    height: 32px;
  }

  .site-nav {
    top: 67px;
  }

  .hero {
    min-height: calc(100svh - 68px);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding: 54px 0 44px;
  }

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

  .button {
    width: 100%;
  }

  .metric-strip div,
  .section,
  .section-applications,
  .contact-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-shell,
  .contact-side {
    grid-template-columns: 1fr;
  }

  .contact-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.68;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-header h2,
  .application-copy h2,
  .company-panel h2,
  .contact-copy h2 {
    font-size: 28px;
    line-height: 1.2;
  }

  .product-card {
    grid-template-rows: 220px 1fr;
  }

  .product-copy,
  .capability-grid article,
  .application-list div,
  .product-detail-panel,
  .spec-block,
  .quality-strip > div,
  .visual-config-section {
    padding: 18px;
  }

  .detail-header h3 {
    font-size: 24px;
  }

  .detail-summary div {
    min-height: auto;
  }

  .spec-highlight-grid strong {
    font-size: 22px;
    line-height: 1.14;
  }

  .detail-section-title {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    margin-top: 20px;
  }

  .detail-section-title > span {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .detail-section-title h4 {
    font-size: 18px;
  }

  .spec-highlight-grid div {
    min-height: auto;
  }

  .spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .spec-highlight-grid strong {
    font-size: 24px;
  }

  .shaft-tech {
    padding: 18px;
  }

  .shaft-intro h4 {
    font-size: 22px;
  }

  .shaft-banner dl,
  .quality-strip-single ul,
  .visual-card-grid-config {
    grid-template-columns: 1fr;
  }

  .quality-strip-single li:last-child {
    grid-column: auto;
  }

  .product-copy h3,
  .capability-grid h3 {
    font-size: 21px;
  }

  .company-panel img {
    width: 190px;
  }

  .site-footer {
    min-height: 96px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 22px;
  }
}
