/* ===================================================
   WIMAC EX-PROOF — DESIGN SYSTEM v3
   Light pro header + wimac.fr hero + mixed sections
   =================================================== */

:root {
  --dark-bg: #0d0d0d;
  --dark-card: #161616;
  --dark-elevated: #1f1f1f;
  --dark-border: #2a2a2a;
  --dark-border-light: #353535;
  --dark-text: #ffffff;
  --dark-text-muted: #9a9a9a;
  --dark-text-dim: #6a6a6a;

  --light-bg: #ffffff;
  --light-bg-alt: #f6f6f7;
  --light-card: #ffffff;
  --light-border: #e5e5e7;
  --light-border-strong: #d1d1d3;
  --light-text: #0d0d0d;
  --light-text-muted: #5a5a60;
  --light-text-dim: #8a8a90;

  --accent: #ffe900;
  --accent-hover: #fff04d;
  --accent-deep: #f0d800;

  --header-height: 76px;
  --utility-height: 38px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--light-bg);
  color: var(--light-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ============================================================
   HEADER — Refined industrial header
   ============================================================ */
.wm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--light-bg);
  transition: box-shadow 0.3s;
}
.wm-header.is-scrolled {
  box-shadow: 0 1px 0 var(--light-border), 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* ===== UTILITY BAR (dark) ===== */
.wm-header__utility {
  background: #0a0a0a;
  height: 40px;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 233, 0, 0.18);
}
.wm-header__utility-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wm-header__utility-left,
.wm-header__utility-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.wm-header__utility-right { gap: 18px; }

.wm-header__util-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.wm-header__util-item:not(.wm-header__util-item--static):hover { color: var(--accent); }
.wm-header__util-item i {
  font-size: 12px;
  color: var(--accent);
}
.wm-header__util-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.wm-header__cert-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.wm-header__cert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 233, 0, 0.6);
  animation: certPulse 2.4s ease-in-out infinite;
}
@keyframes certPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 233, 0, 0.6); }
  50% { box-shadow: 0 0 14px rgba(255, 233, 0, 0.9); }
}

.wm-header__lang-wrap { position: relative; }
.wm-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px 4px 6px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.wm-header__lang-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.wm-header__lang i { font-size: 9px; color: var(--accent); }
.wm-header__lang:hover {
  background: rgba(255, 233, 0, 0.1);
  color: var(--accent);
  border-color: rgba(255, 233, 0, 0.25);
}

/* Dropdown menu */
.wm-header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.wm-header__lang-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wm-header__lang-item {
  display: grid;
  grid-template-columns: 24px 1fr 14px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.wm-header__lang-item img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.wm-header__lang-item:hover {
  background: rgba(255, 233, 0, 0.08);
  color: var(--accent);
}
.wm-header__lang-item.is-active {
  color: var(--accent);
}
.wm-header__lang-item i {
  font-size: 11px;
  color: var(--accent);
}

/* ===== MAIN BAR ===== */
.wm-header__main {
  background: var(--light-bg);
  height: 88px;
  position: relative;
}
.wm-header__main::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e0e0e2 20%, #e0e0e2 80%, transparent);
}
.wm-header__main-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}

/* LOGO */
.wm-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.wm-header__logo-img {
  height: 44px;
  width: auto;
}

/* NAV */
.wm-header__nav {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-self: center;
}
.wm-header__nav-item {
  position: relative;
}
.wm-header__nav-link {
  padding: 12px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: #1a1a1e;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color 0.15s;
}
.wm-header__nav-link:hover { color: #0a0a0a; }
.wm-header__nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.25s ease, left 0.25s ease;
}
.wm-header__nav-link:hover::after,
.wm-header__nav-link.active::after {
  width: calc(100% - 36px);
  left: 18px;
}
.wm-header__nav-caret {
  font-size: 10px;
  color: #999;
  transition: transform 0.2s;
}
.wm-header__nav-link:hover .wm-header__nav-caret { transform: rotate(180deg); }

/* DROPDOWN — dark panel, sharp corners */
.wm-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 340px;
  background: #0a0a0a;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 110;
  margin-top: 8px;
}
.wm-header__dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 36px;
  width: 14px;
  height: 14px;
  background: #0a0a0a;
  transform: rotate(45deg);
}
.wm-header__nav-item--has-dropdown:hover .wm-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wm-header__dropdown a {
  display: grid;
  grid-template-columns: 38px 1fr 18px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  position: relative;
  transition: background 0.2s ease, padding 0.2s ease;
}
.wm-header__dropdown a + a { margin-top: 2px; }
.wm-header__dropdown a:hover {
  background: rgba(255, 233, 0, 0.08);
  padding-left: 22px;
}

.wm-header__dd-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.wm-header__dropdown a:hover .wm-header__dd-num { opacity: 1; }

.wm-header__dd-title {
  font-size: 14.5px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.005em;
  transition: color 0.2s;
}
.wm-header__dropdown a:hover .wm-header__dd-title { color: var(--accent); }

.wm-header__dd-arrow {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  transform: translateX(-4px);
  opacity: 0;
  transition: opacity 0.2s, transform 0.25s ease, color 0.2s;
}
.wm-header__dropdown a:hover .wm-header__dd-arrow {
  color: var(--accent);
  opacity: 1;
  transform: translateX(0);
}

/* RIGHT SIDE */
.wm-header__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.wm-header__divider {
  width: 1px;
  height: 28px;
  background: #e8e8ea;
}
.wm-header__icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1a1a1e;
  background: transparent;
  border: 1px solid #e8e8ea;
  transition: all 0.2s;
}
.wm-header__icon-btn:hover {
  background: #0a0a0a;
  color: var(--accent);
  border-color: #0a0a0a;
  transform: translateY(-1px);
}

.wm-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px 13px 24px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  transition: padding 0.2s;
  position: relative;
  overflow: hidden;
}
.wm-header__cta::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
  transition: width 0.28s ease;
}
.wm-header__cta:hover { padding-left: 28px; }
.wm-header__cta:hover::before { width: 100%; }
.wm-header__cta span,
.wm-header__cta i {
  position: relative;
  transition: color 0.25s;
}
.wm-header__cta:hover span,
.wm-header__cta:hover i { color: #0a0a0a; }
.wm-header__cta i { font-size: 12px; }

/* BURGER */
.wm-header__burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s;
}
.wm-header__burger:hover { background: var(--light-bg-alt); }
.wm-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--light-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.wm-header__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wm-header__burger.is-active span:nth-child(2) { opacity: 0; }
.wm-header__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   HERO — Full-width background image with left-aligned text
   ============================================================ */
.wm-hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
}

/* Background image layer */
.wm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 45%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.2) 100%),
    url('../img/home/hero-bg.jpg') center right / cover no-repeat;
}

/* Film grain */
.wm-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Bottom yellow accent line */
.wm-hero__bottomline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 233, 0, 0.45), transparent);
  z-index: 4;
}

/* Inner wrapper */
.wm-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 100px 0 110px;
}

/* Content column — left-aligned, max 580px wide */
.wm-hero__content {
  max-width: 580px;
  text-align: left;
}

/* Eyebrow pill — small black rounded badge with yellow icon */
.wm-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--accent);
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.wm-hero__eyebrow i {
  font-size: 12px;
  color: var(--accent);
}

/* Title — sized to fit two lines cleanly */
.wm-hero__title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--dark-text);
  margin: 0 0 24px;
}
.wm-hero__title-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.wm-hero__title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 4px;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 2px;
}

/* Description */
.wm-hero__desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0 0 36px;
}
.wm-hero__desc strong { color: var(--dark-text); font-weight: 600; }

/* Actions */
.wm-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.wm-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 8px;
  transition: all 0.25s;
}
.wm-hero__btn--primary {
  background: var(--accent);
  color: var(--light-text);
  box-shadow: 0 10px 32px rgba(255, 233, 0, 0.2);
}
.wm-hero__btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(255, 233, 0, 0.35);
}
.wm-hero__btn--primary i { transition: transform 0.2s; }
.wm-hero__btn--primary:hover i { transform: translateX(4px); }
.wm-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--dark-text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.wm-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .wm-hero__bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.85) 100%),
      url('../img/home/hero-bg.jpg') center center / cover no-repeat;
  }
}
@media (max-width: 768px) {
  .wm-hero { min-height: 560px; }
  .wm-hero__inner { padding: 64px 0 80px; }
  .wm-hero__content { max-width: 100%; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.ex-section { padding: 100px 0; }
.ex-section--light { background: var(--light-bg); color: var(--light-text); }
.ex-section--light-alt { background: var(--light-bg-alt); color: var(--light-text); }
.ex-section--dark { background: var(--dark-bg); color: var(--dark-text); }
.ex-section--dark-alt { background: var(--dark-card); color: var(--dark-text); }

.ex-section__header { text-align: center; margin-bottom: 64px; }
.ex-section__tag {
  display: inline-block;
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.ex-section--dark .ex-section__tag,
.ex-section--dark-alt .ex-section__tag { color: var(--accent); }

.ex-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.ex-section__title span {
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ex-section--dark .ex-section__title span,
.ex-section--dark-alt .ex-section__title span {
  background: none;
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
}
.ex-section__desc {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  color: var(--light-text-muted);
}
.ex-section--dark .ex-section__desc,
.ex-section--dark-alt .ex-section__desc { color: var(--dark-text-muted); }

/* ============================================================
   PAGE HEADER (for inner pages — dark theme)
   ============================================================ */
.ex-page-header {
  padding: 80px 0 64px;
  background: var(--dark-bg);
  color: var(--dark-text);
  border-bottom: 1px solid var(--dark-border);
  position: relative;
  overflow: hidden;
}
.ex-page-header::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 233, 0, 0.15), transparent 65%);
  pointer-events: none;
}
.ex-page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 233, 0, 0.4), transparent);
  pointer-events: none;
}
.ex-page-header > .container { position: relative; }
.ex-page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--dark-text);
}
.ex-page-header h1 span {
  color: var(--accent);
}
.ex-page-header p {
  color: var(--dark-text-muted);
  font-size: 1.1rem;
  max-width: 720px;
}

/* ============================================================
   BUTTONS (utility class)
   ============================================================ */
.ex-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}
.ex-btn--primary { background: var(--light-text); color: var(--light-bg); }
.ex-btn--primary:hover { background: var(--accent); color: var(--light-text); transform: translateY(-2px); }
.ex-btn--accent { background: var(--accent); color: #000; }
.ex-btn--accent:hover { background: var(--accent-hover); transform: translateY(-2px); }
.ex-btn--ghost {
  background: transparent;
  color: var(--light-text);
  border: 1px solid var(--light-border-strong);
}
.ex-btn--ghost:hover { border-color: var(--light-text); background: var(--light-bg-alt); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.ex-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ex-product-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: block;
  position: relative;
}
.ex-product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.ex-section--dark .ex-product-card,
.ex-section--dark-alt .ex-product-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

.ex-product-card__img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  display: block;
  position: relative;
  overflow: hidden;
}
.ex-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ex-product-card:hover .ex-product-card__img img { transform: scale(1.05); }

.ex-product-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.ex-product-card__img::after {
  content: '';
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  background-image: url('../img/home/ex.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.ex-product-card__body { padding: 28px; }
.ex-product-card__tag {
  display: inline-block;
  background: rgba(255, 233, 0, 0.18);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.ex-section--dark .ex-product-card__tag,
.ex-section--dark-alt .ex-product-card__tag {
  background: rgba(255, 233, 0, 0.1);
  color: var(--accent);
}
.ex-product-card h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 12px; color: var(--light-text); }
.ex-section--dark .ex-product-card h3,
.ex-section--dark-alt .ex-product-card h3 { color: var(--dark-text); }
.ex-product-card p { color: var(--light-text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.ex-section--dark .ex-product-card p,
.ex-section--dark-alt .ex-product-card p { color: var(--dark-text-muted); }
.ex-product-card__link {
  color: var(--accent-deep);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.ex-section--dark .ex-product-card__link,
.ex-section--dark-alt .ex-product-card__link { color: var(--accent); }
.ex-product-card:hover .ex-product-card__link { gap: 12px; }

/* ============================================================
   APPLICATIONS GRID
   ============================================================ */
.ex-app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ex-app-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  padding: 28px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
}
.ex-app-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.ex-section--dark .ex-app-card,
.ex-section--dark-alt .ex-app-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.ex-app-card__icon {
  width: 48px;
  height: 48px;
  background: var(--light-text);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.ex-app-card__name { font-weight: 600; font-size: 1rem; color: var(--light-text); }
.ex-section--dark .ex-app-card__name,
.ex-section--dark-alt .ex-app-card__name { color: var(--dark-text); }

/* ============================================================
   CERTIFICATION PILLS
   ============================================================ */
.ex-certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}
.ex-cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--light-text);
}
.ex-cert-pill i { color: var(--accent-deep); }
.ex-section--dark .ex-cert-pill,
.ex-section--dark-alt .ex-cert-pill {
  background: var(--dark-card);
  border-color: var(--dark-border);
  color: var(--dark-text);
}
.ex-section--dark .ex-cert-pill i,
.ex-section--dark-alt .ex-cert-pill i { color: var(--accent); }

/* ============================================================
   FEATURE PANEL (two-column)
   ============================================================ */
.ex-feature-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ex-feature-panel__title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.ex-feature-panel__title span {
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ex-section--dark .ex-feature-panel__title span,
.ex-section--dark-alt .ex-feature-panel__title span {
  -webkit-text-fill-color: var(--accent);
  color: var(--accent);
  background: none;
}
.ex-feature-panel__text {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: var(--light-text-muted);
}
.ex-section--dark .ex-feature-panel__text,
.ex-section--dark-alt .ex-feature-panel__text { color: var(--dark-text-muted); }

.ex-visual-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--light-text);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}
.ex-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ex-visual-card:hover img { transform: scale(1.03); }
.ex-visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 60%, rgba(255, 233, 0, 0.15) 100%),
    linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.35) 100%);
}
.ex-visual-card__badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--light-text);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 2;
}

/* ============================================================
   ZONE TABLE
   ============================================================ */
.ex-zone-table-wrapper {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
}
.ex-section--dark .ex-zone-table-wrapper,
.ex-section--dark-alt .ex-zone-table-wrapper {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.ex-zone-table { width: 100%; border-collapse: collapse; }
.ex-zone-table th {
  background: var(--accent);
  color: #000;
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.95rem;
}
.ex-zone-table td {
  padding: 16px 20px;
  border-top: 1px solid var(--light-border);
  color: var(--light-text-muted);
  font-size: 0.95rem;
}
.ex-section--dark .ex-zone-table td,
.ex-section--dark-alt .ex-zone-table td {
  border-top-color: var(--dark-border);
  color: var(--dark-text-muted);
}
.ex-zone-table tr:hover td { background: var(--light-bg-alt); color: var(--light-text); }
.ex-section--dark .ex-zone-table tr:hover td,
.ex-section--dark-alt .ex-zone-table tr:hover td { background: var(--dark-elevated); color: var(--dark-text); }
.ex-zone-table td:first-child { font-weight: 700; color: var(--accent-deep); }
.ex-section--dark .ex-zone-table td:first-child,
.ex-section--dark-alt .ex-zone-table td:first-child { color: var(--accent); }
.ex-zone-table .grouped { background: rgba(255, 233, 0, 0.05); }

/* ============================================================
   MARKING DIAGRAM — Full SVG technical diagram (Gas/Dust)
   ============================================================ */
.ex-marking-diagram {
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.ex-marking-diagram__intro {
  color: var(--dark-text-muted);
  font-size: 0.95rem;
  text-align: center;
  max-width: 520px;
  line-height: 1.55;
  margin: 0 auto;
  padding: 32px 24px 24px;
}
.ex-marking-diagram__intro em {
  font-style: italic;
  color: var(--accent);
}
.ex-marking-diagram__band {
  background: var(--accent);
  color: var(--light-text);
  text-align: center;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  padding: 12px 0;
}
.ex-marking-diagram__band--top {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.ex-marking-diagram__band--bottom {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.ex-marking-diagram__svg {
  display: block;
  width: 100%;
  height: auto;
  background: var(--dark-bg);
}

/* SVG text styles */
.ex-marking-diagram__svg .mk-label {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  fill: #ffffff;
}
.ex-marking-diagram__svg .mk-line {
  stroke-linejoin: miter;
  stroke-linecap: square;
}

@media (max-width: 1024px) {
  .ex-marking-diagram__intro {
    position: static;
    transform: none;
    padding: 32px 24px 0;
  }
  .ex-marking-diagram__svg .mk-label { font-size: 18px; }
}
@media (max-width: 768px) {
  .ex-marking-diagram { overflow-x: auto; }
  .ex-marking-diagram__svg { min-width: 800px; }
}

/* ============================================================
   SPEC TABLE
   ============================================================ */
.ex-spec-table-wrapper {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
}
.ex-section--dark .ex-spec-table-wrapper,
.ex-section--dark-alt .ex-spec-table-wrapper {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.ex-spec-table-header {
  background: var(--accent);
  color: #000;
  padding: 16px 24px;
  font-weight: 700;
}
.ex-spec-table { width: 100%; border-collapse: collapse; }
.ex-spec-table tr { border-bottom: 1px solid var(--light-border); }
.ex-section--dark .ex-spec-table tr,
.ex-section--dark-alt .ex-spec-table tr { border-bottom-color: var(--dark-border); }
.ex-spec-table tr:last-child { border-bottom: none; }
.ex-spec-table td { padding: 14px 24px; font-size: 0.95rem; }
.ex-spec-table td:first-child { font-weight: 600; color: var(--light-text); width: 38%; }
.ex-section--dark .ex-spec-table td:first-child,
.ex-section--dark-alt .ex-spec-table td:first-child { color: var(--dark-text); }
.ex-spec-table td:last-child { color: var(--light-text-muted); }
.ex-section--dark .ex-spec-table td:last-child,
.ex-section--dark-alt .ex-spec-table td:last-child { color: var(--dark-text-muted); }
.ex-spec-table tr:hover { background: var(--light-bg-alt); }
.ex-section--dark .ex-spec-table tr:hover,
.ex-section--dark-alt .ex-spec-table tr:hover { background: var(--dark-elevated); }

/* ============================================================
   COMPONENT LIST
   ============================================================ */
.ex-component-list { display: grid; grid-template-columns: 1fr; gap: 20px; }
.ex-component-row {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  transition: all 0.3s;
}
.ex-component-row:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05); }
.ex-section--dark .ex-component-row,
.ex-section--dark-alt .ex-component-row {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.ex-component-row__visual {
  aspect-ratio: 1;
  background: var(--light-text);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 3.5rem;
  color: var(--accent);
}
.ex-component-row__title-bar {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.ex-component-row__tag-dark {
  background: var(--light-text);
  color: var(--light-bg);
  padding: 6px 14px;
  border-radius: 999px 0 0 999px;
  font-size: 0.85rem;
  font-weight: 700;
}
.ex-component-row__tag-light {
  background: var(--accent);
  color: var(--light-text);
  padding: 6px 14px;
  border-radius: 0 999px 999px 0;
  font-size: 0.85rem;
  font-weight: 700;
}
.ex-component-row h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; color: var(--light-text); }
.ex-section--dark .ex-component-row h3,
.ex-section--dark-alt .ex-component-row h3 { color: var(--dark-text); }
.ex-component-row__subtitle {
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ex-section--dark .ex-component-row__subtitle,
.ex-section--dark-alt .ex-component-row__subtitle { color: var(--accent); }
.ex-component-row p { color: var(--light-text-muted); font-size: 0.95rem; }
.ex-section--dark .ex-component-row p,
.ex-section--dark-alt .ex-component-row p { color: var(--dark-text-muted); }

/* ============================================================
   TAG PILL (dark/yellow split)
   ============================================================ */
.ex-tag-pill-set { display: inline-flex; margin-bottom: 32px; }
.ex-tag-pill-set .dark {
  background: var(--light-text);
  color: var(--light-bg);
  padding: 10px 18px;
  border-radius: 999px 0 0 999px;
  font-weight: 700;
  font-size: 0.95rem;
}
.ex-tag-pill-set .light {
  background: var(--accent);
  color: var(--light-text);
  padding: 10px 18px;
  border-radius: 0 999px 999px 0;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.ex-cta-banner {
  background: linear-gradient(135deg, var(--light-text) 0%, #222 100%);
  color: var(--dark-text);
  padding: 64px 48px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}
.ex-cta-banner::before {
  content: 'Ex';
  position: absolute;
  right: -40px;
  bottom: -80px;
  font-size: 18rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 233, 0, 0.08);
  pointer-events: none;
}
.ex-cta-banner h3 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
}
.ex-cta-banner h3 span { color: var(--accent); }
.ex-cta-banner p { color: var(--dark-text-muted); font-size: 1.05rem; position: relative; }
.ex-cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.ex-cta-banner__btn {
  background: var(--accent);
  color: var(--light-text);
  padding: 16px 24px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  transition: all 0.2s;
}
.ex-cta-banner__btn:hover { background: var(--accent-hover); transform: translateY(-2px); }
.ex-cta-banner__btn--ghost {
  background: transparent;
  border: 2px solid var(--dark-border-light);
  color: var(--dark-text);
}
.ex-cta-banner__btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.ex-contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.ex-contact-info { display: grid; gap: 20px; align-content: start; }
.ex-contact-info__block {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  transition: all 0.2s;
}
.ex-contact-info__block:hover { border-color: var(--accent); }
.ex-contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--light-text);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ex-contact-info__label {
  font-size: 0.85rem;
  color: var(--light-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.ex-contact-info__value { font-weight: 600; color: var(--light-text); }

.ex-contact-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--light-border);
  background: var(--light-bg-alt);
  min-height: 560px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.ex-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  filter: grayscale(0.15);
  transition: filter 0.3s;
}
.ex-contact-map:hover iframe { filter: grayscale(0); }

.ex-form {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 40px;
}
.ex-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ex-form__field { margin-bottom: 20px; }
.ex-form__field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--light-text);
}
.ex-form__field input,
.ex-form__field select,
.ex-form__field textarea {
  width: 100%;
  background: var(--light-bg-alt);
  border: 1px solid var(--light-border);
  color: var(--light-text);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.ex-form__field input:focus,
.ex-form__field select:focus,
.ex-form__field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--light-bg);
}
.ex-form__field textarea { resize: vertical; min-height: 120px; }
.ex-form button[type="submit"] {
  background: var(--light-text);
  color: var(--accent);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  width: 100%;
}
.ex-form button[type="submit"]:hover { background: var(--accent); color: var(--light-text); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.ex-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0;
  margin-bottom: 28px;
}
.ex-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}
.ex-breadcrumb a:hover { color: var(--accent); }
.ex-breadcrumb i { font-size: 0.65rem; color: rgba(255, 255, 255, 0.3); }
.ex-breadcrumb .current { color: var(--accent); font-weight: 600; }

/* ============================================================
   CRANE PANEL — Creative layout per type
   ============================================================ */
.crane-panel {
  position: relative;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 24px;
  padding: 48px 56px 40px;
  margin-bottom: 64px;
  overflow: hidden;
}

.crane-panel__bg-text {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--light-text);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.crane-panel__header {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

/* Top feature callout (Cross Travel Wheels) */
.crane-panel__feature {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 16px;
  max-width: 560px;
  margin-bottom: 24px;
}
.crane-panel__feature--right {
  margin-left: auto;
  text-align: right;
}
.crane-panel__feature--right { grid-template-columns: 1fr 4px; }
.crane-panel__feature--right .crane-panel__feature-marker { order: 2; }

.crane-panel__feature-marker {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  min-height: 28px;
}
.crane-panel__feature-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--light-text);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.crane-panel__feature-body p {
  font-size: 0.9rem;
  color: var(--light-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Stage — main image area with floating callouts */
.crane-panel__stage {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  margin: 16px 0 32px;
}
.crane-panel__main {
  max-width: 70%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}

/* Floating callout — circle with image + label */
.crane-panel__callout {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.crane-panel__callout--left      { left: 2%;  top: 35%; }
.crane-panel__callout--right     { right: 2%; top: 50%; }
.crane-panel__callout--left-low  { left: 6%;  bottom: 8%; }

.crane-panel__callout-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--light-text);
  letter-spacing: -0.01em;
}
.crane-panel__callout-label .bar {
  width: 4px;
  height: 16px;
  background: var(--accent);
  border-radius: 2px;
}

.crane-panel__callout-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 2px solid var(--accent);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.crane-panel__callout-circle:hover { transform: scale(1.05); }
.crane-panel__callout-circle--sm { width: 110px; height: 110px; }
.crane-panel__callout-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hook row at bottom — label on left, 5 hook thumbnails on right */
.crane-panel__hook-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--light-border);
}
.crane-panel__hook-label {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 14px;
  align-items: start;
}
.crane-panel__hook-marker {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  min-height: 36px;
}
.crane-panel__hook-label h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--light-text);
  margin: 0 0 6px;
}
.crane-panel__hook-label p {
  font-size: 0.88rem;
  color: var(--light-text-muted);
  line-height: 1.5;
  margin: 0;
}
.crane-panel__hook-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: var(--light-bg-alt);
  border-radius: 16px;
  padding: 16px;
}
.crane-panel__hook-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.crane-panel__hook-strip img:hover {
  transform: translateY(-4px) scale(1.05);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .crane-panel { padding: 36px 32px 32px; }
  .crane-panel__stage { min-height: 380px; }
  .crane-panel__main { max-width: 78%; }
  .crane-panel__callout-circle { width: 110px; height: 110px; }
  .crane-panel__callout-circle--sm { width: 88px; height: 88px; }
  .crane-panel__callout-label { font-size: 0.8rem; }
}
@media (max-width: 768px) {
  .crane-panel { padding: 28px 20px 24px; border-radius: 18px; margin-bottom: 40px; }
  .crane-panel__bg-text { font-size: 5rem; opacity: 0.05; top: 30%; }
  .crane-panel__feature { max-width: 100%; }
  .crane-panel__feature--right { text-align: left; grid-template-columns: 4px 1fr; }
  .crane-panel__feature--right .crane-panel__feature-marker { order: 0; }

  .crane-panel__stage {
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }
  .crane-panel__main { max-width: 100%; margin: 0 auto; }
  .crane-panel__callout {
    position: static;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    width: 100%;
  }
  .crane-panel__callout-circle { width: 80px; height: 80px; flex-shrink: 0; }
  .crane-panel__callout-circle--sm { width: 70px; height: 70px; }

  .crane-panel__hook-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .crane-panel__hook-strip {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 10px;
  }
}

/* ============================================================
   COMPONENT SECTIONS
   ============================================================ */
.comp-section { margin-bottom: 64px; }
.comp-section__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-border);
}
.ex-section--dark .comp-section__heading,
.ex-section--dark-alt .comp-section__heading { border-bottom-color: var(--dark-border); }
.comp-section__num {
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--light-text);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
}
.comp-section__title { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }

/* ============================================================
   INDUSTRY CARDS (with images)
   ============================================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.industry-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.industry-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.industry-card:hover .industry-card__media img {
  transform: scale(1.05);
}
.ex-section--dark .industry-card,
.ex-section--dark-alt .industry-card {
  background: var(--dark-card);
  border-color: var(--dark-border);
}

/* Media (image area) */
.industry-card__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--light-bg-alt);
}
.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.industry-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.industry-card__zone-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  background: var(--accent);
  color: var(--light-text);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Body */
.industry-card__body {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.industry-card__title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.industry-card__icon {
  width: 44px;
  height: 44px;
  background: var(--light-text);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.industry-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--light-text);
  letter-spacing: -0.01em;
}
.ex-section--dark .industry-card h3,
.ex-section--dark-alt .industry-card h3 { color: var(--dark-text); }

.industry-card p {
  color: var(--light-text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}
.ex-section--dark .industry-card p,
.ex-section--dark-alt .industry-card p { color: var(--dark-text-muted); }

.industry-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--light-border);
}
.ex-section--dark .industry-card__tags,
.ex-section--dark-alt .industry-card__tags { border-top-color: var(--dark-border); }
.industry-card__tag {
  font-size: 0.78rem;
  color: var(--light-text-muted);
  font-weight: 500;
  padding: 4px 12px;
  background: var(--light-bg-alt);
  border: 1px solid var(--light-border);
  border-radius: 999px;
}
.ex-section--dark .industry-card__tag,
.ex-section--dark-alt .industry-card__tag {
  background: var(--dark-bg);
  border-color: var(--dark-border);
  color: var(--dark-text-muted);
}

/* ============================================================
   FIRE TRIANGLE
   ============================================================ */
.fire-triangle-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 48px;
}
.ex-section--dark .fire-triangle-container,
.ex-section--dark-alt .fire-triangle-container {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.fire-triangle-quotes { display: grid; gap: 20px; }
.fire-quote {
  border-left: 3px solid var(--accent);
  padding: 8px 16px;
  color: var(--light-text-muted);
  font-size: 0.95rem;
}
.ex-section--dark .fire-quote,
.ex-section--dark-alt .fire-quote { color: var(--dark-text-muted); }
.fire-quote strong { color: var(--light-text); }
.ex-section--dark .fire-quote strong,
.ex-section--dark-alt .fire-quote strong { color: var(--dark-text); }

.req-list { list-style: none; counter-reset: req; margin: 24px 0; }
.req-list li {
  counter-increment: req;
  padding-left: 48px;
  position: relative;
  margin-bottom: 16px;
  color: var(--light-text-muted);
}
.req-list li::before {
  content: counter(req, lower-alpha) ".";
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--light-text);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.ex-footer {
  background: var(--dark-bg);
  color: var(--dark-text);
  border-top: 4px solid var(--accent);
  padding: 64px 0 24px;
  margin-top: 100px;
}
.ex-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.ex-footer__col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}
.ex-footer__col p,
.ex-footer__col a {
  color: var(--dark-text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: block;
  transition: color 0.2s;
}
.ex-footer__col a:hover { color: var(--accent); }
.ex-footer__bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--dark-text-dim);
  font-size: 0.85rem;
}
.ex-footer__logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}
.ex-footer__brand-desc {
  max-width: 360px;
  color: var(--dark-text-muted);
  font-size: 0.95rem;
}
.ex-footer__atex-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-top: 16px;
}

/* ============================================================
   COMPONENTS PAGE — PRODUCT GALLERIES, BLOCKS, MOTORS, BRANDS
   ============================================================ */

/* Product gallery (1-2 isolated product photos on white) */
.ex-product-gallery {
  display: grid;
  gap: 20px;
}
.ex-product-gallery--two { grid-template-columns: 1fr 1fr; }
.ex-product-gallery--inline {
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 180px);
  align-items: start;
  justify-content: flex-end;
  gap: 16px;
}

.ex-product-shot {
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  place-items: center;
  aspect-ratio: 4/3;
  padding: 20px;
  margin: 0;
  transition: all 0.25s;
}
.ex-product-shot:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.ex-product-shot img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
}
.ex-product-shot figcaption {
  display: inline-block;
  background: var(--accent);
  color: var(--light-text);
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  margin-top: 8px;
}
.ex-product-shot--sm {
  aspect-ratio: 1;
  padding: 14px;
}
.ex-product-shot--sm figcaption {
  font-size: 0.72rem;
  padding: 4px 10px;
}
.ex-product-shot--situ {
  aspect-ratio: 16/10;
  padding: 0;
  background: #1a1a1a;
}
.ex-product-shot--situ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
}

/* Product block (card with header + gallery + description) */
.ex-product-block {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.ex-product-block:hover { border-color: var(--accent); }
.ex-product-block__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-border);
}
.ex-product-block__subtitle {
  color: var(--light-text-dim);
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
  margin: 4px 0 0;
}
.ex-product-block > p {
  color: var(--light-text-muted);
  font-size: 0.95rem;
  margin: 0;
  max-width: 920px;
}

/* Motor 4-up grid */
.ex-motor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.ex-motor-card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 16px 16px 20px;
  margin: 0;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.ex-motor-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
.ex-motor-card__img {
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 12px;
}
.ex-motor-card__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.ex-motor-card__label {
  background: var(--accent);
  color: var(--light-text);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

/* Brand mark (CEMP WEG Group, etc.) */
.ex-brand-mark {
  text-align: right;
  line-height: 1.1;
}
.ex-brand-mark strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0066b3;
  letter-spacing: -0.02em;
}
.ex-brand-mark span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--light-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Brand block (HBC / JUUKO with logo + flag + product photo) */
.ex-brand-block {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  transition: border-color 0.2s;
}
.ex-brand-block:hover { border-color: var(--accent); }
.ex-brand-block__id {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.ex-brand-block__logo {
  max-width: 180px;
  height: auto;
}
.ex-brand-block__origin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--light-bg-alt);
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--light-text);
}
.ex-brand-block__origin img {
  width: 24px;
  height: auto;
  border-radius: 3px;
}
.ex-brand-block__product {
  width: 100%;
  aspect-ratio: 16/8;
  display: grid;
  place-items: center;
  padding: 16px;
  background: var(--light-bg);
  border-radius: 12px;
  border: 1px solid var(--light-border);
}
.ex-brand-block__product img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}


@media (max-width: 1200px) {
  .wm-header__main-inner { gap: 24px; }
  .wm-header__nav-link { padding: 12px 14px; font-size: 14px; }
  .wm-header__util-item:nth-child(5) { display: none; }
  .wm-header__util-sep:nth-of-type(2) { display: none; }
}
@media (max-width: 1024px) {
  .wm-header__utility-left { display: none; }
  .wm-header__nav { display: none; }
  .wm-header__nav.is-open {
    display: flex;
    position: fixed;
    top: 128px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--light-bg);
    padding: 24px;
    gap: 4px;
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
    height: calc(100vh - 128px);
    overflow-y: auto;
    z-index: 99;
  }
  .wm-header__nav.is-open .wm-header__nav-item { width: 100%; }
  .wm-header__nav.is-open .wm-header__nav-link {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
  }
  .wm-header__nav.is-open .wm-header__nav-link::after { display: none; }
  .wm-header__nav.is-open .wm-header__nav-link:hover { background: var(--light-bg-alt); }
  .wm-header__nav.is-open .wm-header__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #0a0a0a;
    margin-top: 4px;
    padding: 6px;
  }
  .wm-header__nav.is-open .wm-header__dropdown::before { display: none; }
  .wm-header__nav.is-open .wm-header__dropdown a { padding: 12px 14px; }
  .wm-header__nav.is-open .wm-header__dropdown a:hover { padding-left: 18px; }
  .wm-header__burger { display: flex; }
  .wm-header__icon-btn,
  .wm-header__divider { display: none; }
  .wm-header__cta { padding: 12px 18px; font-size: 13px; }

  .ex-feature-panel { grid-template-columns: 1fr; gap: 48px; }
  .ex-product-grid { grid-template-columns: repeat(2, 1fr); }
  .ex-app-grid { grid-template-columns: repeat(2, 1fr); }
  .ex-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ex-contact-grid { grid-template-columns: 1fr; }
  .ex-cta-banner { grid-template-columns: 1fr; }
  .ex-component-row { grid-template-columns: 1fr; }
  .ex-component-row__visual { max-width: 280px; }
  .crane-panel__layout { grid-template-columns: 1fr; gap: 40px; }
  .crane-panel { padding: 36px; }
  .industry-grid { grid-template-columns: 1fr; }
  .ex-motor-grid { grid-template-columns: repeat(2, 1fr); }
  .ex-brand-block { grid-template-columns: 1fr; gap: 24px; }
  .ex-product-block__head { grid-template-columns: 1fr; gap: 20px; }
  .ex-product-gallery--inline { justify-content: flex-start; }
  .ex-product-gallery--two { grid-template-columns: 1fr; }
  .fire-triangle-container { grid-template-columns: 1fr; padding: 32px; }
  .fire-triangle-container > div:first-child { justify-self: center; }
}
@media (max-width: 768px) {
  .wm-header__utility { display: none; }
  .wm-header__nav.is-open { top: 88px; height: calc(100vh - 88px); }
  .wm-header__main { height: 72px; }
  .wm-header__logo-img { height: 38px; }
  .ex-product-grid { grid-template-columns: 1fr; }
  .ex-app-grid { grid-template-columns: 1fr; }
  .ex-form__row { grid-template-columns: 1fr; }
  .ex-motor-grid { grid-template-columns: 1fr; }
  .ex-product-block { padding: 24px; }
  .ex-brand-block { padding: 24px; }
  .ex-section { padding: 64px 0; }
  .ex-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   SMOOTH SCROLL SYSTEM — Lenis glue + progress bar + to-top
   ============================================================ */

/* Lenis html state classes — required for momentum scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* Thin yellow scroll progress bar pinned to top */
.wm-scroll-progress { display: none; }

/* Scroll-to-top button */
.wm-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--light-text);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1rem;
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.3s, background 0.2s;
  box-shadow: 0 8px 24px rgba(255, 233, 0, 0.3), 0 4px 12px rgba(0, 0, 0, 0.08);
}
.wm-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wm-to-top:hover {
  background: var(--light-text);
  color: var(--accent);
  transform: translateY(-4px) scale(1.05);
}

/* Parallax helper */
[data-parallax] { will-change: transform; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-parallax] { transform: none !important; }
  .wm-scroll-progress { display: none; }
}
@media (max-width: 640px) {
  .wm-to-top { bottom: 18px; right: 18px; width: 46px; height: 46px; }
}

/* ============================================================
   FAQ — Accordion (SEO FAQPage friendly)
   ============================================================ */
.ex-faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.ex-faq {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ex-faq:hover { border-color: var(--accent); }
.ex-faq[open] {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.ex-section--dark .ex-faq,
.ex-section--dark-alt .ex-faq {
  background: var(--dark-card);
  border-color: var(--dark-border);
}
.ex-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--light-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.ex-section--dark .ex-faq summary,
.ex-section--dark-alt .ex-faq summary { color: var(--dark-text); }
.ex-faq summary::-webkit-details-marker { display: none; }
.ex-faq summary::after {
  content: '\f067'; /* plus */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--accent-deep);
  width: 28px;
  height: 28px;
  background: var(--light-bg-alt);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.2s, color 0.2s;
}
.ex-section--dark .ex-faq summary::after,
.ex-section--dark-alt .ex-faq summary::after { background: var(--dark-bg); color: var(--accent); }
.ex-faq[open] summary::after {
  content: '\f068'; /* minus */
  background: var(--accent);
  color: var(--light-text);
  transform: rotate(180deg);
}
.ex-faq__a {
  padding: 0 28px 22px;
  color: var(--light-text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.ex-section--dark .ex-faq__a,
.ex-section--dark-alt .ex-faq__a { color: var(--dark-text-muted); }
.ex-faq__a a {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ex-section--dark .ex-faq__a a,
.ex-section--dark-alt .ex-faq__a a { color: var(--accent); }
