/* ── RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background: #060c18;
  color: #fff;
  font-family: "Barlow", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  border: 0;
}
a {
  cursor: pointer;
}
button {
  cursor: pointer;
  font-family: inherit;
}

/* ── VARS ── */
:root {
  --bg: #060c18;
  --bg2: #0b1220;
  --bg3: #101828;
  --acc: #4a90d9;
  --acc2: #7ab3e8;
  --muted: #6a7890;
  --fh: "Barlow Condensed", sans-serif;
  --nav: 60px;
  --w: 1200px;
}

/* ── LANGUAGE ── */
.de,
.en {
  display: none !important;
}
body.lang-de .de {
  display: block !important;
}
body.lang-en .en {
  display: block !important;
}
span.de,
span.en {
  display: none !important;
}
body.lang-de span.de {
  display: inline !important;
}
body.lang-en span.en {
  display: inline !important;
}
li.de,
li.en {
  display: none !important;
}
body.lang-de li.de {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
body.lang-en li.en {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(6, 12, 24, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74, 144, 217, 0.12);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(6, 12, 24, 0.98);
}
.nav-logo {
  height: 26px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100%;
  width: auto;
}
.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--fh);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--acc);
}
.lang-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  margin-left: 12px;
}
.lbtn {
  background: none;
  border: 1px solid rgba(74, 144, 217, 0.3);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--fh);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 4px 9px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.lbtn.on,
.lbtn:hover {
  background: var(--acc);
  border-color: var(--acc);
  color: #fff;
}

/* Hamburger */
.hbg {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  width: 44px;
  height: 44px;
}
.hbg span {
  display: block;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  -webkit-transition: transform 0.28s, opacity 0.28s;
  transition: transform 0.28s, opacity 0.28s;
}
.hbg.open span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.hbg.open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.hbg.open span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mob-menu {
  display: none;
  position: fixed;
  top: var(--nav);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 850;
  background: #060c18;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 32px 24px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mob-menu.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mob-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
}
.mob-menu a:last-of-type {
  border-bottom: none;
}
.mob-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 32px;
}
.mob-lang .lbtn {
  font-size: 14px;
  padding: 10px 20px;
}

@media (max-width: 860px) {
  .nav-links,
  .lang-wrap {
    display: none;
  }
  .hbg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* ── HERO ── */
#hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 100vh;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
}
#hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  -webkit-animation: kb 22s ease-in-out infinite alternate;
  animation: kb 22s ease-in-out infinite alternate;
}
@-webkit-keyframes kb {
  from {
    background-size: 108% !important;
    background-position: 52% 42% !important;
  }
  to {
    background-size: 122% !important;
    background-position: 48% 52% !important;
  }
}
@keyframes kb {
  from {
    background-size: 108% !important;
    background-position: 52% 42% !important;
  }
  to {
    background-size: 122% !important;
    background-position: 48% 52% !important;
  }
}
#hero-grad {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: -webkit-linear-gradient(
    290deg,
    rgba(6, 12, 24, 0.92) 0%,
    rgba(6, 12, 24, 0.45) 55%,
    rgba(6, 12, 24, 0.65) 100%
  );
  background: linear-gradient(
    160deg,
    rgba(6, 12, 24, 0.92) 0%,
    rgba(6, 12, 24, 0.45) 55%,
    rgba(6, 12, 24, 0.65) 100%
  );
}
.hi {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--w);
  margin: 0 auto;
  padding: calc(var(--nav) + 20px) clamp(16px, 4vw, 48px) clamp(32px, 6vh, 64px);
}

/* Hero text: VISIBLE BY DEFAULT — animation is progressive enhancement */
.accent-line {
  display: block;
  width: 1px;
  height: 40px;
  opacity: 0.6;
  margin-bottom: 16px;
  background: var(--acc);
}
.hero-h {
  font-family: var(--fh);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(30px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.hero-h .l1 {
  display: block;
}
.hero-h .l2 {
  display: block;
  color: var(--acc);
  font-size: 0.62em;
  letter-spacing: 0;
  margin-top: 8px;
}
.hero-sub {
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 6px;
}
.hero-sub2 {
  font-size: clamp(12px, 1.5vw, 15px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(74, 144, 217, 0.15);
}
.stat {
  padding: 10px 14px;
  border-right: 1px solid rgba(74, 144, 217, 0.15);
}
.stat:last-child {
  border-right: none;
}
.stat .num {
  font-family: var(--fh);
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--acc);
  line-height: 1;
}
.stat .lbl {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

/* Progressive animation — only if JS adds .hi-anim */
.hi-anim .accent-line {
  height: 0;
  opacity: 0;
  -webkit-animation: line-in 0.8s ease-out 0.3s forwards;
  animation: line-in 0.8s ease-out 0.3s forwards;
}
@-webkit-keyframes line-in {
  to {
    height: 40px;
    opacity: 0.6;
  }
}
@keyframes line-in {
  to {
    height: 40px;
    opacity: 0.6;
  }
}
.hi-anim .hero-h .l1 {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: slideup 0.7s cubic-bezier(0.22, 0.68, 0, 1.2) 0.7s forwards;
  animation: slideup 0.7s cubic-bezier(0.22, 0.68, 0, 1.2) 0.7s forwards;
}
.hi-anim .hero-h .l2 {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-animation: slideup 0.7s cubic-bezier(0.22, 0.68, 0, 1.2) 1s forwards;
  animation: slideup 0.7s cubic-bezier(0.22, 0.68, 0, 1.2) 1s forwards;
}
@-webkit-keyframes slideup {
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes slideup {
  to {
    opacity: 1;
    transform: none;
  }
}
.hi-anim .hero-sub {
  opacity: 0;
  -webkit-animation: fadein 0.7s ease 1.3s forwards;
  animation: fadein 0.7s ease 1.3s forwards;
}
.hi-anim .hero-sub2 {
  opacity: 0;
  -webkit-animation: fadein 0.7s ease 1.5s forwards;
  animation: fadein 0.7s ease 1.5s forwards;
}
.hi-anim .hero-btns {
  opacity: 0;
  -webkit-animation: fadein 0.7s ease 1.7s forwards;
  animation: fadein 0.7s ease 1.7s forwards;
}
.hi-anim .stats {
  opacity: 0;
  -webkit-animation: fadein 0.7s ease 1.9s forwards;
  animation: fadein 0.7s ease 1.9s forwards;
}
@-webkit-keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── BUTTONS ── */
.btn-p {
  background: var(--acc);
  color: #fff;
  font-family: var(--fh);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 26px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.btn-p:hover {
  background: var(--acc2);
}
.btn-s {
  border: 1px solid rgba(74, 144, 217, 0.45);
  color: var(--acc);
  font-family: var(--fh);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 26px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  background: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.btn-s:hover {
  background: rgba(74, 144, 217, 0.09);
}

/* ── SECTIONS ── */
.sec {
  padding: clamp(48px, 8vw, 88px) clamp(16px, 4vw, 48px);
}
.wrap {
  max-width: var(--w);
  margin: 0 auto;
}
.eyebrow {
  font-family: var(--fh);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--acc);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.sec-title {
  font-family: var(--fh);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(24px, 4vw, 50px);
  line-height: 1.02;
  margin-bottom: 12px;
}
.sec-title span {
  color: var(--acc);
}
.sec-lead {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  max-width: 700px;
}
.divider {
  width: 36px;
  height: 2px;
  background: var(--acc);
  margin: 12px 0 16px;
}
.bp {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 12px;
}
.bp.bold {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* Scroll reveal */
.rv {
  opacity: 0;
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
}
.rv.in {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

/* ── 2-COL GRID ── */
.g2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 5vw, 64px);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.g2.top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.col-img {
  overflow: hidden;
  height: clamp(240px, 38vw, 460px);
}
.col-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 8s ease;
  transition: transform 8s ease;
}
.col-img:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

/* ── STRENGTHS ── */
.str-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(74, 144, 217, 0.08);
  margin-top: 40px;
}
.str-card {
  background: var(--bg2);
  padding: clamp(20px, 3.5vw, 34px);
  position: relative;
  overflow: hidden;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.str-card:hover {
  background: var(--bg3);
}
.str-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--acc);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform-origin: left;
  transform-origin: left;
}
.str-card:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.str-n {
  font-family: var(--fh);
  font-size: 44px;
  font-weight: 800;
  color: rgba(74, 144, 217, 0.05);
  position: absolute;
  top: 6px;
  right: 10px;
  line-height: 1;
}
.str-t {
  font-family: var(--fh);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  margin-top: 20px;
}
.str-p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-weight: 300;
}

/* ── PRODUCTS ── */
.prod-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 28px;
}
.prod-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.prod-img {
  position: relative;
  overflow: hidden;
  height: clamp(180px, 22vw, 280px);
}
.prod-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  display: block;
}
.prod-img:hover img {
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}
.prod-ov {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(
    bottom,
    rgba(6, 12, 24, 0.4) 0%,
    transparent 60%
  );
  background: linear-gradient(to top, rgba(6, 12, 24, 0.4) 0%, transparent 60%);
}
.prod-body {
  background: var(--bg2);
  padding: clamp(16px, 2vw, 24px);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.prod-tag {
  font-family: var(--fh);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 6px;
}
.prod-name {
  font-family: var(--fh);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.1;
}
.prod-sub {
  font-family: var(--fh);
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.prod-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  font-weight: 300;
}
.prod-foot {
  margin-top: 28px;
}
.prod-foot p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 8px;
}
.prod-foot .tag {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  margin-top: 12px;
}

/* ── LOGISTICS ── */
.log-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
.log-img {
  overflow: hidden;
  min-height: 280px;
}
.log-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.log-body {
  padding: clamp(36px, 5vw, 64px) clamp(20px, 4vw, 48px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--bg3);
}
.log-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}
.log-list {
  list-style: none;
}
.log-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(74, 144, 217, 0.08);
}
.log-list li:last-child {
  border-bottom: none;
}
.log-arr {
  color: var(--acc);
  font-size: 13px;
  padding-top: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 700;
}
.log-t strong {
  display: block;
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.log-t span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 300;
  line-height: 1.5;
}

/* ── REGIONS ── */
.regions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.rpill {
  border: 1px solid rgba(74, 144, 217, 0.2);
  padding: 7px 14px;
  font-family: var(--fh);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.rpill:hover {
  border-color: var(--acc);
  color: var(--acc);
}

/* ── CONTACT ── */
.info-lbl {
  font-family: var(--fh);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 3px;
}
.info-val {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 18px;
}
.cp {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.9;
}
.cps {
  margin-bottom: 22px;
}
input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(74, 144, 217, 0.22);
  color: #fff;
  padding: 12px 13px;
  font-size: 15px;
  font-family: "Barlow", sans-serif;
  outline: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
input:focus,
textarea:focus {
  border-color: var(--acc);
}
.flbl {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
  font-family: var(--fh);
}
.field {
  margin-bottom: 10px;
}
.cap-box {
  padding: 12px;
  border: 1px solid rgba(74, 144, 217, 0.22);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 14px;
}
.cap-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cap-q {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  min-width: 80px;
}
.cap-a {
  width: 60px !important;
  text-align: center;
  padding: 8px !important;
  font-size: 15px;
}
.cap-ref {
  background: none;
  border: 1px solid rgba(74, 144, 217, 0.22);
  color: var(--muted);
  padding: 7px 11px;
  font-size: 11px;
  font-family: var(--fh);
  letter-spacing: 1px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cap-ref:hover {
  border-color: var(--acc);
  color: var(--acc);
}

/* ── SLIDESHOW ── */
.slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(260px, 38vw, 500px);
  background: var(--bg3);
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 1.1s ease;
  transition: opacity 1.1s ease;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.slide-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-linear-gradient(top, transparent, rgba(6, 12, 24, 0.88));
  background: linear-gradient(
    to top,
    rgba(6, 12, 24, 0.88) 0%,
    transparent 100%
  );
  padding: 18px 18px 12px;
}
.slide-cap::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--acc);
  margin-bottom: 6px;
}
.slide-cap p {
  font-family: var(--fh);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.sdots {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  z-index: 10;
}
.sdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  padding: 0;
  -webkit-transition: background 0.25s, -webkit-transform 0.25s;
  transition: background 0.25s, transform 0.25s;
}
.sdot.active {
  background: var(--acc);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
}
.sbar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--acc);
  width: 0;
  z-index: 10;
}
.sbar.run {
  -webkit-animation: sbr 4s linear forwards;
  animation: sbr 4s linear forwards;
}
@-webkit-keyframes sbr {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes sbr {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(74, 144, 217, 0.1);
  padding: 28px clamp(16px, 4vw, 48px) 20px;
}
.ft {
  max-width: var(--w);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
.ft-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ft-links a {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  font-size: 11px;
  font-family: var(--fh);
  letter-spacing: 1px;
  text-transform: uppercase;
  background: none;
  border: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.ft-links a:hover {
  color: var(--acc);
}
.ft-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 1px;
}

/* ── MODALS ── */
.modal-ov {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal-ov.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 40px 16px;
}
.modal-box {
  background: var(--bg2);
  border: 1px solid rgba(74, 144, 217, 0.2);
  max-width: 640px;
  width: 100%;
  padding: clamp(20px, 4vw, 40px);
  position: relative;
}
.mclose {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.mclose:hover {
  color: var(--acc);
}
.mtitle {
  font-family: var(--fh);
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.mbody {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.mbody p {
  margin-bottom: 10px;
}
.mbody h3 {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin: 14px 0 5px;
}
.mbody h4 {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--acc2);
  margin: 10px 0 3px;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 860px) {
  .g2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .g2 .col-img {
    order: -1;
    height: clamp(220px, 45vw, 380px);
  }
  .log-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .log-img {
    height: 240px;
    min-height: 0;
  }
  .prod-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .str-grid {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --nav: 56px;
  }
  /* Hero: disable kb animation, single bg */
  #hero-bg {
    -webkit-animation: none !important;
    animation: none !important;
    background-size: cover !important;
    background-position: center 35% !important;
    filter: brightness(0.38) saturate(0.5) !important;
  }
  /* All hero text already visible; disable hi-anim on mobile */
  .hi-anim .accent-line,
  .hi-anim .hero-h .l1,
  .hi-anim .hero-h .l2,
  .hi-anim .hero-sub,
  .hi-anim .hero-sub2,
  .hi-anim .hero-btns,
  .hi-anim .stats {
    -webkit-animation: none !important;
    animation: none !important;
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
    height: auto;
  }
  .hi-anim .accent-line {
    height: 22px;
    opacity: 0.6;
    margin-bottom: 10px;
  }
  .hero-h {
    font-size: clamp(28px, 9.5vw, 44px);
    letter-spacing: -0.5px;
  }
  .hero-sub {
    font-size: 13px;
    line-height: 1.65;
  }
  .hero-btns {
    gap: 8px;
    margin-bottom: 20px;
  }
  .btn-p,
  .btn-s {
    padding: 11px 20px;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  /* Stats 2×2 */
  .stats {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .stat {
    border-right: none !important;
    border-bottom: 1px solid rgba(74, 144, 217, 0.15);
  }
  .stat:nth-child(odd) {
    border-right: 1px solid rgba(74, 144, 217, 0.15) !important;
  }
  .stat:nth-child(3),
  .stat:nth-child(4) {
    border-bottom: none;
  }
  .stat .num {
    font-size: clamp(20px, 6vw, 28px);
  }
  /* Sections */
  .sec {
    padding: 36px 16px;
  }
  .sec-title {
    font-size: clamp(22px, 7vw, 32px);
  }
  .g2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .g2 .col-img {
    order: -1;
    height: 220px;
  }
  .str-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .prod-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .prod-img {
    height: clamp(160px, 50vw, 240px);
  }
  .log-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .log-img {
    height: 190px;
    min-height: 0;
  }
  .log-body {
    padding: 28px 16px;
  }
  .slideshow {
    height: clamp(190px, 56vw, 280px);
  }
  .ft {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .hero-h {
    font-size: clamp(22px, 9vw, 32px);
  }
  .btn-p,
  .btn-s {
    padding: 10px 14px;
    font-size: 10px;
  }
  .sec-title {
    font-size: clamp(20px, 7.5vw, 26px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation: none !important;
    animation: none !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hi-anim .accent-line,
  .hi-anim .hero-h .l1,
  .hi-anim .hero-h .l2,
  .hi-anim .hero-sub,
  .hi-anim .hero-sub2,
  .hi-anim .hero-btns,
  .hi-anim .stats {
    opacity: 1 !important;
    -webkit-transform: none !important;
    transform: none !important;
  }
}
