/* ============================================================
   JD METALS — Premium Design System
   "Precision Engineering, Dark Luxury"
   ============================================================ */

:root {
  --jdm-bg-deep: #0A0A0B;
  --jdm-bg-dark: #0F0F11;
  --jdm-bg-card: #141416;
  --jdm-bg-elevated: #1A1A1E;
  --jdm-brass: #C9A227;
  --jdm-brass-light: #E8C547;
  --jdm-brass-dark: #9A7B1A;
  --jdm-brass-gradient: linear-gradient(135deg, #E8C547 0%, #C9A227 45%, #9A7B1A 100%);
  --jdm-text: #F5F0E8;
  --jdm-text-muted: #A8A29E;
  --jdm-steel: #3D3D42;
  --jdm-border: rgba(201, 162, 39, 0.18);
  --jdm-border-hover: rgba(201, 162, 39, 0.45);
  --jdm-glass: rgba(15, 15, 17, 0.72);
  --jdm-radius: 12px;
  --jdm-radius-lg: 20px;
  --jdm-font-display: 'Space Grotesk', system-ui, sans-serif;
  --jdm-font-body: 'Manrope', system-ui, sans-serif;
  --jdm-nav-height: 80px;
  --jdm-nav-height-scrolled: 64px;
  --jdm-transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --jdm-shadow-brass: 0 0 40px rgba(201, 162, 39, 0.15);
}

/* ---- Reset & Base ---- */
.jdm-premium,
.jdm-premium * {
  box-sizing: border-box;
}

.jdm-premium {
  background: var(--jdm-bg-deep);
  color: var(--jdm-text);
  font-family: var(--jdm-font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.jdm-premium h1, .jdm-premium h2, .jdm-premium h3,
.jdm-premium h4, .jdm-premium h5, .jdm-premium h6,
.jdm-premium .pbmit-title, .jdm-premium .jdm-display {
  font-family: var(--jdm-font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--jdm-text);
}

.jdm-premium h1, .jdm-premium .jdm-display-xl {
  font-size: clamp(3rem, 8vw, 6rem);
}

.jdm-premium h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.jdm-premium .jdm-brass-text {
  background: var(--jdm-brass-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jdm-premium a {
  color: var(--jdm-brass-light);
  text-decoration: none;
  transition: color 0.25s ease;
}

.jdm-premium a:hover {
  color: var(--jdm-text);
}

.jdm-premium img:not(.jdm-nav-brand-logo) {
  max-width: 100%;
  height: auto;
}

.jdm-nav-brand-logo {
  display: block;
  height: 44px !important;
  width: auto !important;
  max-height: 44px !important;
  max-width: 190px !important;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.jdm-nav.is-scrolled .jdm-nav-brand-logo {
  height: 44px !important;
  max-height: 44px !important;
  max-width: 185px !important;
}

.jdm-premium .page-wrapper {
  background: var(--jdm-bg-deep);
}

.jdm-premium .page-content {
  background: var(--jdm-bg-deep) !important;
}

/* Hide old template chrome */
.jdm-premium .header-wrapper,
.jdm-premium .site-header-menu .site-branding:not(.jdm-nav-brand),
.jdm-premium .pbmit-header-info,
.jdm-premium .pbmit-right-box,
.jdm-premium .pbmit-slider-area,
.jdm-premium .pbmit-title-bar-wrapper:not(.jdm-title-bar),
.jdm-premium .preloader,
.jdm-premium .pbmit-search-overlay {
  display: none !important;
}

.jdm-premium .site-header {
  background: transparent !important;
  position: static !important;
  height: 0 !important;
  overflow: visible !important;
}

/* Grain overlay */
.jdm-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom cursor */
.jdm-cursor-dot,
.jdm-cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.jdm-cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--jdm-brass);
}

.jdm-cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.jdm-cursor-ring.is-hover {
  width: 52px;
  height: 52px;
  border-color: var(--jdm-brass);
}

@media (max-width: 1024px), (pointer: coarse) {
  .jdm-cursor-dot, .jdm-cursor-ring { display: none !important; }
  .jdm-premium { cursor: auto; }
}

/* ---- Announcement Bar (hidden site-wide) ---- */
.jdm-premium .jdm-announce-bar {
  display: none !important;
}

.jdm-premium .jdm-announce-bar .jdm-ab-close {
  color: #c9c4bc !important;
}

.jdm-premium .jdm-announce-bar .jdm-ab-close:hover {
  color: #fff !important;
}

.jdm-premium .jdm-announce-bar a {
  color: var(--jdm-brass) !important;
}

.jdm-premium .jdm-pulse {
  background: var(--jdm-brass) !important;
}

/* ---- Premium Navbar ---- */
.jdm-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  height: var(--jdm-nav-height);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border-bottom: 1px solid var(--jdm-border);
  transition: height var(--jdm-transition), background var(--jdm-transition), backdrop-filter var(--jdm-transition);
}

.jdm-nav.has-announce {
  top: 0;
}

.jdm-nav.is-scrolled {
  height: var(--jdm-nav-height);
  background: rgba(10, 10, 11, 0.98);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.jdm-nav-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.jdm-nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  grid-column: 1;
  max-width: 190px;
}

.jdm-nav-links-wrap {
  grid-column: 2;
  display: flex;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.jdm-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jdm-nav-links > li > a {
  display: block;
  padding: 0.45rem 0.65rem;
  color: #ece8e0 !important;
  font-family: var(--jdm-font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color 0.25s;
}

.jdm-nav-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.jdm-nav-cert {
  display: none !important;
}

.jdm-nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.jdm-nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 1px;
  background: var(--jdm-brass-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.jdm-nav-links > li > a:hover,
.jdm-nav-links > li.is-active > a {
  color: var(--jdm-brass-light) !important;
}

.jdm-nav-links > li > a:hover::after,
.jdm-nav-links > li.is-active > a::after {
  transform: scaleX(1);
}

.jdm-nav-dropdown {
  position: relative;
}

.jdm-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--jdm-bg-card);
  border: 1px solid var(--jdm-border);
  border-radius: var(--jdm-radius);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.jdm-nav-dropdown:hover .jdm-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.jdm-nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--jdm-text-muted);
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.jdm-nav-dropdown-menu a:hover {
  background: rgba(201, 162, 39, 0.08);
  color: var(--jdm-brass-light);
}

.jdm-btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: transparent;
  border: 1px solid var(--jdm-brass);
  border-radius: 100px;
  color: var(--jdm-brass) !important;
  font-family: var(--jdm-font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.jdm-btn-nav:hover {
  background: var(--jdm-brass);
  color: var(--jdm-bg-deep) !important;
  box-shadow: var(--jdm-shadow-brass);
}

.jdm-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--jdm-text);
  transition: all 0.3s;
}

.jdm-nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.jdm-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.jdm-nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (min-width: 1280px) {
  .jdm-nav-links > li > a {
    padding: 0.45rem 0.85rem;
    font-size: 12px;
  }
}

@media (max-width: 1199px) {
  .jdm-nav-inner {
    grid-template-columns: 1fr auto auto;
  }
  .jdm-nav-actions {
    grid-column: 2;
  }
  .jdm-nav-toggle {
    grid-column: 3;
    display: flex;
  }
  .jdm-nav-links-wrap {
    grid-column: 1 / -1;
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 11, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: -1;
  }
  .jdm-nav-links-wrap.is-open {
    opacity: 1;
    visibility: visible;
  }
  .jdm-nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .jdm-nav-links > li > a {
    font-size: 1.5rem;
    padding: 0.75rem 1.5rem;
  }
  .jdm-nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    display: none;
    text-align: center;
  }
  .jdm-nav-dropdown.is-open .jdm-nav-dropdown-menu { display: block; }
}

/* ---- Hero Sections ---- */
.jdm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: calc(var(--jdm-nav-height) + 2.5rem);
  padding-bottom: 3rem;
}

.jdm-nav.has-announce ~ .page-wrapper .jdm-hero {
  padding-top: calc(var(--jdm-nav-height) + 2.5rem);
}

#jdm-hero-main {
  overflow: hidden;
}

.jdm-hero-sub {
  min-height: 55vh;
  padding-top: calc(var(--jdm-nav-height) + 2rem);
  padding-bottom: 4rem;
}

.jdm-hero-sub.jdm-hero-sub--text {
  min-height: 0;
  padding-top: calc(var(--jdm-nav-height) + 2.5rem);
  padding-bottom: 2.5rem;
}

/* Simple title bar (About, Capability, product pages) */
.jdm-premium .jdm-title-bar {
  background: var(--jdm-bg-dark);
  padding: calc(var(--jdm-nav-height) + 1rem) 0 1.25rem;
  border-bottom: 1px solid var(--jdm-border);
}

.jdm-nav.has-announce ~ .page-wrapper .jdm-title-bar {
  padding-top: calc(var(--jdm-nav-height) + 2.5rem);
}

.jdm-premium .jdm-title-bar .pbmit-tbar-title {
  color: var(--jdm-text) !important;
  font-family: var(--jdm-font-display) !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  line-height: 1.15 !important;
  margin: 0 0 0.75rem !important;
  font-weight: 700 !important;
}

.jdm-breadcrumb--titlebar {
  margin-top: 0;
}

.jdm-premium .jdm-about-photo-wrap::before {
  display: none !important;
}

.jdm-premium .jdm-about-photo {
  display: block;
  width: 100%;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--jdm-radius-lg);
  border: 1px solid var(--jdm-border);
}

/* About page — kill legacy 90px padding from style.css */
.jdm-premium .about-us_inner_single {
  padding: 1.75rem 1rem 2rem 1.25rem !important;
}

.jdm-premium .about-us_inner_bg {
  padding: 1.25rem 0 !important;
}

.jdm-premium .page-content > section.overflow-hidden.bg-white {
  padding-top: 2rem !important;
  padding-bottom: 2.5rem !important;
}

.jdm-premium .section-lg {
  padding: 3rem 0 !important;
}

.jdm-premium .section-lgt {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.jdm-premium .page-content .pbmit-heading-subheading {
  margin-bottom: 1.25rem !important;
}

.jdm-premium .page-content .pbmit-heading-subheading .pbmit-title {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem) !important;
  line-height: 1.2 !important;
}

.jdm-premium .jdm-cap-offer-card {
  min-height: 0 !important;
  display: flex;
  align-items: stretch;
  padding: clamp(2rem, 4vw, 3rem) !important;
  background: var(--jdm-bg-card) !important;
}

.jdm-premium .jdm-cap-offer-card .pbmit-ihbox-style-14 {
  position: static !important;
  width: 100%;
}

.jdm-premium .jdm-cap-offer-card .pbmit-ihbox-style-14 .pbmit-ihbox-box {
  background: transparent !important;
  padding: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jdm-hero-sub--text .jdm-hero-sub-grid {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.jdm-hero-sub--text .jdm-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
}

.jdm-nav.has-announce ~ .page-wrapper .jdm-hero-sub {
  padding-top: calc(var(--jdm-nav-height) + 2rem);
}

.jdm-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.jdm-hero-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.jdm-hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 75% 35%, rgba(201, 162, 39, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 75%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(61, 61, 66, 0.35) 0%, transparent 50%),
    linear-gradient(180deg, #0A0A0B 0%, #121214 50%, #0A0A0B 100%);
}

.jdm-hero-fallback::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255, 255, 255, 0.015) 3px,
    rgba(255, 255, 255, 0.015) 4px
  );
  pointer-events: none;
}

.jdm-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 3rem) 0;
  overflow: visible;
}

.jdm-hero-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.jdm-hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.jdm-hero-title {
  font-size: clamp(2.25rem, 5.5vw, 4.75rem);
  margin-bottom: 1.5rem;
  max-width: 14ch;
  line-height: 1.05;
}

.jdm-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--jdm-text-muted);
  max-width: 48ch;
  margin-bottom: 2.5rem;
}

.jdm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.jdm-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--jdm-brass-gradient);
  border: none;
  border-radius: 100px;
  color: var(--jdm-bg-deep) !important;
  font-family: var(--jdm-font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none !important;
}

.jdm-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.35);
  color: var(--jdm-bg-deep) !important;
}

.jdm-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid var(--jdm-steel);
  border-radius: 100px;
  color: var(--jdm-text) !important;
  font-family: var(--jdm-font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none !important;
}

.jdm-btn-secondary:hover {
  border-color: var(--jdm-brass);
  color: var(--jdm-brass) !important;
}

.jdm-hero-visual {
  position: relative;
  height: clamp(360px, 52vh, 620px);
  min-height: 360px;
  min-width: 0;
}

/* ---- Hero 3D product ring (CSS carousel) ---- */
.jdm-hero-visual--ring {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 560px;
  overflow: visible;
  align-self: center;
}

.jdm-hero-ring-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.jdm-hero-ring-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 66%);
  pointer-events: none;
  z-index: 0;
}

.jdm-hero-ring-viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  border-radius: var(--jdm-radius-lg);
  overflow: hidden;
  background: #0a0a0c;
  border: 1px solid rgba(201, 162, 39, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 40px 90px -30px rgba(0, 0, 0, 0.9);
}

.jdm-hero-ring-viewport .jdm-hero-ring-glow {
  top: 50%;
}

.jdm-hero-ring-viewport::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  z-index: 20;
}

.jdm-hero-ring-stage {
  position: absolute;
  inset: 0;
  perspective: 1600px;
  perspective-origin: 50% 42%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  cursor: grab;
}

.jdm-hero-ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: translate3d(0, 0, -310px);
  will-change: transform;
}

.jdm-hero-ring.is-manual {
  animation: none;
}

.jdm-ring-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 260px;
  height: 340px;
  margin: -170px 0 0 -130px;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.jdm-ring-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  opacity: 1;
  background: linear-gradient(158deg, #f5f2e9, #d6cfbd);
  box-shadow:
    0 34px 60px -22px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(201, 162, 39, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: filter 0.15s ease;
}

.jdm-ring-card-shine {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(120% 88% at 30% 14%, rgba(255, 255, 255, 0.92), rgba(201, 162, 39, 0.12) 56%, rgba(120, 95, 40, 0.16));
  pointer-events: none;
}

.jdm-ring-card-img {
  position: absolute;
  inset: 7% 6% 27% 6%;
  z-index: 2;
  overflow: hidden;
}

.jdm-ring-card-img--cover {
  inset: 0;
}

.jdm-ring-card-img img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 16px rgba(120, 90, 30, 0.3));
  transition: opacity 0.3s ease;
}

.jdm-ring-card-img--cover img {
  object-fit: cover;
  mix-blend-mode: normal;
  filter: none;
}

.jdm-ring-card-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 12px 14px;
  background: linear-gradient(to top, #14161b, rgba(20, 22, 27, 0.82));
  border-top: 1px solid rgba(201, 162, 39, 0.4);
}

.jdm-ring-card-title {
  display: block;
  font-family: var(--jdm-font-display);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.1;
  color: #f5f2ea;
}

.jdm-ring-card-tag {
  display: block;
  margin-top: 5px;
  font-family: var(--jdm-font-mono, ui-monospace, monospace);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--jdm-brass);
}

.jdm-hero-ring-controls {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  /* Reserve height so icon-font/webfont swap + JS caption text can't shift layout (CLS) */
  min-height: 46px;
}

.jdm-ring-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--jdm-text);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.jdm-ring-btn:hover {
  border-color: rgba(201, 162, 39, 0.5);
  background: rgba(201, 162, 39, 0.08);
}

.jdm-ring-caption {
  text-align: center;
  min-width: 200px;
  /* Reserve two-line caption height (name + spec) to prevent CLS on font swap */
  min-height: 42px;
}

.jdm-ring-name {
  font-family: var(--jdm-font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.1;
  min-height: 19px;
  color: var(--jdm-text);
}

.jdm-ring-spec {
  margin-top: 5px;
  font-family: var(--jdm-font-mono, ui-monospace, monospace);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  min-height: 14px;
  letter-spacing: 0.5px;
  color: var(--jdm-brass);
}

.jdm-ring-hint {
  text-align: center;
  margin: 8px 0 0;
  font-family: var(--jdm-font-mono, ui-monospace, monospace);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--jdm-text-muted);
}

/* Hide carousel dot pagination — prev/next + caption are enough */
.jdm-ring-dots {
  display: none !important;
}

/* Clip 3D ring so controls don't float over the page when scrolling */
.jdm-hero.is-offscreen .jdm-hero-visual--ring,
.jdm-hero.is-offscreen .jdm-hero-ring-wrap {
  visibility: hidden;
  pointer-events: none;
}

.jdm-hero-ring-stage.is-dragging {
  cursor: grabbing;
}

@media (max-width: 991px) {
  .jdm-hero-grid { grid-template-columns: 1fr; }
  .jdm-hero { min-height: auto; padding-bottom: 2rem; }
  .jdm-hero-visual--ring {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    min-height: 0;
  }
  .jdm-hero-ring-viewport {
    height: 400px;
  }
}

.jdm-hero-eyebrow {
  display: inline-block;
  font-family: var(--jdm-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jdm-brass);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--jdm-border);
  border-radius: 100px;
}

@media (prefers-reduced-motion: reduce) {
  .jdm-hero-ring-stage { cursor: default; }
  .jdm-ring-hint { display: none; }
}

.jdm-hero-model {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--jdm-radius-lg);
  border: 1px solid rgba(201, 162, 39, 0.35);
  background:
    radial-gradient(ellipse at 50% 40%, rgba(201, 162, 39, 0.2) 0%, transparent 60%),
    linear-gradient(160deg, rgba(30, 28, 24, 0.95), rgba(10, 10, 11, 0.98));
  box-shadow:
    0 0 0 1px rgba(201, 162, 39, 0.12) inset,
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(201, 162, 39, 0.18);
  overflow: hidden;
}

.jdm-hero-webgl {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: auto;
}

.jdm-hero-webgl canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.jdm-hero-model.is-3d-active .jdm-hero-product {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.jdm-hero-model.is-3d-fallback .jdm-hero-product {
  opacity: 1;
}

.jdm-hero-model.is-3d-active .jdm-css-brass {
  display: none;
}

.jdm-hero-model:has(.jdm-hero-product) .jdm-css-brass {
  display: none;
}

.jdm-hero-model-rings {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.jdm-hero-product {
  position: absolute;
  inset: 8% 8% 12%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: opacity 0.6s ease;
}

.jdm-hero-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 36px rgba(201, 162, 39, 0.3));
}

.jdm-hero-shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(201, 162, 39, 0.12) 50%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 65%
  );
  animation: jdmShineSweep 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes jdmShineSweep {
  0%, 100% { transform: translateX(-30%); opacity: 0.5; }
  50% { transform: translateX(30%); opacity: 1; }
}

.jdm-hero-model canvas {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  inset: 0;
  z-index: 5;
}

.jdm-hero-model:has(.jdm-hero-product) .jdm-css-brass {
  display: none;
}

/* CSS brass fallback */
.jdm-css-brass {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.jdm-css-brass::before,
.jdm-css-brass::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.jdm-css-brass--home::before,
.jdm-css-brass--turning::before {
  width: 42%;
  height: 62%;
  background: linear-gradient(145deg, #E8C547, #C9A227 40%, #9A7B1A);
  border-radius: 8% 8% 45% 45%;
  box-shadow:
    0 0 40px rgba(201, 162, 39, 0.45),
    inset 0 -8px 20px rgba(0, 0, 0, 0.3);
  animation: jdmBrassFloat 5s ease-in-out infinite;
}

.jdm-css-brass--home::after,
.jdm-css-brass--turning::after {
  width: 14%;
  height: 70%;
  background: linear-gradient(90deg, #9A7B1A, #C9A227, #9A7B1A);
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
  animation: jdmBrassFloat 5s ease-in-out infinite reverse;
}

.jdm-css-brass--milling::before {
  width: 55%;
  height: 38%;
  background: linear-gradient(160deg, #E8C547, #C9A227, #9A7B1A);
  border-radius: 6px;
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
  animation: jdmBrassFloat 6s ease-in-out infinite;
}

.jdm-css-brass--fasteners::before {
  width: 22%;
  height: 22%;
  background: linear-gradient(135deg, #E8C547, #C9A227);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  top: 18%;
  animation: jdmBrassFloat 5s ease-in-out infinite;
}

.jdm-css-brass--fasteners::after {
  width: 10%;
  height: 55%;
  background: linear-gradient(180deg, #C9A227, #9A7B1A);
  border-radius: 3px;
  animation: jdmBrassFloat 5s ease-in-out infinite reverse;
}

.jdm-css-brass--fittings::before,
.jdm-css-brass--brass-inserts::before,
.jdm-css-brass--default::before {
  width: 28%;
  height: 55%;
  background: linear-gradient(180deg, #E8C547, #C9A227 50%, #9A7B1A);
  border-radius: 4px;
  clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 85%, 80% 100%, 20% 100%, 0% 85%, 0% 15%);
  animation: jdmBrassFloat 5s ease-in-out infinite;
}

@keyframes jdmBrassFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

.jdm-hero-deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.jdm-hero-model.is-3d-fallback .jdm-hero-product {
  opacity: 1;
}

.jdm-hero-model.is-3d-fallback .jdm-hero-product img {
  animation: jdmHeroPhotoSpin 14s linear infinite;
}

.jdm-hero-visual:not(.jdm-hero-visual--ring) {
  perspective: 900px;
}

@keyframes jdmHeroPhotoSpin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}

.jdm-brass-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 0 40px rgba(201, 162, 39, 0.15), inset 0 0 30px rgba(201, 162, 39, 0.05);
  animation: jdmBrassRingSpin 20s linear infinite;
}

.jdm-brass-ring-1 {
  width: 92%;
  height: 92%;
  border-color: rgba(201, 162, 39, 0.3);
}

.jdm-brass-ring-2 {
  width: 72%;
  height: 72%;
  animation-direction: reverse;
  animation-duration: 14s;
  border-style: dashed;
  border-color: rgba(201, 162, 39, 0.55);
}

.jdm-brass-ring-3 {
  width: 52%;
  height: 52%;
  animation-duration: 10s;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  border-color: rgba(232, 197, 71, 0.4);
}

@keyframes jdmBrassRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.jdm-hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -0.5rem;
  z-index: 4;
  background: var(--jdm-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--jdm-border);
  border-radius: var(--jdm-radius);
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.jdm-hero-badge-num {
  font-family: var(--jdm-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--jdm-brass-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.jdm-hero-badge-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--jdm-text-muted);
}

.jdm-hero-sub-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 3rem;
  align-items: center;
}

.jdm-hero-aside {
  position: relative;
  height: clamp(280px, 35vh, 420px);
  min-height: 280px;
}

.jdm-hero-aside .jdm-hero-model {
  min-height: 280px;
}

@media (max-width: 991px) {
  .jdm-hero-sub-grid { grid-template-columns: 1fr; }
  .jdm-hero-aside { height: 280px; order: -1; max-width: 400px; margin: 0 auto; width: 100%; }
  .jdm-hero-visual { height: 320px; min-height: 320px; }
  .jdm-hero-model { min-height: 320px; }
}

.jdm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: var(--jdm-text-muted);
  margin-top: 1.5rem;
}

.jdm-breadcrumb a { color: var(--jdm-text-muted); }
.jdm-breadcrumb a:hover { color: var(--jdm-brass); }
.jdm-breadcrumb-sep { color: var(--jdm-steel); }

/* ---- Sections ---- */
.jdm-section {
  position: relative;
  padding: 3rem 0;
}

.jdm-section-light {
  background: #F5F0E8;
  color: #1A1A1E;
}

.jdm-section-light h2,
.jdm-section-light h3,
.jdm-section-light .pbmit-title {
  color: #1A1A1E;
}

.jdm-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.jdm-section-header .eyebrow,
.jdm-premium .pbmit-subtitle,
.jdm-premium .section-label,
.jdm-premium .eyebrow {
  display: inline-block;
  font-family: var(--jdm-font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jdm-brass);
  margin-bottom: 1rem;
}

.jdm-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.jdm-metal-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(10,10,11,0.4) 100%),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
}

/* ---- Tilt Cards ---- */
.jdm-tilt-card {
  position: relative;
  background: var(--jdm-bg-card);
  border: 1px solid var(--jdm-border);
  border-radius: var(--jdm-radius-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}

.jdm-tilt-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}

.jdm-tilt-card:hover {
  border-color: var(--jdm-border-hover);
  box-shadow: var(--jdm-shadow-brass);
}

.jdm-tilt-card:hover::before { opacity: 1; }

.jdm-tilt-glare {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glare-x, 50%) var(--glare-y, 50%), rgba(201,162,39,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}

.jdm-tilt-card:hover .jdm-tilt-glare { opacity: 1; }

/* ---- Trust Row ---- */
.jdm-premium .jdm-trust-row {
  background: var(--jdm-bg-card) !important;
  border-top: 1px solid var(--jdm-border);
  border-bottom: 1px solid var(--jdm-border);
  padding: 1.5rem 0 !important;
}

.jdm-premium .jdm-trust-item {
  color: var(--jdm-text) !important;
}

.jdm-premium .jdm-trust-item .trust-text span {
  color: var(--jdm-text-muted) !important;
}

/* ---- Stats ---- */
.jdm-premium .jdm-stats-section {
  background: var(--jdm-bg-dark) !important;
  border-top: 1px solid var(--jdm-border);
  border-bottom: 1px solid var(--jdm-border);
  padding: 2.5rem 0 !important;
}

.jdm-premium .jdm-stat-item {
  text-align: center;
  padding: 1rem 0.75rem;
  perspective: 800px;
}

.jdm-premium .jdm-stat-number {
  font-family: var(--jdm-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--jdm-brass-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.jdm-premium .jdm-stat-label {
  color: var(--jdm-text-muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.jdm-stat-flip {
  display: inline-block;
  transform-style: preserve-3d;
}

/* ---- Why / Feature Cards ---- */
.jdm-premium .jdm-why-section {
  background: var(--jdm-bg-deep) !important;
  padding: 6rem 0 !important;
}

.jdm-premium .jdm-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.jdm-premium .jdm-why-card {
  background: var(--jdm-bg-card) !important;
  border: 1px solid var(--jdm-border) !important;
  border-radius: var(--jdm-radius-lg) !important;
  padding: 2rem !important;
  transition: all 0.4s ease !important;
  position: relative;
  overflow: hidden;
}

.jdm-premium .jdm-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--jdm-brass) !important;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}

.jdm-premium .jdm-why-card:hover::before {
  transform: scaleY(1);
}

.jdm-premium .jdm-why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(201, 162, 39, 0.12) !important;
  border: 1px solid rgba(201, 162, 39, 0.28);
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
  color: var(--jdm-brass) !important;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.jdm-premium .jdm-why-icon i {
  line-height: 1;
}

.jdm-premium .jdm-why-card:hover .jdm-why-icon {
  background: rgba(201, 162, 39, 0.22) !important;
  border-color: var(--jdm-brass);
  transform: scale(1.06);
}

.jdm-premium .jdm-why-card:hover {
  border-color: var(--jdm-border-hover) !important;
  transform: translateY(-4px);
  box-shadow: var(--jdm-shadow-brass);
}

.jdm-premium .jdm-why-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: var(--jdm-text) !important;
  font-family: var(--jdm-font-display) !important;
}

.jdm-premium .jdm-why-card p {
  color: var(--jdm-text-muted);
  font-size: 15px;
  margin: 0;
}

/* ---- Export Countries ---- */
.jdm-premium .jdm-export-section {
  background: var(--jdm-bg-card) !important;
  padding: 6rem 0 !important;
}

.jdm-premium .jdm-export-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.jdm-premium .jdm-export-section .sub-text {
  text-align: center;
  color: var(--jdm-text-muted);
  margin-bottom: 3rem;
}

.jdm-premium .jdm-countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.jdm-premium .jdm-country-card {
  background: var(--jdm-bg-elevated) !important;
  border: 1px solid var(--jdm-border) !important;
  border-radius: var(--jdm-radius) !important;
  padding: 1rem !important;
  text-align: center;
  transition: all 0.3s;
}

.jdm-premium .jdm-country-card:hover {
  border-color: var(--jdm-brass) !important;
  transform: translateY(-2px);
}

.jdm-premium .jdm-country-name {
  color: var(--jdm-text) !important;
  font-size: 13px;
}

.jdm-premium .jdm-export-note {
  text-align: center;
  color: var(--jdm-text-muted);
  margin-top: 2rem;
}

/* ---- CTA Banner ---- */
.jdm-premium .jdm-cta-banner {
  background: linear-gradient(135deg, #1A1510 0%, #0F0F11 50%, #1A1510 100%) !important;
  border-top: 1px solid var(--jdm-border);
  border-bottom: 1px solid var(--jdm-border);
  padding: 6rem 0 !important;
}

.jdm-premium .jdm-cta-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.jdm-premium .jdm-cta-inner h2 {
  margin-bottom: 1rem;
}

.jdm-premium .jdm-cta-inner h2 span {
  background: var(--jdm-brass-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jdm-premium .jdm-cta-inner p {
  color: var(--jdm-text-muted);
  margin-bottom: 2rem;
}

.jdm-premium .jdm-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.jdm-premium .jdm-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 13px;
  color: var(--jdm-text-muted);
}

/* ---- Expertise / Content Sections ---- */
.jdm-premium .expertise-bg_color {
  background: var(--jdm-bg-dark) !important;
  padding: 3.5rem 0 !important;
}

.jdm-premium .expertise-bg-box {
  padding: 2rem !important;
}

.jdm-premium .expertise-bg-box p,
.jdm-premium .expertise-bg-box .list-group-item {
  color: var(--jdm-text-muted) !important;
  background: transparent !important;
  border: none !important;
}

.jdm-premium .expertise-bg-box .pbmit-element-title {
  color: var(--jdm-text) !important;
  font-size: 1rem !important;
}

.jdm-premium .trunck-img-box {
  min-height: 400px;
  border-radius: var(--jdm-radius-lg);
  border: 1px solid var(--jdm-border);
  margin: 1rem;
  overflow: hidden;
  background: #0a0a0c;
}

.jdm-cnc-video-wrap {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
}

.jdm-cnc-video-slider {
  position: absolute;
  inset: 0;
}

.jdm-cnc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.jdm-cnc-video.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.jdm-cnc-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 11, 0.15) 0%,
    transparent 40%,
    rgba(201, 162, 39, 0.08) 100%
  );
}

.jdm-cnc-video-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.jdm-cnc-video-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.jdm-cnc-video-dots button.is-active {
  background: var(--jdm-brass);
  transform: scale(1.15);
}

.jdm-premium .portfolio-bg-one {
  background: var(--jdm-bg-card) !important;
  padding: 3.5rem 0 !important;
}

/* Industries carousel — equal card sizes, image stays visible on hover */
.jdm-premium .portfolio-bg-one .swiper-slide {
  height: auto;
  display: flex;
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 .pbminfotech-post-content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 !important;
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 .pbmit-featured-wrapper {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  background: var(--jdm-bg-elevated);
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 img,
.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 .jdm-industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1:hover img {
  transform: scale(1.05);
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 .pbminfotech-box-content {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none;
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 .pbminfotech-titlebox {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(transparent, rgba(8, 8, 10, 0.88));
  z-index: 2;
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1:hover .pbminfotech-titlebox {
  background: linear-gradient(transparent, rgba(201, 162, 39, 0.25), rgba(8, 8, 10, 0.92));
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 .pbmit-portfolio-title {
  margin: 0;
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 .pbmit-portfolio-title a {
  color: #fff !important;
  font-size: 12px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1:hover {
  border-color: var(--jdm-brass);
  box-shadow: var(--jdm-shadow-brass);
  transform: translateY(-4px);
}

/* Materials carousel on homepage — match industry card sizing */
.jdm-premium .section-lgt.bg-white .pbmit-portfolio-style-4 .pbmit-featured-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--jdm-bg-elevated);
}

.jdm-premium .section-lgt.bg-white .pbmit-portfolio-style-4 img,
.jdm-premium .section-lgt.bg-white .pbmit-portfolio-style-4 .jdm-material-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.jdm-premium .section-lgt.bg-white .pbmit-portfolio-style-4:hover img {
  transform: scale(1.05);
}

.jdm-premium .section-lgt.bg-white .pbmit-portfolio-style-4 .pbminfotech-box-content {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  width: 100% !important;
  height: auto !important;
  padding: 0.85rem 1rem !important;
  background: linear-gradient(transparent, rgba(8, 8, 10, 0.9)) !important;
}

.jdm-premium .section-lgt.bg-white .pbmit-portfolio-style-4 .pbminfotech-post-content {
  position: relative;
}

.jdm-premium .section-lgt.bg-white .pbmit-portfolio-style-4 .pbmit-portfolio-title a {
  color: #fff !important;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jdm-premium .pbmit-portfolio-style-1,
.jdm-premium .pbmit-portfolio-style-4 {
  border-radius: var(--jdm-radius);
  overflow: hidden;
  border: 1px solid var(--jdm-border);
  transition: all 0.3s;
}

.jdm-premium .pbmit-portfolio-style-1:hover,
.jdm-premium .pbmit-portfolio-style-4:hover {
  border-color: var(--jdm-brass);
  transform: translateY(-4px);
}

.jdm-premium .pbmit-portfolio-title a {
  color: var(--jdm-text) !important;
  font-family: var(--jdm-font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.jdm-premium .pbminfotech-box-content {
  background: var(--jdm-bg-elevated) !important;
  padding: 1rem !important;
}

/* Don't apply block overlay to industry carousel — title uses bottom gradient */
.jdm-premium .portfolio-bg-one .pbmit-portfolio-style-1 .pbminfotech-box-content {
  background: transparent !important;
}

.jdm-premium .section-lgt.bg-white {
  background: var(--jdm-bg-dark) !important;
  padding: 3rem 0 2.5rem !important;
}

.jdm-premium .section-lgt.bg-white .pbmit-heading-subheading,
.jdm-premium .section-lgt.bg-white .pbmit-heading-subheading-style-1 {
  margin-bottom: 1.25rem !important;
}

.jdm-premium .section-lgt.bg-white > .container-fluid {
  margin-top: 0;
}

/* Materials carousel — no orphan arrow buttons */
.jdm-premium .section-lgt.bg-white .swiper-button-prev,
.jdm-premium .section-lgt.bg-white .swiper-button-next,
.jdm-premium .section-lgt.bg-white .swiper-buttons {
  display: none !important;
}

/* ---- Product Gallery ---- */
.jdm-premium .pbmit-portfolio-style-2 {
  border-radius: var(--jdm-radius);
  overflow: hidden;
  border: 1px solid var(--jdm-border);
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.jdm-premium .pbmit-portfolio-style-2:hover {
  border-color: var(--jdm-brass);
  box-shadow: var(--jdm-shadow-brass);
}

.jdm-premium .pbmit-portfolio-style-2 img {
  transition: transform 0.5s ease;
}

.jdm-premium .pbmit-portfolio-style-2:hover img {
  transform: scale(1.05);
}

.jdm-premium .pbmit-featured-wrapper {
  overflow: hidden;
}

/* ---- Service / Product Pages ---- */
.jdm-premium .service-details h4.jdm-spec-heading,
.jdm-premium .service-details > div > h4 {
  color: var(--jdm-brass) !important;
  font-family: var(--jdm-font-display) !important;
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.jdm-premium .service-details p {
  color: var(--jdm-text-muted);
}

.jdm-premium .jdm-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
}

.jdm-premium .jdm-spec-table th,
.jdm-premium .jdm-spec-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--jdm-border);
  text-align: left;
}

.jdm-premium .jdm-spec-table th {
  background: var(--jdm-bg-elevated);
  color: var(--jdm-brass);
  font-family: var(--jdm-font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.jdm-premium .jdm-spec-table td {
  color: var(--jdm-text-muted);
  background: var(--jdm-bg-card);
}

.jdm-premium .jdm-spec-table tr:hover td {
  background: var(--jdm-bg-elevated);
}

.jdm-premium .service-sidebar {
  position: sticky;
  top: 100px;
}

.jdm-premium .service-sidebar h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--jdm-brass);
}

.jdm-premium .all-post-list {
  background: var(--jdm-bg-card) !important;
  border: 1px solid var(--jdm-border);
  border-radius: var(--jdm-radius);
  overflow: hidden;
}

.jdm-premium .all-post-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jdm-premium .all-post-list a {
  display: block;
  padding: 0.85rem 1.25rem;
  color: var(--jdm-text-muted);
  border-bottom: 1px solid var(--jdm-border);
  font-size: 14px;
  transition: all 0.2s;
}

.jdm-premium .all-post-list a:hover,
.jdm-premium .all-post-list .post-active a {
  background: rgba(201, 162, 39, 0.08);
  color: var(--jdm-brass);
  padding-left: 1.5rem;
}

.jdm-premium .pbmit-bg-color-global {
  background: var(--jdm-bg-card) !important;
}

/* ---- Horizontal Scroll Gallery ---- */
.jdm-hscroll {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2rem 0 2.5rem;
  scroll-snap-type: x proximity;
  scroll-padding-inline: clamp(1rem, 4vw, 3rem);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--jdm-brass) var(--jdm-bg-elevated);
}

.jdm-hscroll::-webkit-scrollbar {
  height: 6px;
}

.jdm-hscroll::-webkit-scrollbar-thumb {
  background: var(--jdm-brass);
  border-radius: 3px;
}

.jdm-hscroll-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.jdm-hscroll-track::after {
  content: '';
  flex: 0 0 clamp(1rem, 4vw, 3rem);
}

.jdm-hscroll-item {
  flex: 0 0 clamp(260px, 28vw, 340px);
  border-radius: var(--jdm-radius-lg);
  overflow: hidden;
  border: 1px solid var(--jdm-border);
  scroll-snap-align: start;
}

.jdm-hscroll-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* About Us — stats counters (prevent number/label overlap) */
.jdm-premium .about-us_inner_single .pbminfotech-ele-fid-style-1 {
  margin-bottom: 0;
}

.jdm-premium .about-us_inner_single .pbminfotech-ele-fid-style-1 .pbmit-fld-wrap {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.jdm-premium .about-us_inner_single .pbminfotech-ele-fid-style-1 .pbmit-fid-inner {
  font-size: clamp(2rem, 5vw, 2.75rem) !important;
  line-height: 1 !important;
  color: var(--jdm-brass) !important;
  white-space: nowrap;
}

.jdm-premium .about-us_inner_single .pbminfotech-ele-fid-style-1 .pbmit-fid-title {
  margin-left: 0 !important;
  font-size: 0.9rem !important;
  line-height: 1.3 !important;
  color: var(--jdm-text-muted) !important;
}

.jdm-premium .about-us_inner_single .pbminfotech-ele-fid-style-1 sup,
.jdm-premium .about-us_inner_single .pbminfotech-ele-fid-style-1 sub {
  position: static !important;
  font-size: 0.55em !important;
  vertical-align: super;
}

.jdm-premium .about-us_inner_single .row.mb-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.25rem;
}

/* ---- Contact page (direct contact — no form) ---- */
.jdm-premium .jdm-contact-page {
  padding: 3rem 0 4rem;
}

.jdm-premium .jdm-contact-page > .container > .row > .col-lg-5 p {
  color: var(--jdm-text-muted);
  max-width: 42ch;
  line-height: 1.6;
}

.jdm-contact-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--jdm-border);
}

.jdm-contact-list li {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-bottom: 1px solid var(--jdm-border);
}

.jdm-contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--jdm-text-muted);
}

.jdm-contact-list a {
  color: var(--jdm-text);
  text-decoration: none;
  font-size: 1rem;
}

.jdm-contact-list a:hover {
  color: var(--jdm-brass);
  text-decoration: underline;
}

.jdm-contact-value {
  color: var(--jdm-text);
  font-size: 1rem;
  line-height: 1.5;
}

.jdm-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.jdm-contact-map {
  border-radius: var(--jdm-radius);
  overflow: hidden;
  border: 1px solid var(--jdm-border);
  aspect-ratio: 16 / 9;
  min-height: 260px;
}

.jdm-contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .jdm-contact-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* ---- Contact Form ---- */
.jdm-premium .contact-section {
  padding: 4rem 0 6rem;
}

.jdm-premium .jdm-float-field {
  position: relative;
  margin-bottom: 1.5rem;
}

.jdm-premium .jdm-float-field input,
.jdm-premium .jdm-float-field textarea,
.jdm-premium .contact-form .form-control {
  width: 100%;
  padding: 1.25rem 1rem 0.75rem;
  background: var(--jdm-bg-card) !important;
  border: 1px solid var(--jdm-border) !important;
  border-radius: var(--jdm-radius) !important;
  color: var(--jdm-text) !important;
  font-family: var(--jdm-font-body);
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.jdm-premium .jdm-float-field label,
.jdm-premium .contact-form .input-group {
  position: relative;
}

.jdm-premium .jdm-float-field label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--jdm-text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: all 0.25s;
}

.jdm-premium .jdm-float-field textarea + label {
  top: 1.25rem;
  transform: none;
}

.jdm-premium .jdm-float-field input:focus,
.jdm-premium .jdm-float-field textarea:focus,
.jdm-premium .contact-form .form-control:focus {
  border-color: var(--jdm-brass) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12) !important;
}

.jdm-premium .jdm-float-field input:focus + label,
.jdm-premium .jdm-float-field input:not(:placeholder-shown) + label,
.jdm-premium .jdm-float-field textarea:focus + label,
.jdm-premium .jdm-float-field textarea:not(:placeholder-shown) + label {
  top: 0.5rem;
  transform: none;
  font-size: 11px;
  color: var(--jdm-brass);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.jdm-premium .contact-form {
  background: var(--jdm-bg-card);
  border: 1px solid var(--jdm-border);
  border-radius: var(--jdm-radius-lg);
  padding: 2.5rem;
}

.jdm-premium .contact-form h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.jdm-premium .contact-form .input-group i {
  display: none;
}

.jdm-premium .contact-form .pbmit-btn {
  background: var(--jdm-brass-gradient) !important;
  border: none !important;
  border-radius: 100px !important;
  color: var(--jdm-bg-deep) !important;
  padding: 1rem 2.5rem !important;
  font-family: var(--jdm-font-display) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

/* ---- Premium Footer ---- */
.jdm-footer {
  background: var(--jdm-bg-dark);
  border-top: 1px solid var(--jdm-border);
  padding-top: 5rem;
}

.jdm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

@media (max-width: 991px) {
  .jdm-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
  .jdm-footer-grid { grid-template-columns: 1fr; }
}

.jdm-footer-brand img {
  height: 64px;
  width: auto;
  max-width: 220px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.jdm-footer-brand p {
  color: var(--jdm-text-muted);
  font-size: 15px;
  max-width: 360px;
}

.jdm-footer-col h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--jdm-brass);
  margin-bottom: 1.5rem;
}

.jdm-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jdm-footer-col li {
  margin-bottom: 0.65rem;
}

.jdm-footer-col a {
  color: var(--jdm-text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.jdm-footer-col a:hover {
  color: var(--jdm-brass);
}

.jdm-footer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--jdm-border);
  border-bottom: 1px solid var(--jdm-border);
}

.jdm-footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--jdm-bg-card);
  border: 1px solid var(--jdm-border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--jdm-text-muted);
}

.jdm-footer-cert-badge strong {
  color: var(--jdm-brass);
}

.jdm-footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  color: var(--jdm-text-muted);
  font-size: 13px;
}

.jdm-footer-bottom a {
  color: var(--jdm-brass);
  /* Underline so the link is distinguishable without relying on colour (WCAG 1.4.1) */
  text-decoration: underline;
}

/* Hide old footer when premium footer present */
.jdm-premium .site-footer:not(.jdm-footer-legacy) {
  display: none !important;
}

/* ---- Floating Quote CTA ---- */
.jdm-quote-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 9998;
}

.jdm-quote-float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: var(--jdm-brass-gradient);
  border: none;
  border-radius: 100px;
  color: var(--jdm-bg-deep);
  font-family: var(--jdm-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.jdm-quote-float-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.5);
  color: var(--jdm-bg-deep);
}

/* ---- Upgrades overrides ---- */
.jdm-premium .jdm-sticky-bar {
  background: var(--jdm-glass) !important;
  backdrop-filter: blur(20px) !important;
  border-top: 1px solid var(--jdm-border) !important;
}

.jdm-premium .jdm-modal-box {
  background: var(--jdm-bg-card) !important;
  border: 1px solid var(--jdm-border) !important;
  color: var(--jdm-text) !important;
}

.jdm-premium .jdm-form-group input,
.jdm-premium .jdm-form-group select,
.jdm-premium .jdm-form-group textarea {
  background: var(--jdm-bg-elevated) !important;
  border-color: var(--jdm-border) !important;
  color: var(--jdm-text) !important;
}

.jdm-premium .jdm-scroll-top {
  background: var(--jdm-bg-card) !important;
  border: 1px solid var(--jdm-border) !important;
  color: var(--jdm-brass) !important;
}

.jdm-premium .pbmit-btn {
  background: var(--jdm-brass-gradient) !important;
  border: none !important;
  border-radius: 100px !important;
  color: var(--jdm-bg-deep) !important;
  padding: 0.85rem 1.75rem !important;
  font-family: var(--jdm-font-display) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
}

.jdm-premium .pbmit-btn-outline {
  background: transparent !important;
  border: 1px solid var(--jdm-brass) !important;
  color: var(--jdm-brass) !important;
}

/* ---- Scroll Reveal ---- */
.jdm-reveal {
  opacity: 0;
  transform: translateY(40px) rotateX(8deg);
  transform-origin: center top;
}

.jdm-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.jdm-parallax-layer {
  will-change: transform;
}

/* ---- Capability page ---- */
.jdm-premium .offer-four_section {
  background: var(--jdm-bg-dark) !important;
  padding: 2.5rem 0 !important;
  margin-top: 0 !important;
  overflow: visible !important;
}

.jdm-premium .offer-four_section p {
  color: var(--jdm-text-muted);
}

.jdm-premium .offer-four_section .row {
  align-items: stretch;
}

.jdm-premium .offer-left-box {
  position: relative;
  margin-right: 0 !important;
  background: transparent !important;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--jdm-radius-lg);
  border: 1px solid var(--jdm-border);
}

.jdm-premium .offer-left-box.jdm-cap-offer-card {
  min-height: 0;
}

.jdm-premium .jdm-cap-hero-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.jdm-premium .offer-left-box .pbmit-ihbox-style-14 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.jdm-premium .offer-left-box .pbmit-ihbox-style-14 .pbmit-ihbox-box {
  background: linear-gradient(transparent, rgba(8, 8, 10, 0.95)) !important;
  padding: 2rem 1.75rem !important;
}

.jdm-premium .offer-left-box .pbmit-ihbox-style-14 .pbmit-element-title,
.jdm-premium .offer-left-box .pbmit-ihbox-style-14 .pbmit-element-title a {
  color: var(--jdm-text) !important;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem) !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  margin: 0 !important;
}

.jdm-premium .offer-left-box .pbmit-ihbox-style-14 i {
  color: var(--jdm-brass) !important;
}

.jdm-premium .offer-bg-right-box {
  padding: clamp(1.5rem, 3vw, 2rem) !important;
  margin-left: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--jdm-bg-card) !important;
  border: 1px solid var(--jdm-border);
  border-radius: var(--jdm-radius-lg);
}

.jdm-premium .offer-bg-right-box.jdm-cap-offer-full {
  border-radius: var(--jdm-radius-lg);
  border-left: 1px solid var(--jdm-border);
}

.jdm-premium .jdm-cap-lead {
  color: var(--jdm-brass);
  font-family: var(--jdm-font-display);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

@media (min-width: 1200px) {
  .jdm-premium .offer-bg-right-box.jdm-cap-offer-full .jdm-cap-lead {
    margin-left: auto;
    text-align: right;
  }
}

.jdm-premium .offer-bg-right-box::before {
  display: none !important;
}

@media (min-width: 1200px) {
  .jdm-premium .offer-bg-right-box:not(.jdm-cap-offer-full) {
    border-left: none;
    border-radius: 0 var(--jdm-radius-lg) var(--jdm-radius-lg) 0;
  }

  .jdm-premium .offer-left-box {
    border-radius: var(--jdm-radius-lg) 0 0 var(--jdm-radius-lg);
    border-right: none;
  }
}

.jdm-premium .offer-four_section .pbmit-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem) !important;
  line-height: 1.15 !important;
  color: var(--jdm-text) !important;
}

.jdm-premium .offer-four_section .pbmit-subtitle {
  color: var(--jdm-brass) !important;
}

.jdm-premium .offer-bg-right-box .offer-ihbox-box {
  margin-top: 1.25rem !important;
  margin-bottom: 0.5rem !important;
}

.jdm-premium .pbmit-ihbox-style-15 .pbmit-ihbox-box {
  background: var(--jdm-bg-elevated) !important;
  border: 1px solid var(--jdm-border) !important;
  border-radius: var(--jdm-radius) !important;
  padding: 1rem 1.15rem !important;
  margin-bottom: 0.75rem !important;
}

.jdm-premium .pbmit-ihbox-style-15 .pbmit-element-title {
  font-size: 0.95rem !important;
  line-height: 1.3 !important;
  color: var(--jdm-text) !important;
  margin: 0 !important;
}

.jdm-premium .pbmit-ihbox-style-15 .pbmit-ihbox-headingicon {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.jdm-premium .pbmit-ihbox-style-15 .pbmit-ihbox-icon-wrapper,
.jdm-premium .pbmit-ihbox-style-15 i {
  color: var(--jdm-brass) !important;
  font-size: 1.35rem !important;
}

.jdm-premium .jdm-cap-slide-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.jdm-premium .pbmit-portfolio-style-4 {
  background: var(--jdm-bg-card);
  height: 100%;
}

.jdm-premium .pbmit-portfolio-style-4 .pbmit-featured-wrapper {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.jdm-premium .pbmit-portfolio-style-4 .pbminfotech-box-content {
  padding: 1rem 1.15rem;
  background: var(--jdm-bg-card);
}

.jdm-premium .pbmit-portfolio-style-4 .pbmit-portfolio-title,
.jdm-premium .pbmit-portfolio-style-4 .pbmit-portfolio-title a {
  color: var(--jdm-text) !important;
  font-size: 0.95rem !important;
}

.jdm-premium .pbmit-portfolio-style-4 .pbmit-port-cat a {
  color: var(--jdm-brass) !important;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.jdm-premium .section-md {
  padding: 3rem 0 !important;
  background: var(--jdm-bg-dark) !important;
}

.jdm-premium .section-md .pbmit-title {
  color: var(--jdm-text) !important;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem) !important;
  line-height: 1.15 !important;
}

.jdm-premium .section-md .pbmit-subtitle {
  color: var(--jdm-brass) !important;
}

.jdm-premium .pbmit-portfolio-style-2 .pbmit-image-wrapper,
.jdm-premium .pbmit-portfolio-style-2 .pbmit-featured-wrapper {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.jdm-premium .pbmit-portfolio-style-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jdm-premium .pbmit-portfolio-style-2 .pbmit-portfolio-title,
.jdm-premium .pbmit-portfolio-style-2 .pbmit-portfolio-title a {
  color: var(--jdm-text) !important;
}

.jdm-premium .pbmit-portfolio-style-2 .pbminfotech-overlay {
  background: linear-gradient(transparent 35%, rgba(8, 8, 10, 0.88)) !important;
}

.jdm-premium .about-six-bg.jdm-cap-about {
  background-color: var(--jdm-bg-deep) !important;
  padding: 3rem 0 !important;
  margin-top: 0 !important;
}

.jdm-premium .about-six-bg.jdm-cap-about p {
  color: var(--jdm-text-muted) !important;
  padding-right: 0 !important;
}

.jdm-premium .about-six-bg .about-six-bg-box {
  min-height: 300px;
  padding: 0 !important;
  background-image: url('../images/homepage-6/bg/new-map-02.png') !important;
  background-position: center bottom !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  border-radius: var(--jdm-radius-lg);
  border: 1px solid var(--jdm-border);
  opacity: 0.85;
}

.jdm-premium .about-six-bg .progressbar-style-1 {
  padding-right: 0 !important;
}

.jdm-premium .about-six-bg .progress-label {
  color: var(--jdm-text-muted) !important;
}

.jdm-premium .about-six-bg .progress {
  background: var(--jdm-bg-elevated) !important;
}

.jdm-premium .about-six-bg .progress-bar {
  background: var(--jdm-brass-gradient) !important;
}

.jdm-premium .about-six-bg .progress-percent {
  color: var(--jdm-brass) !important;
}

/* ---- Quality Control ---- */
.jdm-premium .about-us-section,
.jdm-premium .ihbox-section {
  background: var(--jdm-bg-deep) !important;
}

.jdm-premium .pbmit-ihbox-style-17 .pbmit-element-title {
  color: var(--jdm-text) !important;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  .jdm-premium *,
  .jdm-premium *::before,
  .jdm-premium *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .jdm-hero-ring {
    animation: none !important;
  }
  .jdm-reveal {
    opacity: 1;
    transform: none;
  }
  .jdm-grain { display: none; }
  .jdm-hero-product {
    transform: none !important;
  }
  .jdm-hero-product img {
    transform: none;
  }
}

/* ---- Lightbox ---- */
.jdm-premium .mfp-bg { background: rgba(10, 10, 11, 0.95) !important; }
.jdm-premium .mfp-image-holder .mfp-content img {
  border: 1px solid var(--jdm-border);
  border-radius: var(--jdm-radius);
}

/* Particle canvas ambient */
.jdm-particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   UPGRADES.CSS FULL OVERRIDE — brass/dark theme
   ============================================================ */
.jdm-premium .jdm-announce-bar {
  background: linear-gradient(90deg, #0F0F11, #1A1510, #0F0F11) !important;
}

.jdm-premium .jdm-announce-bar a {
  color: var(--jdm-brass) !important;
}

.jdm-premium .jdm-pulse {
  background: var(--jdm-brass) !important;
}

.jdm-premium .jdm-trust-row {
  background: var(--jdm-bg-card) !important;
  border-color: var(--jdm-border) !important;
}

.jdm-premium .jdm-trust-item {
  border-color: var(--jdm-border) !important;
}

.jdm-premium .jdm-trust-item .trust-text {
  color: var(--jdm-text) !important;
  font-family: var(--jdm-font-display) !important;
}

.jdm-premium .jdm-trust-item .trust-text span {
  color: var(--jdm-text-muted) !important;
}

.jdm-premium .trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--jdm-border);
  font-size: 0 !important;
  color: transparent !important;
}

.jdm-premium .trust-icon::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jdm-brass);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.6);
}

.jdm-premium .jdm-stats-section::before,
.jdm-premium .jdm-stats-section::after {
  display: none !important;
}

.jdm-premium .jdm-stat-item:not(:last-child)::after {
  background: var(--jdm-border) !important;
}

.jdm-premium .jdm-export-section h2,
.jdm-premium .jdm-section-header h2 {
  color: var(--jdm-text) !important;
  font-family: var(--jdm-font-display) !important;
}

.jdm-premium .jdm-export-section .section-label,
.jdm-premium .jdm-section-header .eyebrow {
  color: var(--jdm-brass) !important;
}

.jdm-premium .jdm-cta-banner::before,
.jdm-premium .jdm-cta-banner::after {
  background: rgba(201, 162, 39, 0.06) !important;
}

.jdm-premium .jdm-cta-inner .cta-eyebrow {
  background: rgba(201, 162, 39, 0.12) !important;
  color: var(--jdm-brass) !important;
  border-color: var(--jdm-border) !important;
}

.jdm-premium .jdm-cta-inner h2 {
  color: var(--jdm-text) !important;
}

.jdm-premium .jdm-modal-header {
  background: linear-gradient(135deg, #1A1510, #0F0F11) !important;
  border-bottom: 1px solid var(--jdm-border);
}

.jdm-premium .jdm-modal-header h3 {
  font-family: var(--jdm-font-display) !important;
}

.jdm-premium .jdm-form-submit {
  background: var(--jdm-brass-gradient) !important;
  color: var(--jdm-bg-deep) !important;
  border-radius: 100px !important;
}

.jdm-premium .jdm-form-submit:hover {
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.35) !important;
}

.jdm-premium .jdm-form-group label {
  color: var(--jdm-text-muted) !important;
}

.jdm-premium .jdm-form-group input:focus,
.jdm-premium .jdm-form-group select:focus,
.jdm-premium .jdm-form-group textarea:focus {
  border-color: var(--jdm-brass) !important;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12) !important;
}

.jdm-premium .jdm-sticky-bar {
  background: var(--jdm-glass) !important;
  color: var(--jdm-text) !important;
}

.jdm-premium .jdm-sticky-bar .sticky-text strong {
  color: var(--jdm-brass) !important;
}

.jdm-premium .jdm-sticky-btn.orange {
  background: var(--jdm-brass-gradient) !important;
  color: var(--jdm-bg-deep) !important;
  border-radius: 100px !important;
}

.jdm-premium .jdm-scroll-top {
  left: 24px !important;
  right: auto !important;
  bottom: 28px !important;
}

.jdm-premium .jdm-scroll-top:hover {
  background: var(--jdm-brass) !important;
  color: var(--jdm-bg-deep) !important;
}

.jdm-premium .jdm-whatsapp-float {
  display: none !important;
}

.jdm-premium .jdm-quote-float {
  bottom: 28px !important;
  right: 100px !important;
}

.jdm-premium .jdm-spec-table thead {
  background: var(--jdm-bg-elevated) !important;
}

.jdm-premium .jdm-spec-table thead th {
  color: var(--jdm-brass) !important;
  background: transparent !important;
}

.jdm-premium .jdm-spec-table tbody tr:nth-child(even) td,
.jdm-premium .jdm-spec-table tbody tr:nth-child(odd) td {
  background: var(--jdm-bg-card) !important;
}

.jdm-premium .jdm-spec-table tbody tr:hover td {
  background: var(--jdm-bg-elevated) !important;
}

.jdm-premium .jdm-inline-cta {
  background: var(--jdm-bg-card) !important;
  border-radius: var(--jdm-radius-lg) !important;
  border: 1px solid var(--jdm-border) !important;
  border-left: 3px solid var(--jdm-brass) !important;
}

.jdm-premium .jdm-inline-cta-title {
  color: var(--jdm-text) !important;
  font-family: var(--jdm-font-display) !important;
  font-size: 1.15rem !important;
  margin-bottom: 8px !important;
}

.jdm-premium .jdm-inline-cta-text {
  color: var(--jdm-text-muted) !important;
  margin: 0 !important;
  font-size: 14px !important;
}

.jdm-premium .page-wrapper {
  padding-top: 0;
}

.jdm-premium .pbmit-bg-color-light {
  background: var(--jdm-bg-deep) !important;
}

/* ---- Legacy template bleed fixes (white/orange old theme) ---- */
.jdm-premium .expertise-bg-box::before,
.jdm-premium .expertise-bg_color::after,
.jdm-premium .trunck-img-box::before {
  display: none !important;
}

.jdm-premium .expertise-bg_color {
  background: var(--jdm-bg-dark) !important;
}

.jdm-premium .expertise-bg-box {
  background: transparent !important;
}

.jdm-premium .section-lgt,
.jdm-premium .section-lgt.bg-white,
.jdm-premium .bg-white {
  background: var(--jdm-bg-dark) !important;
}

.jdm-premium .pbmit-title,
.jdm-premium .pbmit-title.text-white,
.jdm-premium h2.pbmit-title {
  color: var(--jdm-text) !important;
}

.jdm-premium .pbmit-subtitle.text-white {
  color: var(--jdm-brass) !important;
}

.jdm-premium .pbmit-ihbox-style-17 .pbmit-ihbox-icon-wrapper,
.jdm-premium .pbmit-ihbox-style-17 i {
  color: var(--jdm-brass) !important;
}

.jdm-premium .pbmit-ihbox-style-17 .pbmit-ihbox-box {
  background: transparent !important;
}

.jdm-premium .list-group-item i {
  color: var(--jdm-brass) !important;
}

.jdm-premium .jdm-btn-primary,
.jdm-premium .jdm-btn-nav:hover {
  background: var(--jdm-brass-gradient) !important;
  color: var(--jdm-bg-deep) !important;
  border-color: transparent !important;
}

.jdm-premium .jdm-btn-nav {
  border-color: var(--jdm-brass) !important;
  color: var(--jdm-brass) !important;
}

.jdm-premium .swiper-button-next,
.jdm-premium .swiper-button-prev {
  color: var(--jdm-brass) !important;
}

/* ---- Form accessibility & spam honeypot ---- */
.jdm-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.jdm-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
