/* =========================================================
   GORDIN POWER - brand-aligned industrial site
   ========================================================= */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap");

:root {
  /* Matched to logo electric blue */
  --blue: #0860c0;
  --blue-hi: #3d9ef0;
  --blue-mid: #1a78d4;
  --blue-deep: #062a58;
  --blue-glow: rgba(8, 104, 216, .45);
  --ink: #070b12;
  --steel: #05080e;
  --steel-2: #0c121c;
  --text: #2a3340;
  --muted: #657084;
  --line: #d8dee8;
  --fog: #eef1f5;
  --white: #fff;
  --container: 1280px;
  --display: "Rajdhani", "Segoe UI", system-ui, sans-serif;
  --body: "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius-pill: 999px;
  --radius-panel: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--fog);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}
img[src$=".svg"] { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-style: normal;
  text-transform: none;
}

/* Logo pulse motif + impulse flow */
.pulse-line,
.hero h1::after,
.page-hero h1::after,
.section-head h2::after {
  background-color: rgba(8, 96, 192, .35);
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 38%,
    rgba(61,158,240,.15) 46%,
    rgba(157,208,255,.95) 50%,
    rgba(61,158,240,.2) 54%,
    transparent 62%,
    transparent 100%
  );
  background-size: 240% 100%;
  background-repeat: no-repeat;
  background-position: 120% 0;
  animation: pulse-flow 3.6s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(61,158,240,.28));
}
.pulse-line {
  display: block;
  width: min(100%, 260px);
  height: 12px;
  margin: 16px 0 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 12'%3E%3Cpath d='M0 6 H100 L110 1 L120 11 L130 4 L140 6 H260' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 260 12'%3E%3Cpath d='M0 6 H100 L110 1 L120 11 L130 4 L140 6 H260' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.section-head.center .pulse-line { margin-inline: auto; }
@keyframes pulse-flow {
  0%, 12% { background-position: 120% 0; }
  55% { background-position: -40% 0; }
  100% { background-position: -120% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .pulse-line,
  .hero h1::after,
  .page-hero h1::after,
  .section-head h2::after {
    animation: none;
    background-image: none;
    background-color: transparent;
    background: linear-gradient(90deg, var(--blue-hi), var(--blue) 55%, transparent);
    filter: none;
  }
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  font-style: normal;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--blue) 55%, var(--blue-deep) 140%);
  color: #fff;
  box-shadow: 0 10px 28px var(--blue-glow), 0 0 0 1px rgba(61,158,240,.25) inset;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-hi), var(--blue) 60%, var(--blue-deep));
  box-shadow: 0 14px 34px rgba(8,104,216,.55);
}
.btn-outline {
  border-color: rgba(61,158,240,.55);
  color: #fff;
  background: rgba(8, 20, 40, .35);
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 1px rgba(61,158,240,.12);
}
.btn-outline:hover {
  background: var(--blue);
  border-color: var(--blue-hi);
  color: #fff;
}
.btn-ghost {
  border-color: rgba(8,96,192,.35);
  color: var(--ink);
  background: transparent;
  border-radius: var(--radius-pill);
}
.btn-ghost:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 10px 24px var(--blue-glow);
}

/* ---------- Floating header ---------- */
@property --header-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.site-header {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.site-header.table-browsing {
  opacity: 0;
  transform: translateY(-120%);
  pointer-events: none;
}
.header-shell {
  position: relative;
  pointer-events: auto;
  width: min(100% - 24px, 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 16px 14px 22px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(8,14,24,.72), rgba(5,8,14,.78));
  border: 1px solid rgba(61,158,240,.28);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 18px 50px rgba(0,0,0,.35),
    0 0 40px rgba(8,104,216,.12);
  transition:
    background .45s var(--ease),
    border-color .45s var(--ease),
    box-shadow .45s var(--ease),
    transform .45s var(--ease);
}
.header-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--header-angle),
    transparent 0deg,
    transparent 250deg,
    rgba(61,158,240,0) 270deg,
    rgba(125,200,255,.15) 295deg,
    rgba(61,158,240,.95) 320deg,
    #9ed0ff 332deg,
    rgba(61,158,240,.55) 345deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
  transition: opacity .55s var(--ease);
  animation: header-energy 3.8s linear infinite;
}
.header-shell > * { position: relative; z-index: 1; }

/* Solid background on subpages / when scrolled */
.site-header.scrolled .header-shell,
.site-header.solid .header-shell {
  background: linear-gradient(180deg, rgba(5,8,14,.96), rgba(5,8,14,.98));
  border-color: rgba(61,158,240,.22);
  box-shadow:
    0 16px 40px rgba(0,0,0,.45),
    0 0 28px rgba(8,104,216,.14),
    0 0 1px rgba(61,158,240,.35);
}

/* Compact size only after scroll (sticky) */
.site-header.scrolled .header-shell {
  padding: 8px 12px 8px 16px;
  gap: 16px;
}
.site-header.scrolled .logo img {
  max-height: 36px;
}
.site-header.scrolled .main-nav > a {
  font-size: 15px;
  padding: 10px 14px;
}
.site-header.scrolled .main-nav > a .n {
  font-size: 11px;
}
.site-header.scrolled .nav-cta {
  padding: 10px 18px !important;
  font-size: 15px !important;
}
.site-header.scrolled .header-shell::before {
  opacity: 0;
  animation: none;
}
@keyframes header-energy {
  to { --header-angle: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .header-shell::before {
    animation: none;
    opacity: .55;
    background: linear-gradient(90deg, transparent, rgba(61,158,240,.55), transparent);
    padding: 1px;
  }
  .site-header.scrolled .header-shell::before {
    opacity: 0;
  }
}
.logo {
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(240px, calc(100% - 72px));
}
.logo img {
  display: block;
  width: auto;
  height: auto;
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 10px rgba(61,158,240,.25));
  transition: max-height .45s var(--ease);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-family: var(--display);
  font-size: 17px;
  font-weight: 650;
  font-style: normal;
  letter-spacing: .03em;
  padding: 15px 18px;
  border-radius: var(--radius-pill);
  transition: color .2s, background .2s, box-shadow .2s, font-size .45s var(--ease), padding .45s var(--ease);
}
.main-nav > a .n {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  color: var(--blue-hi);
  letter-spacing: .08em;
  text-shadow: 0 0 12px rgba(61,158,240,.55);
}
.main-nav > a:hover {
  color: #fff;
  background: rgba(8,96,192,.22);
  box-shadow: 0 0 0 1px rgba(61,158,240,.25) inset;
}
.main-nav > a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  box-shadow: 0 8px 22px var(--blue-glow);
}
.main-nav > a.active .n { color: #fff; text-shadow: none; }
.nav-cta {
  background: rgba(8,96,192,.22) !important;
  color: #fff !important;
  margin-left: 10px;
  padding: 15px 26px !important;
  font-size: 17px !important;
  box-shadow: 0 0 0 1px rgba(61,158,240,.35) inset !important;
}
.nav-cta:hover {
  background: rgba(8,96,192,.35) !important;
  box-shadow: 0 0 0 1px rgba(61,158,240,.5) inset !important;
}
.nav-cta.active {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue)) !important;
  box-shadow: 0 8px 22px var(--blue-glow) !important;
}
.nav-cta .n { display: none; }

.lang-dropdown {
  position: relative;
  margin-left: 10px;
}
.lang-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 2px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.lang-dropdown-toggle:hover { opacity: .85; }
.lang-flag {
  display: inline-flex;
  width: 22px;
  height: 16px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.35));
}
.lang-caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,.9);
  transition: transform .2s;
}
.lang-dropdown.open .lang-caret { transform: rotate(180deg); }
.lang-dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 160px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(5,8,14,.97);
  border: 1px solid rgba(61,158,240,.3);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
  z-index: 50;
}
.lang-dropdown.open .lang-dropdown-menu { display: grid; gap: 2px; }
.lang-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(255,255,255,.82);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
}
.lang-dropdown-menu .lang-code { display: none; }
.lang-dropdown-menu a:hover,
.lang-dropdown-menu a.active {
  background: rgba(8,96,192,.28);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 11px; width: 18px; height: 2px; background: #fff;
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -6px; left: 0; }
.nav-toggle span::after { top: 6px; left: 0; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: 22px;
    background: rgba(7,11,18,.96);
    border: 1px solid rgba(255,255,255,.1);
    gap: 4px;
  }
  .header-shell { position: relative; border-radius: 28px; }
  .main-nav.open { display: flex; }
  .main-nav > a {
    justify-content: center;
    gap: 10px;
    padding: 13px 14px;
  }
  .main-nav > a .n { min-width: 1.6em; text-align: right; }
  .nav-cta {
    margin-left: 0 !important;
    margin-top: 4px;
    justify-content: center;
  }

  /* Inline language chips on mobile */
  .lang-dropdown {
    margin: 8px 0 0;
    width: 100%;
    padding: 6px;
    border-radius: 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
  }
  .lang-dropdown-toggle { display: none; }
  .lang-dropdown-menu,
  .lang-dropdown.open .lang-dropdown-menu {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    position: static;
    left: auto; right: auto;
    top: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .lang-dropdown-menu a {
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px 8px;
    border-radius: 10px;
    text-align: center;
  }
  .lang-dropdown-menu .lang-name { display: none; }
  .lang-dropdown-menu .lang-code {
    display: block;
    font-family: var(--display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    color: rgba(255,255,255,.7);
  }
  .lang-dropdown-menu a.active {
    background: rgba(8,96,192,.35);
    box-shadow: 0 0 0 1px rgba(61,158,240,.45) inset;
  }
  .lang-dropdown-menu a.active .lang-code {
    color: #fff;
    border-bottom: 2px solid var(--blue-hi);
    padding-bottom: 1px;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
  background: var(--steel);
}
.hero > video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 65% 50% at 20% 72%, rgba(8,96,192,.38), transparent 62%),
    linear-gradient(105deg, rgba(5,8,14,.9) 0%, rgba(5,8,14,.48) 48%, rgba(5,8,14,.22) 100%),
    linear-gradient(180deg, rgba(5,8,14,.28) 0%, transparent 35%, rgba(5,8,14,.82) 100%);
}
.hero-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}
.hero-main {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: 96px 0 28px;
  max-width: 920px;
  margin-left: max(24px, calc((100% - var(--container)) / 2));
}
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-hi);
}
.hero-brand::before {
  content: "";
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--blue-hi), transparent);
  box-shadow: 0 0 10px rgba(61,158,240,.7);
}
.hero h1::after {
  content: "";
  display: block;
  width: min(100%, 220px);
  height: 10px;
  margin-top: 14px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 10'%3E%3Cpath d='M0 5 H80 L88 1 L96 9 L104 3 L112 5 H220' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 10'%3E%3Cpath d='M0 5 H80 L88 1 L96 9 L104 3 L112 5 H220' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5.2vw, 58px);
  max-width: 22em;
  margin-bottom: 10px;
  font-weight: 750;
  letter-spacing: 0.005em;
  line-height: 1.12;
}
.hero-main > p {
  color: rgba(255,255,255,.8);
  font-size: clamp(16px, 1.35vw, 18px);
  max-width: 38em;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(61,158,240,.22);
  background: linear-gradient(180deg, rgba(5,8,14,.7), rgba(5,8,14,.82));
  backdrop-filter: blur(14px);
  position: relative;
  z-index: 2;
  box-shadow: 0 -12px 40px rgba(8,104,216,.08);
}
.hero-rail .stat {
  padding: 22px 28px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.hero-rail .stat:last-child { border-right: 0; }
.hero-rail strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 32px);
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 6px;
  font-weight: 750;
}
.hero-rail span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  font-weight: 600;
}
@media (max-width: 800px) {
  .hero-rail { grid-template-columns: 1fr 1fr; }
  .hero-rail .stat:nth-child(2n) { border-right: 0; }
  .hero-rail .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .hero-main {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
    padding: 88px 0 20px;
    max-width: none;
  }
  .hero-rail .stat { text-align: left; padding: 16px 18px; }
  .hero-rail strong { font-size: 22px; }
}

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 150px 0 70px;
  color: #fff;
  overflow: hidden;
  background: var(--steel);
}
.page-hero .bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  animation: ken 22s ease-in-out infinite alternate;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,11,18,.25), rgba(7,11,18,.86));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 54px);
  margin-bottom: 14px;
}
.page-hero h1::after {
  content: "";
  display: block;
  width: min(100%, 200px);
  height: 10px;
  margin-top: 12px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M0 5 H72 L80 1 L88 9 L96 3 L104 5 H200' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M0 5 H72 L80 1 L88 9 L96 3 L104 5 H200' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.page-hero p {
  color: rgba(255,255,255,.78);
  max-width: 38em;
  font-size: 17px;
}

@keyframes ken {
  from { transform: scale(1.05) translate3d(0,0,0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section.fog { background: var(--fog); }
.section.white { background: #fff; }
.section.steel { background: var(--steel); color: rgba(255,255,255,.75); }
.section.steel h2, .section.steel h3 { color: #fff; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.section.steel .kicker { color: var(--blue-hi); }
.kicker::before {
  content: "";
  width: 22px; height: 2px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.section-head { margin-bottom: 52px; max-width: 780px; }
.section-head h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  margin-bottom: 12px;
}
.section-head h2::after {
  content: "";
  display: block;
  width: min(100%, 200px);
  height: 10px;
  margin-top: 12px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M0 5 H72 L80 1 L88 9 L96 3 L104 5 H200' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M0 5 H72 L80 1 L88 9 L96 3 L104 5 H200' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
}
.section-head.center h2::after { margin-inline: auto; }
.section-head p { color: var(--muted); font-size: 17px; line-height: 1.6; }
.section.steel .section-head p { color: rgba(255,255,255,.62); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }

/* ---------- Full-bleed cinematic panels ---------- */
.stage {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--steel);
}
.stage > video,
.stage > .stage-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.stage > .stage-bg { animation: ken 24s ease-in-out infinite alternate; }
.stage::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,14,.86) 0%, rgba(5,8,14,.4) 50%, rgba(5,8,14,.18) 100%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(8,96,192,.28), transparent 60%),
    linear-gradient(180deg, transparent 30%, rgba(5,8,14,.78));
}
.stage-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 90px 0;
  max-width: 680px;
  margin-left: max(20px, calc((100% - var(--container)) / 2));
}
.stage h2 {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 48px);
  margin-bottom: 16px;
}
.stage p { color: rgba(255,255,255,.8); margin-bottom: 26px; font-size: 17px; line-height: 1.6; }
.stage.right .stage-inner {
  margin-left: auto;
  margin-right: max(20px, calc((100% - var(--container)) / 2));
  text-align: left;
}
.stage.right::after {
  background:
    linear-gradient(270deg, rgba(5,8,14,.82) 0%, rgba(5,8,14,.35) 55%, rgba(5,8,14,.15) 100%),
    linear-gradient(180deg, transparent 30%, rgba(5,8,14,.75));
}

/* ---------- Split band ---------- */
.band-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: #fff;
}
.band-split .copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(40px, 6vw, 90px);
}
.band-split .copy > :not(.btn) { width: 100%; }
.band-split .copy .btn {
  width: auto;
  align-self: flex-start;
}
.band-split .copy h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  margin-bottom: 18px;
}
.band-split .copy p { margin-bottom: 14px; }
.band-split .media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.band-split .media img,
.band-split .media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.checklist { list-style: none; margin: 20px 0 28px; }
.checklist li {
  padding: 12px 0 12px 22px;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--ink);
  font-weight: 500;
}
.checklist li:last-child { border-bottom: 1px solid var(--line); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
@media (max-width: 900px) {
  .band-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .band-split .media {
    min-height: 0;
    aspect-ratio: 16 / 10;
    order: -1;
  }
  .band-split .copy { padding: 36px 22px 48px; }
}

/* ---------- Brand ticker ---------- */
.ticker-wrap {
  overflow: hidden;
  border-block: 1px solid rgba(61,158,240,.18);
  background: var(--steel-2);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker {
  display: flex;
  width: max-content;
  gap: 0;
  animation: tick 28s linear infinite;
}
.ticker a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 36px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
.ticker a:hover { color: var(--blue-hi); }
.ticker a:hover .brand-logo { opacity: 1; }
.ticker .brand-logo {
  height: 30px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.ticker small {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  font-weight: 600;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Mosaic applications ---------- */
.mosaic {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.mosaic a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-panel);
  color: #fff;
  min-height: 220px;
  box-shadow: 0 0 0 1px rgba(61,158,240,.12);
}
.mosaic a:first-child { grid-row: 1 / span 2; }
.mosaic img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s var(--ease);
}
.mosaic a:hover img { transform: scale(1.08); }
.mosaic a::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(5,8,14,.85));
}
.mosaic .cap {
  position: absolute;
  left: 22px; right: 22px; bottom: 22px;
  z-index: 2;
}
.mosaic .cap strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 2.1vw, 32px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.mosaic a:first-child .cap strong {
  font-size: clamp(28px, 2.6vw, 38px);
}
.mosaic .cap span {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255,255,255,.78);
}
@media (max-width: 900px) {
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 10px;
  }
  .mosaic a {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .mosaic a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }
  .mosaic .cap strong { font-size: 22px; }
  .mosaic a:first-child .cap strong { font-size: 26px; }
}
@media (max-width: 560px) {
  .mosaic { grid-template-columns: 1fr; }
  .mosaic a:first-child { aspect-ratio: 16 / 10; }
  .mosaic a { aspect-ratio: 16 / 10; }
  .mosaic .cap { left: 16px; right: 16px; bottom: 16px; }
  .mosaic .cap strong { font-size: 22px; }
  .mosaic a:first-child .cap strong { font-size: 24px; }
  .mosaic .cap span { font-size: 14px; }
}

/* ---------- Feature numbers ---------- */
.feature-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-rows article {
  padding: 32px 28px;
  border-radius: var(--radius-panel);
  background: #fff;
  border: 1px solid rgba(8,96,192,.1);
  box-shadow: 0 20px 50px rgba(10,16,24,.04);
  transition: border-color .2s, box-shadow .2s;
}
.feature-rows article:hover {
  border-color: rgba(8,96,192,.28);
  box-shadow: 0 22px 50px rgba(8,104,216,.1);
}
.feature-rows .num {
  font-family: var(--display);
  font-size: 38px;
  color: var(--blue);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.feature-rows h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.feature-rows p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 900px) {
  .feature-rows { grid-template-columns: 1fr; }
}

/* ---------- Legacy aliases used on subpages ---------- */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.values-grid article {
  padding: 32px 28px;
  border-radius: var(--radius-panel);
  background: #fff;
  border: 1px solid rgba(8,96,192,.1);
  transition: border-color .2s, box-shadow .2s;
}
.values-grid article:hover {
  border-color: rgba(8,96,192,.3);
  box-shadow: 0 16px 40px rgba(8,104,216,.08);
}
.values-grid .num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--blue);
  margin-bottom: 10px;
}
.values-grid h3 { font-size: 22px; margin-bottom: 8px; }
.values-grid p { color: var(--muted); font-size: 15px; }
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }

.engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.engine-card {
  padding: 32px 28px;
  border-top: 1px solid rgba(61,158,240,.12);
  border-right: 1px solid rgba(61,158,240,.12);
  transition: background .2s;
}
.engine-card:hover { background: rgba(8,96,192,.12); }
.engine-card:nth-child(2n) { border-right: 0; }
.engine-card h3 { font-size: 24px; margin-bottom: 10px; color: #fff; }
.engine-card p { color: rgba(255,255,255,.55); font-size: 15px; }
@media (max-width: 800px) {
  .engine-grid { grid-template-columns: 1fr; }
  .engine-card { border-right: 0; }
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
}
.gallery-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-panel);
  box-shadow: 0 0 0 1px rgba(8,96,192,.12);
}
@media (max-width: 800px) {
  .gallery-strip { grid-template-columns: 1fr; gap: 10px; }
  .gallery-strip img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}

.brand-marquee {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.brand-marquee a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background .2s, border-color .2s;
}
.brand-marquee a:hover {
  background: rgba(8,96,192,.2);
  border-color: rgba(61,158,240,.4);
  box-shadow: 0 0 24px rgba(8,104,216,.15);
}
.brand-marquee .name {
  font-family: var(--display);
  font-size: 24px;
  color: #fff;
}
.brand-marquee small {
  color: rgba(255,255,255,.45);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-marquee .see-all { background: var(--blue); border-color: var(--blue); }
@media (max-width: 900px) { .brand-marquee { grid-template-columns: 1fr 1fr; } }

.factory-bleed {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.factory-bleed img,
.factory-bleed video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.factory-bleed::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(5,8,14,.88));
}
.factory-bleed .inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 80px 0;
  max-width: 700px;
}
.factory-bleed h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 14px;
}
.factory-bleed p { color: rgba(255,255,255,.8); margin-bottom: 28px; }

/* ---------- Products ---------- */
.brand-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.brand-tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: .15s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-tab .brand-logo {
  height: 18px;
  width: auto;
  max-width: 88px;
  object-fit: contain;
  display: block;
}
.brand-tab.brand-tab-logo-only .brand-logo {
  height: 20px;
  max-width: 96px;
}
.brand-tab.brand-tab-logo-only {
  padding-inline: 18px;
}
/* Isuzu wordmark is very wide — keep visual weight closer to peers */
.brand-tab .brand-logo[src*="isuzu"] {
  height: 15px;
  max-width: 68px;
}
.brand-tab.brand-tab-logo-only .brand-logo[src*="isuzu"] {
  height: 16px;
  max-width: 72px;
}
.brand-intro .brand-logo {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}
.engine-card .brand-logo {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.engine-card .brand-logo[src*="doosan"] {
  filter: none;
  opacity: 1;
}
.brand-tab:hover { border-color: var(--blue); color: var(--blue); }
.brand-tab.active {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px var(--blue-glow);
}
.brand-tab.active .brand-logo {
  filter: brightness(0) invert(1);
}
/* Doosan has a white wordmark — invert would wipe the text */
.brand-tab.active .brand-logo[src*="doosan"] {
  filter: none;
}
.brand-intro {
  margin-bottom: 24px;
  padding-left: 18px;
  border-left: 3px solid var(--blue);
}
.brand-intro h3 { font-size: 28px; margin-bottom: 8px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.brand-intro h3 span { display: block; }
.brand-intro p { color: var(--muted); }
.table-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  place-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 10px;
  transform: translateX(-2px);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}
.table-swipe-icon {
  flex-shrink: 0;
  color: var(--blue);
}

/* Products photo carousel — peek strip */
.product-carousel {
  --slides: 4.5;
  --gap: 14px;
  position: relative;
  margin: 28px 0 40px;
}
.product-carousel-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.product-carousel-track {
  display: flex;
  gap: var(--gap);
  width: 100%;
  transition: transform .55s var(--ease);
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
}
.product-carousel-track:active { cursor: grabbing; }
.product-carousel-slide {
  flex: 0 0 calc((100% - (var(--slides) - 1) * var(--gap)) / var(--slides));
  min-width: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--steel);
  border: 1px solid rgba(8,96,192,.16);
  box-shadow: 0 12px 32px rgba(10,16,24,.08);
  position: relative;
}
.product-carousel-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}
.product-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(5,8,14,.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 0 0 2px;
  transition: background .2s, border-color .2s;
}
.product-carousel-btn:hover {
  background: var(--blue);
  border-color: var(--blue-hi);
}
.product-carousel-btn.prev { left: 10px; }
.product-carousel-btn.next { right: 10px; }
.product-carousel-slide { cursor: zoom-in; }
@media (max-width: 800px) {
  .product-carousel {
    --slides: 2.5;
    --gap: 10px;
    margin: 8px 0 28px;
  }
  .product-carousel-slide { border-radius: 14px; }
  .product-carousel-btn { width: 38px; height: 38px; font-size: 24px; }
  /* Tighter above manufacturer pick, more air before gallery */
  .section.concrete:has(.brand-tabs) {
    padding-top: 28px;
  }
  .section.concrete:has(.brand-tabs) > .container > .section-head {
    margin-bottom: 10px !important;
  }
  .section.concrete:has(.brand-tabs) .brand-tabs {
    margin-bottom: 36px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200000;
  display: grid;
  place-items: center;
  background: rgba(5, 8, 14, .92);
  padding: 24px;
}
.lightbox[hidden] { display: none !important; }
body.lightbox-open { overflow: hidden; }
.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 80px);
}
.lightbox-figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(5,8,14,.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  transition: background .2s, border-color .2s;
}
.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--blue);
  border-color: var(--blue-hi);
}
.lightbox-close {
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
  padding: 0 0 2px;
}
.lightbox-nav.prev { left: 16px; }
.lightbox-nav.next { right: 16px; }
@media (max-width: 800px) {
  .lightbox { padding: 12px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 26px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

.table-wrap {
  overflow-x: auto;
  overflow-y: clip;
  max-height: none;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
table.products {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  min-width: 1080px;
  font-size: 14px;
}
table.products col.c-model { width: 11%; }
table.products col.c-num { width: 6.5%; }
table.products col.c-engine-model { width: 11%; }
table.products col.c-dims { width: 16%; }
table.products col.c-weight { width: 7%; }
table.products col.c-choose { width: 9%; }
table.products thead th,
table.products tbody td {
  display: table-cell;
  vertical-align: middle;
}
table.products thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--steel);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 12px 10px;
  white-space: normal;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  line-height: 1.25;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
table.products thead th:first-child {
  text-align: left;
  padding-left: 16px;
}
table.products thead tr.sub th {
  top: 42px;
  z-index: 4;
  background: #243044;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  font-weight: 500;
  padding: 8px 10px;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 6px 12px rgba(0,0,0,.12);
}
table.products thead tr.sub th.blank {
  color: transparent;
  user-select: none;
}
table.products tbody td {
  padding: 11px 10px;
  border-top: 1px solid var(--line);
  white-space: nowrap;
  text-align: center;
}
table.products tbody td:first-child {
  text-align: left;
  padding-left: 16px;
}
table.products tbody tr:nth-child(even) { background: #f7f9fb; }
table.products tbody tr:hover { background: #e8f2fc; }
table.products td.model {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  color: var(--blue);
}
table.products td.choose {
  white-space: nowrap;
}
.btn-choose {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--blue);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-choose:hover {
  color: var(--ink);
}

/* ---------- Contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.country-block {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.country-block:last-of-type { border-bottom: 1px solid var(--line); }
.country-block h3 {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.country-block .company { font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.country-block .desc { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.country-block ul { list-style: none; }
.country-block li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 6px 0;
  font-size: 15px;
}
.country-block .label {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 4px;
}
.country-block a { color: var(--blue); font-weight: 600; }

.contact-form {
  background: linear-gradient(160deg, var(--steel-2), var(--steel));
  color: #fff;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 24px;
  border: 1px solid rgba(61,158,240,.22);
  box-shadow: 0 24px 60px rgba(0,0,0,.35), 0 0 40px rgba(8,104,216,.08);
}
.contact-form h3 { color: #fff; font-size: 32px; margin-bottom: 8px; }
.contact-form .sub { color: rgba(255,255,255,.55); margin-bottom: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 7px;
}
.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: #fff;
  border-radius: 14px;
}
.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-hi);
  background: rgba(8,96,192,.14);
}
.field option { color: #111; }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 14px; }
.field-check { margin-top: 4px; margin-bottom: 16px; }
.check-label {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(255,255,255,.78) !important;
  cursor: pointer;
  line-height: 1.4;
  margin-bottom: 0 !important;
}
.check-label input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  box-sizing: border-box;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 5px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  vertical-align: middle;
}
.check-label input[type="checkbox"]:checked {
  border-color: var(--blue-hi);
  background-color: var(--blue-hi);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2 6.6 11.2 12.5 4.8'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.check-label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--blue-hi);
  outline-offset: 2px;
}
.check-label [data-privacy-line] {
  display: inline;
}
.check-label a {
  color: var(--blue-hi);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.check-label a:hover { color: #fff; }
.legal-content {
  max-width: 780px;
  padding-bottom: 20px;
}
.legal-content h2 {
  font-size: 22px;
  margin: 28px 0 10px;
}
.legal-content p {
  color: var(--muted);
  margin-bottom: 12px;
}
.legal-content a { color: var(--blue); font-weight: 600; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(8,96,192,.28);
  border: 1px solid var(--blue-hi);
  color: #fff;
  font-weight: 600;
}
.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(180,40,40,.22);
  border: 1px solid rgba(255,120,120,.45);
  color: #ffd0d0;
  font-weight: 600;
}
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ---------- CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 90px 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(8,96,192,.45), transparent 55%),
    linear-gradient(120deg, var(--blue-deep) 0%, #083a70 45%, var(--steel) 100%);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 55%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61,158,240,.4), transparent 70%);
}
.cta-band .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 10px;
  max-width: 22em;
  line-height: 1.15;
}
.cta-band p { color: rgba(255,255,255,.8); max-width: 34em; font-size: 16.5px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--steel);
  color: rgba(255,255,255,.55);
  padding: 72px 0 0;
  font-size: 14px;
  border-top: 1px solid rgba(61,158,240,.2);
  box-shadow: 0 -20px 50px rgba(8,104,216,.06);
  overflow-x: clip;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer .logo {
  max-width: 200px;
  display: inline-block;
}
.site-footer .logo img {
  max-height: 42px;
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: #fff; }
.footer-bar {
  position: relative;
  padding: 26px 0 18px;
}
/* One continuous bar: straight line + wave in the exact center */
.footer-impulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12px;
  pointer-events: none;
  background-color: rgba(8, 96, 192, .42);
  background-image: linear-gradient(
    90deg,
    transparent 0%,
    transparent 38%,
    rgba(61,158,240,.18) 46%,
    rgba(157,208,255,.98) 50%,
    rgba(61,158,240,.22) 54%,
    transparent 62%,
    transparent 100%
  );
  background-size: 180% 100%;
  background-repeat: no-repeat;
  background-position: 120% 0;
  animation: pulse-flow 3.2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(61,158,240,.32));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 6 H570 L582 1.2 L600 10.8 L618 1.2 L630 6 H1200' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 12' preserveAspectRatio='none'%3E%3Cpath d='M0 6 H570 L582 1.2 L600 10.8 L618 1.2 L630 6 H1200' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.footer-bottom {
  position: relative;
  border-top: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 28px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
}
.footer-bottom .footer-copy {
  position: relative;
  z-index: 1;
  max-width: calc(50% - 100px);
}
/* Same center axis as the impulse wave (footer-bar = full viewport width) */
.footer-bar > .footer-powered {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  line-height: 1;
  transition: color .25s ease;
}
.footer-bar > .footer-powered > span {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  /* cancel trailing tracking so box width = visible text */
  margin-inline-end: -0.06em;
}
.footer-bar > .footer-powered:hover { color: rgba(255,255,255,.72); }
.footer-weblo-logo {
  display: block;
  height: 12px;
  width: auto;
  margin: 0;
  padding: 0;
  opacity: .85;
  filter: grayscale(1) brightness(1.15);
  transition: filter .28s ease, opacity .25s ease;
}
.footer-bar > .footer-powered:hover .footer-weblo-logo {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}
.footer-bottom .footer-privacy {
  position: relative;
  z-index: 1;
  margin-left: auto;
  max-width: calc(50% - 100px);
  text-align: right;
  color: rgba(255,255,255,.38);
  text-decoration: none;
}
.footer-bottom .footer-privacy:hover { color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .footer-impulse {
    animation: none;
    background-image: none;
    background: rgba(61,158,240,.55);
    filter: none;
  }
}
@media (max-width: 720px) {
  .footer-bar {
    padding: 28px 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer-impulse {
    position: relative;
    top: auto;
    order: -2;
  }
  .footer-bar > .footer-powered {
    position: static;
    transform: none;
    order: -1;
  }
  .footer-bottom {
    width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom .footer-copy,
  .footer-bottom .footer-privacy {
    max-width: none;
    margin: 0;
    text-align: center;
  }
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* concrete alias for older pages */
.section.concrete { background: var(--fog); }
.section.alt { background: var(--fog); }
.btn-outline-dark {
  border-color: rgba(8,96,192,.4);
  color: var(--ink);
  background: transparent;
  border-radius: var(--radius-pill);
  font-style: normal;
}
.btn-outline-dark:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px var(--blue-glow);
}

/* ---------- Cookie bar ---------- */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100000;
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(12,18,28,.98), rgba(5,8,14,.98));
  border: 1px solid rgba(61,158,240,.35);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.45), 0 0 30px rgba(8,104,216,.12);
  color: #fff;
  padding: 18px 20px;
  transition: opacity .35s ease, transform .35s ease;
}
.cookie-bar.is-hidden {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.cookie-bar-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-bar p {
  flex: 1 1 280px;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.82);
}
.cookie-bar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-bar .btn {
  padding: 11px 20px;
  font-size: 13px;
}
.cookie-bar .btn-ghost {
  border-color: rgba(255,255,255,.28);
  color: #fff;
}
.cookie-bar .btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: #fff;
  box-shadow: none;
}
@media (max-width: 560px) {
  .cookie-bar { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
  .cookie-bar-actions { width: 100%; }
  .cookie-bar-actions .btn { flex: 1; justify-content: center; }
}

/* ---------- Mobile / RWD density ---------- */
@media (max-width: 980px) {
  .site-header { top: 10px; }
  .header-shell {
    width: min(100% - 16px, 1280px);
    padding: 10px 12px 10px 14px;
    gap: 12px;
  }
  .logo { max-width: min(200px, calc(100% - 64px)); }
  .logo img { max-height: 40px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 28px; }
  .cta-band { padding: 56px 0; }
  .site-footer { padding: 48px 0 0; }
  .footer-grid { gap: 24px; padding-bottom: 32px; }
  .ticker a { padding: 18px 28px; }
  .ticker .name { font-size: 20px; }
}

@media (max-width: 800px) {
  .hero {
    min-height: 0;
    min-height: auto;
  }
  .hero-frame {
    flex: 0 0 auto;
    justify-content: flex-end;
    padding-bottom: 0;
  }
  .hero-main {
    padding-top: 126px; /* +30 mobile */
    padding-bottom: 54px; /* +30 mobile */
  }
  .hero h1 { font-size: clamp(30px, 8.5vw, 40px); max-width: none; }
  .hero-main > p { margin-bottom: 20px; font-size: 15.5px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 18px; font-size: 12.5px; }

  .page-hero {
    min-height: 0;
    padding: 110px 0 36px;
  }
  .page-hero h1 { font-size: clamp(30px, 8vw, 40px); margin-bottom: 10px; }
  .page-hero p { font-size: 15.5px; }

  .stage {
    min-height: 0;
  }
  .stage-inner {
    width: min(100% - 28px, var(--container));
    margin-left: 14px !important;
    margin-right: 14px !important;
    padding: 48px 0 40px;
    max-width: none;
  }
  .stage h2 { font-size: clamp(26px, 7vw, 34px); margin-bottom: 12px; }
  .stage p { font-size: 15.5px; margin-bottom: 18px; }

  .factory-bleed {
    min-height: 0;
  }
  .factory-bleed .inner {
    width: min(100% - 28px, var(--container));
    padding: 48px 0 40px;
  }
  .factory-bleed h2 { font-size: clamp(26px, 7vw, 34px); }

  .feature-rows { gap: 12px; }
  .feature-rows article { padding: 22px 18px; }
  .values-grid article { padding: 22px 18px; }
  .engine-card { padding: 22px 18px; }

  .brand-marquee { gap: 8px; }
  .brand-marquee a { min-height: 0; padding: 18px 14px; }

  .contact-layout { gap: 24px; }
  .form-card { padding: 22px 18px; }

  .btn { padding: 12px 20px; }
}

@media (max-width: 900px) {
  .brand-intro { display: none; }
  .table-swipe-hint { display: flex; }
}

@media (max-width: 560px) {
  .section { padding: 48px 0; }
  .section-head h2 { font-size: clamp(26px, 7.5vw, 32px); }
  .section-head p { font-size: 15px; }
  .cta-band .inner { gap: 18px; }
  .cta-band h2 { max-width: none; font-size: clamp(24px, 7vw, 30px); }
  .brand-tabs { gap: 6px; margin-bottom: 20px; }
  .section.concrete:has(.brand-tabs) {
    padding-top: 22px;
  }
  .section.concrete:has(.brand-tabs) .brand-tabs {
    margin-bottom: 40px;
  }
  .brand-tab { padding: 10px 14px; font-size: 12px; }
  .brand-tab.brand-tab-logo-only { padding-inline: 12px; }
  .brand-tab .brand-logo {
    height: 16px;
    max-width: 74px;
  }
  .brand-tab.brand-tab-logo-only .brand-logo {
    height: 17px;
    max-width: 78px;
  }
  .brand-tab .brand-logo[src*="isuzu"],
  .brand-tab.brand-tab-logo-only .brand-logo[src*="isuzu"] {
    height: 13px;
    max-width: 58px;
  }
  .lang-dropdown { margin: 4px 0 0; }
}

/* Prefer shorter cinematic panels on short screens */
@media (max-height: 740px) and (max-width: 900px) {
  .hero-main { padding-top: 114px; padding-bottom: 46px; }
  .hero-rail strong { font-size: 20px; }
  .stage-inner,
  .factory-bleed .inner { padding-block: 36px; }
}

/* ---------- Chat FAB + contact modal ---------- */
.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(61,158,240,.45);
  background: linear-gradient(145deg, var(--blue-mid), var(--blue-deep));
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(8,104,216,.4), 0 0 0 4px rgba(8,96,192,.12);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.chat-fab:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 40px rgba(8,104,216,.5), 0 0 0 5px rgba(8,96,192,.16);
}
.chat-fab-online {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: online-pulse 2s ease-out infinite;
}
@keyframes online-pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
body.contact-modal-open { overflow: hidden; }
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 210000;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(5,8,14,.72);
  backdrop-filter: blur(8px);
}
.contact-modal[hidden] { display: none !important; }
.contact-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(90vh, 720px);
  overflow: auto;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(8,96,192,.28), transparent 55%),
    linear-gradient(165deg, #0c1420 0%, #05080e 55%, #070b12 100%);
  border: 1px solid rgba(61,158,240,.28);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(5,8,14,.45);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.contact-modal-close:hover {
  background: var(--blue);
  border-color: var(--blue-hi);
  color: #fff;
}
.contact-modal .contact-form,
.contact-modal .contact-modal-form {
  border-radius: 24px;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 28px 28px 24px;
  overflow: visible;
}
.contact-modal .contact-form h3 {
  font-size: 24px;
  margin-bottom: 4px;
  padding-right: 44px;
}
.contact-modal .contact-form .sub { margin-bottom: 14px; font-size: 14px; }
.contact-modal .field { margin-bottom: 10px; }
.contact-modal .field input:not([type="checkbox"]),
.contact-modal .field select,
.contact-modal .field textarea {
  padding: 11px 12px;
  color-scheme: dark;
}
.contact-modal .field textarea { min-height: 90px; }
.contact-modal .form-success { margin-top: 10px; padding: 10px 12px; }

/* Match selects on contact page too */
.contact-form .field select {
  -webkit-appearance: none;
  appearance: none;
  color-scheme: dark;
  background-color: rgba(255,255,255,.04);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 L6 6.5 L11 1.5' fill='none' stroke='%239db8d4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  color: #fff;
}
.contact-form .field select option {
  background: #0c121c;
  color: #fff;
}

@media (max-width: 900px) {
  .contact-modal-panel { width: min(100%, 560px); }
  .chat-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
@media (max-width: 560px) {
  .cookie-bar ~ .chat-fab,
  body:has(.cookie-bar:not(.is-hidden)) .chat-fab {
    bottom: 110px;
  }
}

/* ---------- Brand products hub ---------- */
.brand-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.brand-hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.brand-hub-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(8, 96, 192, .08);
}
.brand-hub-card .brand-logo {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  align-self: flex-start;
}
.brand-hub-card h3 {
  font-size: 18px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}
.brand-hub-card h3 span {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.brand-hub-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
a.brand-tab {
  text-decoration: none;
  color: inherit;
}
