/* ╔══════════════════════════════════════════════════════════╗
   ║        HOME PAGE — v3 "Industrial Cinematic"              ║
   ╚══════════════════════════════════════════════════════════╝ */

/* ─── DESIGN TOKENS ───────────────────────────────── */
:root {
  --hp-bg:        #050a14;
  --hp-navy:      #0b1120;
  --hp-blue:      #2563EB;
  --hp-blue-glow: rgba(37,99,235,0.35);
  --hp-orange:    #F05A1A;
  --hp-oran-glow: rgba(240,90,26,0.35);
  --hp-white:     #ffffff;
  --hp-muted:     rgba(255,255,255,0.45);
  --hp-border:    rgba(255,255,255,0.07);
  --hp-radius:    16px;
  --hp-trans:     0.28s cubic-bezier(.4,0,.2,1);
  --hp-font-head: 'DM Sans', sans-serif;
  --hp-font-body: 'DM Sans', sans-serif;
}

/* ─── SHARED UTILITIES ─────────────────────────────── */
.hp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.hp-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hp-blue);
  margin-bottom: 14px;
}
.hp-label--orange { color: var(--hp-orange); }
.hp-label::before {
  content: '';
  width: 22px; height: 2px;
  background: linear-gradient(90deg, var(--hp-orange), var(--hp-blue));
  border-radius: 2px;
  flex-shrink: 0;
}

/* ─── BUTTONS ──────────────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--hp-font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--hp-trans);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.hp-btn--primary {
  background: var(--hp-blue);
  color: #fff;
  box-shadow: 0 4px 24px var(--hp-blue-glow);
}
.hp-btn--primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--hp-blue-glow);
}
.hp-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(255,255,255,0.18);
}
.hp-btn--outline:hover {
  border-color: var(--hp-blue);
  color: #fff;
  background: rgba(37,99,235,0.08);
}
.hp-btn--orange {
  background: var(--hp-orange);
  color: #fff;
  box-shadow: 0 4px 24px var(--hp-oran-glow);
}
.hp-btn--orange:hover {
  background: #d44b10;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--hp-oran-glow);
}
.hp-btn--ghost {
  background: transparent;
  color: var(--hp-blue);
  border: 1.5px solid rgba(37,99,235,0.35);
}
.hp-btn--ghost:hover {
  background: rgba(37,99,235,0.08);
  border-color: var(--hp-blue);
}

/* ─── SECTION HEADER ───────────────────────────────── */
.hp-section-header { margin-bottom: 56px; }
.hp-section-header--center { text-align: center; }
.hp-section-header--center .hp-label { justify-content: center; }
.hp-section-header__title {
  font-family: var(--hp-font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.hp-section-header__title em {
  font-style: normal;
  color: var(--hp-orange);
}
.hp-section-header__sub {
  color: var(--hp-muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════ HERO ════════════════════════ */
.hp-hero {
  position: relative;
  min-height: 82vh;
  max-height: 90vh;
  background: var(--hp-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 70px 24px 60px;
}
.hp-hero__noise {
  position: absolute; inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hp-hero__beam {
  position: absolute;
  width: 1px;
  height: 60%;
  top: 0;
  pointer-events: none;
}
.hp-hero__beam--l {
  left: 25%;
  background: linear-gradient(to bottom, transparent, rgba(37,99,235,0.25), transparent);
  animation: beamFade 6s ease-in-out infinite;
}
.hp-hero__beam--r {
  right: 25%;
  background: linear-gradient(to bottom, transparent, rgba(240,90,26,0.2), transparent);
  animation: beamFade 6s ease-in-out infinite 3s;
}
@keyframes beamFade {
  0%,100% { opacity: 0; }
  50%      { opacity: 1; }
}
.hp-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ringPulse 8s ease-in-out infinite;
}
.hp-hero__ring--1 { width: 640px; height: 640px; }
.hp-hero__ring--2 { width: 960px; height: 960px; animation-delay: -4s; }
@keyframes ringPulse {
  0%,100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 0.7; transform: translate(-50%,-50%) scale(1.03); }
}
.hp-hero__body {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 860px;
  width: 100%;
  text-align: center;
}
.hp-hero__eyebar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 7px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
}
.hp-hero__eyebar-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--hp-orange);
  box-shadow: 0 0 6px var(--hp-orange);
  animation: dotBlink 2s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.hp-hero__logo { position: relative; display: inline-block; }
.hp-hero__logo img {
  height: 80px;
  width: auto;
  position: relative; z-index: 1;
  filter: drop-shadow(0 0 24px rgba(37,99,235,0.4));
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.hp-hero__logo img:hover { transform: scale(1.05) translateY(-3px); }
.hp-hero__logo-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: logoGlow 4s ease-in-out infinite alternate;
}
@keyframes logoGlow {
  from { opacity: 0.5; transform: scale(0.9); }
  to   { opacity: 1;   transform: scale(1.1); }
}
.hp-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.92;
  gap: 2px;
  margin: 0;
}
.hp-hero__heading-r1 {
  font-family: var(--hp-font-head);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.hp-hero__heading-r2 {
  font-family: var(--hp-font-head);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, var(--hp-blue) 0%, #a78bfa 40%, var(--hp-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hp-hero__sub {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: clamp(13px, 1.8vw, 17px);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin: 0;
}
.hp-hero__sub-line {
  flex: 1;
  height: 1px;
  max-width: 80px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2));
}
.hp-hero__sub-line:last-child {
  background: linear-gradient(90deg, rgba(255,255,255,0.2), transparent);
}
.hp-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hp-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--hp-border);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  margin-top: 6px;
  width: 100%;
  max-width: 680px;
}
.hp-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 13px 20px;
  gap: 3px;
}
.hp-stat__num {
  font-family: var(--hp-font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hp-stat__num sup { font-size: 0.6em; color: var(--hp-orange); }
.hp-stat__lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.hp-stat__sep { width: 1px; background: var(--hp-border); align-self: stretch; }
.hp-hero__scroll {
  position: absolute !important;
  bottom: 30px; right: 2%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: rgba(255,255,255,0.22);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hp-hero__scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hp-hero__scroll-wheel {
  width: 3px; height: 7px;
  background: var(--hp-blue);
  border-radius: 3px;
  animation: wheelScroll 1.6s ease-in-out infinite;
}
@keyframes wheelScroll {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ════════════════ VIDEO SECTION ════════════════════ */
.hp-vid-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--hp-bg) 0%, #0b1325 50%, var(--hp-bg) 100%);
  overflow: hidden;
}
.hp-vid-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #060c1a;
  border: 1px solid rgba(37,99,235,0.2);
  box-shadow: 0 0 0 1px rgba(37,99,235,0.08), 0 40px 100px rgba(0,0,0,0.6);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-vid-frame--sm { min-height: 380px; }
.hp-vid-frame__corner {
  position: absolute;
  width: 28px; height: 28px;
  z-index: 10;
  pointer-events: none;
}
.hp-vid-frame__corner--tl { top: 14px; left: 14px; border-top: 2px solid var(--hp-blue); border-left: 2px solid var(--hp-blue); border-radius: 4px 0 0 0; }
.hp-vid-frame__corner--tr { top: 14px; right: 14px; border-top: 2px solid var(--hp-blue); border-right: 2px solid var(--hp-blue); border-radius: 0 4px 0 0; }
.hp-vid-frame__corner--bl { bottom: 14px; left: 14px; border-bottom: 2px solid var(--hp-orange); border-left: 2px solid var(--hp-orange); border-radius: 0 0 0 4px; }
.hp-vid-frame__corner--br { bottom: 14px; right: 14px; border-bottom: 2px solid var(--hp-orange); border-right: 2px solid var(--hp-orange); border-radius: 0 0 4px 0; }
.hp-vid-frame__scan {
  position: absolute;
  left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.6), transparent);
  z-index: 9;
  animation: scanLine 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scanLine {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.hp-vid-frame__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hp-vid-frame__overlay {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(5,10,20,0.75), rgba(5,10,20,0.5));
  z-index: 5;
  transition: opacity 0.5s;
}
.hp-vid-frame__meta {
  position: absolute;
  bottom: 22px; left: 22px;
}
.hp-play {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--hp-blue);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  padding: 0; padding-left: 4px;
  box-shadow: 0 0 0 14px rgba(37,99,235,0.15);
  transition: transform 0.25s, box-shadow 0.25s;
}
.hp-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 20px rgba(37,99,235,0.1), 0 0 40px var(--hp-blue-glow);
}
.hp-play__ring {
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(37,99,235,0.3);
  animation: playRing 2.4s ease-out infinite;
}
@keyframes playRing {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.hp-play--orange { background: var(--hp-orange); box-shadow: 0 0 0 14px rgba(240,90,26,0.15); }
.hp-play--orange:hover { box-shadow: 0 0 0 20px rgba(240,90,26,0.1), 0 0 40px var(--hp-oran-glow); }
.hp-play--orange .hp-play__ring { border-color: rgba(240,90,26,0.3); }
.hp-vid-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.75);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  letter-spacing: 0.06em;
}
.hp-vid-badge i { color: var(--hp-blue); }
.hp-vid-badge--orange i { color: var(--hp-orange); }

/* ════════════════ ABOUT ════════════════════════════ */
.hp-about { padding: 100px 0; background: #fff; }
.hp-about .hp-label { color: var(--hp-blue); }
.hp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.hp-about__panel { display: flex; flex-direction: column; gap: 24px; }
.hp-about__icon-box {
  position: relative;
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #0b1325 0%, #1a2744 100%);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(37,99,235,0.15);
}
.hp-about__icon-box i { font-size: 100px; color: rgba(37,99,235,0.12); position: relative; z-index: 1; }
.hp-about__icon-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  animation: panelGlow 5s ease-in-out infinite alternate;
}
@keyframes panelGlow {
  from { transform: translate(-30%,-30%) scale(0.8); }
  to   { transform: translate(30%,30%) scale(1.2); }
}
.hp-about__chips {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hp-chip {
  background: #f0f4ff; border: 1.5px solid #dce8ff;
  border-radius: 12px; padding: 14px 16px; text-align: center;
  transition: var(--hp-trans);
}
.hp-chip:hover { background: #e0ecff; border-color: var(--hp-blue); transform: translateY(-2px); }
.hp-chip--orange { background: #fff5f0; border-color: #ffd5c2; }
.hp-chip--orange:hover { background: #ffe8dc; border-color: var(--hp-orange); }
.hp-chip__num {
  font-family: var(--hp-font-head);
  font-size: 1.4rem; font-weight: 800;
  color: var(--hp-blue); display: block; line-height: 1; margin-bottom: 2px;
}
.hp-chip--orange .hp-chip__num { color: var(--hp-orange); }
.hp-chip__lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #6b7280; }
.hp-about__checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hp-about__checks li { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: #374151; }
.hp-about__checks li i { color: var(--hp-blue); font-size: 13px; flex-shrink: 0; }
.hp-about__text { display: flex; flex-direction: column; gap: 18px; }
.hp-about__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800; color: #0f172a; line-height: 1.12; margin: 0;
}
.hp-about__title em { font-style: normal; color: var(--hp-orange); }
.hp-about__text p { color: #4b5563; line-height: 1.8; font-size: 15px; margin: 0; }
.hp-about__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

/* ════════════════ PRODUCTS VIDEO ═══════════════════ */
.hp-pv { padding: 100px 0; background: #f8fafc; }
.hp-pv__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hp-pv__text { display: flex; flex-direction: column; gap: 18px; }
.hp-pv__title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800; color: #0f172a; line-height: 1.12; margin: 0;
}
.hp-pv__title em { font-style: normal; color: var(--hp-orange); }
.hp-pv__text p { color: #4b5563; line-height: 1.8; font-size: 15px; margin: 0; }
.hp-pv__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.hp-pv__list li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: #374151; }
.hp-pv__list li i {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: #fff5f0; border: 1px solid #ffd5c2;
  display: flex; align-items: center; justify-content: center;
  color: var(--hp-orange); font-size: 13px; flex-shrink: 0;
}

/* ════════════════ GERMANY STRIP ════════════════════ */
.hp-germany {
  position: relative;
  background: var(--hp-bg);
  overflow: hidden;
  padding: 80px 28px;
  text-align: center;
  border-top: 1px solid rgba(37,99,235,0.1);
  border-bottom: 1px solid rgba(240,90,26,0.1);
}
.hp-germany__laser {
  position: absolute;
  left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--hp-blue) 30%, var(--hp-orange) 70%, transparent 100%);
  top: 50%; opacity: 0.15; pointer-events: none;
}
.hp-germany__glow {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(60px);
}
.hp-germany__glow--l {
  width: 500px; height: 400px; left: -80px; top: -100px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.18) 0%, transparent 70%);
}
.hp-germany__glow--r {
  width: 400px; height: 300px; right: -60px; bottom: -80px;
  background: radial-gradient(ellipse, rgba(240,90,26,0.16) 0%, transparent 70%);
}
.hp-germany__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.hp-germany__flag {
  font-size: 4rem;
  filter: drop-shadow(0 4px 16px rgba(255,255,255,0.1));
  animation: flagBob 3s ease-in-out infinite;
}
@keyframes flagBob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hp-germany__text { text-align: center; }
.hp-germany__headline {
  font-family: var(--hp-font-head);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 10px;
}
.hp-germany__sub {
  color: rgba(255,255,255,0.38);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300; letter-spacing: 0.08em; margin: 0;
}
.hp-germany__badges { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hp-g-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.58);
  font-size: 13px; font-weight: 600;
  padding: 9px 20px; border-radius: 999px;
  letter-spacing: 0.05em; transition: border-color 0.2s, color 0.2s;
}
.hp-g-badge:hover { border-color: rgba(255,255,255,0.2); color: #fff; }
.hp-g-badge i { color: var(--hp-orange); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media(max-width:1024px) {
  .hp-about__grid, .hp-pv__grid { grid-template-columns: 1fr; gap: 48px; }
}
@media(max-width:768px) {
  .hp-hero { padding: 60px 20px 70px; min-height: 80svh; max-height: none; }
  .hp-stats { flex-wrap: wrap; }
  .hp-stat  { flex: 1 1 110px; padding: 16px 20px; }
  .hp-stat__sep { display: none; }
  .hp-vid-frame { min-height: 260px; }
  .hp-vid-frame--sm { min-height: 220px; }
  .hp-play { width: 60px; height: 60px; font-size: 1.1rem; }
  .hp-hero__beam { display: none; }
  .hp-germany { padding: 60px 20px; }
}
@media(max-width:480px) {
  .hp-hero__heading-r1, .hp-hero__heading-r2 { font-size: 2.2rem; }
  .hp-hero__ctas { flex-direction: column; width: 100%; }
  .hp-hero__logo img { height: 64px; }
  .hp-germany__flag { font-size: 2.8rem; }
  .hp-germany__headline { font-size: 1.5rem; letter-spacing: normal; line-height: 1.2; }
  .hp-germany__badges { flex-direction: column; width: 100%; }
  .hp-g-badge { width: 100%; justify-content: center; }
}


/* ════════════════ HERO BACKGROUND SLIDER ══════════════ */
.hs-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Individual slides */
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hs-slide--active { opacity: 1; }

/* Image backgrounds */
.hs-slide__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hs-slide--active .hs-slide__img {
  transform: scale(1);
}

/* Autoplay video backgrounds */
.hs-slide__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Dark gradient overlay on every slide */
.hs-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,10,20,0.55) 0%,
    rgba(5,10,20,0.45) 50%,
    rgba(5,10,20,0.72) 100%
  );
}

/* ── Dot Navigation ─────────────────────────── */
.hs-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
}
.hs-dot--active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
  border-color: #fff;
}

/* ── Prev / Next Arrows ─────────────────────── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  backdrop-filter: blur(8px);
}
.hs-arrow:hover {
  background: rgba(37,99,235,0.5);
  border-color: var(--hp-blue);
  color: #fff;
}
.hs-arrow--prev { left: 24px; }
.hs-arrow--next { right: 24px; }

/* ── Progress Bar ───────────────────────────── */
.hs-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 5;
}
.hs-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hp-blue), var(--hp-orange));
  border-radius: 0 2px 2px 0;
}

/* Make hero content sit above slider */
.hp-hero__noise,
.hp-hero__body,
.hp-hero__scroll {
  position: relative;
  z-index: 2;
}

/* Remove old static bg now that slider handles it */
.hp-hero { background: transparent; }

@media(max-width:992px) {
  .hp-hero { min-height: 70vh; padding: 100px 24px 60px; }
  .hp-hero__heading-r1 { font-size: 4rem; }
  .hp-hero__heading-r2 { font-size: 2rem; }
  .hp-about__grid, .hp-pv__grid { grid-template-columns: 1fr; gap: 40px; }
  .hp-vid-frame { min-height: 380px; }
}

@media(max-width:768px) {
  .hp-container { padding: 0 20px; }
  .hp-hero { min-height: 60vh; padding: 80px 20px 40px; }
  .hp-hero__heading-r1 { font-size: 3rem; }
  .hp-hero__heading-r2 { font-size: 1.6rem; letter-spacing: 0.2em; }
  .hp-hero__logo img { height: 60px; }
  .hp-hero__btns { flex-direction: column; width: 100%; gap: 12px; }
  .hp-btn { width: 100%; justify-content: center; }
  
  .hs-arrow { display: none; } /* Hide arrows on small mobile */
  .hs-dots { bottom: 60px; }
  
  .hp-section-header { margin-bottom: 32px; }
  .hp-section-header__title { font-size: 28px; }
  
  .hp-card-grid { grid-template-columns: 1fr; }
  .hp-vid-frame { min-height: 280px; }
  .hp-play { width: 60px; height: 60px; font-size: 1.1rem; }
  
  .hp-about__title, .hp-pv__title { font-size: 28px; }
  .hp-about__panel { padding-right: 0; }
  .hp-about__chips { position: static; margin-top: 15px; justify-content: center; }
}

@media(max-width:480px) {
  .hp-hero__heading-r1 { font-size: 2.2rem; }
  .hp-hero__heading-r2 { font-size: 1.1rem; }
  .hp-hero__eyebar { font-size: 9px; padding: 5px 14px; }
  .hp-hero { min-height: 55vh; }
  .hp-vid-frame { min-height: 220px; }
  .hp-germany__headline { font-size: 1.3rem !important; }
}

/* ─── HERO WRAPPER REDESIGN V3 (RESPONSIVE) ────────────────────────── */
.hero-wrapper {
  display: flex;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  background: #0B1120;
}

.hero-slider {
  width: 70% !important;
  height: 100% !important;
  min-height: unset !important;
}

.hero-right-space {
  width: 30%;
  height: 100%;
  background: #0B1120;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  border-left: 1px solid rgba(255,255,255,0.1);
  box-sizing: border-box;
}

.hero-right-space h2 {
  color: #FFFFFF;
  margin-bottom: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  line-height: 1.12;
  font-size: clamp(28px, 3.5vw, 42px);
}

.hero-right-space p {
  color: #9CA3AF;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-right-space a {
  color: #E8410A;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hero-right-space a:hover {
  color: #ff6c00;
  transform: translateX(4px);
}

/* Tablet & Mobile Layouts (Up to 991px) */
@media (max-width: 991px) {
  .hero-wrapper {
    flex-direction: column;
    height: auto;
    min-height: unset;
  }
  
  .hero-slider {
    width: 100% !important;
    height: 45vh !important;
    min-height: 320px !important;
  }
  
  .hero-right-space {
    width: 100%;
    height: auto;
    padding: 40px 24px;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .hero-right-space h2 {
    font-size: clamp(24px, 4vw, 32px);
    margin-bottom: 12px;
  }

  .hero-right-space p {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/* Mobile Devices (Up to 768px) */
@media (max-width: 768px) {
  .hero-slider {
    height: auto !important;
    aspect-ratio: 16/9 !important;
    min-height: unset !important;
  }
  
  .hero-right-space {
    padding: 30px 20px;
  }
}

/* ─── ABOUT SECTION REDESIGN V3 (RESPONSIVE) ────────────────────────── */
.hp-about__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  grid-template-rows: auto auto;
  gap: 20px 72px;
  align-items: start;
}

.hp-about__panel {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.hp-about__title-container {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hp-about__text-content {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Tablet & Mobile Layouts (Up to 1024px) */
@media (max-width: 1024px) {
  .hp-about__grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 36px !important;
  }
  
  .hp-about__title-container {
    order: 1;
  }
  
  .hp-about__panel {
    order: 2;
  }
  
  .hp-about__text-content {
    order: 3;
  }
}

/* ─── INDUSTRIES GRID V3 (DYNAMIC COLUMNS) ─────────────────────────── */
.hp-industries__grid {
  display: grid;
  gap: 2rem;
}

.hp-industries__grid--cols-1 {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.hp-industries__grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

.hp-industries__grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
  .hp-industries__grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .hp-industries__grid--cols-2,
  .hp-industries__grid--cols-3 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}


