/* ================================================================
   JOCKEL Industriemontagen GmbH — Visual System
   Dark Industrial · Precision · Motion
================================================================ */

:root {
  /* Light primary theme — white main, blue accent */
  --bg: #F6F4ED;           /* warm paper white */
  --bg-2: #FFFFFF;         /* pure white */
  --bg-3: #ECE9E0;         /* deeper paper */
  --hero-bg: #D9EAF9;      /* helles Blau — Hero */
  --surface: #FFFFFF;      /* card surfaces */
  --surface-hi: #F6F4ED;
  --line: rgba(14, 26, 46, 0.10);
  --line-hi: rgba(14, 26, 46, 0.22);
  --text: #0B1220;         /* near-black with cool tilt */
  --text-dim: #4E586B;
  --text-muted: #8B93A3;

  /* Blue accent system */
  --accent: #1E88C7;       /* primary blue — JOCKEL bright */
  --accent-2: #0E5ABD;     /* deeper blue */
  --accent-dim: rgba(30, 136, 199, 0.14);
  --safety: #FFFFFF;

  /* JOCKEL brand blue — dark sections */
  --navy: #0E1A2E;         /* dark navy — feature islands */
  --navy-2: #162642;
  --navy-3: #1E3555;
  --blue: #1E88C7;         /* bright brand blue */
  --blue-hi: #47A5DC;      /* lighter hover */
  --blue-dim: rgba(30, 136, 199, 0.18);
  --blue-line: rgba(71, 165, 220, 0.28);

  --max: 1480px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius-lg: 10px;
  --radius-md: 10px;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --font-mono: 'Poppins', ui-monospace, monospace;

  --ease: cubic-bezier(.2, .7, .15, 1);
  --ease-snap: cubic-bezier(.7, 0, .3, 1);
  --ease-out: cubic-bezier(.2, .9, .25, 1);
}

/* --------- RESET --------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  font-weight: 500;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }
ul, ol { list-style: none; }
input, select, textarea, button { font: inherit; color: inherit; }

::selection { background: var(--accent); color: #FFFFFF; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(14, 26, 46, 0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* --------- NOISE OVERLAY --------- */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 200;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* --------- CUSTOM CURSOR --------- */
.cursor { display: none !important; }
.cursor--legacy {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999;
  mix-blend-mode: difference; opacity: 0;
  transition: opacity .3s var(--ease);
}
.cursor.is-visible { opacity: 1; }
.cursor__dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: #fff; transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), width .35s var(--ease), height .35s var(--ease);
}
.cursor__ring {
  position: absolute; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35); transform: translate(-50%, -50%);
  transition: transform .45s var(--ease), width .4s var(--ease), height .4s var(--ease),
              border-color .3s var(--ease);
}
.cursor__label {
  position: absolute; top: 28px; left: 16px;
  font-family: var(--font-mono); font-size: 11px; color: #fff;
  letter-spacing: .05em; text-transform: uppercase;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .25s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.cursor.is-hover .cursor__ring { width: 62px; height: 62px; border-color: rgba(255,255,255,.6); }
.cursor.is-hover .cursor__dot { width: 3px; height: 3px; }
.cursor.is-label .cursor__label { opacity: 1; transform: translateY(0); }
.cursor.is-click .cursor__ring { transform: translate(-50%, -50%) scale(.6); }

@media (hover: none) { .cursor { display: none !important; } }

/* --------- PRELOADER --------- */
.preloader { display: none !important; }
.preloader--disabled {
  position: fixed; inset: 0; z-index: 500;
  background: var(--navy); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  --text: #FFFFFF;
  --text-dim: rgba(255, 255, 255, 0.6);
  --line: rgba(255, 255, 255, 0.12);
}
.preloader__inner {
  width: min(480px, 80vw); display: flex; flex-direction: column; gap: 40px; color: inherit;
}
.preloader__mark {
  width: 72px; height: 72px; color: var(--accent);
}
.preloader__mark svg { width: 100%; height: 100%; }
.pl-box, .pl-line { stroke-dasharray: 300; stroke-dashoffset: 300; }
.preloader.is-active .pl-box { animation: pl-draw 1.2s var(--ease-out) forwards; }
.preloader.is-active .pl-line-1 { animation: pl-draw .6s .3s var(--ease-out) forwards; }
.preloader.is-active .pl-line-2 { animation: pl-draw .6s .45s var(--ease-out) forwards; }
.preloader.is-active .pl-line-3 { animation: pl-draw .6s .6s var(--ease-out) forwards; }
.preloader.is-active .pl-line-4 { animation: pl-draw .6s .75s var(--ease-out) forwards; }
@keyframes pl-draw { to { stroke-dashoffset: 0; } }

.preloader__meta { display: flex; justify-content: space-between; align-items: baseline; }
.preloader__label, .preloader__counter {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim);
}
.preloader__counter { color: var(--text); font-variant-numeric: tabular-nums; }
.preloader__counter::after { content: '%'; margin-left: 4px; color: var(--text-dim); }

.preloader__bar { height: 1px; width: 100%; background: var(--line); position: relative; overflow: hidden; }
.preloader__bar span {
  position: absolute; inset: 0; background: var(--accent);
  transform-origin: left; transform: scaleX(0);
}

.preloader.is-done {
  animation: pl-out .9s var(--ease-snap) forwards;
}
@keyframes pl-out {
  0% { transform: translateY(0); }
  100% { transform: translateY(-101%); }
}

/* --------- TYPOGRAPHY UTIL --------- */
.mono {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim); font-weight: 400;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: 28px;
}
.eyebrow__num { color: var(--accent); }
.eyebrow__line { display: block; width: 40px; height: 1px; background: var(--line-hi); }
.eyebrow__label { color: var(--text); }

/* --------- NAV --------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px var(--gutter);
  color: #FFFFFF;
  --line-hi: rgba(255, 255, 255, 0.22);
  transition: background .4s var(--ease), padding .4s var(--ease),
              border-color .4s var(--ease), color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(246, 244, 237, 0.82); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(14, 26, 46, 0.1);
  padding: 14px var(--gutter);
  color: var(--text);
  --line-hi: rgba(14, 26, 46, 0.22);
}
/* Light hero (Startseite): nav uses dark text at the top too */
body:has(.hero) .nav:not(.is-scrolled) {
  color: var(--text);
  --line-hi: rgba(14, 26, 46, 0.22);
}
body:has(.hero) .nav:not(.is-scrolled) .nav__logo { filter: none; }
body:has(.hero) .nav:not(.is-scrolled) .nav__burger { border-color: rgba(14, 26, 46, 0.22); }
.nav__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: clamp(20px, 4vw, 60px);
}
.nav__brand { display: block; flex-shrink: 0; }
.nav__logo {
  height: 38px; width: auto;
  filter: invert(1) brightness(1.05);
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.nav.is-scrolled .nav__logo { filter: none; }
.nav__brand:hover .nav__logo { transform: scale(0.96); }

.nav__links {
  display: flex; justify-content: center; align-items: center;
  gap: clamp(20px, 2.6vw, 40px); list-style: none;
}

.nav__social {
  display: inline-flex; align-items: center; gap: 8px;
  margin-right: 8px;
}
.nav__social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 8px;
  color: inherit; opacity: .75;
  transition: opacity .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}
.nav__social-link:hover {
  opacity: 1; color: var(--accent);
  background: rgba(59,130,246,.08);
  transform: translateY(-1px);
}
.nav__social-link svg { width: 16px; height: 16px; }
@media (max-width: 900px) { .nav__social { display: none; } }

/* --- Dropdown groups --- */
.nav__group { position: relative; display: inline-flex; }
.nav__link--parent { cursor: pointer; }
.nav__caret {
  width: 10px; height: 10px; margin-left: 4px;
  transition: transform .3s ease;
}
.nav__group:hover .nav__caret,
.nav__group:focus-within .nav__caret { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 320px; padding: 10px;
  background: var(--bg); color: var(--text);
  border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 20px 60px -20px rgba(14,26,46,.25), 0 4px 12px rgba(14,26,46,.06);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .28s cubic-bezier(.65,0,.35,1), visibility 0s linear .25s;
  z-index: 100;
}
.nav__dropdown::before {
  content: ''; position: absolute; left: 0; right: 0; top: -14px; height: 14px;
}
.nav__group:hover .nav__dropdown,
.nav__group:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity .25s ease, transform .3s cubic-bezier(.65,0,.35,1), visibility 0s;
}
.nav__dropdown a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 12px 14px; border-radius: 8px;
  text-decoration: none; color: var(--text);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav__dropdown a:hover {
  background: var(--bg-2);
  color: var(--accent);
  transform: translateX(2px);
}
.nav__dd-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: inherit; letter-spacing: -.005em;
}
.nav__dd-desc {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dim);
}
.nav__dropdown a:hover .nav__dd-desc { color: var(--text-dim); opacity: .85; }

/* Adjust hover underline for parent links to only apply to the label area */
.nav__link--parent::after { display: none; }

@media (max-width: 900px) {
  .nav__dropdown { display: none; }
}
.nav__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  color: inherit; opacity: .85;
  position: relative; transition: opacity .3s var(--ease);
}
.nav__link span {
  font-family: var(--font-mono); font-size: 10px; color: var(--accent); opacity: 1;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--blue-hi); opacity: 1; }
.nav.is-scrolled .nav__link[aria-current="page"] { color: var(--accent); }
.nav__link[aria-current="page"]::after {
  transform: scaleX(1); background: currentColor; transform-origin: left;
}

.nav__cta { padding: 11px 16px; }
.nav__burger {
  display: none; width: 40px; height: 40px; position: relative;
  border: 1px solid rgba(255,255,255,0.3); border-radius: 50%;
  color: inherit; transition: border-color .4s var(--ease);
}
.nav.is-scrolled .nav__burger { border-color: var(--line-hi); }
.nav__burger span {
  position: absolute; left: 10px; right: 10px; height: 1px; background: currentColor;
  transition: all .4s var(--ease);
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { bottom: 16px; }
.nav.is-open { color: var(--text); --line-hi: rgba(14, 26, 46, 0.22); }
.nav.is-open .nav__logo { filter: none; }
.nav.is-open .nav__burger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { bottom: 20px; transform: rotate(-45deg); }

.nav__progress {
  position: absolute; bottom: 0; left: 0; height: 1px; background: var(--accent);
  width: 0%; box-shadow: 0 0 12px var(--accent);
}

/* --------- MOBILE MENU --------- */
.menu {
  position: fixed; inset: 0; background: var(--bg); z-index: 90;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 120px var(--gutter) 40px;
  clip-path: circle(0% at 100% 0%); transition: clip-path .7s var(--ease-snap);
}
.menu.is-open { clip-path: circle(150% at 100% 0%); }
.menu__inner { display: flex; flex-direction: column; gap: 8px; }
.menu__link {
  display: flex; align-items: baseline; gap: 18px;
  font-family: var(--font-display); font-size: clamp(36px, 7vw, 64px);
  font-weight: 500; letter-spacing: -.02em; line-height: 1;
}
.menu__num {
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  letter-spacing: .12em;
}
.menu__link--sub {
  font-size: clamp(22px, 4vw, 32px);
  padding-left: 38px; opacity: .75;
  font-weight: 500;
}
.menu__link--sub .menu__num {
  color: var(--text-dim); font-size: 18px;
}
.menu__foot {
  margin-top: auto; display: flex; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-dim);
  width: 100%; padding-top: 20px; border-top: 1px solid var(--line);
}

/* --------- BUTTONS --------- */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 13px 20px; border-radius: 10px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  letter-spacing: -.005em; line-height: 1;
  position: relative; overflow: hidden;
  transition: transform .3s var(--ease), background .4s var(--ease), color .4s var(--ease);
  will-change: transform;
}
.btn__text { position: relative; z-index: 2; }
.btn__arrow {
  position: relative; z-index: 2; width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .4s var(--ease);
}
.btn__arrow svg { width: 100%; height: 100%; }
.btn__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px var(--accent); z-index: 2;
}

.btn--primary {
  background: var(--accent); color: #FFFFFF;
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0; background: var(--navy);
  transform: translateY(101%); transition: transform .5s var(--ease-snap); z-index: 1;
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost {
  background: transparent; color: inherit;
  border: 1px solid var(--line-hi);
}
.btn--ghost::before {
  content: ''; position: absolute; inset: 0; background: currentColor;
  transform: translateY(101%); transition: transform .5s var(--ease-snap); z-index: 1;
}
.btn--ghost:hover::before { transform: translateY(0); }
.btn--ghost:hover { color: var(--bg); }
/* inside dark islands the ghost hover should become dark text on light fill */
.hero .btn--ghost:hover,
.sub-hero .btn--ghost:hover,
.footer .btn--ghost:hover,
.bg-navy .btn--ghost:hover,
.bg-navy-gradient .btn--ghost:hover,
.bg-navy-tint .btn--ghost:hover { color: var(--navy); }

/* Nav CTA button readability in both states (dark nav / scrolled light nav) */
.nav .btn--ghost::before { background: #FFFFFF; }
.nav .btn--ghost:hover { color: var(--navy); }
.nav.is-scrolled .btn--ghost::before { background: var(--navy); }
.nav.is-scrolled .btn--ghost:hover { color: #FFFFFF; }

/* --------- CONTAINER --------- */
.container {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter);
}

/* ================================================================
   HERO
================================================================ */

.hero {
  position: relative; min-height: 88vh;
  padding: 160px var(--gutter) 70px;
  display: flex; flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--hero-bg) 0%, var(--hero-bg) 78%, var(--bg) 100%);
}
#hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: -3; opacity: .65;
}

/* --------- AURORA BACKGROUND (softened) --------- */
.aurora {
  position: absolute; inset: 0; z-index: -2;
  pointer-events: none; overflow: hidden;
  opacity: 0.55;
}
.aurora::before,
.aurora::after {
  content: ''; position: absolute; inset: -30%;
  filter: blur(110px);
  will-change: transform;
  mix-blend-mode: screen;
}
.aurora::before {
  background:
    radial-gradient(ellipse 42% 30% at 20% 30%, rgba(30, 110, 170, 0.22), transparent 60%),
    radial-gradient(ellipse 38% 26% at 80% 45%, rgba(60, 140, 190, 0.18), transparent 60%),
    radial-gradient(ellipse 44% 30% at 50% 80%, rgba(20, 70, 140, 0.16), transparent 60%);
  animation: aurora-a 26s ease-in-out infinite alternate;
}
.aurora::after {
  background:
    radial-gradient(ellipse 32% 24% at 65% 20%, rgba(100, 160, 200, 0.12), transparent 55%),
    radial-gradient(ellipse 34% 24% at 25% 70%, rgba(40, 120, 180, 0.14), transparent 55%);
  animation: aurora-b 34s ease-in-out infinite alternate-reverse;
}
@keyframes aurora-a {
  0%   { transform: translate3d(-4%, -6%, 0) rotate(0deg) scale(1); }
  50%  { transform: translate3d(8%, 4%, 0) rotate(3deg) scale(1.12); }
  100% { transform: translate3d(-6%, 6%, 0) rotate(-2deg) scale(1.04); }
}
@keyframes aurora-b {
  0%   { transform: translate3d(4%, 8%, 0) rotate(-2deg) scale(1.08); }
  50%  { transform: translate3d(-8%, -4%, 0) rotate(2deg) scale(1); }
  100% { transform: translate3d(6%, -8%, 0) rotate(4deg) scale(1.14); }
}
.aurora__veil {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: none;
}

.hero__top {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: clamp(20px, 3vw, 50px);
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: rgba(255,255,255,.02);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: .1em;
}
.pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}

.hero__coords {
  display: flex; flex-direction: column; gap: 4px; align-items: flex-end;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
  letter-spacing: .08em;
}

.hero__content {
  max-width: var(--max); margin: 0 auto clamp(40px, 6vw, 80px); width: 100%;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 4vw, 70px);
  align-items: end;
}
.hero__meta { margin-top: auto; }
.hero__text { min-width: 0; }

.hero__image {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
  transform: translateY(-20px);
}
.hero__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.hero__image:hover img { transform: scale(1.04); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.2vw, 92px);
  line-height: 0.92; letter-spacing: -.03em;
  color: var(--text);
}
[data-split] .line { display: block; overflow: hidden; padding-bottom: 0.14em; padding-top: 0.08em; }
[data-split] .line span { display: inline-block; }
.hero__title .line {
  display: block; overflow: hidden;
  padding-bottom: 0.22em;
}
.hero__title .word {
  display: inline-block;
  will-change: transform;
}
.hero__title .word--italic {
  font-style: normal; font-weight: 700; color: var(--accent);
}

.hero__bottom {
  display: flex; flex-direction: column; gap: 26px;
  margin-top: clamp(24px, 4vw, 44px);
  max-width: 540px;
}
.hero__sub {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  max-width: 520px; font-size: clamp(15px, 1.2vw, 17px); color: var(--text-dim);
  line-height: 1.55;
}
.marker {
  flex-shrink: 0; width: 34px; height: 1px; background: var(--accent);
  margin-top: 12px; position: relative;
}
.marker::after {
  content: ''; position: absolute; right: -1px; top: -2px;
  width: 5px; height: 5px; background: var(--accent); border-radius: 50%;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 32px; gap: 30px;
  max-width: var(--max); margin: 0 auto; width: 100%;
}
.meta {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: 0 6px;
  font-variant-numeric: tabular-nums;
}
.meta__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px); font-weight: 700;
  letter-spacing: -.025em; line-height: 1;
  color: var(--text);
}
.meta__plus, .meta__suf {
  font-family: var(--font-display); font-size: clamp(14px, 1.3vw, 20px);
  color: var(--accent); font-weight: 700;
  align-self: flex-start; margin-top: 4px;
}
.meta__suf { color: var(--accent); vertical-align: baseline; }
.meta__label {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-dim);
  letter-spacing: .08em; margin-top: 8px;
  flex-basis: 100%;
}

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 40px;
  display: flex; align-items: center; gap: 12px;
  writing-mode: vertical-rl; font-family: var(--font-mono);
  font-size: 11px; color: var(--text-dim); letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px; background: var(--line); position: relative; overflow: hidden;
}
.scroll-line span {
  position: absolute; top: -60px; left: 0; width: 100%; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scroll-drop 2.2s var(--ease) infinite;
}
@keyframes scroll-drop {
  0% { top: -60px; }
  100% { top: 100%; }
}

/* ================================================================
   MARQUEE — slim ticker with icons
================================================================ */
.marquee {
  padding: clamp(10px, 1.2vw, 16px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  overflow: hidden; white-space: nowrap;
  background: var(--bg);
}
.marquee__track {
  display: flex; gap: 0; will-change: transform; align-items: center;
}
.marquee__group {
  display: flex; gap: 0; align-items: center; flex-shrink: 0;
}
.marquee__item {
  display: inline-flex; align-items: center;
  padding: 0 clamp(14px, 1.5vw, 28px);
  border: none; background: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(16px, 1.6vw, 24px); color: var(--navy);
  letter-spacing: -.02em; line-height: 1;
  white-space: nowrap;
  transition: color .3s ease;
  letter-spacing: -.005em; line-height: 1;
  transition: color .3s var(--ease), opacity .3s var(--ease);
  opacity: .85;
}
.marquee__item:nth-child(4n+3) {
  -webkit-text-stroke: 1px var(--navy);
  color: transparent;
}
.marquee__sep {
  display: inline-block; flex-shrink: 0;
  font-size: clamp(8px, 0.8vw, 12px); line-height: 1;
  color: var(--accent); opacity: .9;
  transform: translateY(-0.1em);
  padding: 0 clamp(8px, 1vw, 16px);
}
.marquee__item:hover { color: var(--accent); }
.marquee__item:nth-child(4n+3):hover {
  -webkit-text-stroke-color: var(--accent);
  color: transparent;
}

/* ================================================================
   SECTION BASE
================================================================ */
.section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.section__head { margin-bottom: clamp(40px, 6vw, 80px); max-width: 900px; }
.section__head--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: end; max-width: var(--max);
}
.section__head--split .eyebrow { grid-column: 1 / -1; }
.section__head--split .section__sub { max-width: 380px; align-self: end; }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 112px);
  line-height: .95; letter-spacing: -.025em;
  color: var(--text);
}
.section__title--big {
  font-size: clamp(36px, 5.2vw, 80px);
  letter-spacing: -.02em;
}
.section__title .line { display: block; overflow: hidden; padding-bottom: 0.14em; }
.section__title .line span { display: inline-block; }
.section__title .line:has(.outline),
.intro__title .line:has(.outline) {
  padding-bottom: 0.32em;
  padding-right: 0.12em;
}
.outline {
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent;
  font-style: italic;
}
.section__sub {
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--text-dim); line-height: 1.55;
  max-width: 500px;
}

/* ================================================================
   INTRO / ABOUT
================================================================ */
.section--intro { background: var(--bg); }

.intro__grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.intro__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 6.5vw, 100px);
  line-height: .95; letter-spacing: -.025em;
}
.intro__title .line { display: block; overflow: hidden; padding-bottom: 0.14em; }
.intro__title .line span { display: inline-block; }
.intro__body { margin-top: 40px; max-width: 560px; }
.lead {
  font-size: clamp(18px, 1.6vw, 22px); color: var(--text);
  line-height: 1.4; margin-bottom: 24px; font-weight: 400;
  letter-spacing: -.005em;
}
.intro__body p { color: var(--text-dim); margin-bottom: 18px; }
.intro__checks {
  margin-top: 30px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.intro__checks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--text);
}
.check {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); position: relative;
}
.check::after {
  content: ''; position: absolute; left: 5px; top: 7px;
  width: 8px; height: 4px;
  border-left: 1.5px solid #FFFFFF; border-bottom: 1.5px solid #FFFFFF;
  transform: rotate(-45deg);
}

.intro__card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--line);
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 32px;
  overflow: hidden; position: relative;
}
.intro__card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 200px; height: 200px; background: radial-gradient(circle, var(--accent-dim), transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.intro__card-top {
  display: flex; justify-content: space-between; color: var(--text-dim);
}
.intro__card-body h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(44px, 5vw, 72px); letter-spacing: -.03em; line-height: 1;
  margin-bottom: 14px; color: var(--text);
}
.intro__card-body p { color: var(--text-dim); font-size: 14px; line-height: 1.5; }

.intro__card-map {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line);
  position: relative;
}
.intro__card-map svg {
  display: block; width: 100%; height: auto; max-height: 360px;
}
.intro__card-map .map__pulse {
  display: none;
}
@keyframes map-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  100% { transform: scale(2.6); opacity: 0;   }
}
.intro__card-map-legend {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 14px;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dim);
}
.intro__card-map-legend span {
  display: inline-flex; align-items: center; gap: 8px;
}
.intro__card-map-legend em {
  font-style: normal; display: inline-block; flex-shrink: 0;
}
.intro__card-map-legend .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}
.intro__card-map-legend .ring {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1.4px dashed var(--accent);
}
.intro__card-lines {
  margin-top: 30px; display: flex; flex-direction: column; gap: 4px;
}
.intro__card-lines span {
  display: block; height: 1px; background: var(--line); position: relative; overflow: hidden;
}
.intro__card-lines span::after {
  content: ''; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  animation: card-line 4s var(--ease) infinite;
}
.intro__card-lines span:nth-child(1)::after { animation-delay: 0s; }
.intro__card-lines span:nth-child(2)::after { animation-delay: .3s; }
.intro__card-lines span:nth-child(3)::after { animation-delay: .6s; }
.intro__card-lines span:nth-child(4)::after { animation-delay: .9s; }
@keyframes card-line {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

.intro__card-foot {
  border-top: 1px solid var(--line); padding-top: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.card-link {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--text); opacity: .85;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.card-link:hover { opacity: 1; color: var(--accent); }
.card-link svg {
  width: 16px; height: 16px; transition: transform .35s var(--ease);
}
.card-link:hover svg { transform: translate(3px, -3px); }

/* ================================================================
   SERVICES
================================================================ */
.section--services { background: var(--bg-2); }

.services {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
}
.service {
  background: var(--bg); padding: clamp(28px, 3vw, 44px);
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto 1fr;
  gap: 30px; position: relative; overflow: hidden;
  transition: background .5s var(--ease);
}
.service::before {
  content: ''; position: absolute; inset: 0; background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), var(--accent-dim), transparent 50%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.service:hover { background: var(--bg-3); }
.service:hover::before { opacity: 1; }

.service__index {
  grid-row: 1; grid-column: 1;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  letter-spacing: .14em;
}
.service__line {
  width: 1px; height: 40px; background: var(--line-hi);
}
.service__visual {
  grid-row: 1; grid-column: 2;
  justify-self: end; width: 120px; height: 120px;
  color: var(--accent); opacity: .7;
  transition: transform .5s var(--ease-snap);
}
.service:hover .service__visual { transform: translateY(-4px) rotate(3deg); }
.service__svg { width: 100%; height: 100%; }

.service__body {
  grid-row: 2; grid-column: 1 / -1;
  display: flex; flex-direction: column; gap: 14px;
}
.service__body h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -.02em;
  line-height: 1.05; color: var(--text);
}
.service__body p {
  color: var(--text-dim); max-width: 540px; line-height: 1.55;
}
.service__tags {
  margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;
}
.service__tags li {
  font-family: var(--font-mono); font-size: 11px; color: var(--text);
  padding: 6px 12px; border: 1px solid var(--line-hi); border-radius: 10px;
  letter-spacing: .08em;
}

/* ================================================================
   PRODUCTS (HORIZONTAL SCROLL)
================================================================ */
.section--products { padding: 0; background: var(--bg); overflow: hidden; }
.products { position: relative; }
.products__intro {
  padding: clamp(80px, 12vw, 160px) 0 60px;
  position: relative;
}
.products__hint {
  position: absolute; right: var(--gutter); bottom: 30px;
  color: var(--accent);
  animation: hint-move 2s var(--ease) infinite;
}
@keyframes hint-move {
  0%, 100% { transform: translateX(0); opacity: .8; }
  50% { transform: translateX(8px); opacity: 1; }
}

.products__track {
  position: relative; width: 100%;
  height: 100vh; overflow: hidden;
}
.products__row {
  display: flex; height: 100%; padding: 80px var(--gutter);
  gap: 32px; will-change: transform;
}
.product {
  flex-shrink: 0; width: clamp(340px, 38vw, 520px);
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .4s var(--ease), transform .6s var(--ease-snap);
  position: relative;
}
.product:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
}
.product__num {
  position: absolute; top: 24px; right: 24px;
  color: var(--accent); z-index: 3;
}
.product__visual {
  position: relative; aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
  color: var(--accent); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product__svg {
  width: 75%; height: 75%; opacity: .85;
  transition: transform 1s var(--ease), opacity .5s var(--ease);
}
.product:hover .product__svg { transform: scale(1.04); opacity: 1; }
.product__gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 30% 20%, rgba(30,136,199,.14), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(71,165,220,.08), transparent 60%);
}
.product__visual--cta { color: var(--accent); }

.product__body {
  padding: 30px 28px 32px; flex: 1;
  display: flex; flex-direction: column; gap: 14px;
}
.product__body h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -.02em;
  line-height: 1.1; color: var(--text);
}
.product__body p {
  color: var(--text-dim); font-size: 14px; line-height: 1.55;
  max-width: 440px;
}
.product__specs {
  margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.product__specs > div {
  display: flex; flex-direction: column; gap: 3px;
}
.product__specs span {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--text-dim); letter-spacing: .1em; text-transform: uppercase;
}
.product__specs strong {
  font-size: 14px; color: var(--text); font-weight: 500;
}

.product--cta {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-hi);
}
.product--cta .product__body {
  justify-content: center; gap: 20px;
}
.product--cta .btn { margin-top: 10px; align-self: flex-start; }

.products__progress {
  padding: 30px 0 80px; border-top: 1px solid var(--line);
}
.products__progress-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 20px; align-items: center;
  color: var(--text-dim);
}
.products__progress-current { color: var(--accent); }
.products__progress-bar {
  height: 1px; background: var(--line); position: relative; overflow: hidden;
}
.products__progress-bar span {
  position: absolute; inset: 0; background: var(--accent);
  transform-origin: left; transform: scaleX(0);
}

/* ================================================================
   PROCESS
================================================================ */
.section--process { background: var(--bg); padding: 0; }
.process {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  align-items: start;
}
.process__left { position: relative; }
.process__sticky {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 30px;
}
.process__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(36px, 5.2vw, 84px);
  line-height: .95; letter-spacing: -.025em; color: var(--text);
}
.process__title .line { display: block; overflow: hidden; padding-bottom: 0.14em; }
.process__title .line span { display: inline-block; }
.process__sub {
  color: var(--text-dim); max-width: 420px; font-size: 15px; line-height: 1.55;
}
.process__counter {
  display: flex; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.process__counter span:first-child {
  font-family: var(--font-display); font-weight: 500;
  font-size: 48px; color: var(--accent); letter-spacing: -.02em;
  line-height: 1;
}
.process__counter span:last-child {
  align-self: flex-end; color: var(--text-dim);
}

.process__right {
  display: flex; flex-direction: column; gap: 30px;
}
.step {
  padding: 36px 32px; background: var(--bg-2); border-radius: var(--radius-lg);
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: border-color .4s var(--ease), transform .5s var(--ease-snap);
}
.step::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.step.is-active { border-color: var(--accent); }
.step.is-active::after { transform: scaleX(1); }

.step__top {
  display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
  color: var(--text-dim);
}
.step__num { color: var(--accent); }
.step__line { flex: 1; height: 1px; background: var(--line); }

.step__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(26px, 3vw, 42px); letter-spacing: -.02em;
  color: var(--text); margin-bottom: 14px; line-height: 1.1;
}
.step__text {
  color: var(--text-dim); max-width: 540px; margin-bottom: 20px;
  line-height: 1.55;
}
.step__list {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.step__list li {
  font-family: var(--font-mono); font-size: 11px; color: var(--text);
  padding: 6px 12px; border: 1px solid var(--line-hi); border-radius: 10px;
  letter-spacing: .08em;
}

/* ================================================================
   WHY
================================================================ */
.section--why { background: var(--bg); }

.why {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
}
.why__card {
  padding: 40px 32px; background: var(--bg);
  transition: background .4s var(--ease); position: relative; overflow: hidden;
}
.why__card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--accent-dim), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.why__card:hover { background: var(--bg-3); }
.why__card:hover::before { opacity: 1; }
.why__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 30px; color: var(--accent);
}
.why__icon {
  width: 44px; height: 44px; border: 1px solid var(--line-hi);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: border-color .4s var(--ease), transform .5s var(--ease-snap);
}
.why__card:hover .why__icon {
  border-color: var(--accent); transform: rotate(15deg);
}
.why__icon svg { width: 22px; height: 22px; }
.why__card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -.015em; line-height: 1.15;
  color: var(--text); margin-bottom: 12px;
}
.why__card p {
  color: var(--text-dim); font-size: 14px; line-height: 1.55;
}

/* ================================================================
   CONTACT
================================================================ */
.section--contact {
  background: var(--bg);
  position: relative; overflow: hidden;
}
.section--contact::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-dim), transparent 70%);
  filter: blur(80px); pointer-events: none;
}

.contact {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.contact__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4.2vw, 60px); line-height: 1.05;
  letter-spacing: -.02em; color: var(--text);
}
.contact__title .line { display: block; overflow: hidden; padding-bottom: 0.14em; }
.contact__title .line span { display: inline-block; }
.contact__sub {
  color: var(--text-dim); margin: 30px 0 40px; max-width: 420px;
  font-size: clamp(15px, 1.2vw, 17px); line-height: 1.55;
}

.contact__channels {
  display: flex; flex-direction: column; gap: 12px;
}
.channel {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px;
  padding: 24px 28px; border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.015);
  transition: border-color .4s var(--ease), background .4s var(--ease);
  position: relative; overflow: hidden;
}
.channel::before {
  content: ''; position: absolute; inset: 0; background: var(--accent-dim);
  transform: translateY(101%); transition: transform .5s var(--ease-snap);
}
.channel:hover { border-color: var(--accent); }
.channel:hover::before { transform: translateY(0); }
.channel > * { position: relative; z-index: 1; }
.channel__icon {
  width: 44px; height: 44px; border: 1px solid var(--line-hi);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.channel:hover .channel__icon {
  border-color: var(--accent); background: var(--accent); color: #FFFFFF;
}
.channel__icon svg { width: 20px; height: 20px; }
.channel__body {
  display: flex; flex-direction: column; gap: 4px;
}
.channel__body strong {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(15px, 1.2vw, 17px); letter-spacing: -.005em; color: var(--text);
}
.channel__arrow {
  width: 24px; height: 24px; color: var(--text-dim);
  transition: transform .4s var(--ease), color .4s var(--ease);
}
.channel__arrow svg { width: 100%; height: 100%; }
.channel:hover .channel__arrow {
  transform: translate(4px, -4px); color: var(--accent);
}

/* --- FORM --- */
.form {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px; display: flex; flex-direction: column; gap: 28px;
}
.form__row { display: flex; flex-direction: column; gap: 14px; }
.form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.field {
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}
.field span.mono {
  color: var(--accent); font-size: 10px;
}
.field input, .field select, .field textarea {
  background: transparent; border: none; outline: none;
  font-size: 16px; color: var(--text);
  padding: 10px 0; font-family: var(--font-body);
  border-bottom: 1px solid var(--line-hi);
  transition: border-color .35s var(--ease);
  width: 100%; resize: none;
}
.field textarea { padding: 10px 0; font-size: 15px; line-height: 1.5; }
.field select {
  appearance: none; background-image:
    linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 10px) 50%;
  background-size: 4px 4px; background-repeat: no-repeat;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field__line {
  position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .5s var(--ease);
  pointer-events: none;
}
.field input:focus ~ .field__line,
.field textarea:focus ~ .field__line,
.field select:focus ~ .field__line { width: 100%; }

.form__foot {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.check-box {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  font-size: 13px; color: var(--text-dim);
}
.check-box input { display: none; }
.check-mark {
  width: 18px; height: 18px; border: 1px solid var(--line-hi); border-radius: 4px;
  position: relative; flex-shrink: 0;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.check-box input:checked + .check-mark {
  background: var(--accent); border-color: var(--accent);
}
.check-box input:checked + .check-mark::after {
  content: ''; position: absolute; left: 5px; top: 2px;
  width: 6px; height: 10px;
  border-right: 1.5px solid #FFFFFF; border-bottom: 1.5px solid #FFFFFF;
  transform: rotate(45deg);
}
.check-box a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--bg); padding: 80px 0 30px;
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer__brand { display: block; }
.footer__logo {
  height: 44px;
  filter: invert(1) brightness(1.05);
}
.footer__claim {
  display: flex; flex-direction: column; gap: 10px;
  text-align: right;
}
.footer__claim h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2vw, 28px); letter-spacing: -.015em;
  color: var(--text);
}

.footer__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; padding: 50px 0;
}
.footer__col {
  display: flex; flex-direction: column; gap: 14px;
}
.footer__col span.mono { color: var(--accent); }
.footer__col p {
  font-size: 14px; color: var(--text); line-height: 1.8;
}
.footer__col a {
  color: var(--text); opacity: .8; transition: opacity .3s var(--ease);
}
.footer__col a:hover { opacity: 1; color: var(--accent); }

.footer__wordmark {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(100px, 26vw, 440px);
  line-height: .85; letter-spacing: -.04em;
  text-align: center;
  -webkit-text-stroke: 1px var(--accent);
  color: transparent;
  margin: 20px 0;
  user-select: none;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, var(--accent) 40%, var(--accent) 42%, transparent 42%);
  -webkit-background-clip: text;
  background-clip: text;
}

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px; border-top: 1px solid var(--line);
  color: var(--text-muted); flex-wrap: wrap; gap: 14px;
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; align-items: center; justify-content: center; }
  .nav__inner { grid-template-columns: auto 1fr auto; }

  .hero__content { grid-template-columns: 1fr; gap: 30px; }
  .hero__image { aspect-ratio: 16 / 10; transform: none; }
  .hero__meta { grid-template-columns: repeat(2, 1fr); }
  .section__head--split { grid-template-columns: 1fr; gap: 20px; }
  .intro__grid { grid-template-columns: 1fr; }
  .intro__card { position: static; }

  .services { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; }
  .process__sticky { position: static; }

  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero__top { flex-direction: column; gap: 20px; align-items: flex-start; }
  .hero__meta { grid-template-columns: 1fr 1fr; padding-top: 24px; gap: 20px; }
  .hero__scroll { display: none; }
  .hero__cta { width: 100%; flex-direction: column; }
  .hero__cta .btn { justify-content: center; }

  .section { padding: 80px 0; }
  .intro__checks { grid-template-columns: 1fr; }
  .form__row--2 { grid-template-columns: 1fr; }
  .form { padding: 24px; }

  .service { grid-template-columns: 1fr; gap: 20px; }
  .service__visual { justify-self: start; width: 80px; height: 80px; }

  .why { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__claim { text-align: left; }

  .product { width: clamp(280px, 80vw, 380px); }

  .section__title, .intro__title, .process__title, .contact__title { font-size: clamp(36px, 10vw, 64px); }
}

/* ================================================================
   DARK ISLANDS — sections that stay navy on the light site
================================================================ */
.sub-hero, .footer,
.testimonial,
.bg-navy, .bg-navy-2, .bg-navy-tint, .bg-navy-gradient {
  background: var(--navy);
  color: #FFFFFF;
  --text: #FFFFFF;
  --text-dim: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.45);
  --line: rgba(255, 255, 255, 0.08);
  --line-hi: rgba(255, 255, 255, 0.22);
  --bg: var(--navy);
  --bg-2: var(--navy-2);
  --bg-3: rgba(255, 255, 255, 0.04);
  --surface: rgba(255, 255, 255, 0.05);
  --surface-hi: rgba(255, 255, 255, 0.08);
}
.bg-navy-tint {
  background: linear-gradient(180deg, var(--navy) 0%, #050A16 100%);
}
.bg-navy-gradient {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(71, 165, 220, 0.16), transparent 55%),
    radial-gradient(ellipse at 90% 100%, rgba(30, 136, 199, 0.1), transparent 55%),
    var(--navy);
}

/* ================================================================
   IMAGE UTILITIES
================================================================ */
.img {
  position: relative; overflow: hidden; display: block;
  background: var(--bg-3);
}
.img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
  will-change: transform;
}
.img--reveal { position: relative; }
.img--reveal::before { display: none !important; }
.img--reveal img { transform: none !important; transition: none !important; }
.img--reveal--legacy::before {
  content: ''; position: absolute; inset: 0;
  background: var(--navy); z-index: 2;
  transform-origin: bottom;
  transition: transform 1.1s var(--ease-snap);
}
.img--reveal.is-in::before { transform: scaleY(0); }
.img--reveal img { transform: scale(1.1); transition: transform 1.6s var(--ease); }
.img--reveal.is-in img { transform: scale(1); }

.img--16-9 { aspect-ratio: 16 / 9; }
.img--4-3 { aspect-ratio: 4 / 3; }
.img--3-4 { aspect-ratio: 3 / 4; }
.img--1-1 { aspect-ratio: 1 / 1; }

.img--hover:hover img { transform: scale(1.05); }

.img__caption {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 11px; color: #fff;
  padding: 6px 12px; background: rgba(14, 26, 46, .75);
  backdrop-filter: blur(10px); letter-spacing: .1em;
  text-transform: uppercase;
}

/* --------- NAVY SECTION BG --------- */
.bg-navy { background: var(--navy); }
.bg-navy-2 { background: var(--navy-2); }
.bg-navy-tint {
  background: linear-gradient(180deg, var(--bg) 0%, var(--navy) 100%);
}
.bg-navy-gradient {
  background:
    radial-gradient(ellipse at 10% 0%, rgba(30, 136, 199, 0.12), transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(214, 168, 92, 0.08), transparent 50%),
    var(--bg);
}

/* ================================================================
   SUBPAGE HERO
================================================================ */
.sub-hero {
  position: relative; min-height: 80vh;
  padding: 160px var(--gutter) 80px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; isolation: isolate;
  background: var(--navy);
}
.sub-hero__bg {
  position: absolute; inset: 0; z-index: -2;
}
.sub-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .45;
}
.sub-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14,26,46,.35) 0%, rgba(14,26,46,.65) 60%, var(--navy) 100%);
}
.sub-hero__inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
.sub-hero__crumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 24px;
}
.sub-hero__crumb a { color: var(--text-dim); transition: color .3s var(--ease); }
.sub-hero__crumb a:hover { color: var(--blue-hi); }
.sub-hero__crumb .sep { color: var(--accent); }
.sub-hero__crumb .current { color: var(--text); }

.sub-hero__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5.5vw, 88px);
  line-height: .95; letter-spacing: -.03em;
  color: var(--text);
  max-width: 1200px;
}
.sub-hero__title .line { display: block; overflow: hidden; padding-bottom: 0.14em; }
.sub-hero__title .line span { display: inline-block; }

.sub-hero__sub {
  font-size: clamp(16px, 1.3vw, 20px);
  color: var(--text); opacity: .8;
  max-width: 620px; margin-top: 24px; line-height: 1.5;
}

.sub-hero__meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px; padding-top: 40px; margin-top: 40px;
  border-top: 1px solid var(--line);
}
.sub-hero__meta .meta__num { font-size: clamp(28px, 3vw, 40px); }

/* ================================================================
   IMAGE GRID GALLERY
================================================================ */
.gallery {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 20px; margin-top: 40px;
}
.gallery .img {
  border-radius: var(--radius-md); overflow: hidden;
}
.g-span-6 { grid-column: span 6; }
.g-span-4 { grid-column: span 4; }
.g-span-5 { grid-column: span 5; }
.g-span-7 { grid-column: span 7; }
.g-span-8 { grid-column: span 8; }
.g-span-12 { grid-column: span 12; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .g-span-6, .g-span-5, .g-span-7, .g-span-8, .g-span-12 { grid-column: span 6; }
  .g-span-4 { grid-column: span 3; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .g-span-4 { grid-column: span 2; }
}

/* ================================================================
   FEATURE DUO (text + big image)
================================================================ */
.duo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-top: clamp(40px, 6vw, 80px);
}
.duo--reverse .duo__text { order: 2; }
.duo__text { max-width: 540px; }
.duo__tag {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 20px;
}
.duo__tag::before {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.duo__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.duo__title .hl { color: var(--blue-hi); }
.duo__body {
  color: var(--text-dim); font-size: 15px; line-height: 1.65;
  margin-bottom: 20px;
}
.duo__list {
  display: flex; flex-direction: column; gap: 12px; margin-top: 24px;
}
.duo__list li {
  display: flex; gap: 14px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px; color: var(--text);
}
.duo__list li::before {
  content: '→'; color: var(--accent); flex-shrink: 0;
}
.duo__img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5;
}
.duo__img--wide { aspect-ratio: 5 / 4; }

@media (max-width: 900px) {
  .duo, .duo--reverse { grid-template-columns: 1fr; }
  .duo--reverse .duo__text { order: 1; }
}

/* ================================================================
   DETAIL SERVICE ROW (Leistungen page)
================================================================ */
.detail-row {
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.detail-row:first-child { border-top: none; }
.detail-row__top {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px; margin-bottom: 40px;
}
.detail-row__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 5vw, 72px); color: var(--blue-hi);
  letter-spacing: -.02em; line-height: 1;
}
.detail-row__rule {
  height: 1px; background: var(--line);
}
.detail-row__tag {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: .14em; text-transform: uppercase;
}
.page-toranlagen .detail-row__top {
  align-items: baseline;
}
.page-toranlagen .detail-row__tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5.5vw, 84px); color: var(--text);
  letter-spacing: -.025em; text-transform: none;
  line-height: 1;
}
.page-toranlagen .bg-navy .detail-row__tag { color: #fff; }
.page-toranlagen .detail-row__num {
  font-size: clamp(22px, 2.2vw, 32px);
  color: var(--accent); opacity: .8;
}
.page-toranlagen .detail-row__rule {
  margin: 0 clamp(12px, 1.5vw, 24px);
}
.detail-row__grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.detail-row__text h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: -.025em; line-height: 1;
  margin-bottom: 24px;
}
.detail-row__text p {
  color: var(--text-dim); font-size: 15px; line-height: 1.65;
  margin-bottom: 14px;
}
.detail-row__text p.big {
  color: var(--text); font-size: 18px; line-height: 1.5; margin-bottom: 20px;
  font-weight: 400;
}
.detail-row__text ul {
  margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.detail-row__text ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text);
}
.detail-row__text ul li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
  box-shadow: 0 0 10px var(--blue);
}
.detail-row__img {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5;
}

@media (max-width: 900px) {
  .detail-row__grid { grid-template-columns: 1fr; }
  .detail-row__top { grid-template-columns: auto 1fr; }
  .detail-row__tag { display: none; }
  .detail-row__text ul { grid-template-columns: 1fr; }
}

/* ================================================================
   PRODUCT GRID (Produkte page)
================================================================ */
.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
}
.product-cell {
  padding: clamp(28px, 3vw, 44px); background: var(--bg-2);
  display: grid; grid-template-rows: auto auto 1fr auto; gap: 20px;
  min-height: 420px; transition: background .4s var(--ease); position: relative;
  overflow: hidden;
}
.product-cell::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, var(--blue-dim), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.product-cell:hover { background: var(--bg); }
.product-cell:hover::before { opacity: 1; }
.product-cell > * { position: relative; z-index: 1; }

.product-cell__top {
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-dim);
}
.product-cell__num { color: var(--blue-hi); }
.product-cell__visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, var(--bg) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); overflow: hidden; position: relative;
}
.product-cell__visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.product-cell:hover .product-cell__visual img { transform: scale(1.06); }
.product-cell__visual::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, transparent 40%, rgba(14, 26, 46, 0.35) 100%);
  pointer-events: none;
}
.product-cell__visual::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at 70% 30%, rgba(30,136,199,0.12), transparent 60%);
  pointer-events: none; opacity: 0; transition: opacity .4s var(--ease);
}
.product-cell:hover .product-cell__visual::before { opacity: 1; }
.product-cell__visual svg { width: 60%; height: 60%; opacity: .9; }
.product-cell__body h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 2.6vw, 36px); letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: 10px;
}
.product-cell__body p { color: var(--text-dim); font-size: 14px; line-height: 1.55; }

.product-cell__specs {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.product-cell__specs span {
  font-family: var(--font-mono); font-size: 10px;
  padding: 5px 10px; border: 1px solid var(--line-hi);
  border-radius: 10px; letter-spacing: .08em; color: var(--text);
}

@media (max-width: 800px) { .product-grid { grid-template-columns: 1fr; } }

/* ================================================================
   TEAM GRID
================================================================ */
.team {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 24px; margin-top: 40px;
}
.team__person {
  display: flex; flex-direction: column; gap: 16px;
  overflow: hidden;
}
.team__person .img {
  aspect-ratio: 3 / 4; border-radius: var(--radius-md);
  overflow: hidden;
}
.team__person .img img {
  filter: grayscale(20%);
  transition: filter .6s var(--ease), transform 1s var(--ease);
}
.team__person:hover .img img { filter: grayscale(0%); transform: scale(1.04); }
.team__info {
  display: flex; flex-direction: column; gap: 2px;
}
.team__name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 17px; color: var(--text); letter-spacing: -.01em;
}
.team__role {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--blue-hi); letter-spacing: .08em; text-transform: uppercase;
}

@media (max-width: 900px) { .team { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .team { grid-template-columns: repeat(2, 1fr); gap: 16px; } }

/* ================================================================
   CAREER: BENEFITS, JOBS
================================================================ */
.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 40px;
}
.benefit {
  background: var(--bg); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 18px; min-height: 260px;
  transition: background .4s var(--ease);
  position: relative; overflow: hidden;
}
.benefit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--blue-dim), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.benefit:hover { background: var(--navy-2); }
.benefit:hover::before { opacity: 1; }
.benefit > * { position: relative; z-index: 1; }

.benefit__icon {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--line-hi); display: flex; align-items: center; justify-content: center;
  color: var(--blue-hi);
  transition: border-color .4s var(--ease), transform .5s var(--ease-snap);
}
.benefit:hover .benefit__icon { border-color: var(--blue); transform: rotate(15deg); }
.benefit__icon svg { width: 22px; height: 22px; }

.benefit h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; letter-spacing: -.01em; line-height: 1.2;
}
.benefit p { color: var(--text-dim); font-size: 14px; line-height: 1.55; }

@media (max-width: 900px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .benefits { grid-template-columns: 1fr; } }

.jobs {
  display: flex; flex-direction: column; margin-top: 40px;
  border-top: 1px solid var(--line);
}
.job {
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 30px; padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .4s var(--ease), background .4s var(--ease);
  cursor: pointer;
  position: relative;
}
.job::before {
  content: ''; position: absolute; left: -20px; right: -20px; top: 0; bottom: 0;
  background: var(--navy-2); border-radius: var(--radius-md);
  opacity: 0; transition: opacity .4s var(--ease);
  z-index: -1;
}
.job:hover::before { opacity: 1; }
.job:hover { padding: 28px 20px; }
.job__num {
  font-family: var(--font-mono); color: var(--blue-hi); font-size: 12px;
}
.job__title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -.01em; line-height: 1.2;
}
.job__tags {
  display: flex; gap: 8px;
}
.job__tags span {
  font-family: var(--font-mono); font-size: 10px;
  padding: 5px 10px; border: 1px solid var(--line-hi);
  border-radius: 10px; letter-spacing: .08em; color: var(--text-dim);
}
.job__arrow {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-hi);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: all .4s var(--ease);
}
.job:hover .job__arrow {
  border-color: var(--blue); background: var(--blue); color: #fff;
  transform: rotate(-45deg);
}
.job__arrow svg { width: 18px; height: 18px; }

@media (max-width: 700px) {
  .job { grid-template-columns: auto 1fr auto; gap: 14px; }
  .job__tags { display: none; }
}

/* ================================================================
   REFERENCES (Gallery)
================================================================ */
.ref-filter {
  display: flex; gap: 10px; margin-bottom: 40px; flex-wrap: wrap;
  padding-bottom: 30px; border-bottom: 1px solid var(--line);
}
.ref-filter__btn {
  padding: 10px 18px; border: 1px solid var(--line-hi); border-radius: 10px;
  background: transparent; color: var(--text); font-size: 13px;
  font-family: var(--font-body); cursor: pointer;
  transition: all .3s var(--ease);
}
.ref-filter__btn.is-active,
.ref-filter__btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.ref-filter__btn .count {
  font-family: var(--font-mono); font-size: 10px; color: var(--blue-hi);
  margin-left: 6px; opacity: .9;
}
.ref-filter__btn.is-active .count { color: rgba(255,255,255,.7); }

.ref-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.ref-card {
  grid-column: span 4; border-radius: var(--radius-md);
  overflow: hidden; position: relative;
  background: var(--bg-3);
  cursor: pointer;
}
.ref-card--wide { grid-column: span 6; }
.ref-card--tall { grid-row: span 2; }
.ref-card .img { aspect-ratio: 4 / 3; }
.ref-card--tall .img { aspect-ratio: 3 / 4; height: 100%; }
.ref-card--wide .img { aspect-ratio: 16 / 9; }

.ref-card__overlay {
  position: absolute; inset: 0; padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(0deg, rgba(14,26,46,.9) 0%, transparent 60%);
  transition: background .4s var(--ease);
  z-index: 2;
}
.ref-card:hover .ref-card__overlay {
  background: linear-gradient(0deg, rgba(14,26,46,.95) 0%, rgba(14,26,46,.2) 100%);
}
.ref-card__cat {
  font-family: var(--font-mono); font-size: 10px; color: var(--blue-hi);
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px;
}
.ref-card__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 2vw, 22px); color: #fff; line-height: 1.2;
}
.ref-card__loc {
  font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.7);
  margin-top: 6px; letter-spacing: .08em;
}
.ref-card__story {
  font-family: var(--font-display); font-weight: 500;
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,.85);
  margin: 12px 0 0; max-width: 420px;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .5s cubic-bezier(.65,0,.35,1), opacity .4s ease, margin .5s ease;
}
.ref-card:hover .ref-card__story {
  max-height: 200px; opacity: 1; margin-top: 14px;
}
.ref-card .img img { transition: transform 1.4s var(--ease); }
.ref-card:hover .img img { transform: scale(1.06); }

@media (max-width: 900px) {
  .ref-grid { grid-template-columns: repeat(6, 1fr); }
  .ref-card, .ref-card--wide { grid-column: span 3; }
  .ref-card--tall { grid-row: auto; }
}
@media (max-width: 540px) {
  .ref-grid { grid-template-columns: 1fr; }
  .ref-card, .ref-card--wide { grid-column: span 1; }
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonial {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 72px); margin-top: 40px;
  position: relative; overflow: hidden;
  border: 1px solid var(--blue-line);
}
.testimonial::before {
  content: '"'; position: absolute; top: -40px; left: 20px;
  font-family: var(--font-display); font-size: 240px;
  color: var(--blue); opacity: .15; line-height: 1;
}
.testimonial__text {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 2vw, 28px); line-height: 1.35;
  color: var(--text); letter-spacing: -.01em;
  position: relative; z-index: 1; max-width: 900px;
}
.testimonial__author {
  margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--blue-line);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.testimonial__who {
  display: flex; flex-direction: column; gap: 2px;
}
.testimonial__name {
  font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--text);
}
.testimonial__role {
  font-family: var(--font-mono); font-size: 11px; color: var(--blue-hi);
  letter-spacing: .1em;
}
.testimonial__project {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-dim);
  letter-spacing: .12em; text-transform: uppercase;
}

/* ================================================================
   CONTACT PAGE: MAP + CARDS
================================================================ */
.map-block {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 40px;
  aspect-ratio: 16 / 8; background: var(--navy);
  border: 1px solid var(--line);
}
.map-block iframe {
  width: 100%; height: 100%; border: 0;
  filter: saturate(0.8) contrast(0.92);
}
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -100%); z-index: 2;
  pointer-events: none;
}
.map-pin__dot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-dim), 0 0 24px var(--accent);
  position: relative;
}
.map-pin__dot::after {
  content: ''; position: absolute; inset: -10px;
  border: 1px solid var(--accent); border-radius: 50%;
  animation: pin-pulse 2s ease-in-out infinite;
}
@keyframes pin-pulse {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(2); opacity: 0; }
}

.ansprech {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.ansprech__card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 28px;
  transition: border-color .4s var(--ease), transform .4s var(--ease-snap);
}
.ansprech__card:hover { border-color: var(--blue); transform: translateY(-4px); }
.ansprech__img {
  aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden;
  margin-bottom: 20px; width: 80px; height: 80px;
}
.ansprech__img img { width: 100%; height: 100%; object-fit: cover; }
.ansprech__name {
  font-family: var(--font-display); font-weight: 500; font-size: 18px;
  color: var(--text); margin-bottom: 2px;
}
.ansprech__role {
  font-family: var(--font-mono); font-size: 11px; color: var(--blue-hi);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px;
}
.ansprech__contact {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13px; color: var(--text-dim);
}
.ansprech__contact a:hover { color: var(--blue-hi); }

@media (max-width: 900px) { .ansprech { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ansprech { grid-template-columns: 1fr; } }

/* ================================================================
   TIMELINE (Über uns)
================================================================ */
.timeline {
  position: relative; margin-top: 40px;
  padding-left: 60px;
}
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 1px; background: var(--line);
}
/* Legacy timeline (not used on ueber-uns v2) */
.timeline:not(.timeline--v2) .timeline__item {
  position: relative; padding-bottom: 60px;
}
.timeline:not(.timeline--v2) .timeline__item:last-child { padding-bottom: 0; }
.timeline:not(.timeline--v2) .timeline__dot {
  position: absolute; left: -48px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%; background: var(--bg);
  border: 2px solid var(--blue);
}
.timeline__item:last-child .timeline__dot { background: var(--accent); border-color: var(--accent); }
.timeline__year {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3vw, 44px); color: var(--blue-hi);
  letter-spacing: -.02em; line-height: 1; margin-bottom: 12px;
}
.timeline__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(20px, 2vw, 26px); color: var(--text);
  letter-spacing: -.01em; margin-bottom: 10px;
}
.timeline__text { color: var(--text-dim); font-size: 15px; line-height: 1.6; max-width: 680px; }

/* ================================================================
   VALUES
================================================================ */
.values {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.value {
  padding: 32px 28px; background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  transition: border-color .4s var(--ease), transform .4s var(--ease-snap);
}
.value:hover { border-color: var(--blue); transform: translateY(-4px); }
.value__num {
  font-family: var(--font-display); font-weight: 500;
  font-size: 40px; color: var(--blue-hi); line-height: 1;
  margin-bottom: 18px; letter-spacing: -.02em;
}
.value h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; color: var(--text); margin-bottom: 10px;
  letter-spacing: -.01em;
}
.value p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) { .values { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .values { grid-template-columns: 1fr; } }

/* ================================================================
   BLUE BUTTON VARIANT
================================================================ */
.btn--blue {
  background: var(--blue); color: #fff;
}
.btn--blue::before {
  content: ''; position: absolute; inset: 0; background: var(--blue-hi);
  transform: translateY(101%); transition: transform .5s var(--ease-snap); z-index: 1;
}
.btn--blue:hover::before { transform: translateY(0); }
.btn--blue:hover .btn__arrow { transform: translateX(4px); }

/* ================================================================
   HERO IMAGE ENHANCEMENT
================================================================ */
/* Legacy hero-image-strip: deprecated in favor of .hero__image */
.hero-image-strip { display: none; }

/* ================================================================
   SPLIT IMAGE INTRO (About)
================================================================ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-top: clamp(40px, 6vw, 80px);
}
.about-split .img:nth-child(1) { aspect-ratio: 4 / 5; }
.about-split .img:nth-child(2) { aspect-ratio: 4 / 5; margin-top: 80px; }

@media (max-width: 640px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split .img:nth-child(2) { margin-top: 0; }
}

/* ================================================================
   STICKY SIDEBAR TOC (Leistungen)
================================================================ */
.toc {
  position: sticky; top: 120px; display: flex; flex-direction: column; gap: 14px;
}
.toc__head {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 10px;
}
.toc a {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 12px; align-items: center; padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim); font-size: 14px;
  transition: color .3s var(--ease), padding .3s var(--ease);
}
.toc a:hover,
.toc a.is-active { color: var(--text); padding-left: 8px; }
.toc a .num {
  font-family: var(--font-mono); font-size: 10px; color: var(--blue-hi);
}
.toc a .arrow {
  width: 16px; height: 16px; opacity: 0; transition: opacity .3s var(--ease);
}
.toc a:hover .arrow,
.toc a.is-active .arrow { opacity: 1; }

/* ================================================================
   INFO CARDS (Contact)
================================================================ */
.info-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 40px;
}
.info-card {
  padding: 28px 24px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-md);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .4s var(--ease);
}
.info-card:hover { border-color: var(--blue); }
.info-card__icon {
  width: 40px; height: 40px; color: var(--blue-hi);
}
.info-card__icon svg { width: 100%; height: 100%; }
.info-card__label {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-dim);
  letter-spacing: .1em; text-transform: uppercase;
}
.info-card__value {
  font-family: var(--font-display); font-weight: 500; color: var(--text);
  font-size: 17px; line-height: 1.3;
}
.info-card__value a { color: var(--text); }
.info-card__value a:hover { color: var(--blue-hi); }

@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .info-grid { grid-template-columns: 1fr; } }

/* ================================================================
   HOMEPAGE: IMAGE MONTAGE SECTION
================================================================ */
.section--showcase {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.section--showcase::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.showcase-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; flex-wrap: wrap; gap: 30px;
}
.showcase-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}
.showcase-grid .img { border-radius: var(--radius-md); }
.sc-1 { grid-column: span 5; grid-row: span 2; }
.sc-2 { grid-column: span 4; grid-row: span 1; }
.sc-3 { grid-column: span 3; grid-row: span 2; }
.sc-4 { grid-column: span 4; grid-row: span 1; }

@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: auto; }
  .sc-1 { grid-column: span 6; grid-row: span 1; aspect-ratio: 16/9; }
  .sc-1 .img { aspect-ratio: 16/9; }
  .sc-2, .sc-3, .sc-4 { grid-column: span 3; aspect-ratio: 4/3; }
  .sc-2 .img, .sc-3 .img, .sc-4 .img { aspect-ratio: 4/3; }
}

/* ================================================================
   CAREER — JOB DETAIL CARDS
================================================================ */
.jobs-detail {
  display: flex; flex-direction: column; gap: 30px;
  margin-top: 50px;
}
.job-card {
  background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 56px);
  display: grid; grid-template-columns: 1fr;
  gap: 36px;
  transition: border-color .4s var(--ease), transform .5s var(--ease-snap);
  position: relative; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform .7s var(--ease);
}
.job-card:hover::before { transform: scaleX(1); }
.job-card:hover { border-color: var(--accent); }

.job-card--soft { background: var(--bg); border-style: dashed; }
.job-card--soft::before { background: var(--blue-hi); }

.job-card__left { display: flex; flex-direction: column; gap: 14px; }
.job-card__pin {
  color: var(--accent);
}
.job-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px); letter-spacing: -.02em;
  line-height: 1.1; color: var(--text);
}
.job-card__gender {
  font-weight: 500; color: var(--text-dim); font-size: .6em;
  letter-spacing: 0;
}

.job-card__meta {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border: 1px solid var(--line-hi);
  border-radius: 10px; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .06em; color: var(--text-dim);
  font-weight: 500;
}
.chip svg { width: 14px; height: 14px; color: var(--accent); stroke-width: 1.6; }

.job-card__body {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.job-card__block h4 {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent); margin-bottom: 18px;
}
.job-card__block ul {
  display: flex; flex-direction: column; gap: 12px;
}
.job-card__block ul li {
  display: flex; gap: 12px; font-size: 14px; color: var(--text);
  line-height: 1.55;
}
.job-card__block ul li::before {
  content: '→'; color: var(--accent); flex-shrink: 0; font-weight: 700;
}
.job-card__block p {
  color: var(--text-dim); font-size: 14px; line-height: 1.65;
}

.job-card__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .job-card__body { grid-template-columns: 1fr; gap: 24px; }
}

/* ================================================================
   CAREER — PROCESS STEPS LINE
================================================================ */
.steps-line {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-line::before {
  content: ''; position: absolute; top: 40px; left: 0; right: 0; height: 1px;
  background: var(--line-hi);
  background-image: repeating-linear-gradient(90deg, var(--line-hi) 0 8px, transparent 8px 14px);
}
.sline-item {
  padding: 0 24px; position: relative;
  display: flex; flex-direction: column; gap: 20px;
}
.sline-item:first-child { padding-left: 0; }
.sline-item:last-child { padding-right: 0; }
.sline-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--accent); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -.01em; flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--navy), 0 10px 30px rgba(30, 136, 199, 0.25);
  position: relative; z-index: 1;
}
.sline-content h4 {
  font-family: var(--font-display); font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; letter-spacing: -.01em; margin-bottom: 10px;
}
.sline-content p {
  color: var(--text-dim); font-size: 14px; line-height: 1.6;
  margin-bottom: 14px;
}
.sline-time {
  display: inline-block; padding: 5px 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em;
  color: var(--blue-hi); border: 1px solid var(--blue-line);
  border-radius: 10px; text-transform: uppercase;
}

@media (max-width: 900px) {
  .steps-line { grid-template-columns: 1fr; gap: 24px; }
  .steps-line::before { display: none; }
  .sline-item { padding: 0; flex-direction: row; gap: 20px; }
  .sline-item .sline-num { width: 56px; height: 56px; font-size: 16px; }
}

/* ================================================================
   CAREER — FAQ
================================================================ */
.faq {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.faq__item[open] { padding: 6px 0; background: rgba(30, 136, 199, 0.03); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 24px 20px 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700; letter-spacing: -.01em; color: var(--text);
  transition: color .3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-family: var(--font-display); font-size: 26px; font-weight: 500;
  color: var(--accent); transition: transform .35s var(--ease);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--accent); }
.faq__item p {
  padding: 0 60px 24px 0; color: var(--text-dim);
  font-size: 15px; line-height: 1.7; max-width: 780px;
}

/* ================================================================
   CAREER — SUB-HERO ADJUSTMENT
================================================================ */
.sub-hero--career { min-height: 88vh; }
.sub-hero__cta { max-width: 100%; }

/* ================================================================
   CLIENT LOGOS GRID
================================================================ */
.clients {
  padding: clamp(60px, 8vw, 100px) 0;
}
.clients__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end;
  margin-bottom: 50px;
}
.clients__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden;
}
.clients__cell {
  background: var(--bg-2);
  padding: 34px 24px; min-height: 120px;
  display: flex; align-items: center; justify-content: center;
  transition: background .35s var(--ease);
  position: relative;
}
.clients__cell::before {
  content: attr(data-name); position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%) translateY(6px);
  font-family: var(--font-display); font-size: 10px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent);
  opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.clients__cell:hover { background: var(--bg); }
.clients__cell:hover::before { opacity: 1; transform: translateX(-50%) translateY(0); }
.clients__cell img {
  max-width: 100%; max-height: 56px;
  width: auto; height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter .4s var(--ease), opacity .4s var(--ease), transform .4s var(--ease);
}
.clients__cell:hover img {
  transform: translateY(-6px);
}
@media (max-width: 900px) {
  .clients__grid { grid-template-columns: repeat(3, 1fr); }
  .clients__head { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 540px) { .clients__grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   POPPINS WEIGHT NORMALIZATION
   Only 500 (Medium) and 700 (Bold) are loaded.
   All other weights fall back to the nearest available one.
================================================================ */
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; }
strong, b { font-weight: 700; }
.hero__title, .sub-hero__title, .section__title,
.intro__title, .process__title, .contact__title,
.duo__title, .step__title, .intro__card-body h3,
.footer__claim h3, .testimonial__name,
.footer__wordmark, .menu__link { font-weight: 700; }

.mono, .eyebrow, .hero__tag, .hero__coords, .preloader__label,
.preloader__counter, .nav__link, .footer__col span.mono,
.nav__link span { font-weight: 500; letter-spacing: 0.04em; }

/* Reset italic words since Poppins italic isn't loaded */
.hero__title .word--italic { font-style: normal; }

/* ================================================================
   GOOGLE REVIEWS
================================================================ */
.reviews { width: 100%; }
.reviews__summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 20px 24px; margin-bottom: 24px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-2); flex-wrap: wrap;
}
.reviews__score { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.reviews__score-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; color: var(--text); letter-spacing: -.02em;
  line-height: 1;
}
.reviews__stars {
  display: inline-flex; gap: 3px; color: #F5A623;
}
.reviews__stars svg { width: 18px; height: 18px; }
.reviews__count {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-dim); letter-spacing: .05em;
}
.reviews__link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1px solid var(--line-hi);
  border-radius: 10px; font-size: 13px; font-family: var(--font-display);
  font-weight: 500; color: var(--text); text-decoration: none;
  transition: border-color .25s ease, background .25s ease;
}
.reviews__link:hover { border-color: var(--accent); background: var(--bg); }
.reviews__link svg { width: 13px; height: 13px; stroke-width: 1.8; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (max-width: 780px) { .reviews__grid { grid-template-columns: 1fr; } }
.review {
  padding: 22px 22px 20px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg);
}
.review__head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.review__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.review__meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.review__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--text);
}
.review__date {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-dim); letter-spacing: .03em;
}
.review__stars {
  display: inline-flex; gap: 2px; color: #F5A623; flex-shrink: 0;
}
.review__stars svg { width: 14px; height: 14px; }
.review__text {
  font-size: 14px; line-height: 1.55; color: var(--text);
  margin: 0;
}

/* ================================================================
   FUNNEL (Kontakt Wizard)
================================================================ */
.funnel { width: 100%; }
.funnel__intro {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.funnel__intro::before {
  content: ''; width: 24px; height: 1px; background: var(--accent);
}
.funnel__tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 2px solid var(--accent); border-radius: 10px;
  padding: 5px; background: rgba(59,130,246,.06);
  position: relative;
  margin-bottom: 24px;
}
.funnel__tab {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 16px 20px;
  font-size: 15px; font-weight: 700;
  background: transparent; border: none; cursor: pointer;
  position: relative;
  font-family: var(--font-display); font-weight: 500;
  font-size: 14px; color: var(--text-dim);
  border-radius: 8px;
  transition: background .25s ease, color .25s ease;
}
.funnel__tab svg { width: 16px; height: 16px; stroke-width: 1.7; }
.funnel__tab.is-active {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 20px -8px rgba(37,99,235,.55);
}
.funnel__tab.is-active svg { color: #fff; }
.funnel__tab:hover { color: var(--accent); }
.funnel__tab.is-active:hover { color: #fff; }
.funnel__tab[data-tab="check"].is-active::after {
  content: 'EMPFOHLEN';
  position: absolute; top: -10px; right: -6px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: .14em;
  background: #0E1A2E; color: #fff;
  padding: 4px 8px; border-radius: 6px;
  box-shadow: 0 2px 6px rgba(14,26,46,.15);
}
.funnel__panel {
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); padding: 32px;
}
.funnel__panel[hidden] { display: none; }
.funnel__header {
  padding-bottom: 20px; margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.funnel__step-info {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 12px;
}
.funnel__step-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
}
.funnel__step-title {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim);
}
.funnel__bar {
  height: 3px; background: var(--line); border-radius: 2px;
  overflow: hidden; position: relative;
}
.funnel__bar-fill {
  position: absolute; inset: 0; width: 25%;
  background: var(--accent);
  transition: width .45s cubic-bezier(.65,0,.35,1);
}
.funnel__step { display: none; }
.funnel__step.is-active {
  display: block;
  animation: funnel-in .35s ease both;
}
@keyframes funnel-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.funnel__question {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2;
  letter-spacing: -.01em; color: var(--text);
  margin-bottom: 8px;
}
.funnel__hint {
  font-size: 14px; color: var(--text-dim);
  margin-bottom: 24px;
}
.funnel__options {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 24px;
}
@media (max-width: 780px) {
  .funnel__options { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .funnel__options { grid-template-columns: 1fr; }
}
.funnel__option {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 4px;
  padding: 18px 16px 16px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); cursor: pointer;
  text-align: left; font-family: inherit;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.funnel__option:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.funnel__option.is-selected {
  border-color: var(--accent);
  background: rgba(37, 99, 235, .04);
  box-shadow: 0 0 0 1px var(--accent) inset;
}
.funnel__option-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(14,26,46,.04); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  transition: background .25s ease, color .25s ease;
}
.funnel__option.is-selected .funnel__option-icon {
  background: var(--accent); color: #fff;
}
.funnel__option-icon svg { width: 18px; height: 18px; stroke-width: 1.7; }
.funnel__option-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--text); letter-spacing: -.005em;
}
.funnel__option-desc {
  font-size: 12.5px; color: var(--text-dim); line-height: 1.4;
}
.funnel__summary {
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-2);
  padding: 16px 18px; margin-bottom: 24px;
  display: grid; gap: 10px;
}
.funnel__summary-item {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px; font-size: 13px;
}
.funnel__summary-item span {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim);
}
.funnel__summary-item strong {
  font-family: var(--font-display); font-weight: 500;
  color: var(--text); text-align: right;
}
.funnel__fields { display: grid; gap: 16px; margin-bottom: 20px; }
.funnel__fields .form__row { margin: 0; }
.funnel__nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; border-top: 1px solid var(--line);
  gap: 12px;
}
.funnel__back, .funnel__next, .funnel__submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px; cursor: pointer;
  font-family: var(--font-display); font-weight: 500; font-size: 14px;
  border: 1px solid var(--line); background: transparent; color: var(--text);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.funnel__back svg, .funnel__next svg, .funnel__submit svg { width: 14px; height: 14px; stroke-width: 1.8; }
.funnel__back:hover { background: var(--bg-2); }
.funnel__back:disabled { opacity: .35; cursor: not-allowed; }
.funnel__next, .funnel__submit {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.funnel__next:hover, .funnel__submit:hover {
  background: var(--navy); border-color: var(--navy);
}

/* ================================================================
   BATCH 2 — Homepage Blocks (Trust / UVV / Testimonial / Emergency / Career)
================================================================ */

/* --- Trust block (Partner) --- */
.section--trust { padding: clamp(80px, 10vw, 130px) 0; }
.trust__head { max-width: 820px; margin-bottom: 44px; }

.trust-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; margin-bottom: 32px;
  background: var(--bg);
}
.trust-stat {
  padding: 34px 32px 30px;
  display: flex; flex-direction: column; gap: 14px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background .4s ease;
}
.trust-stat:last-child { border-right: none; }
.trust-stat::before {
  content: ''; position: absolute; left: 32px; right: 32px; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.65,0,.35,1);
}
.trust-stat:hover { background: var(--bg-2); }
.trust-stat:hover::before { transform: scaleX(1); }
.trust-stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 3.6vw, 52px);
  color: var(--navy); letter-spacing: -.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 2px;
}
.trust-stat__num em {
  font-style: normal; font-weight: 700;
  font-size: .55em; color: var(--accent);
  margin-left: 2px; line-height: 1;
  align-self: flex-start; margin-top: 0.18em;
}
.trust-stat__label {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(13px, 1vw, 15px); color: var(--text-dim);
  letter-spacing: -.005em; line-height: 1.35;
}
@media (max-width: 860px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-stat:nth-child(2) { border-right: none; }
  .trust-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-stat { padding: 26px 22px 24px; }
}

.trust-logos {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; background: var(--bg);
  position: relative;
}
.trust-logo {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 132px; padding: 28px 18px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(14px, 1.1vw, 16px); letter-spacing: -.01em;
  color: var(--navy); text-align: center; line-height: 1.2;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  transition: background .45s ease, color .35s ease, transform .35s ease, opacity .35s ease;
  cursor: default; overflow: hidden;
}
.trust-logo:nth-child(5n) { border-right: none; }
.trust-logo:nth-child(n+6) { border-bottom: none; }
.trust-logo span { position: relative; z-index: 2; transition: transform .35s ease; }
.trust-logo::before {
  content: attr(data-industry);
  position: absolute; top: 14px; left: 16px; right: 16px;
  font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); text-align: left;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .3s ease, transform .3s ease;
}
.trust-logo::after {
  content: ''; position: absolute; left: 16px; bottom: 14px;
  width: 16px; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.65,0,.35,1);
}
.trust-logos:hover .trust-logo { opacity: .4; }
.trust-logo:hover {
  opacity: 1 !important;
  background: var(--bg-2);
  color: var(--accent);
}
.trust-logo:hover span { transform: translateY(6px); }
.trust-logo:hover::before { opacity: 1; transform: translateY(0); }
.trust-logo:hover::after { transform: scaleX(1); }
@media (max-width: 900px) {
  .trust-logos { grid-template-columns: repeat(3, 1fr); }
  .trust-logo:nth-child(5n) { border-right: 1px solid var(--line); }
  .trust-logo:nth-child(3n) { border-right: none; }
  .trust-logo:nth-child(n+6) { border-bottom: 1px solid var(--line); }
  .trust-logo:nth-last-child(-n+1) { border-bottom: none; }
}
@media (max-width: 560px) {
  .trust-logos { grid-template-columns: repeat(2, 1fr); }
  .trust-logo:nth-child(3n) { border-right: 1px solid var(--line); }
  .trust-logo:nth-child(2n) { border-right: none; }
}

.trust-foot {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
}
.trust-foot__label { color: var(--text-dim); }
.trust-foot__divider { flex: 1; height: 1px; background: var(--line); }
.trust-foot__link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); text-decoration: none;
  transition: color .25s ease, gap .25s ease;
}
.trust-foot__link:hover { color: var(--accent); gap: 12px; }
.trust-foot__link svg { width: 14px; height: 14px; stroke-width: 1.6; }

/* --- UVV Highlight --- */
.section--uvv-highlight { padding: clamp(80px, 10vw, 140px) 0; }
.uvv-highlight {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
}
.uvv-highlight__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5.2vw, 68px);
  letter-spacing: -.025em; line-height: 1.05;
  color: #fff; margin: 18px 0 24px;
}
.uvv-highlight__lead {
  font-size: clamp(15px, 1.25vw, 18px); line-height: 1.6;
  color: rgba(255,255,255,.7); max-width: 540px; margin-bottom: 30px;
}
.uvv-checks {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; gap: 14px;
}
.uvv-checks li {
  display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start;
  color: #fff; font-size: 15px; line-height: 1.45;
}
.uvv-checks svg {
  width: 20px; height: 20px; color: var(--accent);
  flex-shrink: 0; margin-top: 2px;
}
.uvv-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.uvv-link {
  color: rgba(255,255,255,.75); font-size: 14px;
  font-family: var(--font-display); font-weight: 500;
  text-decoration: none; letter-spacing: -.005em;
  transition: color .25s ease;
}
.uvv-link:hover { color: #fff; }

.uvv-highlight__right {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(100, 160, 230, 0.35);
  border-radius: 10px;
  padding: clamp(32px, 4vw, 48px);
  backdrop-filter: blur(2px);
}
.uvv-box__big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 6vw, 80px); letter-spacing: -.03em;
  color: #9BC5FF; line-height: 1; margin-bottom: 18px;
}
.uvv-box__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; color: #fff; line-height: 1.3;
  margin-bottom: 16px; letter-spacing: -.005em;
}
.uvv-box__small {
  font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.55;
}
@media (max-width: 860px) {
  .uvv-highlight { grid-template-columns: 1fr; }
}

/* --- Testimonial --- */
.section--testimonial { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg-2); }
.testi {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.testi__eyebrow { justify-content: center; margin-bottom: 30px; }
.testi__quote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.4;
  color: var(--navy); letter-spacing: -.015em;
  margin: 0 0 28px; quotes: "„" "“";
}
.testi__attr {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-dim);
}

.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: var(--max); margin: 0 auto;
}
.testi-card {
  margin: 0; padding: 28px 28px 24px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  transition: border-color .35s ease, transform .35s ease, background .35s ease;
}
.testi-card::before {
  content: '"';
  position: absolute; top: 10px; left: 22px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 48px; line-height: 1; color: var(--accent); opacity: .35;
  pointer-events: none;
}
.testi-card:hover {
  border-color: var(--accent); transform: translateY(-2px); background: var(--bg-2);
}
.testi-card blockquote {
  margin: 20px 0 0; padding: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; line-height: 1.55; color: var(--navy);
  letter-spacing: -.005em;
}
.bg-navy .testi-card,
.bg-navy-tint .testi-card,
.bg-navy-gradient .testi-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
}
.bg-navy .testi-card:hover,
.bg-navy-tint .testi-card:hover,
.bg-navy-gradient .testi-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
}
.bg-navy .testi-card blockquote,
.bg-navy-tint .testi-card blockquote,
.bg-navy-gradient .testi-card blockquote {
  color: #FFFFFF;
}
.bg-navy .testi-card figcaption,
.bg-navy-tint .testi-card figcaption,
.bg-navy-gradient .testi-card figcaption {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.bg-navy .testi-card figcaption strong,
.bg-navy-tint .testi-card figcaption strong,
.bg-navy-gradient .testi-card figcaption strong {
  color: #FFFFFF;
}
.bg-navy .testi-card figcaption span,
.bg-navy-tint .testi-card figcaption span,
.bg-navy-gradient .testi-card figcaption span {
  color: rgba(255, 255, 255, 0.55);
}
.testi-card figcaption {
  padding-top: 16px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 3px;
  margin-top: auto;
}
.testi-card figcaption strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; color: var(--text); letter-spacing: -.005em;
}
.testi-card figcaption span {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim);
}
@media (max-width: 860px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* --- Emergency Banner (24/7) --- */
.section--emergency {
  padding: 0;
  background: #0A1E35;
  position: relative;
  overflow: hidden;
}
.section--emergency::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(59,130,246,.18), transparent 60%);
  pointer-events: none;
}
.section--emergency .container { position: relative; z-index: 1; }
.emergency {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px); align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
}
.emergency__eyebrow .eyebrow__label,
.emergency__eyebrow .eyebrow__num { color: var(--accent); }
.emergency__eyebrow .eyebrow__line { background: rgba(100,160,230,.4); }
.emergency__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4vw, 52px); line-height: 1.1;
  letter-spacing: -.02em; color: #fff;
  margin: 20px 0 16px; max-width: 620px;
}
.emergency__lead {
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,.65); max-width: 520px;
  margin-bottom: 34px;
}
.emergency__cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px; border-radius: 10px;
  background: var(--accent); color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px); letter-spacing: -.015em;
  transition: background .25s ease, transform .2s ease;
}
.emergency__cta:hover { background: #1d4ed8; transform: translateY(-1px); }
.emergency__cta svg { width: 22px; height: 22px; }
.emergency__sub {
  margin-top: 12px; font-size: 13px;
  color: rgba(255,255,255,.5); letter-spacing: .02em;
}
.emergency__stats {
  display: grid; gap: 14px;
}
.emergency__stat {
  background: rgba(100,160,230,.08);
  border: 1px solid rgba(100,160,230,.25);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
}
.emergency__stat strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px); color: #fff; letter-spacing: -.01em;
}
.emergency__stat span {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
@media (max-width: 860px) {
  .emergency { grid-template-columns: 1fr; }
}

/* --- Career Teaser --- */
.section--career-teaser { padding: clamp(80px, 10vw, 140px) 0; }
.career-teaser {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.career-teaser__img {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.career-teaser__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.career-teaser__img:hover img { transform: scale(1.04); }
.career-teaser__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 3.8vw, 48px); line-height: 1.1;
  letter-spacing: -.02em; color: var(--text);
  margin: 20px 0 20px;
}
.career-teaser__lead {
  color: var(--text-dim); font-size: 16px; line-height: 1.6;
  max-width: 500px; margin-bottom: 28px;
}
@media (max-width: 860px) {
  .career-teaser { grid-template-columns: 1fr; }
}

/* ================================================================
   TORANLAGEN QUICK GRID (Leistungen)
================================================================ */
.section--toranlagen-quick {
  padding: clamp(40px, 5vw, 60px) 0 clamp(60px, 8vw, 100px);
  background: var(--bg-2);
}
.toranlagen-quick__head { max-width: 720px; }
.toranlagen-quick__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1;
  letter-spacing: -.02em; color: var(--text);
  margin: 16px 0 14px;
}
.toranlagen-quick__lead {
  color: var(--text-dim); font-size: 15px; line-height: 1.55;
  max-width: 620px; margin: 0;
}
.toranlagen-quick {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.tq-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px 22px 18px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg); text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.tq-item::before {
  content: ''; position: absolute; right: 18px; top: 18px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: .4;
  transition: transform .3s ease, opacity .3s ease;
}
.tq-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  background: var(--bg);
}
.tq-item:hover::before { opacity: 1; transform: scale(1.4); }
.tq-item__num {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .14em; color: var(--accent);
  margin-bottom: 2px;
}
.tq-item__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15.5px; color: var(--text); letter-spacing: -.01em;
  line-height: 1.2;
}
.tq-item__desc {
  font-family: var(--font-display); font-size: 12.5px;
  color: var(--text-dim); line-height: 1.4;
}
.toranlagen-quick__cta {
  display: flex; justify-content: center; margin-top: 36px;
}
@media (max-width: 900px) {
  .toranlagen-quick { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .toranlagen-quick { grid-template-columns: 1fr; }
}

/* ================================================================
   CORE SERVICES — Leistungen Kurz-Überblick (interaktiv)
================================================================ */
.section--core-services {
  padding: clamp(60px, 7vw, 100px) 0 clamp(40px, 5vw, 60px);
}
.core-services__head {
  max-width: 720px; margin-bottom: clamp(40px, 4vw, 56px);
}
.core-services__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.05;
  letter-spacing: -.025em; color: var(--text);
  margin: 18px 0 0;
}
.core-services {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden;
}
.core-service {
  position: relative;
  padding: 36px 30px 32px; background: var(--bg);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  min-height: 320px;
  overflow: hidden;
  transition: background .5s cubic-bezier(.65,0,.35,1);
}
.core-service::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent); transform: scaleY(0); transform-origin: top;
  transition: transform .5s cubic-bezier(.65,0,.35,1);
}
.core-service::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(260px 160px at 30% 20%, rgba(59,130,246,.1), transparent 70%);
  opacity: 0; transition: opacity .5s ease; pointer-events: none;
}
.core-service:hover { background: var(--bg-2); }
.core-service:hover::before { transform: scaleY(1); }
.core-service:hover::after { opacity: 1; }

.core-service__num {
  position: absolute; top: 28px; right: 30px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 4.5vw, 72px); line-height: 1;
  letter-spacing: -.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line-hi);
  transition: -webkit-text-stroke-color .4s ease, color .4s ease;
}
.core-service:hover .core-service__num {
  -webkit-text-stroke-color: transparent;
  color: var(--accent);
}

.core-service__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg-2);
  color: var(--accent); margin-bottom: 22px;
  transition: background .4s ease, transform .4s ease, border-color .4s ease;
}
.core-service:hover .core-service__icon {
  background: var(--accent); color: #fff;
  transform: rotate(-4deg) scale(1.04);
  border-color: var(--accent);
}
.core-service__icon svg { width: 26px; height: 26px; }

.core-service__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(19px, 1.8vw, 24px); letter-spacing: -.015em;
  color: var(--text); margin: 0 0 12px; line-height: 1.2;
}
.core-service__body {
  color: var(--text-dim); font-size: 14.5px; line-height: 1.55;
  margin: 0 0 24px; flex: 1;
}
.core-service__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  color: var(--accent); letter-spacing: -.005em;
  transition: gap .3s ease, color .25s ease;
  position: relative; z-index: 1;
  padding-top: 16px; border-top: 1px solid var(--line);
}
.core-service__link svg { width: 14px; height: 14px; }
.core-service:hover .core-service__link { gap: 14px; }

@media (max-width: 1000px) {
  .core-services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .core-services { grid-template-columns: 1fr; }
}

/* ================================================================
   BERATUNG STATT VERKAUF (Advice Section)
================================================================ */
.section--advice {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}
.advice {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.advice__vendors {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  align-items: center; margin-top: 32px;
}
.advice__vendor {
  padding: 28px 16px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-2); min-height: 84px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(13px, 1.1vw, 16px); color: var(--text-dim);
  letter-spacing: -.005em; text-align: center;
  filter: grayscale(100%);
}
.advice__arrow {
  grid-column: 1 / -1; display: flex; justify-content: center;
  color: var(--text-dim); padding: 8px 0;
}
.advice__arrow svg { width: 20px; height: 36px; }
.advice__jockel {
  grid-column: 1 / -1; padding: 20px; border: 1px solid var(--accent);
  border-radius: 10px; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.advice__jockel img {
  height: 46px; width: auto;
  filter: brightness(0) invert(1);
}
.advice__note {
  grid-column: 1 / -1; text-align: center; margin-top: 14px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent);
}
.advice__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 72px); line-height: 1.05;
  letter-spacing: -.025em; color: var(--navy);
  margin: 20px 0 24px;
}
.advice__lead {
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.5;
  color: var(--text); font-weight: 500; margin: 0 0 24px;
  max-width: 560px;
}
.advice__body {
  color: var(--text-dim); font-size: 16px; line-height: 1.65;
  max-width: 580px; margin: 0 0 18px;
}
.advice__cta { margin-top: 30px; }
@media (max-width: 860px) {
  .advice { grid-template-columns: 1fr; }
}

/* ================================================================
   BG URGENT BANNER (UVV page)
================================================================ */
.section--bg-urgent {
  padding: clamp(40px, 5vw, 64px) 0 0;
}
.bg-urgent {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
  padding: clamp(32px, 4vw, 48px);
  background: var(--bg-2);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
}
.bg-urgent__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.bg-urgent__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(24px, 2.8vw, 36px); line-height: 1.2;
  letter-spacing: -.015em; color: var(--navy);
  margin: 0 0 16px;
}
.bg-urgent__body {
  color: var(--text-dim); font-size: 15.5px; line-height: 1.6;
  margin: 0; max-width: 620px;
}
.bg-urgent__right {
  display: flex; flex-direction: column; gap: 14px;
}
.bg-urgent__phone {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 22px; border-radius: 10px;
  background: var(--navy); color: #fff; text-decoration: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 1.8vw, 24px); letter-spacing: -.01em;
  transition: background .25s ease, transform .2s ease;
  justify-content: center;
}
.bg-urgent__phone:hover { background: var(--accent); transform: translateY(-1px); }
.bg-urgent__phone svg { width: 22px; height: 22px; }
.bg-urgent__note {
  font-size: 12.5px; line-height: 1.5; color: var(--text-dim);
}
@media (max-width: 800px) {
  .bg-urgent { grid-template-columns: 1fr; }
}

/* ================================================================
   REGION CARD (wartungsvertrag — Kurze Wege)
================================================================ */
.region-card {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; align-items: start;
  padding: 28px 30px; border-radius: 10px;
  background: rgba(96,165,250,.08);
  border: 1px solid rgba(96,165,250,.25);
  color: #fff;
}
.region-card__icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.region-card__icon svg { width: 24px; height: 24px; }
.region-card__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; color: #fff; margin: 0 0 10px;
  letter-spacing: -.01em; line-height: 1.2;
}
.region-card__text {
  color: rgba(255,255,255,.75); font-size: 14.5px; line-height: 1.6;
  margin: 0; max-width: 680px;
}

/* ================================================================
   SITE-WEITES KONTAKTFORMULAR (cta-form)
================================================================ */
.section--cta-form {
  padding: clamp(80px, 10vw, 130px) 0;
  background:
    radial-gradient(100% 80% at 0% 0%, rgba(59,130,246,.06), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.cta-form__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 4.2vw, 56px); line-height: 1.05;
  letter-spacing: -.025em; color: var(--navy);
  margin: 20px 0 18px;
}
.cta-form__title .outline {
  -webkit-text-stroke: 1.5px var(--accent);
  color: transparent; font-weight: 700;
}
.cta-form__lead {
  color: var(--text-dim); font-size: 16px; line-height: 1.6;
  max-width: 500px; margin: 0 0 30px;
}
.cta-form__trust {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 14px;
}
.cta-form__trust li {
  display: grid; grid-template-columns: 22px 1fr; gap: 14px; align-items: start;
}
.cta-form__trust svg {
  width: 20px; height: 20px; color: var(--accent); margin-top: 2px;
}
.cta-form__trust strong {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--text); letter-spacing: -.005em;
  margin-bottom: 2px;
}
.cta-form__trust span {
  font-family: var(--font-display); font-size: 13px;
  color: var(--text-dim); line-height: 1.4;
}
.cta-form__direct {
  padding-top: 24px; border-top: 1px solid var(--line);
}
.cta-form__phone {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--text);
  padding: 12px 16px; border: 1px solid var(--line);
  border-radius: 10px; background: var(--bg);
  transition: border-color .25s ease, background .25s ease;
}
.cta-form__phone:hover { border-color: var(--accent); background: var(--bg-2); }
.cta-form__phone svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.cta-form__phone span {
  display: block; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 2px;
}
.cta-form__phone strong {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: 17px; color: var(--text); letter-spacing: -.01em;
}

.cta-form__form {
  padding: clamp(28px, 3vw, 40px);
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 40px -20px rgba(14,26,46,.1);
}
.cta-form__row { display: grid; gap: 14px; margin-bottom: 14px; }
.cta-form__row--2 { grid-template-columns: 1fr 1fr; }
.cta-form__form .field { display: block; margin-bottom: 0; }
.cta-form__check { margin: 16px 0 22px; font-size: 13px; }
.cta-form__submit { width: 100%; justify-content: center; }
.cta-form__note {
  margin-top: 16px; text-align: center;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-dim);
}
@media (max-width: 880px) {
  .cta-form { grid-template-columns: 1fr; }
  .cta-form__row--2 { grid-template-columns: 1fr; }
}

/* ================================================================
   KARRIERE — Wertschätzung, Arbeitsbereiche, Geschäftsleiter, Ansprechpartner
================================================================ */

/* Wertschätzung grid */
.appreciation-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.appreciation {
  padding: 32px 30px 28px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-2);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: border-color .35s ease, transform .35s ease, background .35s ease;
}
.appreciation::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.65,0,.35,1);
}
.appreciation:hover { border-color: var(--accent); transform: translateY(-2px); background: var(--bg); }
.appreciation:hover::after { transform: scaleX(1); }
.appreciation__num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .15em; color: var(--accent);
}
.appreciation__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 1.8vw, 26px); letter-spacing: -.015em;
  color: var(--text); margin: 0; line-height: 1.2;
}
.appreciation p { color: var(--text-dim); font-size: 15px; line-height: 1.6; margin: 0; }
.appreciation__tag {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  padding-top: 14px; border-top: 1px solid var(--line);
}
@media (max-width: 720px) { .appreciation-grid { grid-template-columns: 1fr; } }

/* Arbeitsbereiche (Zones) */
.zones {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.zone {
  padding: 36px 32px 32px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg);
  position: relative; overflow: hidden;
  transition: transform .4s ease, border-color .4s ease, background .4s ease;
}
.zone:hover { transform: translateY(-4px); border-color: var(--accent); background: var(--bg-2); }
.zone__share {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 5.5vw, 80px); line-height: 1;
  letter-spacing: -.04em; color: var(--accent);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.zone__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(20px, 2vw, 26px); letter-spacing: -.015em;
  color: var(--text); margin: 0 0 12px; line-height: 1.2;
}
.zone__body { color: var(--text-dim); font-size: 15px; line-height: 1.6; margin: 0 0 20px; }
.zone__tags {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--line); padding-top: 16px;
}
.zone__tags li {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-dim);
  display: flex; align-items: center; gap: 10px;
}
.zone__tags li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 900px) { .zones { grid-template-columns: 1fr; } }

/* Geschäftsleiter block */
.leader-block {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 4vw, 64px); align-items: center;
}
.leader-block__img {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255,255,255,.12);
}
.leader-block__img img { width: 100%; height: 100%; object-fit: cover; }
.leader-block__quote {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px); line-height: 1.35;
  letter-spacing: -.015em; color: #fff;
  margin: 0 0 30px; position: relative;
}
.leader-block__quote::before {
  content: '"';
  position: absolute; top: -.3em; left: -.15em;
  font-size: 3em; line-height: 1;
  color: var(--accent); opacity: .45;
  font-family: var(--font-display); font-weight: 700;
  pointer-events: none;
}
.leader-block__meta {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15);
}
.leader-block__meta > div { display: flex; flex-direction: column; gap: 4px; }
.leader-block__meta .mono {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.leader-block__meta strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; color: #fff; letter-spacing: -.01em;
}
.leader-block__role {
  font-family: var(--font-display); font-size: 13px;
  color: rgba(255,255,255,.6);
}
.leader-block__meta a {
  color: var(--accent); text-decoration: none; font-size: 14px;
  font-family: var(--font-display); font-weight: 500;
  transition: color .2s ease;
}
.leader-block__meta a:hover { color: #fff; }
@media (max-width: 860px) {
  .leader-block { grid-template-columns: 1fr; }
  .leader-block__img { max-width: 320px; aspect-ratio: 4 / 5; }
  .leader-block__meta { grid-template-columns: 1fr; gap: 16px; }
}

/* Contact card (Bewerbung Ansprechpartner) */
.contact-card {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(32px, 4vw, 64px); align-items: center;
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-2);
}
.contact-card__img {
  border-radius: 10px; overflow: hidden;
  aspect-ratio: 1 / 1;
}
.contact-card__img img { width: 100%; height: 100%; object-fit: cover; }
.contact-card__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 3vw, 42px); letter-spacing: -.02em;
  color: var(--text); margin: 0 0 6px; line-height: 1.1;
}
.contact-card__role {
  font-family: var(--font-display); font-size: 14px;
  color: var(--accent); margin: 0 0 20px;
}
.contact-card__note {
  color: var(--text-dim); font-size: 15px; line-height: 1.6;
  margin: 0 0 28px; max-width: 540px;
}
.contact-card__cta { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 760px) {
  .contact-card { grid-template-columns: 1fr; }
  .contact-card__img { max-width: 200px; aspect-ratio: 1 / 1; }
}

/* ================================================================
   TIMELINE V2 — Interactive animated milestones
================================================================ */
.timeline--v2 {
  position: relative; margin-top: 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.timeline--v2::before { display: none; }
.timeline__rail {
  position: absolute; left: 19px; top: 16px; bottom: 16px;
  width: 2px; background: rgba(255,255,255,.08); border-radius: 2px;
  overflow: hidden; z-index: 1;
}
.timeline__rail-fill {
  position: absolute; left: 0; top: 0; right: 0;
  background: linear-gradient(180deg, var(--accent), #60a5fa);
  height: 0; will-change: height;
  box-shadow: 0 0 24px rgba(59,130,246,.45);
  transition: height .15s linear;
}
.timeline__item {
  position: relative; padding: 24px 0 24px 60px;
  display: grid; grid-template-columns: 1fr;
  opacity: .35; transform: translateX(-12px);
  transition: opacity .6s ease, transform .6s ease;
}
.timeline__item.is-active,
.timeline__item.is-passed { opacity: 1; transform: translateX(0); }
.timeline__pin {
  position: absolute; left: 10px; top: 34px;
  width: 20px; height: 20px; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.timeline__marker {
  position: relative;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(14,26,46,.55);
  border: 2px solid rgba(255,255,255,.3);
  transition: background .4s ease, border-color .4s ease, transform .4s ease;
}
.timeline__marker::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 1.5px solid var(--accent);
  opacity: 0; transform: scale(.6);
  transition: opacity .4s ease, transform .4s ease;
}
.timeline__marker::after {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; background: var(--accent); opacity: 0;
  animation: none;
}
.timeline__item.is-active .timeline__marker {
  background: var(--accent); border-color: #fff;
  transform: scale(1.15);
}
.timeline__item.is-active .timeline__marker::before {
  opacity: .55; transform: scale(1);
}
.timeline__item.is-active .timeline__marker::after {
  opacity: .45;
  animation: tl-pulse 2s ease-out infinite;
}
.timeline__item.is-passed .timeline__marker {
  background: var(--accent); border-color: var(--accent);
}
@keyframes tl-pulse {
  0%   { transform: scale(.9); opacity: .55; }
  80%  { transform: scale(2);  opacity: 0; }
  100% { transform: scale(2);  opacity: 0; }
}

.timeline__card {
  position: relative;
  padding: 28px 32px 30px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.02);
  overflow: hidden;
  transition: border-color .4s ease, background .4s ease, transform .4s ease;
}
.timeline__card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 0% 0%, rgba(59,130,246,.14), transparent 60%);
  opacity: 0; transition: opacity .5s ease;
  pointer-events: none;
}
.timeline__item.is-active .timeline__card,
.timeline__item:hover .timeline__card {
  border-color: rgba(96,165,250,.35);
  background: rgba(59,130,246,.05);
  transform: translateX(4px);
}
.timeline__item.is-active .timeline__card::before,
.timeline__item:hover .timeline__card::before { opacity: 1; }

.timeline__meta {
  display: flex; gap: 16px; align-items: center;
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.timeline__meta span:first-child { color: var(--accent); }
.timeline--v2 .timeline__year {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(56px, 7vw, 108px);
  line-height: .9; letter-spacing: -.04em;
  color: #fff; margin: 0 0 10px;
  -webkit-text-stroke: 0;
  transition: color .4s ease, -webkit-text-stroke-color .4s ease;
}
.timeline__item:not(.is-active):not(:hover) .timeline__year {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.35);
}
.timeline--v2 .timeline__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: #fff; letter-spacing: -.01em;
  margin: 0 0 12px; line-height: 1.25;
}
.timeline--v2 .timeline__text {
  color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.6;
  max-width: 620px; margin: 0;
}

.timeline__item--now .timeline__card {
  border-color: rgba(96,165,250,.25);
}
.timeline__item--now .timeline__marker {
  background: var(--accent); border-color: #fff;
}

@media (max-width: 640px) {
  .timeline--v2 .timeline__year { font-size: clamp(48px, 12vw, 80px); }
  .timeline__card { padding: 22px 20px 24px; }
}

/* ================================================================
   BATCH 3 — Landing Page Components (UVV, Service, Product)
================================================================ */

/* UVV Risks grid */
.uvv-risks {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.uvv-risk {
  padding: 28px 24px 24px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg-2);
  transition: border-color .3s ease, transform .3s ease;
}
.uvv-risk:hover { border-color: var(--accent); transform: translateY(-2px); }
.uvv-risk__num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .15em; color: var(--accent);
  margin-bottom: 16px;
}
.uvv-risk__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px; letter-spacing: -.01em;
  color: var(--text); margin-bottom: 10px; line-height: 1.2;
}
.uvv-risk__body {
  font-size: 13px; color: var(--text-dim); line-height: 1.55;
}
@media (max-width: 900px) { .uvv-risks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .uvv-risks { grid-template-columns: 1fr; } }

/* Check lists — reused in UVV landing sections */
.uvv-checks--grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
@media (max-width: 720px) { .uvv-checks--grid { grid-template-columns: 1fr; } }

/* UVV Steps timeline */
.uvv-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  position: relative;
}
.uvv-step {
  padding: 24px 22px 22px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg);
  position: relative;
}
.uvv-step__num {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .15em; color: var(--accent);
  margin-bottom: 14px;
}
.uvv-step__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: -.01em;
  color: var(--text); margin: 0 0 10px; line-height: 1.2;
}
.uvv-step__body {
  font-size: 13.5px; color: var(--text-dim); line-height: 1.55;
  margin: 0;
}
@media (max-width: 900px) { .uvv-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .uvv-steps { grid-template-columns: 1fr; } }

/* UVV Types grid (Tortypen) */
.uvv-types {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden;
}
.uvv-type {
  background: var(--bg); padding: 26px 20px; min-height: 96px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; letter-spacing: -.005em;
  color: var(--text); text-align: center;
  transition: background .25s ease, color .25s ease;
}
.uvv-type:hover { background: var(--bg-2); color: var(--accent); }
@media (max-width: 900px) { .uvv-types { grid-template-columns: repeat(2, 1fr); } }

/* UVV FAQ accordion */
.uvv-faq {
  display: grid; gap: 12px;
  max-width: 860px; margin: 0 auto;
}
.uvv-faq__item {
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--bg);
  overflow: hidden;
}
.uvv-faq__item summary {
  padding: 20px 24px;
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--text); letter-spacing: -.005em;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.uvv-faq__item summary::-webkit-details-marker { display: none; }
.uvv-faq__item summary::after {
  content: '+';
  font-family: var(--font-display); font-weight: 500;
  font-size: 22px; color: var(--accent);
  line-height: 1; transition: transform .3s ease;
}
.uvv-faq__item[open] summary::after { transform: rotate(45deg); }
.uvv-faq__item p {
  padding: 0 24px 22px; margin: 0;
  color: var(--text-dim); font-size: 14.5px; line-height: 1.65;
}

/* ================================================================
   REDUCED MOTION
================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track { animation: none !important; }
}


/* ---- Cross-cards (toranlagen: "Und danach?") ---- */
.cross-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cross-card {
  display: flex; flex-direction: column;
  padding: 32px 28px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--line);
  text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.cross-card:hover { transform: translateY(-4px); background: var(--surface-hi); border-color: var(--line-hi); }
.cross-card__num { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: .1em; margin-bottom: 20px; }
.cross-card__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2vw, 26px); margin-bottom: 12px; }
.cross-card__body { color: var(--text-dim); font-size: 15px; line-height: 1.55; margin-bottom: 24px; flex-grow: 1; }
.cross-card__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: .05em; }
.cross-card__link svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .3s var(--ease); }
.cross-card:hover .cross-card__link svg { transform: translateX(4px); }
@media (max-width: 800px) { .cross-grid { grid-template-columns: 1fr; } }

/* ============ MOBILE FIXES ============ */
/* Lange deutsche Wörter in großen Titeln umbrechen statt überlaufen lassen */
h1, h2, h3,
.hero__title, .sub-hero__title, .section__title, .duo__title,
.detail-row__text h2, .intro__title, .process__title, .contact__title,
.testi blockquote, .cross-card__title {
  overflow-wrap: break-word;
  hyphens: auto;
}
/* Inline-Mehrspalten-Grids auf dem Handy untereinander stapeln.
   (Inline-styles schlagen normale Media Queries, daher hier !important) */
@media (max-width: 760px) {
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  [style*="position: sticky"], [style*="position:sticky"] { position: static !important; }
}
/* Mobil-Nav: Burger nach rechts (das Desktop-Grid würde ihn sonst mittig lassen) */
@media (max-width: 980px) {
  .nav__inner { display: flex; justify-content: space-between; align-items: center; }
  .nav__social { display: none; }
}
/* Hero: weniger Leerraum über dem Badge auf dem Handy */
@media (max-width: 640px) {
  .hero { padding-top: 100px; }
}
/* Karriere: Firmenname "Jockel Industriemontagen." auf eine Zeile (Titel etwas kleiner) */
@media (max-width: 640px) {
  .page-karriere .sub-hero__title { font-size: clamp(20px, 6.4vw, 30px); }
}
