/* =============================================================================
   Jarvis Manufacturing — client-style.css
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Design Tokens ──────────────────────────────────────────────────────────── */
:root {
  --bg:          #F6F4EF;
  --bg-soft:     #EDEAE2;
  --ink-0:       #0B0B0C;
  --ink-1:       #1F1F21;
  --ink-2:       #6B6A65;
  --ink-3:       #ADABA4;
  --line:        rgba(11,11,12,0.10);
  --line-strong: rgba(11,11,12,0.22);
  --accent:       #E0613A;
  --accent-soft:  #F2A07A;
  --jvs-display:  "Space Grotesk", ui-sans-serif, system-ui;
  --jvs-body:     "Inter", ui-sans-serif, system-ui;
  --jvs-mono:     "JetBrains Mono", ui-monospace, monospace;
}

/* ── Base ───────────────────────────────────────────────────────────────────── */
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  background: var(--bg) !important;
  color: var(--ink-0);
  font-family: var(--jvs-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--accent); color: #0B0B0C; }

/* ── TT25 Shell Overrides ───────────────────────────────────────────────────── */
/* Hide TT25 header/footer template parts — we use custom jvs-nav and jvs-footer */
.wp-block-template-part { display: none !important; }
.wp-site-blocks { padding: 0 !important; }
.wp-block-post-content { padding: 0 !important; margin: 0 !important; max-width: none !important; }
.wp-block-group.alignfull { max-width: 100% !important; width: 100% !important; margin-left: 0 !important; margin-right: 0 !important; }
.entry-content { padding: 0 !important; max-width: none !important; }

/* ── Layout Primitives ──────────────────────────────────────────────────────── */
.jvs-wrap { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.jvs-eyebrow {
  font-family: var(--jvs-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 10px;
}
.jvs-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--ink-3); }
.jvs-section { padding: 140px 0; position: relative; }
.jvs-section-sm { padding: 96px 0; }

/* ── NAV ────────────────────────────────────────────────────────────────────── */
.jvs-nav {
  position: fixed; top: 16px; left: 50%; right: auto; z-index: 50;
  transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 1280px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px 8px 20px;
  border-radius: 22px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(11,11,12,0.45);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background .3s ease, box-shadow .3s ease, transform .4s cubic-bezier(.4,0,.2,1);
}
.jvs-nav.nav--hidden { transform: translateX(-50%) translateY(-200%); }
.jvs-nav.scrolled {
  background: rgba(11,11,12,0.65);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.jvs-nav__left, .jvs-nav__right { display: flex; align-items: center; gap: 28px; }
.jvs-brand {
  font-family: var(--jvs-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
  color: var(--accent); text-decoration: none;
}
.jvs-brand-mark { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; }
.jvs-nav-logo { height: 54px; width: auto; display: block; }
.jvs-footer-logo { height: 52px; width: auto; display: block; }
.jvs-brand-mark svg { width: 100%; height: 100%; }
.jvs-nav__links { display: flex; align-items: center; gap: 4px; font-size: 14px; }
.jvs-nav__links a {
  padding: 8px 14px; border-radius: 999px;
  transition: background .2s ease; color: #ffffff; text-decoration: none;
}
.jvs-nav__links a:hover { background: rgba(246,244,239,0.08); }
.jvs-has-sub::after {
  content: ""; display: inline-block; width: 6px; height: 6px;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px); margin-left: 6px; opacity: .55;
}
.jvs-nav__cta {
  font-size: 13px; padding: 10px 18px; border-radius: 999px;
  background: #F6F4EF; color: #0B0B0C;
  font-weight: 500; letter-spacing: 0.01em; text-decoration: none;
  transition: background .2s ease;
}
.jvs-nav__cta:hover { background: var(--accent); color: #0B0B0C; }

/* Megamenu */
.jvs-megamenu-root { position: relative; }
.jvs-megamenu {
  position: absolute; top: 100%; left: 0; transform: translateY(6px);
  min-width: 560px; background: #121214; border: 1px solid rgba(246,244,239,0.12);
  border-radius: 18px; padding: 22px; display: none;
  grid-template-columns: 1fr 1fr; gap: 6px 40px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  --ink-0: #F6F4EF; --ink-1: #E6E3DB; --ink-2: #9C9A93; --ink-3: #5C5B57;
}
.jvs-megamenu-root:hover .jvs-megamenu { display: grid; }
.jvs-megamenu h6 {
  grid-column: span 2; font-family: var(--jvs-mono); text-transform: uppercase;
  font-size: 10px; letter-spacing: 0.14em; color: var(--ink-2); margin: 4px 0 8px; font-weight: 500;
}
.jvs-megamenu a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: 12px; transition: background .2s ease; text-decoration: none;
}
.jvs-megamenu a strong { font-weight: 500; font-size: 14px; color: var(--ink-0); }
.jvs-megamenu a span { font-size: 12px; color: var(--ink-2); }
.jvs-megamenu a:hover { background: rgba(246,244,239,0.05); }
.jvs-megamenu__all {
  grid-column: span 2; display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; border-top: 1px solid rgba(246,244,239,0.10); margin-top: 8px;
  font-size: 13px; font-weight: 500; color: var(--accent) !important;
  border-radius: 10px; transition: background .2s ease;
}
.jvs-megamenu__all:hover { background: rgba(224,97,58,0.08) !important; }

/* Hamburger button */
.jvs-nav__hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 8px; border-radius: 10px; transition: background .2s ease;
}
.jvs-nav__hamburger:hover { background: rgba(246,244,239,0.08); }
.jvs-nav__hamburger span {
  display: block; width: 20px; height: 1.5px; background: #F6F4EF;
  border-radius: 2px; transition: transform .3s ease, opacity .2s ease; transform-origin: center;
}
.jvs-nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.jvs-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.jvs-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Full-screen overlay nav */
.jvs-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: #0B0B0C;
  display: flex; flex-direction: column;
  padding: 28px 40px 36px;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.jvs-overlay.is-open { opacity: 1; pointer-events: all; }
body.overlay-open { overflow: hidden; }

.jvs-overlay__header {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 8px 0 32px;
}
.jvs-overlay__close {
  position: absolute; left: 0;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(246,244,239,0.4); transition: color .2s ease; padding: 0;
}
.jvs-overlay__close:hover { color: #F6F4EF; }

.jvs-overlay__nav {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
}
.jvs-overlay__nav a {
  font-family: var(--jvs-display); font-size: clamp(36px, 10vw, 58px);
  font-weight: 300; letter-spacing: -0.015em;
  color: rgba(246,244,239,0.65); text-align: center;
  padding: 9px 0; display: block; line-height: 1.1;
  opacity: 0; transform: translateY(18px);
  transition: color .2s ease, opacity .55s ease, transform .55s cubic-bezier(.2,.8,.2,1);
}
.jvs-overlay.is-open .jvs-overlay__nav a { opacity: 1; transform: translateY(0); }
.jvs-overlay.is-open .jvs-overlay__nav a:nth-child(1) { transition-delay: .07s; }
.jvs-overlay.is-open .jvs-overlay__nav a:nth-child(2) { transition-delay: .13s; }
.jvs-overlay.is-open .jvs-overlay__nav a:nth-child(3) { transition-delay: .19s; }
.jvs-overlay.is-open .jvs-overlay__nav a:nth-child(4) { transition-delay: .25s; }
.jvs-overlay.is-open .jvs-overlay__nav a:nth-child(5) { transition-delay: .31s; }
.jvs-overlay.is-open .jvs-overlay__nav a:nth-child(6) { transition-delay: .37s; }
.jvs-overlay.is-open .jvs-overlay__nav a:nth-child(7) { transition-delay: .43s; }
.jvs-overlay__nav a:hover { color: #F6F4EF; }
.jvs-overlay__cta {
  font-size: 11px !important; font-weight: 500 !important;
  font-family: var(--jvs-mono) !important;
  color: var(--accent) !important; letter-spacing: 0.12em !important;
  text-transform: uppercase; margin-top: 12px; padding: 6px 0 !important;
}
.jvs-overlay__cta:hover { color: var(--accent-soft) !important; }

.jvs-overlay__footer {
  display: flex; flex-direction: row; justify-content: center;
  flex-wrap: wrap; gap: 6px 28px;
  padding-top: 22px; border-top: 1px solid rgba(246,244,239,0.07);
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(246,244,239,0.28);
  opacity: 0; transition: opacity .4s ease .52s;
}
.jvs-overlay.is-open .jvs-overlay__footer { opacity: 1; }
.jvs-overlay__footer a { color: inherit; transition: color .15s ease; }
.jvs-overlay__footer a:hover { color: rgba(246,244,239,0.6); }

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.jvs-hero {
  min-height: 100svh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 70px 0px; background: var(--bg);
}
.jvs-hero > .jvs-wrap { margin-top: 0; }
.jvs-hero-bg { position: absolute; inset: 0; z-index: 0; }
.jvs-hero-bg::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.25) 35%, rgba(11,11,12,0.95) 100%);
}
.jvs-hero-bg img,
.jvs-hero-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.jvs-hero-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 3px, transparent 3px, transparent 18px);
}
.jvs-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1d 0%, #26262a 40%, #151517 100%); overflow: hidden;
}
.jvs-placeholder::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 2px, transparent 2px, transparent 14px);
}
.jvs-placeholder--hero::after {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 3px, transparent 3px, transparent 18px),
    radial-gradient(ellipse at 70% 40%, rgba(224,97,58,0.18) 0%, transparent 50%);
}
.jvs-placeholder-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35); text-transform: uppercase; z-index: 3;
  padding: 6px 10px; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px;
}
.jvs-hero__eyebrow-row {
  position: relative; z-index: 3;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 40px; border-bottom: 1px solid var(--line); margin-bottom: 40px;
}
.jvs-hero__timestamp {
  font-family: var(--jvs-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-2); text-transform: uppercase;
}
.jvs-hero__timestamp strong { color: var(--ink-0); font-weight: 500; }
.jvs-hero__badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.jvs-hero__badge {
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
  background: rgba(246,244,239,0.10); border: 1px solid rgba(246,244,239,0.22);
  color: rgba(246,244,239,0.72); white-space: nowrap;
}
.jvs-hero__inner { position: relative; z-index: 3; width: 100%; }
.jvs-hero__col { max-width: 880px; }
.jvs-hero__h1 {
  font-family: var(--jvs-display);
  font-size: clamp(40px, 5vw, 88px); line-height: 0.98; letter-spacing: -0.03em; font-weight: 500;
  margin: 0; color: var(--ink-0);
}
.jvs-hero__h1 .accent { font-style: italic; font-weight: 400; color: var(--ink-0); }
.jvs-hero__sub { font-size: 18px; line-height: 1.55; color: var(--ink-1); max-width: 520px; margin: 32px 0; }
.jvs-hero__ctas { display: flex; gap: 12px; }

/* Buttons */
.jvs-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.01em;
  cursor: pointer; border: 0; font-family: var(--jvs-body);
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.jvs-btn--primary {
  background: var(--accent); color: #0B0B0C;
  position: relative; overflow: hidden;
}
.jvs-btn--primary::before {
  content: ''; position: absolute;
  top: -20%; left: -80%; width: 55%; height: 140%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.jvs-btn--primary:hover { background: var(--accent-soft); box-shadow: 0 4px 20px rgba(224,97,58,.4); }
.jvs-btn--primary:hover::before { animation: jvs-sheen .52s cubic-bezier(0.4,0,0.2,1) forwards; }
@keyframes jvs-sheen { from { left: -80%; } to { left: 130%; } }
.jvs-btn--ghost { background: transparent; color: var(--ink-0); border: 1px solid var(--line-strong); }
.jvs-btn--ghost:hover { background: rgba(11,11,12,0.06); }
.is-dark .jvs-btn--ghost:hover { background: rgba(246,244,239,0.08); }
.jvs-btn__arrow { width: 16px; height: 16px; flex-shrink: 0; transition: transform .22s ease; }
.jvs-btn:hover .jvs-btn__arrow { transform: translateX(4px); }
.jvs-btn:not(:has(.jvs-btn__arrow))::after {
  content: ''; width: 16px; height: 16px; flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nbm9uZSc+PHBhdGggZD0nTTMgOGgxME05IDRsNCA0LTQgNCcgc3Ryb2tlPSd3aGl0ZScgc3Ryb2tlLXdpZHRoPScxLjUnIHN0cm9rZS1saW5lY2FwPSdzcXVhcmUnLz48L3N2Zz4=") center/contain no-repeat;
  mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nbm9uZSc+PHBhdGggZD0nTTMgOGgxME05IDRsNCA0LTQgNCcgc3Ryb2tlPSd3aGl0ZScgc3Ryb2tlLXdpZHRoPScxLjUnIHN0cm9rZS1saW5lY2FwPSdzcXVhcmUnLz48L3N2Zz4=") center/contain no-repeat;
  transition: transform .22s ease;
}
.jvs-btn:not(:has(.jvs-btn__arrow)):hover::after { transform: translateX(4px); }

.jvs-hero__meta {
  position: relative; z-index: 3; display: flex; justify-content: space-between;
  margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line);
}
.jvs-hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.jvs-hero__meta-item .k { font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); }
.jvs-hero__meta-item .v { font-family: var(--jvs-display); font-size: 18px; color: var(--ink-0); font-weight: 500; }

/* ── META STRIP (light section below hero) ──────────────────────────────────── */
.jvs-meta-strip {
  padding: 28px 0;
  margin: 0;
  background: #ffffff;
}
.jvs-meta-strip__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
}
.jvs-meta-strip .jvs-hero__meta-item .k { color: var(--ink-3); }
.jvs-meta-strip .jvs-hero__meta-item .v { font-size: 14px; color: var(--ink-2); }
.jvs-mat-cycle { position: relative; height: 1.5em; }
.jvs-mat-slide {
  position: absolute; top: 0; left: 0; white-space: nowrap; opacity: 0;
  font-family: var(--jvs-display); font-size: 14px; color: var(--ink-2); font-weight: 500;
  animation: matCycle 10s infinite;
}
.jvs-mat-slide:nth-child(1) { animation-delay: 0s; }
.jvs-mat-slide:nth-child(2) { animation-delay: 2s; }
.jvs-mat-slide:nth-child(3) { animation-delay: 4s; }
.jvs-mat-slide:nth-child(4) { animation-delay: 6s; }
.jvs-mat-slide:nth-child(5) { animation-delay: 8s; }
@keyframes matCycle {
  0%   { opacity: 0; transform: translateY(7px); }
  5%   { opacity: 1; transform: translateY(0); }
  15%  { opacity: 1; transform: translateY(0); }
  20%  { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 0; }
}

/* Meta-strip item that links out — "Material range" → materials grid on Capabilities */
.jvs-meta-link { cursor: pointer; text-decoration: none; }
.jvs-meta-link .k { display: inline-flex; align-items: center; gap: 5px; transition: color .2s ease; }
.jvs-meta-link .k svg { width: 8px; height: 8px; opacity: .7; transition: transform .2s ease, opacity .2s ease; }
.jvs-meta-link .jvs-mat-slide {
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.jvs-meta-link:hover .k { color: var(--accent); }
.jvs-meta-link:hover .k svg { opacity: 1; transform: translate(1px, -1px); }
.jvs-meta-link:hover .jvs-mat-slide { color: var(--accent); text-decoration-color: var(--accent); }
.jvs-meta-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

/* Anchor target — clear the fixed nav pill */
#materials { scroll-margin-top: 104px; }


/* ── MARQUEE ────────────────────────────────────────────────────────────────── */
.jvs-marquee-section { padding: 40px 0; overflow: hidden; }
.jvs-marquee-wrap { display: flex; align-items: center; gap: 40px; }
.jvs-marquee-label {
  font-family: var(--jvs-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2); white-space: nowrap; padding: 0 32px;
  border-right: 1px solid var(--line);
}
.jvs-marquee { overflow: hidden; flex: 1; mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent); }
.jvs-marquee-track {
  display: flex; gap: 72px; animation: jvs-scroll 40s linear infinite;
  font-family: var(--jvs-display); font-size: 22px; color: var(--ink-2);
  white-space: nowrap; font-weight: 500; letter-spacing: -0.01em;
}
.jvs-marquee-track span { display: inline-flex; align-items: center; gap: 14px; }
.jvs-marquee-track span svg { width: 48px; height: 48px; flex-shrink: 0; opacity: 0.75; }

/* ── HIDDEN SECTIONS ────────────────────────────────────────────────────────── */
.jvs-proof-hidden { display: none; }

/* ── OEM INDUSTRY GRID ──────────────────────────────────────────────────────── */
.jvs-oem-grid { padding: 72px 0 0; }
.jvs-oem-grid h2 {
  color: var(--ink-0);
  font-family: var(--jvs-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 10px;
  margin-bottom: 0;
}
.jvs-oem-swiper { margin-top: 36px; overflow: hidden; }
.jvs-oem-swiper .swiper-slide { height: auto; }
.jvs-oem-pagination {
  text-align: center; padding: 18px 0 4px;
}
.jvs-oem-pagination .swiper-pagination-bullet {
  background: var(--ink-3); opacity: 1; width: 6px; height: 6px;
  transition: all 0.25s ease;
}
.jvs-oem-pagination .swiper-pagination-bullet-active {
  background: var(--accent); width: 20px; border-radius: 3px;
}
@media (min-width: 1024px) { .jvs-oem-pagination { display: none; } }
.jvs-oem-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0B0B0C;
}
.jvs-oem-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: invert(1);
  opacity: 0.88;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), opacity 0.3s ease;
}
.jvs-oem-card:hover img { transform: scale(1.04); opacity: 1; }
.jvs-oem-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 35%, rgba(11,11,12,0.92) 100%);
}
.jvs-oem-card__label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 26px; z-index: 2;
  display: flex; align-items: baseline; gap: 12px;
}
.jvs-oem-card__num {
  font-family: var(--jvs-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.jvs-oem-card__name {
  font-family: var(--jvs-display); font-size: 19px;
  font-weight: 500; color: #F6F4EF; letter-spacing: -0.01em;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .jvs-wrap { padding: 0 20px; }

  /* Nav */
  .jvs-nav { width: calc(100% - 24px); padding: 10px 12px 10px 16px; }
  .jvs-nav__links, .jvs-megamenu-root { display: none; }

  /* Sections */
  .jvs-section { padding: 72px 0; }
  .jvs-section-sm { padding: 56px 0; }

  /* Hero */
  .jvs-hero { padding: 70px 0; }
  .jvs-hero__h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .jvs-hero__badges { display: none; }

  /* Meta strip */
  .jvs-meta-strip__inner { flex-wrap: wrap; gap: 18px 28px; }

  /* OEM grid */
  .jvs-oem-grid { padding: 48px 0 0; }
  .jvs-oem-swiper { overflow: visible; padding-left: 20px; }

  /* Stats */
  .jvs-stats { flex-direction: column; gap: 36px; }

  /* Feature row */
  .jvs-feature-row { flex-direction: column; gap: 0; }
  .jvs-feature-media { height: 260px; position: relative; flex-shrink: 0; border-radius: 0; width: 100%; }
  .jvs-feature-text { padding: 40px 0 0; }



  /* Caps grid */
  .jvs-caps-grid { grid-template-columns: 1fr; }
  .jvs-cap--large, .jvs-cap--small, .jvs-cap--half { grid-column: auto; }

  /* Footer */
  .jvs-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .jvs-footer__card { padding: 32px 20px; border-radius: 16px; }
  .jvs-footer__brand { grid-column: 1 / -1; }
  .jvs-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Process */
  .jvs-process { grid-template-columns: 1fr; }
  .jvs-process::before, .jvs-process::after, .jvs-cnc-extra-dot { display: none; }

  /* Certs */
  .jvs-certs { grid-template-columns: 1fr 1fr; gap: 20px; }
  .jvs-proof-cards { grid-template-columns: 1fr; }
}
.jvs-marquee-track span::after { content: "◆"; color: var(--ink-3); font-size: 10px; }
@keyframes jvs-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── STATS ──────────────────────────────────────────────────────────────────── */
.jvs-stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.jvs-stats--4 { grid-template-columns: repeat(4, 1fr); }
.jvs-stats--5 { grid-template-columns: repeat(5, 1fr); }
.jvs-stat {
  padding: 56px 32px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px; transition: background .3s ease;
}
.jvs-stat:last-child { border-right: 0; }
.jvs-stat:hover { background: var(--bg-soft); }
.jvs-stat .num { font-family: var(--jvs-display); font-size: 64px; line-height: 1; letter-spacing: -0.03em; font-weight: 500; }
.jvs-stat .num sup { font-size: 24px; vertical-align: super; opacity: 0.6; margin-left: 2px; }
.jvs-stat .label { font-size: 13px; color: var(--ink-2); line-height: 1.5; max-width: 180px; }

/* ── SECTION HEADERS ────────────────────────────────────────────────────────── */
.jvs-section-head { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; margin-bottom: 72px; }
.jvs-section-head h2 {
  font-family: var(--jvs-display); font-size: clamp(40px, 4.8vw, 72px);
  line-height: 1.02; letter-spacing: -0.028em; margin: 16px 0 0; font-weight: 500; max-width: 540px;
}
.jvs-section-head .lede { font-size: 18px; line-height: 1.55; color: var(--ink-1); max-width: 460px; margin-top: 40px; }

/* ── CAPABILITIES GRID ──────────────────────────────────────────────────────── */
.jvs-caps-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.jvs-cap {
  position: relative; overflow: hidden; border-radius: 20px; background: var(--bg-soft);
  min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; cursor: pointer; border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.jvs-cap:hover { transform: translateY(-4px); }
.jvs-cap__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.9; transition: opacity .3s ease, transform .8s ease; }
.jvs-cap:hover .jvs-cap__bg { transform: scale(1.04); }
.jvs-cap__bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,12,0.92) 100%); z-index: 2;
}
.jvs-cap__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.jvs-cap__grid {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: conic-gradient(from 45deg at 60% 50%, transparent 0deg, rgba(255,255,255,0.05) 60deg, transparent 120deg, rgba(224,97,58,0.1) 180deg, transparent 240deg);
}
.jvs-cap__content { position: relative; z-index: 3; }
.jvs-cap__num { position: absolute; top: 28px; left: 32px; z-index: 3; font-family: var(--jvs-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-2); }
.jvs-cap__arrow {
  position: absolute; top: 28px; right: 28px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center; color: var(--ink-0);
  transition: background .2s ease, border-color .2s ease, transform .3s ease;
}
.jvs-cap:hover .jvs-cap__arrow { background: var(--accent); border-color: var(--accent); color: #0B0B0C; transform: rotate(-45deg); }
.jvs-cap h3 { font-family: var(--jvs-display); font-size: 30px; line-height: 1.1; font-weight: 500; letter-spacing: -0.02em; margin: 0 0 10px; }
.jvs-cap p { font-size: 14px; color: var(--ink-1); margin: 0; max-width: 420px; line-height: 1.55; }
.jvs-cap__tags { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.jvs-cap__tags span {
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.12em;
  padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); text-transform: uppercase;
}
.jvs-cap--large { grid-column: span 7; min-height: 540px; }
.jvs-cap--small { grid-column: span 5; }
.jvs-cap--half  { grid-column: span 6; min-height: 360px; }

/* Placeholder variants */
.jvs-ph-1 { background: linear-gradient(135deg, #1a1f24 0%, #111418 100%); }
.jvs-ph-1::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px), repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px), radial-gradient(ellipse at 30% 40%, rgba(224,97,58,0.15) 0%, transparent 55%); }
.jvs-ph-2 { background: linear-gradient(135deg, #1e1a17 0%, #12100e 100%); }
.jvs-ph-2::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(224,97,58,0.04) 0, rgba(224,97,58,0.04) 2px, transparent 2px, transparent 16px), radial-gradient(circle at 70% 60%, rgba(224,97,58,0.20) 0%, transparent 45%); }
.jvs-ph-3 { background: linear-gradient(180deg, #161718 0%, #0d0e0f 100%); }
.jvs-ph-3::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 6px); }
.jvs-ph-4 { background: linear-gradient(135deg, #1a1917 0%, #0e0d0c 100%); }
.jvs-ph-4::after { content: ""; position: absolute; inset: 0; background: conic-gradient(from 45deg at 60% 50%, transparent 0deg, rgba(255,255,255,0.05) 60deg, transparent 120deg, rgba(224,97,58,0.1) 180deg, transparent 240deg); }

/* ── FEATURE ROW ────────────────────────────────────────────────────────────── */
.jvs-feature-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.jvs-feature-row--reverse { grid-template-columns: 1fr 1.2fr; }
.jvs-feature-row--reverse .jvs-feature-media { order: 2; }
.jvs-feature-media { position: relative; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); }
.jvs-feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.jvs-feature-media__overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 3px, transparent 3px, transparent 18px),
    linear-gradient(180deg, rgba(11,11,12,0.10) 0%, rgba(11,11,12,0.35) 100%);
}
.jvs-feature-text h3 {
  font-family: var(--jvs-display); font-size: clamp(32px, 3.6vw, 56px);
  line-height: 1.05; letter-spacing: -0.025em; font-weight: 500; margin: 18px 0 22px; max-width: 460px;
}
.jvs-spec-label { font-family: var(--jvs-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--accent); text-transform: uppercase; }
.jvs-feature-text p { font-size: 17px; line-height: 1.6; color: var(--ink-1); max-width: 440px; }
.jvs-feature-specs { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 36px; border-top: 1px solid var(--line); }
.jvs-feature-specs > div { padding: 20px 0; border-bottom: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.jvs-feature-specs .k { font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--ink-2); text-transform: uppercase; }
.jvs-feature-specs .v { font-family: var(--jvs-display); font-size: 22px; color: var(--ink-0); font-weight: 500; letter-spacing: -0.01em; }

/* ── INDUSTRIES ─────────────────────────────────────────────────────────────── */
.jvs-ind-swiper { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.jvs-ind-pagination { text-align: center; padding: 18px 0 4px; }
.jvs-ind-pagination .swiper-pagination-bullet { background: var(--ink-3); opacity: 1; width: 6px; height: 6px; transition: all 0.25s ease; }
.jvs-ind-pagination .swiper-pagination-bullet-active { background: var(--accent); width: 20px; border-radius: 3px; }
@media (min-width: 1024px) { .jvs-ind-pagination { display: none; } }
.jvs-industry {
  padding: 32px 28px 28px; border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px; cursor: pointer;
  transition: background .3s ease; height: 100%;
}
.jvs-ind-swiper .swiper-slide:last-child .jvs-industry { border-right: 0; }
.jvs-industry:hover { background: var(--bg-soft); }
.jvs-industry__top { display: flex; justify-content: space-between; align-items: flex-start; }
.jvs-industry .idx { font-family: var(--jvs-mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.14em; }
.jvs-industry h4 { font-family: var(--jvs-display); font-size: 20px; margin: 0; font-weight: 500; letter-spacing: -0.015em; line-height: 1.2; flex: 1; }
.jvs-arrow { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid var(--line); transition: all .3s ease; flex-shrink: 0; }
.jvs-industry:hover .jvs-arrow { border-color: var(--accent); background: var(--accent); color: #0B0B0C; transform: rotate(-45deg); }
.jvs-industry__img { width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; margin-top: auto; }
.jvs-industry__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.jvs-industry:hover .jvs-industry__img img { transform: scale(1.04); }

/* ── PROOF / CASE STUDY ─────────────────────────────────────────────────────── */
.jvs-proof {
  position: relative; border-radius: 24px; overflow: hidden; padding: 88px 72px; min-height: 560px;
  display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line);
}
.jvs-proof__bg { position: absolute; inset: 0; z-index: 0; }
.jvs-proof__bg::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(90deg, rgba(11,11,12,0.85) 0%, rgba(11,11,12,0.4) 55%, rgba(11,11,12,0.0) 100%);
}
.jvs-ph-proof { background: linear-gradient(135deg, #12100e 0%, #1c1814 60%, #0b0a09 100%); }
.jvs-ph-proof::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, rgba(255,255,255,0.015) 0, rgba(255,255,255,0.015) 2px, transparent 2px, transparent 22px), radial-gradient(ellipse at 80% 50%, rgba(224,97,58,0.22) 0%, transparent 55%); }
.jvs-proof__content { position: relative; z-index: 3; max-width: 640px; }
.jvs-proof__stat { font-family: var(--jvs-display); font-size: clamp(48px, 6vw, 96px); line-height: 0.95; letter-spacing: -0.035em; font-weight: 500; color: var(--ink-0); margin: 18px 0 22px; }
.jvs-proof__stat .accent { color: var(--accent); }
.jvs-proof__content p { font-size: 18px; color: var(--ink-1); line-height: 1.55; max-width: 520px; margin: 0 0 32px; }
.jvs-proof__meta { display: flex; gap: 28px; align-items: center; font-family: var(--jvs-mono); font-size: 11px; color: var(--ink-2); letter-spacing: 0.12em; text-transform: uppercase; }
.jvs-proof__meta span::before { content: "· "; color: var(--ink-3); margin-right: 4px; }
.jvs-proof__meta span:first-child::before { display: none; }

/* ── PROCESS TIMELINE ───────────────────────────────────────────────────────── */
.jvs-process { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); position: relative; }
.jvs-step { padding: 48px 28px 40px; border-right: 1px solid var(--line); position: relative; }
.jvs-step:last-child { border-right: 0; }
.jvs-step::before { content: ""; position: absolute; top: -1px; left: 0; height: 2px; background: var(--accent); width: 0; transition: width .6s ease; }
.jvs-step.active::before { width: 100%; }
.jvs-step .n { font-family: var(--jvs-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-2); }
.jvs-step h5 { font-family: var(--jvs-display); font-size: 22px; margin: 36px 0 12px; font-weight: 500; letter-spacing: -0.015em; }
.jvs-step p { font-size: 14px; color: var(--ink-1); line-height: 1.55; margin: 0; }
.jvs-process::before,
.jvs-process::after,
.jvs-cnc-extra-dot {
  content: ''; position: absolute; top: -3px; left: 0;
  width: 5px; height: 5px; background: var(--accent); border-radius: 1px;
  box-shadow: 0 0 6px rgba(224,97,58,0.65); pointer-events: none; z-index: 2;
  animation: jvs-cnc-dot 7s ease-in-out infinite;
}
.jvs-cnc-extra-dot { content: none; }
.jvs-process::before { animation-delay: -2.33s; }
.jvs-cnc-extra-dot   { animation-delay: -4.67s; }
@keyframes jvs-cnc-dot {
  0%   { left: 0;                 opacity: 0; }
  2%   { left: 0;                 opacity: 1; }
  16%  { left: 0; }
  24%  { left: calc(25% - 3px); }
  38%  { left: calc(25% - 3px); }
  47%  { left: calc(50% - 3px); }
  61%  { left: calc(50% - 3px); }
  70%  { left: calc(75% - 3px); }
  84%  { left: calc(75% - 3px); }
  94%  { left: calc(100% - 5px);  opacity: 1; }
  98%  { left: calc(100% - 5px);  opacity: 0; }
  100% { left: 0;                 opacity: 0; }
}

/* ── CERTS ──────────────────────────────────────────────────────────────────── */
.jvs-certs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.jvs-cert {
  padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: var(--bg-soft);
  display: flex; flex-direction: column; gap: 10px; min-height: 180px; justify-content: space-between;
  transition: border-color .3s ease;
}
.jvs-cert:hover { border-color: var(--line-strong); }
.jvs-cert .badge {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--jvs-display); font-weight: 600; font-size: 16px;
  background: rgba(224,97,58,0.12); color: var(--accent); border: 1px solid rgba(224,97,58,0.25);
}
.jvs-cert h6 { font-family: var(--jvs-display); font-size: 18px; margin: 0; font-weight: 500; letter-spacing: -0.01em; }
.jvs-cert p { font-size: 13px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ── QUALITY PROOF CARDS ────────────────────────────────────────────────────── */
.jvs-proof-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.jvs-proof-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px;
  display: flex; flex-direction: column; overflow: hidden; transition: border-color .3s ease;
}
.jvs-proof-card:hover { border-color: var(--line-strong); }
.jvs-proof-card__artifact { height: 220px; position: relative; overflow: hidden; background: #07070a; border-bottom: 1px solid var(--line); }
.jvs-proof-card__artifact img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.jvs-proof-card__body { padding: 24px 24px 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.jvs-proof-card__title { font-family: var(--jvs-display); font-size: 17px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink-0); margin: 0; }
.jvs-proof-card__details { display: flex; flex-direction: column; }
.jvs-proof-card__row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.jvs-proof-card__row:last-child { border-bottom: 0; }
.jvs-proof-card__row-label { font-family: var(--jvs-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); flex-shrink: 0; }
.jvs-proof-card__row-val { font-family: var(--jvs-mono); font-size: 10px; color: var(--ink-1); text-align: right; line-height: 1.4; }
.jvs-proof-card__cta {
  display: inline-flex; align-items: center; gap: 6px; margin: 20px 24px 24px;
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); text-decoration: none; transition: color .2s ease;
}
.jvs-proof-card__cta:hover { color: var(--accent-soft); }
.jvs-proof-card__cta svg { width: 10px; height: 10px; flex-shrink: 0; }

/* ── FINAL CTA ──────────────────────────────────────────────────────────────── */
.jvs-cta-block {
  position: relative;
  padding: 140px 0; overflow: hidden;
}
.jvs-cta-inner { position: relative; z-index: 2; text-align: center; }
.jvs-cta-inner h2 {
  font-family: var(--jvs-display); font-size: clamp(56px, 9vw, 160px);
  line-height: 0.9; letter-spacing: -0.04em; font-weight: 500; margin: 0 0 48px;
}
.jvs-cta-inner h2 em { font-style: italic; color: var(--accent); font-weight: 400; }
.jvs-cta-btns { display: flex; justify-content: center; gap: 12px; }
.jvs-cta-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(rgba(11,11,12,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(11,11,12,0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
.jvs-footer { padding: 40px 0 0; background: var(--bg); }
.jvs-footer__card { background: #e4e2dd; border-radius: 28px; padding: 64px; }
.jvs-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; }
.jvs-footer__brand h3 { font-family: var(--jvs-display); font-size: 26px; margin: 16px 0 12px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink-0); }
.jvs-footer__brand p { font-size: 14px; color: var(--ink-2); line-height: 1.6; max-width: 320px; }
.jvs-footer__col h6 { font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--ink-2); text-transform: uppercase; margin: 0 0 20px; font-weight: 500; }
.jvs-footer__col a { display: block; font-size: 14px; color: var(--ink-1); padding: 6px 0; transition: color .2s ease; text-decoration: none; }
.jvs-footer__col a:hover { color: var(--accent); }
.jvs-footer__contact { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.jvs-footer__contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-2); line-height: 1.5;
}
.jvs-footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }

/* About hero — strip placeholder's opaque bg so real photo shows through; keep ::after grid/glow */
.jvs-page-hero__bg img ~ .jvs-placeholder { background: rgba(0,0,0,0.45); }

.jvs-inspect-item--photo { position:relative; overflow:hidden; border-radius:16px; min-height:280px; display:flex; flex-direction:column; justify-content:flex-end; padding:0; }
.jvs-inspect-item--photo .jvs-inspect-item__content { position:relative; z-index:2; padding:24px; }
.jvs-inspect-item--photo .jvs-inspect-item__icon { margin-bottom:12px; }
.jvs-inspect-item--photo h5 { color:var(--ink-0); margin-bottom:8px; }
.jvs-inspect-item--photo p { color:var(--ink-1); font-size:14px; line-height:1.55; margin:0; }

.jvs-careers-block { width: 100%; }
.jvs-careers-block h2 { font-family: var(--jvs-display); font-size: clamp(40px, 4.8vw, 72px); line-height: 1.02; letter-spacing: -0.028em; margin: 20px 0 0; font-weight: 500; }
.jvs-careers-block .lede { font-size: 18px; line-height: 1.55; margin-top: 24px; max-width: 580px; }
.jvs-careers-block .jvs-btn { margin-top: 40px; display: inline-flex; }

.jvs-footer__social { margin-top: 20px; display: flex; gap: 12px; }
.jvs-footer__social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); color: var(--ink-2); transition: border-color .2s, color .2s; }
.jvs-footer__social a:hover { border-color: var(--accent); color: var(--accent); }
.jvs-footer__social svg { width: 16px; height: 16px; }

.jvs-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0 28px; font-size: 12px; color: var(--ink-2);
  font-family: var(--jvs-mono); letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── PAGE HERO (sub-pages) ──────────────────────────────────────────────────── */
.jvs-page-hero {
  position: relative; overflow: hidden;
  min-height: 62vh; display: flex; align-items: flex-end;
  padding: 140px 32px 80px; background: var(--bg);
}
.jvs-page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.jvs-page-hero__bg::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(11,11,12,0.45) 0%, rgba(11,11,12,0.15) 40%, rgba(11,11,12,0.92) 100%);
}
.jvs-page-hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.jvs-page-hero__inner { position: relative; z-index: 3; width: 100%; }
.jvs-page-hero__kicker {
  display: flex; align-items: center; gap: 20px; margin-bottom: 36px;
  font-family: var(--jvs-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-2);
}
.jvs-page-hero__kicker span + span::before { content: "·"; margin-right: 20px; color: var(--ink-3); }
.jvs-page-hero h1 {
  font-family: var(--jvs-display);
  font-size: clamp(48px, 6.5vw, 100px); line-height: 0.96; letter-spacing: -0.035em; font-weight: 500;
  margin: 0 0 32px; color: var(--ink-0); max-width: 860px;
}
.jvs-page-hero h1 em { font-style: italic; font-weight: 400; }
.jvs-page-hero__sub {
  font-size: 18px; line-height: 1.55; color: var(--ink-1); max-width: 560px; margin: 0;
}

/* ── CAREERS ────────────────────────────────────────────────────────────────── */
.jvs-careers-lede {
  font-size: 18px; line-height: 1.65; color: var(--ink-1); max-width: 640px; margin: 0 0 64px;
}
.jvs-certs--3 { grid-template-columns: repeat(3, 1fr); }

/* ── CONTACT PAGE ───────────────────────────────────────────────────────────── */
.jvs-contact-header { position: relative; overflow: hidden; padding: 160px 0 80px; }
.jvs-contact-header .jvs-wrap { position: relative; z-index: 1; }
.jvs-word { display: inline-block; }
.jvs-grid-reveal {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.jvs-grid-reveal::before,
.jvs-grid-reveal::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line-strong) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-strong) 1px, transparent 1px);
  background-size: 64px 64px;
}
.jvs-grid-reveal::before { opacity: 0.07; }
.jvs-grid-reveal::after {
  opacity: 0;
  transition: opacity 1.8s ease;
  -webkit-mask-image: radial-gradient(circle 320px at var(--mx, -500px) var(--my, -500px), black 0%, transparent 100%);
  mask-image: radial-gradient(circle 320px at var(--mx, -500px) var(--my, -500px), black 0%, transparent 100%);
}
.jvs-contact-header:hover .jvs-grid-reveal::after {
  opacity: 1;
  transition: opacity 0.25s ease;
}
.jvs-contact-header__h1 {
  font-family: var(--jvs-display);
  font-size: clamp(56px, 7vw, 120px); line-height: 0.95; letter-spacing: -0.04em; font-weight: 500;
  margin: 16px 0 28px; color: var(--ink-0); max-width: 720px;
}
.jvs-contact-header__h1 em { font-style: italic; font-weight: 400; }
.jvs-contact-header__sub { font-size: 18px; line-height: 1.55; color: var(--ink-1); max-width: 520px; }
.jvs-contact-actions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 64px 0; border-bottom: 1px solid var(--line);
}
.jvs-contact-action {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 32px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--bg-soft);
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1), border-color .3s ease;
}
.jvs-contact-action:nth-child(2) { transition-delay: .12s; }
.jvs-contact-action:hover { border-color: var(--line-strong); }
.jvs-contact-action.is-visible { opacity: 1; transform: translateY(0); }
.jvs-contact-action__icon svg path,
.jvs-contact-action__icon svg line { transition: stroke-dashoffset .9s cubic-bezier(.4,0,.2,1); }
.jvs-contact-action.is-visible .jvs-contact-action__icon svg path,
.jvs-contact-action.is-visible .jvs-contact-action__icon svg line { stroke-dashoffset: 0 !important; }
.jvs-contact-action:nth-child(2) .jvs-contact-action__icon svg path,
.jvs-contact-action:nth-child(2) .jvs-contact-action__icon svg line { transition-delay: .12s; }
.jvs-contact-action__icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(224,97,58,0.12); border: 1px solid rgba(224,97,58,0.25); color: var(--accent);
}
.jvs-contact-action h4 {
  font-family: var(--jvs-display); font-size: 20px; font-weight: 500;
  letter-spacing: -0.015em; margin: 0 0 8px; color: var(--ink-0);
}
.jvs-contact-action p { font-size: 14px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.jvs-contact-action__stat {
  display: flex; align-items: baseline; gap: 8px;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line);
}
.jvs-contact-action__stat-num {
  font-family: var(--jvs-display); font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em; color: var(--ink-0); line-height: 1;
}
.jvs-contact-action__stat-label {
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2);
}
.jvs-contact-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px;
  align-items: start; padding: 80px 0;
}
.jvs-form-placeholder {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 20px; padding: 48px;
  display: flex; flex-direction: column; gap: 20px;
}
.jvs-form-placeholder h3 {
  font-family: var(--jvs-display); font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em; margin: 8px 0 0; color: var(--ink-0);
}
.jvs-form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.jvs-form-field { display: flex; flex-direction: column; gap: 8px; }
.jvs-form-field label {
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2);
}
.jvs-form-input {
  height: 48px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 8px; transition: border-color .2s ease;
}
.jvs-form-input:hover { border-color: var(--line-strong); }
.jvs-form-input--textarea { height: 120px; border-radius: 10px; }
.jvs-contact-info { display: flex; flex-direction: column; gap: 48px; }
.jvs-contact-info-block { display: flex; flex-direction: column; gap: 0; }
.jvs-contact-info-block h6 {
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2); margin: 0 0 4px; font-weight: 500;
}
.jvs-contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--ink-1); line-height: 1.5;
}
.jvs-contact-detail:first-of-type { border-top: 1px solid var(--line); margin-top: 12px; }
.jvs-contact-detail svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.jvs-contact-detail a { color: var(--ink-1); transition: color .2s ease; text-decoration: none; }
.jvs-contact-detail a:hover { color: var(--accent); }
.jvs-map-embed {
  width: 100%; aspect-ratio: 4/3; border-radius: 16px;
  overflow: hidden; border: 1px solid var(--line); position: relative;
}
.jvs-map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ── FORMINATOR OVERRIDES ───────────────────────────────────────────────────── */

/* Wrapper card */
.jvs-form-wrap {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 20px; padding: 48px;
}
.jvs-form-wrap__header { margin-bottom: 32px; }
.jvs-form-wrap__header h3 {
  font-family: var(--jvs-display); font-size: 28px; font-weight: 500;
  letter-spacing: -0.02em; margin: 8px 0 0; color: var(--ink-0);
}

/* Strip Forminator chrome */
.jvs-form-wrap .forminator-ui,
.jvs-form-wrap .forminator-custom-form,
.jvs-form-wrap form {
  background: transparent !important; border: 0 !important;
  padding: 0 !important; box-shadow: none !important; margin: 0 !important;
}

/* Rows & cols */
.jvs-form-wrap .forminator-row { margin: 0 -8px 16px !important; }
.jvs-form-wrap .forminator-col { padding: 0 8px !important; }

/* Field labels */
.jvs-form-wrap .forminator-label {
  font-family: "JetBrains Mono", ui-monospace, monospace !important;
  font-size: 10px !important; letter-spacing: 0.14em !important;
  text-transform: uppercase !important; color: #9C9A93 !important;
  font-weight: 400 !important; margin-bottom: 8px !important;
  display: block !important; line-height: 1.4 !important;
}

/* All text-type inputs */
.jvs-form-wrap input[type="text"],
.jvs-form-wrap input[type="email"],
.jvs-form-wrap input[type="tel"],
.jvs-form-wrap input[type="number"],
.jvs-form-wrap input[type="url"],
.jvs-form-wrap .forminator-input {
  background: #ffffff !important; border: 1px solid rgba(11,11,12,0.14) !important;
  border-radius: 8px !important; color: #0B0B0C !important;
  font-family: "Inter", ui-sans-serif, system-ui !important; font-size: 15px !important;
  padding: 13px 14px !important; width: 100% !important; min-height: 48px !important;
  box-shadow: none !important; outline: none !important; height: auto !important;
  -webkit-appearance: none !important; appearance: none !important;
  transition: border-color .2s ease !important;
}
.jvs-form-wrap input[type="text"]:focus,
.jvs-form-wrap input[type="email"]:focus,
.jvs-form-wrap input[type="tel"]:focus,
.jvs-form-wrap .forminator-input:focus {
  border-color: rgba(11,11,12,0.35) !important; box-shadow: none !important; outline: none !important;
}

/* Textarea */
.jvs-form-wrap textarea {
  background: #ffffff !important; border: 1px solid rgba(11,11,12,0.14) !important;
  border-radius: 10px !important; color: #0B0B0C !important;
  font-family: "Inter", ui-sans-serif, system-ui !important; font-size: 15px !important;
  padding: 13px 14px !important; width: 100% !important; min-height: 130px !important;
  box-shadow: none !important; outline: none !important; resize: vertical !important;
  -webkit-appearance: none !important; appearance: none !important;
  transition: border-color .2s ease !important;
}
.jvs-form-wrap textarea:focus { border-color: rgba(11,11,12,0.35) !important; box-shadow: none !important; }

/* Select2 — the widget Forminator uses for dropdowns */
.jvs-form-wrap .select2-container { width: 100% !important; }
.jvs-form-wrap .select2-container .select2-selection--single {
  background: #ffffff !important; border: 1px solid rgba(11,11,12,0.14) !important;
  border-radius: 8px !important; height: 48px !important;
  display: flex !important; align-items: center !important; padding: 0 14px !important;
  transition: border-color .2s ease !important;
}
.jvs-form-wrap .select2-container--focus .select2-selection--single,
.jvs-form-wrap .select2-container--open .select2-selection--single {
  border-color: rgba(11,11,12,0.35) !important; outline: none !important; box-shadow: none !important;
}
.jvs-form-wrap .select2-selection__rendered {
  color: #0B0B0C !important; font-family: "Inter", ui-sans-serif, system-ui !important;
  font-size: 15px !important; padding: 0 !important; line-height: 46px !important; flex: 1;
}
.jvs-form-wrap .select2-selection__placeholder { color: #ADABA4 !important; }
.jvs-form-wrap .select2-selection__arrow { height: 46px !important; right: 12px !important; }
.jvs-form-wrap .select2-selection__arrow b { border-color: #6B6A65 transparent transparent !important; }

/* Select2 dropdown panel — appended to <body>, needs global scope */
.select2-dropdown {
  background: #ffffff !important; border: 1px solid rgba(11,11,12,0.12) !important;
  border-radius: 10px !important; box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important; overflow: hidden !important;
}
.select2-search--dropdown { padding: 8px !important; }
.select2-search--dropdown .select2-search__field {
  background: #F6F4EF !important; border: 1px solid rgba(11,11,12,0.12) !important;
  border-radius: 6px !important; color: #0B0B0C !important;
  font-family: "Inter", ui-sans-serif, system-ui !important; font-size: 14px !important;
  padding: 8px 10px !important; outline: none !important;
}
.select2-results__option {
  font-family: "Inter", ui-sans-serif, system-ui !important;
  font-size: 14px !important; color: #1F1F21 !important; padding: 10px 14px !important;
}
.select2-results__option--highlighted { background: rgba(224,97,58,0.10) !important; color: #0B0B0C !important; }
.select2-results__option[aria-selected="true"] { background: rgba(224,97,58,0.08) !important; color: #E0613A !important; }

/* Radio & checkbox options */
.jvs-form-wrap .forminator-field-option {
  display: flex !important; align-items: center !important; gap: 10px !important; padding: 8px 0 !important;
}
.jvs-form-wrap .forminator-field-option label {
  font-family: "Inter", ui-sans-serif, system-ui !important; font-size: 14px !important;
  color: #E6E3DB !important; text-transform: none !important; letter-spacing: 0 !important;
  font-weight: 400 !important; cursor: pointer !important; margin: 0 !important;
}
.jvs-form-wrap input[type="radio"],
.jvs-form-wrap input[type="checkbox"] {
  width: 18px !important; height: 18px !important; min-width: 18px !important;
  padding: 0 !important; margin: 0 !important;
  border: 1px solid rgba(246,244,239,0.22) !important;
  background: #0B0B0C !important; accent-color: #E0613A !important;
  cursor: pointer !important; flex-shrink: 0 !important;
  -webkit-appearance: auto !important; appearance: auto !important;
}
.jvs-form-wrap input[type="radio"] { border-radius: 50% !important; }
.jvs-form-wrap input[type="checkbox"] { border-radius: 4px !important; }

/* HTML field (ITAR notice) */
.jvs-form-wrap .forminator-html .forminator-field__inner,
.jvs-form-wrap .forminator-field--html {
  background: rgba(224,97,58,0.07) !important; border: 1px solid rgba(224,97,58,0.22) !important;
  border-radius: 10px !important; padding: 16px 18px !important;
  font-size: 13px !important; line-height: 1.65 !important; color: #E6E3DB !important;
}
.jvs-form-wrap .forminator-html strong { color: #E0613A !important; font-weight: 500 !important; }

/* File upload */
.jvs-form-wrap .forminator-upload-area {
  background: #0B0B0C !important; border: 1px dashed rgba(246,244,239,0.22) !important;
  border-radius: 10px !important; padding: 28px 20px !important;
  color: #9C9A93 !important; font-size: 13px !important;
  text-align: center !important; transition: border-color .2s ease !important; cursor: pointer !important;
}
.jvs-form-wrap .forminator-upload-area:hover { border-color: #E0613A !important; }

/* Field description */
.jvs-form-wrap .forminator-field__description {
  font-size: 12px !important; color: #5C5B57 !important;
  margin-top: 6px !important; font-family: "Inter", ui-sans-serif, system-ui !important;
}

/* Submit button */
.jvs-form-wrap .forminator-btn,
.jvs-form-wrap .forminator-btn-submit,
.jvs-form-wrap .forminator-button,
.jvs-form-wrap .forminator-button-submit,
.jvs-form-wrap .forminator-ui .forminator-btn,
.jvs-form-wrap .forminator-ui .forminator-button,
.jvs-form-wrap button[type="submit"],
.jvs-form-wrap input[type="submit"] {
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  padding: 14px 28px !important; border-radius: 999px !important;
  font-family: "Inter", ui-sans-serif, system-ui !important; font-size: 14px !important;
  font-weight: 500 !important; letter-spacing: 0.01em !important;
  cursor: pointer !important; border: none !important; border-width: 0 !important;
  background: #E0613A !important; background-color: #E0613A !important; color: #0B0B0C !important;
  transition: background .2s ease !important; width: auto !important;
  min-width: 0 !important; box-shadow: none !important; text-transform: none !important;
  line-height: 1 !important; outline: none !important; -webkit-appearance: none !important; appearance: none !important;
}
.jvs-form-wrap .forminator-btn:hover,
.jvs-form-wrap .forminator-btn-submit:hover,
.jvs-form-wrap .forminator-button:hover,
.jvs-form-wrap .forminator-button-submit:hover,
.jvs-form-wrap button[type="submit"]:hover,
.jvs-form-wrap input[type="submit"]:hover {
  background: #F2A07A !important; background-color: #F2A07A !important; color: #0B0B0C !important;
}

/* Upload button — ghost style */
.jvs-form-wrap .forminator-button-upload {
  display: inline-flex !important; align-items: center !important; gap: 8px !important;
  padding: 10px 20px !important; border-radius: 999px !important;
  font-family: "Inter", ui-sans-serif, system-ui !important; font-size: 13px !important;
  font-weight: 500 !important; cursor: pointer !important;
  border: 1px solid rgba(11,11,12,0.22) !important;
  background: transparent !important; background-color: transparent !important; color: #0B0B0C !important;
  transition: background .2s ease, border-color .2s ease !important;
  box-shadow: none !important; text-transform: none !important; line-height: 1 !important;
}
.jvs-form-wrap .forminator-button-upload:hover {
  background: rgba(11,11,12,0.06) !important; background-color: rgba(11,11,12,0.06) !important;
}
.jvs-form-wrap .forminator-actions { text-align: left !important; padding-top: 8px !important; }

/* Validation & errors */
.jvs-form-wrap .forminator-field--validation,
.jvs-form-wrap .forminator-error-message {
  font-size: 11px !important; color: #F2A07A !important;
  margin-top: 5px !important; font-family: "Inter", ui-sans-serif, system-ui !important;
}
.jvs-form-wrap .forminator-has-error input,
.jvs-form-wrap .forminator-has-error textarea,
.jvs-form-wrap .forminator-has-error .select2-selection { border-color: rgba(224,97,58,0.5) !important; }
.jvs-form-wrap .forminator-response-output {
  border-radius: 10px !important; padding: 14px 18px !important;
  font-size: 14px !important; border: 1px solid rgba(246,244,239,0.10) !important;
  background: #141416 !important; color: #E6E3DB !important; margin-top: 16px !important;
}
.jvs-form-wrap .forminator-error.forminator-response-output {
  border-color: rgba(224,97,58,0.4) !important; color: #F2A07A !important;
}

/* Name sub-labels */
.jvs-form-wrap .forminator-name-field-label {
  font-size: 10px !important; color: #5C5B57 !important;
  font-family: "JetBrains Mono", ui-monospace, monospace !important;
  letter-spacing: 0.10em !important; text-transform: uppercase !important; margin-top: 4px !important;
}

@media (max-width: 960px) {
  .jvs-form-wrap { padding: 28px 24px; }
  .jvs-form-wrap .forminator-row { margin: 0 0 16px !important; }
  .jvs-form-wrap .forminator-col { padding: 0 !important; }
}

/* ── MATERIALS ──────────────────────────────────────────────────────────────── */
.jvs-materials { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; }
.jvs-materials-item { padding: 40px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; transition: background .3s ease; }
.jvs-materials-item:nth-child(5n) { border-right: 0; }
.jvs-materials-item:nth-child(-n+5) { border-bottom: 1px solid var(--line); }
.jvs-materials-item:hover { background: var(--bg-soft); }
.jvs-materials-item__name { font-family: var(--jvs-display); font-size: 22px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink-0); }
.jvs-materials-item__grades { font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); line-height: 1.8; }
.jvs-materials-item__use { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-top: auto; }
.jvs-mat-dot {
  position: absolute; left: -6px;
  width: 5px; height: 5px; background: var(--accent); border-radius: 1px;
  box-shadow: 0 0 8px rgba(224,97,58,0.7); pointer-events: none; z-index: 2;
  animation: jvs-mat-flow 6s linear infinite;
}
@keyframes jvs-mat-flow {
  0%   { left: -6px;             opacity: 0; }
  3%   { left: -6px;             opacity: 1; }
  8%   { left: -6px; }
  20%  { left: calc(20% - 3px); }
  25%  { left: calc(20% - 3px); }
  37%  { left: calc(40% - 3px); }
  42%  { left: calc(40% - 3px); }
  54%  { left: calc(60% - 3px); }
  59%  { left: calc(60% - 3px); }
  71%  { left: calc(80% - 3px); }
  76%  { left: calc(80% - 3px); }
  90%  { left: calc(100% + 6px); opacity: 1; }
  94%  { left: calc(100% + 6px); opacity: 0; }
  100% { left: -6px;             opacity: 0; }
}

/* ── PROCESS VERTICAL ───────────────────────────────────────────────────────── */
.jvs-process-v { position: relative; border-left: 1px solid var(--line); }
.jvs-process-v__step {
  display: grid; grid-template-columns: 52px 1fr;
  padding: 36px 0 36px 32px; border-bottom: 1px solid var(--line);
  position: relative; cursor: default;
}
.jvs-process-v__step:last-child { border-bottom: 0; }
.jvs-process-v__step::before {
  content: ''; position: absolute; left: -1px; top: 0;
  width: 2px; height: 0; background: var(--accent); transition: height .6s ease;
}
.jvs-process-v__step.active::before { height: 100%; }
.jvs-process-v__num {
  font-family: var(--jvs-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-2); padding-top: 4px;
  transition: color .2s ease;
}
.jvs-process-v__step.active .jvs-process-v__num { color: var(--accent); }
.jvs-process-v__title {
  font-family: var(--jvs-display); font-size: 20px; font-weight: 500;
  letter-spacing: -0.015em; color: var(--ink-0); margin: 0 0 10px;
}
.jvs-process-v__desc { font-size: 14px; color: var(--ink-1); line-height: 1.6; margin: 0; }
.jvs-process-v::before,
.jvs-process-v::after,
.jvs-process-v-dot {
  content: ''; position: absolute; left: -3px; top: 0;
  width: 5px; height: 5px; background: var(--accent); border-radius: 1px;
  box-shadow: 0 0 6px rgba(224,97,58,0.65); pointer-events: none; z-index: 2;
  animation: jvs-dot-v 7s ease-in-out infinite;
}
.jvs-process-v-dot { content: none; }
.jvs-file-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.jvs-file-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--line-strong);
  border-radius: 6px; padding: 5px 10px; background: var(--bg-soft);
}
.jvs-file-badge svg { width: 11px; height: 13px; flex-shrink: 0; }
.jvs-process-v::before { animation-delay: -2.33s; }
.jvs-process-v-dot    { animation-delay: -4.67s; }
@keyframes jvs-dot-v {
  0%   { top: 0;                opacity: 0; }
  2%   { top: 0;                opacity: 1; }
  16%  { top: 0; }
  24%  { top: calc(25% - 3px); }
  38%  { top: calc(25% - 3px); }
  47%  { top: calc(50% - 3px); }
  61%  { top: calc(50% - 3px); }
  70%  { top: calc(75% - 3px); }
  84%  { top: calc(75% - 3px); }
  94%  { top: calc(100% - 5px); opacity: 1; }
  98%  { top: calc(100% - 5px); opacity: 0; }
  100% { top: 0;                opacity: 0; }
}

/* ── INSPECT GRID ───────────────────────────────────────────────────────────── */
.jvs-inspect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.jvs-inspect-item {
  padding: 32px; border: 1px solid var(--line); border-radius: 16px;
  background: var(--bg-soft); display: flex; flex-direction: column; gap: 12px;
  transition: border-color .3s ease;
}
.jvs-inspect-item:hover { border-color: var(--line-strong); }
.jvs-inspect-item__icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(224,97,58,0.12); border: 1px solid rgba(224,97,58,0.25); color: var(--accent);
}
.jvs-inspect-item h5 {
  font-family: var(--jvs-display); font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em; margin: 0; color: var(--ink-0);
}
.jvs-inspect-item p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* ── CERT DOWNLOAD LINK ─────────────────────────────────────────────────────── */
.jvs-cert-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  transition: color .2s ease; margin-top: 6px; text-decoration: none;
}
.jvs-cert-link:hover { color: var(--accent-soft); }
.jvs-cert-link svg { width: 12px; height: 12px; }

/* ── DOC LIST ───────────────────────────────────────────────────────────────── */
.jvs-doc-list { display: flex; flex-direction: column; margin-top: 32px; }
.jvs-doc-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--ink-1); line-height: 1.55;
}
.jvs-doc-item:first-child { border-top: 1px solid var(--line); }
.jvs-doc-item__num {
  font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-3); min-width: 28px; padding-top: 2px; flex-shrink: 0;
}
.jvs-doc-item strong { color: var(--ink-0); display: block; margin-bottom: 3px; font-size: 15px; font-weight: 500; }




/* ── ALWAYS-DARK SECTIONS ──────────────────────────────────────────────────── */
.is-dark {
  --bg:           #0B0B0C;
  --bg-soft:      #141416;
  --ink-0:        #F6F4EF;
  --ink-1:        #E6E3DB;
  --ink-2:        #9C9A93;
  --ink-3:        #5C5B57;
  --line:         rgba(246,244,239,0.10);
  --line-strong:  rgba(246,244,239,0.22);
  background: var(--bg);
  color: var(--ink-0);
}

/* ── CAPABILITY SUB-PAGES ───────────────────────────────────────────────────── */
.jvs-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.jvs-feature-list li { padding-left: 22px; position: relative; font-size: 16px; line-height: 1.65; color: var(--ink-1); }
.jvs-feature-list li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 1.5px; background: var(--accent); }
.jvs-feature-list li strong { color: var(--ink-0); font-weight: 500; }

.jvs-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.jvs-related-card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), border-color .2s ease;
  text-decoration: none;
}
.jvs-related-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.jvs-related-card__num { font-family: var(--jvs-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.jvs-related-card__title { font-family: var(--jvs-display); font-size: 22px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink-0); margin-bottom: 10px; }
.jvs-related-card__desc { font-size: 13px; line-height: 1.55; color: var(--ink-2); flex: 1; }
.jvs-related-card__arrow {
  align-self: flex-start; margin-top: 24px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line-strong); display: flex; align-items: center; justify-content: center;
  color: var(--ink-0); transition: all .3s ease;
}
.jvs-related-card:hover .jvs-related-card__arrow { background: var(--accent); border-color: var(--accent); color: #0B0B0C; transform: rotate(-45deg); }
.jvs-related-card__img { height: 160px; border-radius: 10px; overflow: hidden; margin-bottom: 20px; }
.jvs-related-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s ease; }
.jvs-related-card:hover .jvs-related-card__img img { transform: scale(1.04); }
.jvs-related-card--full {
  padding: 0; min-height: 320px; position: relative; overflow: hidden;
  justify-content: flex-end; background: #0B0B0C;
}
.jvs-related-card--full .jvs-related-card__bg { position: absolute; inset: 0; z-index: 0; }
.jvs-related-card--full .jvs-related-card__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s ease; opacity: 0.85;
}
.jvs-related-card--full:hover .jvs-related-card__bg img { transform: scale(1.04); opacity: 1; }
.jvs-related-card--full::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(11,11,12,0.92) 0%, rgba(11,11,12,0.5) 45%, rgba(11,11,12,0.1) 100%);
}
.jvs-related-card--full .jvs-related-card__content {
  position: relative; z-index: 2; padding: 28px;
  display: flex; flex-direction: column;
}
.jvs-related-card--full .jvs-related-card__num { color: rgba(246,244,239,0.4); margin-bottom: 8px; }
.jvs-related-card--full .jvs-related-card__title { color: #F6F4EF; margin-bottom: 8px; }
.jvs-related-card--full .jvs-related-card__desc { color: rgba(230,227,219,0.7); flex: unset; }
.jvs-related-card--full .jvs-related-card__arrow { border-color: rgba(246,244,239,0.3); color: #F6F4EF; margin-top: 20px; }
.jvs-related-card--full:hover .jvs-related-card__arrow { background: var(--accent); border-color: var(--accent); color: #0B0B0C; transform: rotate(-45deg); }
.jvs-related-card--full:hover { border-color: var(--line-strong); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .jvs-nav__links { display: none; }
  .jvs-nav { top: 10px; padding: 8px 10px 8px 18px; width: calc(100% - 24px); }
  .jvs-wrap { padding: 0 24px; }
  .jvs-hero { padding: 90px 24px 48px; min-height: 100svh; }
  .jvs-hero__h1 { font-size: clamp(38px, 9vw, 80px); }
  .jvs-hero__sub { font-size: 16px; margin: 20px 0; }
  .jvs-hero__badges { gap: 6px; justify-content: flex-start; flex-wrap: wrap; }
  .jvs-hero__badge { font-size: 9px; padding: 3px 9px; }
  .jvs-hero__eyebrow-row { flex-direction: column; align-items: flex-start; gap: 12px; padding-bottom: 28px; margin-bottom: 28px; }
  .jvs-hero__meta-item .v { font-size: 15px; }
  .jvs-section { padding: 80px 0; }
  .jvs-section-sm { padding: 60px 0; }
  .jvs-section-head { grid-template-columns: 1fr; gap: 32px; }
  .jvs-section-head .lede { margin-top: 0; }
  .jvs-stats { grid-template-columns: repeat(2, 1fr); }
  .jvs-stat { border-bottom: 1px solid var(--line); }
  .jvs-stat:nth-child(2n) { border-right: 0; }
  .jvs-caps-grid { grid-template-columns: 1fr; }
  .jvs-cap--large, .jvs-cap--small, .jvs-cap--half { grid-column: span 1; }
  .jvs-feature-row, .jvs-feature-row--reverse { grid-template-columns: 1fr; gap: 40px; }
  .jvs-feature-row--reverse .jvs-feature-media { order: 0; }
  .jvs-process { grid-template-columns: 1fr 1fr; }
  .jvs-certs { grid-template-columns: 1fr 1fr; }
  .jvs-proof-cards { grid-template-columns: 1fr 1fr; }
  .jvs-proof { padding: 48px 28px; }
  .jvs-footer__grid { grid-template-columns: 1fr 1fr; }
  .jvs-footer__card { padding: 40px 32px; border-radius: 20px; }
  .jvs-hero__meta { flex-wrap: wrap; gap: 24px; }
  .jvs-page-hero { padding: 100px 24px 60px; min-height: 50vh; }
  .jvs-certs--3 { grid-template-columns: 1fr 1fr; }
  .jvs-contact-header { padding: 120px 0 60px; }
  .jvs-contact-actions { grid-template-columns: 1fr; }
  .jvs-contact-grid { grid-template-columns: 1fr; gap: 48px; padding: 48px 0; }
  .jvs-form-placeholder { padding: 32px; }
  .jvs-form-row--2 { grid-template-columns: 1fr; }
  .jvs-inspect-grid { grid-template-columns: 1fr 1fr; }
  .jvs-materials { grid-template-columns: repeat(2, 1fr); }
  .jvs-materials-item { border-bottom: 1px solid var(--line); }
  .jvs-materials-item:nth-child(2n) { border-right: 0; }
  .jvs-materials-item:nth-child(5) { border-right: 1px solid var(--line); }
  .jvs-mat-dot { display: none; }
  .jvs-related { grid-template-columns: 1fr; }
  .jvs-nav__links { display: none; }
  .jvs-nav__cta { display: none; }
  .jvs-nav__hamburger { display: flex; }
  .jvs-nav-logo { height: 44px; }
}

/* ── PRIVACY POLICY ─────────────────────────────────────────────────────────── */
.jvs-privacy-body {
  max-width: 720px; margin: 0 auto;
  font-family: var(--jvs-body); color: var(--ink-1); font-size: 16px; line-height: 1.75;
}
.jvs-privacy-meta {
  font-family: var(--jvs-mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 48px;
}
.jvs-privacy-body h3 {
  font-family: var(--jvs-display); font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em; color: var(--ink-0);
  margin: 52px 0 16px; padding-top: 52px; border-top: 1px solid var(--line);
}
.jvs-privacy-body h3:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.jvs-privacy-body p { margin: 0 0 18px; }
.jvs-privacy-body ul { margin: 0 0 18px; padding-left: 20px; }
.jvs-privacy-body ul li { margin-bottom: 8px; }
.jvs-privacy-body a { color: var(--accent); text-decoration: none; }
.jvs-privacy-body a:hover { text-decoration: underline; }
.jvs-privacy-contact {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 24px; padding: 28px 32px;
  background: var(--bg-soft); border-radius: 16px;
  font-size: 15px;
}

/* ─────────────────────────────────────────────
   FACILITIES / EQUIPMENT LIST  (added 2026-07-17)
   ───────────────────────────────────────────── */
.jvs-equip { margin-top: 4px; border-top: 1px solid var(--line-strong); }
.jvs-equip__grouplabel {
  font-family: var(--jvs-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  padding: 30px 0 6px;
}
.jvs-equip__row {
  display: grid; grid-template-columns: 48px minmax(190px, 1.05fr) 1.7fr;
  gap: 28px; align-items: baseline;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.jvs-equip__row:hover { background: var(--bg-soft); }
.jvs-equip__qty {
  font-family: var(--jvs-mono); font-size: 13px; font-weight: 500;
  color: var(--accent); white-space: nowrap;
}
.jvs-equip__model {
  font-family: var(--jvs-display); font-size: 19px; font-weight: 500;
  letter-spacing: -0.01em; color: var(--ink-0); line-height: 1.2;
}
.jvs-equip__specs {
  font-family: var(--jvs-body); font-size: 14px; line-height: 1.55; color: var(--ink-2);
}
.jvs-equip__specs b { color: var(--ink-1); font-weight: 500; }
.jvs-equip--nocol .jvs-equip__row { grid-template-columns: minmax(170px, 1fr) 2fr; }
.jvs-equip__note {
  font-size: 14px; line-height: 1.6; color: var(--ink-2);
  margin: 24px 0 0; max-width: 760px;
}
.jvs-equip-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.jvs-equip-actions .jvs-btn { cursor: pointer; }
button.jvs-btn { font-family: var(--jvs-body); font-size: 14px; font-weight: 500; }
.jvs-facility-line {
  display: flex; flex-direction: column; gap: 10px;
  padding: 28px 32px; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 16px;
}
.jvs-facility-line p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-1); max-width: 720px; }

@media (max-width: 960px) {
  .jvs-equip__row { grid-template-columns: 40px 1fr; gap: 4px 16px; padding: 16px 0; }
  .jvs-equip__specs { grid-column: 2 / -1; margin-top: 2px; }
  .jvs-equip--nocol .jvs-equip__row { grid-template-columns: 1fr; }
}

/* Print — flatten the dark UI to a clean black-on-white spec sheet */
@media print {
  .jvs-nav, .jvs-overlay, .jvs-footer, .jvs-cta-block,
  .jvs-print-hide, .jvs-page-hero__bg { display: none !important; }
  html, body { background: #fff !important; }
  .jvs-page-hero, .is-dark, section { background: #fff !important; }
  .jvs-page-hero__inner h1, .jvs-page-hero__sub,
  .jvs-section-head h2, .jvs-equip__model, .jvs-stat .num,
  .jvs-facility-line p { color: #000 !important; }
  .jvs-section-head .lede, .jvs-equip__specs, .jvs-equip__note,
  .jvs-stat .label { color: #333 !important; }
  .jvs-equip__grouplabel, .jvs-equip__qty, .jvs-eyebrow { color: #000 !important; }
  .jvs-equip__row { break-inside: avoid; border-bottom: 1px solid #ccc !important; }
  .jvs-facility-line { border: 1px solid #ccc !important; }
  section { padding: 14px 0 !important; }
  * { animation: none !important; transition: none !important; }
}
