body[data-market-page="driveshafts"] {
  --jzds-navy: #050b12;
  --jzds-panel: #0a1722;
  --jzds-panel-2: #0e202c;
  --jzds-ink: #07131d;
  --jzds-paper: #f3f7f8;
  --jzds-white: #ffffff;
  --jzds-cyan: #25c8d5;
  --jzds-cyan-bright: #70edf2;
  --jzds-orange: #e98a3d;
  --jzds-steel: #a8bbc5;
  --jzds-muted: #5e7480;
  --jzds-line-dark: rgba(126, 156, 172, 0.22);
  --jzds-line-light: rgba(9, 50, 64, 0.15);
  background: var(--jzds-navy);
}

body[data-market-page="driveshafts"] .jzm-main {
  overflow: clip;
  background: var(--jzds-navy);
}

body[data-market-page="driveshafts"] .jz-button,
body[data-market-page="driveshafts"] button,
body[data-market-page="driveshafts"] input,
body[data-market-page="driveshafts"] select,
body[data-market-page="driveshafts"] textarea {
  border-radius: 10px;
}

body[data-market-page="driveshafts"] :where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(37, 200, 213, 0.5);
  outline-offset: 3px;
}

.jzds-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  color: var(--jzds-white);
  background:
    radial-gradient(circle at 78% 35%, rgba(37, 200, 213, 0.14), transparent 28%),
    radial-gradient(circle at 18% 100%, rgba(233, 138, 61, 0.08), transparent 27%),
    linear-gradient(135deg, #040910 0%, #07131d 54%, #061019 100%);
  border-bottom: 1px solid var(--jzds-line-dark);
  isolation: isolate;
}

.jzds-hero::before,
.jzds-section--dark::before,
.jzds-final::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(91, 127, 145, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 127, 145, 0.13) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 100%);
  content: "";
}

[dir="rtl"] .jzds-hero::before,
[dir="rtl"] .jzds-section--dark::before,
[dir="rtl"] .jzds-final::before {
  mask-image: linear-gradient(-90deg, transparent 0%, #000 35%, #000 100%);
}

.jzds-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  padding-block: clamp(52px, 7vh, 96px);
}

.jzds-hero__copy { min-width: 0; }

.jzds-hero .jzm-eyebrow,
.jzds-section--dark .jzm-eyebrow,
.jzds-final .jzm-eyebrow { color: var(--jzds-cyan-bright); }

.jzds-hero h1 {
  max-width: 820px;
  margin: 14px 0 22px;
  color: var(--jzds-white);
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.jzds-hero__lede {
  max-width: 760px;
  margin: 0;
  color: var(--jzds-steel);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.6;
}

.jzds-hero__actions,
.jzds-builder-actions,
.jzds-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.jzds-hero__actions { margin-top: 28px; }

.jzds-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid var(--jzds-cyan-bright);
  border-radius: 10px !important;
  background: var(--jzds-cyan-bright);
  color: var(--jzds-navy);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.jzds-button:hover,
.jzds-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(16, 169, 179, 0.2);
}

.jzds-button svg,
.jzds-text-link svg,
.jzds-route-card strong svg,
.jzds-product-card > a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.25s ease;
}

.jzds-button:hover svg,
.jzds-button:focus-visible svg,
.jzds-text-link:hover svg,
.jzds-text-link:focus-visible svg,
.jzds-route-card:hover strong svg,
.jzds-route-card:focus-visible strong svg,
.jzds-product-card:hover > a svg,
.jzds-product-card > a:focus-visible svg { transform: translateX(5px); }

[dir="rtl"] .jzds-button:hover svg,
[dir="rtl"] .jzds-button:focus-visible svg,
[dir="rtl"] .jzds-text-link:hover svg,
[dir="rtl"] .jzds-text-link:focus-visible svg,
[dir="rtl"] .jzds-route-card:hover strong svg,
[dir="rtl"] .jzds-route-card:focus-visible strong svg,
[dir="rtl"] .jzds-product-card:hover > a svg,
[dir="rtl"] .jzds-product-card > a:focus-visible svg { transform: translateX(-5px) scaleX(-1); }

.jzds-button--secondary {
  color: var(--jzds-white) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.jzds-button--secondary:hover,
.jzds-button--secondary:focus-visible {
  color: var(--jzds-navy) !important;
  border-color: var(--jzds-white) !important;
  background: var(--jzds-white) !important;
}

.jzds-button--tertiary {
  color: #bff8f5 !important;
  border-color: rgba(82, 226, 229, 0.38) !important;
  background: rgba(82, 226, 229, 0.055) !important;
  box-shadow: none;
}

.jzds-button--tertiary:hover,
.jzds-button--tertiary:focus-visible {
  color: var(--jzds-white) !important;
  border-color: rgba(112, 237, 242, 0.72) !important;
  background: rgba(82, 226, 229, 0.13) !important;
  box-shadow: 0 14px 34px rgba(16, 169, 179, 0.12);
}

.jzds-button--small { min-height: 46px; padding-inline: 18px; }

.jzds-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding-inline: 10px;
  border-radius: 10px;
  color: var(--jzds-cyan-bright);
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: none;
}

.jzds-text-link:hover,
.jzds-text-link:focus-visible { color: var(--jzds-white); }

.jzds-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(28px, 4vh, 42px) 0 0;
  border-block: 1px solid var(--jzds-line-dark);
}

.jzds-hero__facts > div { min-width: 0; padding: 16px 18px 16px 0; }
.jzds-hero__facts > div + div { padding-inline-start: 18px; border-inline-start: 1px solid var(--jzds-line-dark); }
.jzds-hero__facts dt { color: var(--jzds-cyan-bright); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.13em; }
.jzds-hero__facts dd { margin: 4px 0 0; color: #d7e2e6; font-size: 0.8rem; line-height: 1.42; }

.jzds-hero__visual {
  position: relative;
  min-width: 0;
  height: clamp(430px, 62vh, 630px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(112, 237, 242, 0.22);
  border-radius: 32px;
  background: rgba(4, 12, 19, 0.72);
  box-shadow: 0 48px 120px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.jzds-visual__grid {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image:
    linear-gradient(rgba(70, 116, 135, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 116, 135, 0.16) 1px, transparent 1px);
  background-size: 36px 36px;
  transform: perspective(520px) rotateX(58deg) scale(1.6) translateY(22%);
  transform-origin: center bottom;
}

.jzds-hero__visual > svg { position: relative; z-index: 1; width: 112%; height: auto; overflow: visible; }
.jzds-visual__tube { fill: url(#jzds-metal); stroke: rgba(218, 241, 244, 0.8); stroke-width: 1; }
.jzds-visual__joint { transform-box: fill-box; transform-origin: center; }
.jzds-visual__joint circle,
.jzds-visual__joint path { fill: url(#jzds-dark-metal); stroke: #9fb8c2; stroke-width: 1.4; }
.jzds-visual__slip path:first-child { fill: #263d49; stroke: #78a1af; }
.jzds-visual__slip path:not(:first-child) { fill: none; stroke: var(--jzds-cyan); stroke-width: 1; opacity: 0.7; }
.jzds-visual__centerline { fill: none; stroke: rgba(112, 237, 242, 0.36); stroke-width: 1; stroke-dasharray: 10 8; }
.jzds-visual__dimensions { fill: none; stroke: #74dbe1; stroke-width: 1; opacity: 0.86; }
.jzds-visual__dimensions text { fill: #8ee7eb; stroke: none; font-family: var(--jz-mono); font-size: 10px; letter-spacing: 0.1em; }

.jzds-hero__visual:hover .jzds-visual__joint--left { animation: jzds-joint-left 2.2s ease-in-out infinite; }
.jzds-hero__visual:hover .jzds-visual__joint--right { animation: jzds-joint-right 2.2s ease-in-out infinite; }
.jzds-hero__visual:hover .jzds-visual__centerline { animation: jzds-dash 1.2s linear infinite; }

.jzds-visual__status {
  position: absolute;
  z-index: 2;
  inset: auto 22px 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 13px;
  border-top: 1px solid var(--jzds-line-dark);
  color: #7f9aa6;
  font-family: var(--jz-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.jzds-visual__status span { display: inline-flex; align-items: center; gap: 8px; }
.jzds-visual__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--jzds-cyan); box-shadow: 0 0 12px var(--jzds-cyan); animation: jzds-pulse 1.8s ease-in-out infinite; }
.jzds-visual__status b { color: #ccebee; font-weight: 700; }

.jzds-section {
  position: relative;
  padding-block: clamp(76px, 9vw, 136px);
  isolation: isolate;
}

.jzds-section--light { color: var(--jzds-ink); background: var(--jzds-paper); }
.jzds-section--dark { color: var(--jzds-white); background: linear-gradient(145deg, #050b12, #081620 62%, #050b12); }
.jzds-section > .jz-container { position: relative; z-index: 1; }

.jzds-section-head { margin-bottom: clamp(34px, 5vw, 60px); }
.jzds-section-head h2 { max-width: 860px; text-wrap: balance; }
.jzds-section--dark .jzds-section-head h2 { color: var(--jzds-white); }
.jzds-section--dark .jzds-section-head > p { color: var(--jzds-steel); }

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

.jzds-route-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 38px);
  overflow: hidden;
  color: var(--jzds-ink);
  border: 1px solid var(--jzds-line-light);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 70px rgba(9, 35, 48, 0.07);
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 0.75, 0.22, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.jzds-route-card::after {
  position: absolute;
  width: 190px;
  height: 190px;
  inset-inline-end: -90px;
  inset-block-end: -100px;
  border: 1px solid rgba(37, 200, 213, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(37, 200, 213, 0.025), 0 0 0 68px rgba(37, 200, 213, 0.018);
  content: "";
}

.jzds-route-card:hover,
.jzds-route-card:focus-visible {
  color: var(--jzds-ink);
  border-color: rgba(16, 169, 179, 0.48);
  box-shadow: 0 32px 84px rgba(9, 35, 48, 0.14);
  transform: translateY(-8px);
}

.jzds-route-card__number {
  color: #0aa3ad;
  font-family: var(--jz-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.jzds-route-card__icon { width: 92px; height: 72px; display: grid; place-items: center; margin: 38px 0 24px; color: #173744; }
.jzds-route-card__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.jzds-route-card__icon .jzds-icon-scan,
.jzds-route-card__icon .jzds-icon-pen,
.jzds-route-card__icon .jzds-icon-orbit { stroke: var(--jzds-cyan); }
.jzds-route-card__icon .jzds-icon-dot { fill: var(--jzds-orange); stroke: none; }
.jzds-route-card h3 { margin: 0 0 12px; font-size: clamp(1.25rem, 1.7vw, 1.65rem); line-height: 1.12; }
.jzds-route-card p { margin: 0 0 24px; color: var(--jzds-muted); font-size: 0.92rem; line-height: 1.58; }
.jzds-route-card strong { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 9px; margin-top: auto; color: #087c86; font-size: 0.86rem; }

.jzds-route-card:hover .jzds-icon-scan,
.jzds-route-card:focus-visible .jzds-icon-scan { animation: jzds-scan 1.4s ease-in-out infinite; }
.jzds-route-card:hover .jzds-icon-pen,
.jzds-route-card:focus-visible .jzds-icon-pen { animation: jzds-write 1.3s ease-in-out infinite; }
.jzds-route-card:hover .jzds-icon-rotor,
.jzds-route-card:focus-visible .jzds-icon-rotor { transform-box: fill-box; transform-origin: center; animation: jzds-spin 1.8s linear infinite; }
.jzds-route-card:hover .jzds-icon-orbit,
.jzds-route-card:focus-visible .jzds-icon-orbit { stroke-dasharray: 7 6; animation: jzds-dash 1s linear infinite; }
.jzds-route-card:hover .jzds-icon-dot,
.jzds-route-card:focus-visible .jzds-icon-dot { transform-box: fill-box; transform-origin: center; animation: jzds-pulse 1.1s ease-in-out infinite; }

.jzds-catalog-search {
  display: grid;
  grid-template-columns: minmax(310px, 1.55fr) repeat(3, minmax(165px, 0.62fr)) auto;
  gap: 12px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--jzds-line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.jzds-catalog-search label,
.jzds-builder-form label,
.jzds-brief label { min-width: 0; display: grid; gap: 8px; color: #b5c8d0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.035em; }
.jzds-catalog-search input,
.jzds-catalog-search select,
.jzds-builder-form select {
  width: 100%;
  height: 48px;
  padding-inline: 14px;
  color: var(--jzds-white);
  border: 1px solid rgba(147, 177, 190, 0.27);
  background: #0c1b25;
  font: inherit;
  font-size: 0.86rem;
  letter-spacing: normal;
}

.jzds-search-field > span:last-child { position: relative; display: block; }
.jzds-search-field svg { position: absolute; z-index: 1; width: 18px; height: 18px; inset-inline-start: 15px; top: 15px; fill: none; stroke: var(--jzds-cyan); stroke-width: 1.8; }
.jzds-search-field input { padding-inline-start: 46px; }
.jzds-catalog-search input::placeholder { color: #728995; }
.jzds-catalog-meta { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; margin-top: 18px; }
.jzds-catalog-status { flex: 0 0 auto; color: #8fa7b1; font-size: 0.8rem; }
.jzds-catalog-status [data-catalog-count] { color: var(--jzds-cyan-bright); font-family: var(--jz-mono); font-weight: 800; }
.jzds-catalog-source { max-width: 760px; display: flex; gap: 10px; align-items: flex-start; margin: 0; color: #829ba6; font-size: 0.72rem; line-height: 1.55; }
.jzds-catalog-source svg,
.jzds-oem-card__note svg { flex: 0 0 18px; width: 18px; height: 18px; fill: none; stroke: var(--jzds-cyan-bright); stroke-width: 1.6; }

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

.jzds-oem-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid rgba(127, 162, 176, 0.22);
  border-radius: 20px;
  background: linear-gradient(150deg, rgba(15, 35, 47, 0.96), rgba(8, 23, 33, 0.92));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.jzds-oem-card:hover,
.jzds-oem-card:focus-within { border-color: rgba(112, 237, 242, 0.5); box-shadow: 0 30px 76px rgba(0, 0, 0, 0.26); transform: translateY(-6px); }
.jzds-oem-card--featured { border-color: rgba(112, 237, 242, 0.44); background: linear-gradient(145deg, rgba(13, 43, 54, 0.98), rgba(8, 24, 34, 0.94)); }
.jzds-oem-card__head { display: grid; grid-template-columns: 104px minmax(0, 1fr); gap: 16px; align-items: center; }
.jzds-oem-card__icon { height: 76px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(112, 237, 242, 0.17); border-radius: 14px; background: linear-gradient(145deg, rgba(220, 234, 237, 0.98), rgba(161, 185, 193, 0.95)); }
.jzds-oem-card__icon svg { width: 94%; height: auto; overflow: visible; fill: none; stroke: #1b3c49; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.jzds-oem-card__icon .jzds-oem-tube { fill: #637e89; stroke: #234653; }
.jzds-oem-card__icon .jzds-oem-axis { stroke: rgba(20, 115, 125, 0.58); stroke-dasharray: 5 4; }
.jzds-oem-card__icon .jzds-oem-scan { stroke: #098f9a; }
.jzds-oem-card:hover .jzds-oem-joint,
.jzds-oem-card:focus-within .jzds-oem-joint { transform-box: fill-box; transform-origin: center; animation: jzds-spin 2.2s linear infinite; }
.jzds-oem-card:hover .jzds-oem-scan,
.jzds-oem-card:focus-within .jzds-oem-scan { stroke-dasharray: 7 5; animation: jzds-dash 1s linear infinite; }
.jzds-oem-card:hover .jzds-oem-tube,
.jzds-oem-card:focus-within .jzds-oem-tube { animation: jzds-tube-glint 1.35s ease-in-out; }
.jzds-oem-card__brand { display: block; margin-bottom: 6px; color: var(--jzds-cyan-bright); font-family: var(--jz-mono); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.jzds-oem-card__head h3 { margin: 0; overflow-wrap: anywhere; color: var(--jzds-white); font-family: var(--jz-mono); font-size: clamp(1rem, 1.5vw, 1.3rem); line-height: 1.2; }
.jzds-oem-card__head p { margin: 6px 0 0; color: #91aab4; font-size: 0.74rem; line-height: 1.35; }
.jzds-oem-card__specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 18px 0 0; border-block: 1px solid var(--jzds-line-dark); }
.jzds-oem-card__specs > div { min-width: 0; padding: 13px 12px 13px 0; }
.jzds-oem-card__specs > div:nth-child(even) { padding-inline: 12px 0; border-inline-start: 1px solid var(--jzds-line-dark); }
.jzds-oem-card__specs > div:nth-child(n + 3) { border-top: 1px solid var(--jzds-line-dark); }
.jzds-oem-card__specs dt { color: #78929e; font-size: 0.62rem; font-weight: 760; letter-spacing: 0.06em; text-transform: uppercase; }
.jzds-oem-card__specs dd { margin: 5px 0 0; overflow-wrap: anywhere; color: #d6e4e8; font-size: 0.76rem; line-height: 1.4; }
.jzds-oem-card__models { min-height: 43px; margin: 15px 0 0; color: #b6c7cd; font-size: 0.76rem; line-height: 1.45; }
.jzds-oem-card__note { display: flex; gap: 9px; align-items: flex-start; margin: 14px 0 18px; color: #8099a4; font-size: 0.69rem; line-height: 1.5; }
.jzds-oem-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.jzds-oem-card__actions .jzds-button { flex: 1 1 155px; min-height: 44px; padding: 10px 12px; font-size: 0.74rem; }
.jzds-catalog-more { margin-top: 20px; }
.jzds-supply-head { max-width: 760px; margin-top: clamp(58px, 7vw, 90px); }
.jzds-supply-head h3 { margin: 10px 0 10px; color: var(--jzds-white); font-size: clamp(1.65rem, 3vw, 2.55rem); line-height: 1.05; letter-spacing: -0.035em; }
.jzds-supply-head > p:last-child { margin: 0; color: var(--jzds-steel); font-size: 0.9rem; line-height: 1.58; }

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

.jzds-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(127, 162, 176, 0.2);
  border-radius: 20px;
  background: rgba(12, 28, 39, 0.74);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.jzds-product-card[hidden] { display: none; }
.jzds-product-card:hover { border-color: rgba(112, 237, 242, 0.42); background: rgba(14, 35, 47, 0.94); transform: translateY(-6px); }

.jzds-product-card__visual {
  height: 142px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(112, 237, 242, 0.15);
  border-radius: 14px;
  background:
    linear-gradient(rgba(43, 91, 108, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 91, 108, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, #dfe9ec, #aec0c7);
  background-size: 18px 18px, 18px 18px, auto;
}

.jzds-product-card__visual svg { width: 88%; max-height: 92px; overflow: visible; fill: none; stroke: #203c49; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.4s ease; }
.jzds-product-card__visual .tube { fill: #708892; stroke: #274451; }
.jzds-product-card__visual--accent .tube { fill: #566a75; stroke: #19aeba; }
.jzds-product-card__visual--heavy .tube { fill: #526975; stroke-width: 2.4; }
.jzds-product-card__visual--guard .guard { fill: rgba(233, 138, 61, 0.22); stroke: #d4762a; }
.jzds-product-card__visual--guard .tube { fill: #516d79; }
.jzds-product-card__visual .wave { stroke: #1399a8; }
.jzds-product-card__visual .pulse { stroke: #db742c; }
.jzds-product-card__visual .tool { stroke: #d46f27; }
.jzds-product-card__visual .dimension { stroke: #149ca6; stroke-dasharray: 4 3; }
.jzds-product-card:hover .jzds-product-card__visual svg { transform: scale(1.06); }
.jzds-product-card:hover .jzds-product-card__visual .tube { animation: jzds-tube-glint 1.4s ease-in-out; }
.jzds-product-card:hover .jzds-product-card__visual .wave,
.jzds-product-card:hover .jzds-product-card__visual .pulse,
.jzds-product-card:hover .jzds-product-card__visual .dimension { stroke-dasharray: 7 5; animation: jzds-dash 1s linear infinite; }

.jzds-product-card__badge { align-self: flex-start; margin: 18px 0 14px; padding: 6px 9px; color: var(--jzds-cyan-bright); border: 1px solid rgba(112, 237, 242, 0.24); border-radius: 8px; background: rgba(37, 200, 213, 0.07); font-family: var(--jz-mono); font-size: 0.61rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.jzds-product-card h3 { margin: 0 0 10px; color: var(--jzds-white); font-size: 1.22rem; line-height: 1.2; }
.jzds-product-card p { margin: 0 0 14px; color: #9fb3bc; font-size: 0.86rem; line-height: 1.55; }
.jzds-product-card ul { display: grid; gap: 6px; margin: 0 0 20px; padding: 0; list-style: none; color: #c1d0d5; font-size: 0.76rem; }
.jzds-product-card li { position: relative; padding-inline-start: 16px; }
.jzds-product-card li::before { position: absolute; inset-inline-start: 0; top: 0.55em; width: 6px; height: 6px; border: 1px solid var(--jzds-cyan); transform: rotate(45deg); content: ""; }
.jzds-product-card > a { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; margin-top: auto; padding: 10px 12px; color: #07131d; border-radius: 10px; background: var(--jzds-cyan-bright); font-size: 0.8rem; font-weight: 820; text-decoration: none; }
.jzds-product-card > a:hover,
.jzds-product-card > a:focus-visible { color: #07131d; background: var(--jzds-white); }

.jzds-empty { margin-top: 22px; padding: clamp(28px, 4vw, 50px); text-align: center; border: 1px dashed rgba(112, 237, 242, 0.35); border-radius: 18px; background: rgba(37, 200, 213, 0.04); }
.jzds-empty h3 { color: var(--jzds-white); }
.jzds-empty p { max-width: 650px; margin: 8px auto 22px; color: var(--jzds-steel); }

.jzds-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--jzds-line-light);
  border-radius: 22px;
  background: var(--jzds-line-light);
}

.jzds-application-grid article { min-width: 0; min-height: 295px; padding: clamp(24px, 3vw, 38px); background: var(--jzds-paper); transition: background-color 0.28s ease; }
.jzds-application-grid article:hover { background: var(--jzds-white); }
.jzds-application-grid article > span { color: #0b98a2; font-family: var(--jz-mono); font-size: 0.67rem; font-weight: 800; }
.jzds-application-icon { width: 96px; height: 70px; margin: 26px 0 22px; }
.jzds-application-icon svg { width: 100%; height: 100%; fill: none; stroke: #173744; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; overflow: visible; }
.jzds-application-icon .signal,
.jzds-application-icon .wave,
.jzds-application-icon .pulse { stroke: #16a7b2; }
.jzds-application-grid article:hover .wheel,
.jzds-application-grid article:hover .spin { transform-box: fill-box; transform-origin: center; animation: jzds-spin 1.7s linear infinite; }
.jzds-application-grid article:hover .signal,
.jzds-application-grid article:hover .wave,
.jzds-application-grid article:hover .pulse { stroke-dasharray: 7 5; animation: jzds-dash 1s linear infinite; }
.jzds-application-grid h3 { margin: 0 0 10px; font-size: 1.08rem; line-height: 1.22; }
.jzds-application-grid p { margin: 0; color: var(--jzds-muted); font-size: 0.83rem; line-height: 1.52; }

.jzds-builder-shell {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.jzds-builder-form,
.jzds-builder-preview { border: 1px solid var(--jzds-line-dark); border-radius: 22px; background: rgba(8, 23, 33, 0.82); }
.jzds-builder-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: clamp(22px, 3vw, 36px); align-content: start; }
.jzds-builder-form .jzds-range { grid-column: 1 / -1; }
.jzds-range > span { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; }
.jzds-range output { color: var(--jzds-cyan-bright); font-family: var(--jz-mono); font-size: 0.75rem; white-space: nowrap; }
.jzds-range input[type="range"] { width: 100%; height: 8px; border: 0; border-radius: 999px !important; accent-color: var(--jzds-cyan); cursor: pointer; }

.jzds-builder-preview { min-width: 0; padding: clamp(22px, 3vw, 38px); overflow: hidden; }
.jzds-builder-preview__head { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding-bottom: 15px; border-bottom: 1px solid var(--jzds-line-dark); color: #98afb8; font-family: var(--jz-mono); font-size: 0.68rem; letter-spacing: 0.07em; }
.jzds-builder-preview__head span { display: inline-flex; align-items: center; gap: 8px; }
.jzds-builder-preview__head i { width: 7px; height: 7px; border-radius: 50%; background: var(--jzds-cyan); box-shadow: 0 0 12px var(--jzds-cyan); }
.jzds-builder-preview__head strong { color: var(--jzds-cyan-bright); }
.jzds-builder-preview > svg { width: 100%; min-height: 310px; margin-block: 10px; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.jzds-preview-axis { stroke: rgba(112, 237, 242, 0.25); stroke-width: 1; stroke-dasharray: 9 8; }
.jzds-preview-joint circle,
.jzds-preview-joint path { fill: #1e3946; stroke: #7a99a6; stroke-width: 1.5; }
.jzds-preview-tube { stroke: #78909b; stroke-width: 20; }
.jzds-preview-slip path:first-child { fill: #223f4d; stroke: #7ba4b2; }
.jzds-preview-slip path:not(:first-child) { stroke: #3dc9d2; }
.jzds-preview-bearing path:first-child { fill: #102935; stroke: #7396a5; }
.jzds-preview-bearing circle { fill: #07141d; stroke: #47d2d9; }
.jzds-preview-bearing path:last-child { stroke: #7899a6; }
.jzds-preview-dimension { stroke: #4ed3da; stroke-width: 1; }
.jzds-preview-dimension text { fill: #83e6ea; stroke: none; font-family: var(--jz-mono); font-size: 11px; letter-spacing: 0.08em; }

.jzds-builder-summary { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; border-block: 1px solid var(--jzds-line-dark); }
.jzds-builder-summary div { min-width: 0; padding: 16px 14px; }
.jzds-builder-summary div + div { border-inline-start: 1px solid var(--jzds-line-dark); }
.jzds-builder-summary dt { color: #748f9b; font-size: 0.62rem; font-weight: 760; letter-spacing: 0.07em; text-transform: uppercase; }
.jzds-builder-summary dd { margin: 5px 0 0; color: #e3eff2; font-size: 0.76rem; line-height: 1.4; }
.jzds-builder-note { margin: 18px 0; color: #93aab4; font-size: 0.78rem; line-height: 1.55; }

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

.jzds-brief fieldset {
  min-width: 0;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--jzds-line-light);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 60px rgba(9, 35, 48, 0.06);
}

.jzds-brief legend { display: flex; align-items: center; gap: 10px; padding: 0 9px; color: var(--jzds-ink); font-size: 1rem; }
.jzds-brief legend span { color: #0b929b; font-family: var(--jz-mono); font-size: 0.69rem; }
.jzds-brief label { color: #3d5966; }
.jzds-brief input,
.jzds-brief textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  color: var(--jzds-ink);
  border: 1px solid rgba(14, 56, 70, 0.2);
  background: var(--jzds-white);
  font: inherit;
  font-size: 0.88rem;
  letter-spacing: normal;
}
.jzds-brief textarea { min-height: 92px; resize: vertical; }
.jzds-brief input::placeholder,
.jzds-brief textarea::placeholder { color: #7d929c; }
.jzds-brief__footer { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 28px; align-items: center; padding: 22px clamp(24px, 3vw, 38px); color: var(--jzds-white); border-radius: 18px; background: var(--jzds-ink); }
.jzds-brief__footer p { max-width: 760px; display: flex; gap: 12px; align-items: flex-start; margin: 0; color: #b5c7cf; font-size: 0.78rem; line-height: 1.5; }
.jzds-brief__footer p svg { flex: 0 0 22px; width: 22px; height: 22px; fill: none; stroke: var(--jzds-cyan-bright); stroke-width: 1.5; }

.jzds-standards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.jzds-standards-grid article { min-width: 0; padding: clamp(24px, 3vw, 36px); border: 1px solid var(--jzds-line-dark); border-radius: 18px; background: rgba(12, 29, 40, 0.7); transition: transform 0.3s ease, border-color 0.3s ease; }
.jzds-standards-grid article:hover { border-color: rgba(112, 237, 242, 0.4); transform: translateY(-5px); }
.jzds-standards-grid article > span { display: inline-flex; min-height: 29px; align-items: center; padding: 5px 9px; color: var(--jzds-cyan-bright); border: 1px solid rgba(112, 237, 242, 0.27); border-radius: 8px; font-family: var(--jz-mono); font-size: 0.67rem; font-weight: 800; letter-spacing: 0.07em; }
.jzds-standards-grid h3 { margin: 20px 0 10px; color: var(--jzds-white); font-size: 1.08rem; }
.jzds-standards-grid p { margin: 0; color: #9eb2bb; font-size: 0.83rem; line-height: 1.58; }
.jzds-standards-note { display: flex; gap: 16px; align-items: flex-start; margin-top: 18px; padding: 20px 22px; border: 1px solid rgba(233, 138, 61, 0.32); border-radius: 16px; background: rgba(233, 138, 61, 0.06); }
.jzds-standards-note > svg { flex: 0 0 24px; width: 24px; height: 24px; fill: none; stroke: var(--jzds-orange); stroke-width: 1.6; }
.jzds-standards-note p { display: grid; gap: 5px; margin: 0; color: #b4c5cc; font-size: 0.8rem; line-height: 1.55; }
.jzds-standards-note strong { color: #f4d0b2; }

.jzds-workflow { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin: 0; padding: 0; overflow: hidden; border: 1px solid var(--jzds-line-light); border-radius: 22px; background: var(--jzds-line-light); list-style: none; }
.jzds-workflow li { min-width: 0; min-height: 210px; display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: clamp(25px, 3.5vw, 44px); background: var(--jzds-paper); }
.jzds-workflow li > span { color: #0a9199; font-family: var(--jz-mono); font-size: 0.7rem; font-weight: 800; }
.jzds-workflow h3 { margin: 0 0 10px; font-size: 1.06rem; }
.jzds-workflow p { margin: 0; color: var(--jzds-muted); font-size: 0.84rem; line-height: 1.55; }

.jzds-final {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--jzds-white);
  background:
    radial-gradient(circle at 74% 50%, rgba(37, 200, 213, 0.16), transparent 31%),
    linear-gradient(145deg, #050b12, #0a1b27);
  isolation: isolate;
}

.jzds-final__inner { position: relative; z-index: 1; padding-block: clamp(88px, 12vw, 160px); }
.jzds-final h2 { max-width: 980px; margin: 14px 0 18px; color: var(--jzds-white); font-size: clamp(2.5rem, 5.2vw, 5.7rem); line-height: 0.98; letter-spacing: -0.048em; text-wrap: balance; }
.jzds-final__inner > p:not(.jzm-eyebrow) { max-width: 760px; margin: 0; color: var(--jzds-steel); font-size: 1rem; line-height: 1.6; }
.jzds-final__actions { margin-top: 30px; }

@keyframes jzds-joint-left { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(-6deg); } }
@keyframes jzds-joint-right { 0%, 100% { transform: rotate(0deg); } 50% { transform: rotate(6deg); } }
@keyframes jzds-dash { to { stroke-dashoffset: -24; } }
@keyframes jzds-pulse { 0%, 100% { opacity: 0.55; transform: scale(0.88); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes jzds-scan { 0%, 100% { transform: translateY(-7px); opacity: 0.35; } 50% { transform: translateY(7px); opacity: 1; } }
@keyframes jzds-write { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-7px, 6px); } }
@keyframes jzds-spin { to { transform: rotate(360deg); } }
@keyframes jzds-tube-glint { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.35); } }

@media (max-width: 1180px) {
  .jzds-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr); }
  .jzds-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jzds-product-grid,
  .jzds-oem-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jzds-application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jzds-catalog-search { grid-template-columns: minmax(0, 1fr) minmax(180px, 0.6fr); }
  .jzds-search-field { grid-column: 1 / -1; }
  .jzds-builder-summary { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jzds-builder-summary div:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--jzds-line-dark); }
  .jzds-builder-summary div:nth-child(4) { border-top: 1px solid var(--jzds-line-dark); }
}

@media (max-width: 920px) {
  .jzds-hero { min-height: auto; }
  .jzds-hero__inner { grid-template-columns: 1fr; padding-block: 72px; }
  .jzds-hero__visual { height: min(520px, 70vw); min-height: 410px; }
  .jzds-builder-shell { grid-template-columns: 1fr; }
  .jzds-brief { grid-template-columns: 1fr; }
  .jzds-brief__footer { grid-column: auto; align-items: stretch; flex-direction: column; }
  .jzds-standards-grid,
  .jzds-workflow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jzds-final { min-height: auto; }
}

@media (max-width: 640px) {
  .jzds-hero__inner { gap: 42px; padding-block: 54px; }
  .jzds-hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .jzds-hero__actions { align-items: stretch; flex-direction: column; }
  .jzds-hero__actions > * { width: 100%; justify-content: center; }
  .jzds-hero__facts { grid-template-columns: 1fr; }
  .jzds-hero__facts > div { padding: 13px 0; }
  .jzds-hero__facts > div + div { padding-inline-start: 0; border-inline-start: 0; border-top: 1px solid var(--jzds-line-dark); }
  .jzds-hero__visual { min-height: 315px; height: 85vw; border-radius: 22px; }
  .jzds-hero__visual > svg { width: 138%; }
  .jzds-visual__status { inset-inline: 14px; bottom: 12px; font-size: 0.54rem; }
  .jzds-visual__status > span:last-child { display: none; }
  .jzds-section { padding-block: 70px; }
  .jzds-route-grid,
  .jzds-product-grid,
  .jzds-oem-grid,
  .jzds-application-grid,
  .jzds-standards-grid,
  .jzds-workflow { grid-template-columns: 1fr; }
  .jzds-route-card { min-height: 360px; }
  .jzds-catalog-search { grid-template-columns: 1fr; padding: 14px; }
  .jzds-search-field { grid-column: auto; }
  .jzds-catalog-meta { flex-direction: column; gap: 12px; }
  .jzds-oem-card { padding: 15px; }
  .jzds-oem-card__head { grid-template-columns: 88px minmax(0, 1fr); gap: 12px; }
  .jzds-oem-card__icon { height: 68px; }
  .jzds-oem-card__actions { flex-direction: column; }
  .jzds-oem-card__actions .jzds-button { width: 100%; flex-basis: auto; }
  .jzds-product-card { padding: 14px; }
  .jzds-builder-form { grid-template-columns: 1fr; }
  .jzds-builder-form .jzds-range { grid-column: auto; }
  .jzds-builder-preview { padding: 16px; }
  .jzds-builder-preview__head { align-items: flex-start; flex-direction: column; }
  .jzds-builder-preview > svg { min-height: 230px; }
  .jzds-builder-summary { grid-template-columns: 1fr; }
  .jzds-builder-summary div + div { border-inline-start: 0; border-top: 1px solid var(--jzds-line-dark); }
  .jzds-builder-actions,
  .jzds-final__actions { align-items: stretch; flex-direction: column; }
  .jzds-builder-actions > *,
  .jzds-final__actions > * { width: 100%; justify-content: center; }
  .jzds-brief fieldset { padding: 22px 18px; }
  .jzds-workflow li { min-height: 180px; }
  .jzds-final h2 { font-size: clamp(2.45rem, 12vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  body[data-market-page="driveshafts"] *,
  body[data-market-page="driveshafts"] *::before,
  body[data-market-page="driveshafts"] *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
