
/* ==========================================================================
   SKARNET MEDIA — LOGISTIK RECRUITING
   Custom editorial logistics design inspired by structured logistics websites.
   Built for the existing Skarnet Logistik HTML.
   ========================================================================== */

:root {
  --bg: #0b2028;
  --bg-deep: #08191f;
  --bg-section: #0d2d36;
  --bg-section-2: #103943;
  --panel: #123640;
  --panel-strong: #16434d;
  --panel-dark: #0d2730;
  --text: #f5f7f7;
  --muted: #b6c6c9;
  --muted-2: #7f999e;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.17);
  --brand: #78a5ff;
  --brand-soft: #a9c5ff;
  --accent: #ff714d;
  --success: #74d4ae;
  --shadow: 0 18px 48px rgba(0,0,0,.24);
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1220px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(180deg, #0a2027 0%, #0b242c 46%, #081b22 100%);
  font-family: "Outfit", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: #fff;
  background: rgba(255,113,77,.35);
}

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

.section {
  position: relative;
  padding: 92px 0;
}

.section--tight {
  padding: 76px 0;
}

/* alternating section rhythm similar to the reference */
.section--tinted {
  background: var(--bg-section);
}

.section--tinted::before,
.section--tinted::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(calc(100% - 48px), var(--container));
  height: 1px;
  transform: translateX(-50%);
  background: rgba(255,255,255,.055);
}

.section--tinted::before { top: 0; }
.section--tinted::after { bottom: 0; }

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--text);
  font-family: "Outfit", Arial, sans-serif;
  letter-spacing: -.025em;
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  font-size: clamp(39px, 3.45vw, 54px);
  line-height: 1.04;
  font-weight: 650;
}

h2 {
  max-width: 760px;
  font-size: clamp(27px, 2.15vw, 34px);
  line-height: 1.12;
  font-weight: 600;
}

h3 {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 600;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.lead {
  max-width: 660px;
  color: #c5d1d3;
  font-size: 15px;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #adc6f6;
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 10px;
}

.gradient-text {
  background: none;
  color: #a7c1f7;
  -webkit-text-fill-color: currentColor;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  box-shadow: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.01em;
  transition:
    background .2s ease,
    transform .2s ease,
    border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #ff805f;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn--ghost {
  border-color: rgba(255,255,255,.18);
  background: transparent;
  color: #e8eeee;
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,.30);
  background: rgba(255,255,255,.045);
}

/* --------------------------------------------------------------------------
   NAVIGATION
   -------------------------------------------------------------------------- */

.nav-wrap {
  position: fixed;
  z-index: 70;
  inset: 14px 0 auto;
  pointer-events: none;
}

.nav {
  width: min(calc(100% - 28px), 1270px);
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
  padding: 0 14px 0 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  background: rgba(8,25,31,.96);
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
  pointer-events: auto;
  transition: background .2s ease, border-color .2s ease;
}

.nav.scrolled {
  background: rgba(7,21,27,.99);
  border-color: rgba(255,255,255,.15);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 36px !important;
  max-width: 205px !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  position: relative;
  color: #c4d0d2;
  font-size: 12px;
  font-weight: 500;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right .2s ease;
}

.nav-links a:hover::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav .btn {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 11px;
}

.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.menu-btn__line {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 3px auto;
  background: currentColor;
}

/* --------------------------------------------------------------------------
   MOBILE MENU
   -------------------------------------------------------------------------- */

.mobile-menu-backdrop {
  position: fixed;
  z-index: 68;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(2,11,14,.70);
  pointer-events: none;
  transition: .25s ease;
}

.mobile-menu-backdrop.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  z-index: 69;
  top: 14px;
  right: 14px;
  width: min(390px, calc(100% - 28px));
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: #0c2831;
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
  pointer-events: none;
  transition: .25s ease;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.mobile-menu__inner {
  padding: 22px;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #81979b;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  position: relative;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 7px;
  background: transparent;
}

.mobile-menu__close span {
  position: absolute;
  left: 10px;
  top: 17px;
  width: 14px;
  height: 1px;
  background: #fff;
}

.mobile-menu__close span:first-child { transform: rotate(45deg); }
.mobile-menu__close span:last-child { transform: rotate(-45deg); }

.mobile-menu__links {
  display: grid;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.mobile-menu__links a {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #edf2f2;
  font-size: 14px;
}

.mobile-menu__links a span {
  color: #668087;
  font-size: 10px;
}

.mobile-menu__cta {
  width: 100%;
  margin-top: 18px;
}

.mobile-menu__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.mobile-menu__legal a {
  color: #82969a;
  font-size: 10px;
}

/* --------------------------------------------------------------------------
   REMOVE OLD DECORATIVE ORBITS / CURSOR
   -------------------------------------------------------------------------- */

.cursor-glow,
.hero-orbit,
.orbit-light {
  display: none !important;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 128px 0 72px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(13,55,65,.96) 0%, rgba(10,35,43,.98) 48%, rgba(7,25,31,.98) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .25;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(67,123,137,.08);
  filter: blur(1px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, .97fr);
  align-items: center;
  gap: 66px;
}

.hero-copy {
  padding-top: 24px;
}

.hero-copy .lead {
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.logistics-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.logistics-role-tags span {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 6px;
  background: rgba(255,255,255,.035);
  color: #c6d5d7;
  font-size: 10px;
  font-weight: 500;
}

.logistics-role-tags span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 26px;
}

.hero-proof--contact {
  width: fit-content;
  max-width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  background: rgba(6,22,28,.42);
}

.avatars {
  display: flex;
}

.avatars img {
  width: 33px;
  height: 33px;
  margin-left: -7px;
  border: 2px solid #10313a;
  border-radius: 50%;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.hero-proof__copy {
  display: grid;
  gap: 3px;
}

.hero-proof__copy strong {
  font-size: 11px;
  font-weight: 600;
}

.hero-proof__copy span {
  color: #94a8ab;
  font-size: 10px;
}

/* hero image composition */
.hero-visual {
  position: relative;
  width: 100%;
  min-height: 600px;
}

.hero-image-shell {
  position: absolute;
  inset: 18px 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: #112f38;
  box-shadow: 0 24px 58px rgba(0,0,0,.28);
}

.hero-image-shell::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 72%;
  height: 88px;
  background: linear-gradient(90deg, rgba(8,29,35,.95), transparent);
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(6,20,25,.45)),
    linear-gradient(120deg, rgba(10,52,62,.10), transparent 55%);
  pointer-events: none;
}

.hero-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.04) brightness(.82);
}

/* channel badges designed as compact utility chips */
.channel-orbit {
  position: absolute;
  z-index: 6;
  right: 0;
  top: 174px;
  display: grid;
  gap: 8px;
}

.channel-badge {
  min-width: 126px;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #0c2830;
  box-shadow: 0 9px 22px rgba(0,0,0,.22);
  color: #e7eeee;
  font-size: 10px;
  font-weight: 500;
}

.channel-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  border-radius: 6px;
  background: rgba(255,255,255,.055);
}

.channel-icon svg {
  width: 18px;
  height: 18px;
}

.channel-icon--linkedin {
  background: #3479c8;
  color: #fff;
  font-weight: 700;
}

.channel-icon--google {
  position: relative;
}

/* floating info cards: flat + functional */
.floating-card {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #0c2931;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.floating-card--talent {
  top: 0;
  right: 12px;
  width: 220px;
  padding: 14px;
}

.social-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-badge-copy {
  display: grid;
  gap: 3px;
}

.social-badge-copy strong {
  font-size: 11px;
}

.social-badge-copy span {
  color: #91a5a8;
  font-size: 9px;
}

.status {
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(116,212,174,.10);
}

.floating-card--metric {
  left: -20px;
  bottom: 28px;
  width: 220px;
  padding: 15px;
}

.metric-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b7c7c9;
  font-size: 9px;
}

.metric-change {
  color: #ffc2ae;
  font-weight: 600;
}

.metric-value {
  margin-top: 12px;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.04em;
}

.sparkline {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 33px;
  margin-top: 14px;
}

.sparkline span {
  width: 100%;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, #9cbaff, #537bc9);
}

/* --------------------------------------------------------------------------
   CLIENT STRIP
   -------------------------------------------------------------------------- */

.client-strip {
  position: relative;
  overflow: hidden;
  background: #0b2931;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.client-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 42px;
}

.client-row > p {
  color: #82999e;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 55px, #000 calc(100% - 55px), transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  animation: logoScroll 28s linear infinite;
}

.logo-group {
  display: flex;
  align-items: center;
}

.logo-group span {
  margin-right: 46px;
  color: #a8b9bc;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .055em;
  white-space: nowrap;
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   SECTION HEAD
   -------------------------------------------------------------------------- */

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 38px;
}

.section-head p {
  max-width: 520px;
  justify-self: end;
}

/* --------------------------------------------------------------------------
   PROFILE CARDS
   -------------------------------------------------------------------------- */

#profile {
  background: #0c3039;
}

#profile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 78%, rgba(255,255,255,.025) 78% 100%);
}

.industry-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.industry-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  background: #123640;
  transition: transform .25s var(--ease), border-color .25s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.18);
}

.industry-card img {
  height: 225px;
  object-fit: cover;
  filter: saturate(.78) contrast(1.04) brightness(.76);
  transition: transform .35s ease;
}

.industry-card:hover img {
  transform: scale(1.025);
}

.industry-card::after {
  display: none;
}

.industry-content {
  position: static;
  min-height: 144px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 18px;
  padding: 20px;
}

.industry-content p {
  margin-top: 8px;
  color: #9fb3b6;
  font-size: 12px;
  line-height: 1.55;
}

.card-index {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 6px;
  color: #ffb19a;
  font-size: 9px;
  font-weight: 600;
}

/* secondary profile cards */
.logistics-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.logistics-focus-card {
  position: relative;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: #102e37;
  transition: background .2s ease, transform .2s ease;
}

.logistics-focus-card:hover {
  transform: translateY(-2px);
  background: #133843;
}

.logistics-focus-card > span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #ff997b;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
}

.logistics-focus-card p {
  margin-top: 8px;
  color: #94a9ad;
  font-size: 11px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   WHY SECTION
   -------------------------------------------------------------------------- */

#warum {
  background: #0b2831;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(400px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 74px;
}

.why-visual {
  position: relative;
  min-height: 570px;
}

.why-image {
  position: absolute;
  inset: 0 52px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.why-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(7,24,29,.52));
}

.why-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) brightness(.80);
}

.why-note {
  position: absolute;
  right: 0;
  bottom: 42px;
  width: 245px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #123741;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

.why-note strong {
  display: block;
  font-size: 14px;
}

.why-note p {
  margin-top: 8px;
  color: #9db1b4;
  font-size: 11px;
  line-height: 1.55;
}

.check-list {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.check-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.check-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,113,77,.30);
  border-radius: 6px;
  background: rgba(255,113,77,.08);
  color: #ff9d82;
  font-size: 11px;
}

.check-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.check-item p {
  margin-top: 5px;
  color: #91a8ac;
  font-size: 11px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------------------- */

#leistungen {
  background: #0d3540;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 76px;
  align-items: start;
}

.service-sticky {
  position: sticky;
  top: 112px;
}

.service-sticky p {
  max-width: 430px;
  margin-top: 20px;
}

.service-sticky .btn {
  margin-top: 26px;
}

.service-list {
  border-top: 1px solid rgba(255,255,255,.09);
}

.service-item {
  display: grid;
  grid-template-columns: 46px 1fr 36px;
  align-items: start;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: background .2s ease, padding .2s ease;
}

.service-item:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(255,255,255,.025);
}

.service-number {
  padding-top: 4px;
  color: #ff997b;
  font-size: 9px;
  font-weight: 600;
}

.service-copy p {
  max-width: 600px;
  margin-top: 7px;
  color: #9eb1b5;
  font-size: 12px;
  line-height: 1.6;
}

.service-arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 6px;
  color: #c9d6d8;
  font-size: 13px;
  transition: background .2s ease, color .2s ease;
}

.service-item:hover .service-arrow {
  background: var(--accent);
  color: #fff;
}

/* --------------------------------------------------------------------------
   PROCESS
   -------------------------------------------------------------------------- */

.process-v2 {
  background: #0a2a33;
}

.process-v2__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr);
  align-items: end;
  gap: 54px;
  margin-bottom: 34px;
}

.process-v2__head p {
  max-width: 500px;
  justify-self: end;
}

.process-v2__visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  background: #0f333d;
}

.process-v2__visual img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  filter: saturate(.72) contrast(1.02) brightness(.73);
}

.process-v2__visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,24,29,.90) 0%, rgba(6,24,29,.72) 28%, rgba(6,24,29,.20) 62%, transparent 78%);
}

.process-v2__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 62%;
  height: 92px;
  background: #0d3540;
  clip-path: polygon(0 0, 82% 0, 100% 100%, 0 100%);
  opacity: .72;
}

.process-v2__visual-copy {
  position: absolute;
  z-index: 3;
  left: 34px;
  bottom: 32px;
  max-width: 470px;
}

.process-v2__visual-copy span {
  display: block;
  margin-bottom: 9px;
  color: #ffab92;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.process-v2__visual-copy strong {
  display: block;
  max-width: 450px;
  color: #fff;
  font-size: 18px;
  line-height: 1.38;
  font-weight: 550;
  letter-spacing: -.012em;
}

.process-v2__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  overflow: hidden;
  background: #102f38;
}

.process-v2__step {
  min-height: 190px;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.process-v2__step:last-child {
  border-right: 0;
}

.process-v2__step > span {
  color: #ff9c7e;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
}

.process-v2__step h3 {
  margin-top: 36px;
  font-size: 14px;
}

.process-v2__step p {
  margin-top: 7px;
  color: #91a7ab;
  font-size: 10.5px;
  line-height: 1.55;
}

.process-v2__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: #123944;
}

.process-v2__cta strong {
  display: block;
  font-size: 13px;
}

.process-v2__cta span {
  display: block;
  margin-top: 4px;
  color: #98adb0;
  font-size: 10.5px;
}

/* --------------------------------------------------------------------------
   METRICS
   -------------------------------------------------------------------------- */

.metrics-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
}

.metrics-main,
.metric-box {
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  background: #113640;
}

.metrics-main {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  position: relative;
  overflow: hidden;
}

.metrics-main::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -70px;
  bottom: -95px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
}

.big-number {
  margin-top: 42px;
  color: #fff;
  font-size: clamp(54px, 6vw, 82px);
  line-height: .86;
  font-weight: 600;
  letter-spacing: -.065em;
}

.metrics-main p {
  max-width: 520px;
  margin-top: 24px;
  font-size: 12px;
}

.metrics-side {
  display: grid;
  gap: 14px;
}

.metric-box {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.metric-box strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.025em;
}

.metric-box p {
  max-width: 350px;
  margin-top: 11px;
  color: #96abad;
  font-size: 11px;
}

.logistics-proof-note {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  background: rgba(255,255,255,.022);
  color: #91a7aa;
  font-size: 10.5px;
  line-height: 1.55;
}

.logistics-proof-note > span {
  color: #ff997b;
}

.logistics-proof-note strong {
  color: #cbd7d8;
}

/* --------------------------------------------------------------------------
   COMPARISON
   -------------------------------------------------------------------------- */

#vergleich {
  background: #0d313a;
}

.comparison-intro {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.comparison-intro .eyebrow {
  justify-content: center;
}

.comparison-intro h2 {
  margin-inline: auto;
}

.comparison-intro p {
  max-width: 650px;
  margin: 16px auto 0;
}

.model-compare {
  display: grid;
  grid-template-columns: .92fr 1.08fr .92fr;
  gap: 14px;
  align-items: stretch;
}

.model-card {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 9px;
  background: #102f38;
}

.model-card--featured {
  position: relative;
  border-color: rgba(255,113,77,.38);
  background: #143b45;
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(0,0,0,.20);
}

.model-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--accent);
}

.model-kicker {
  color: #81999d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.model-badge {
  width: fit-content;
  margin-bottom: 15px;
  padding: 6px 8px;
  border-radius: 5px;
  background: rgba(255,113,77,.10);
  color: #ffb7a3;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.model-card h3 {
  margin-top: 11px;
  font-size: 19px;
}

.model-summary {
  margin-top: 10px;
  color: #99adb0;
  font-size: 11px;
  line-height: 1.55;
}

.model-list {
  display: grid;
  margin: 24px 0 26px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.08);
}

.model-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
}

.model-list span {
  color: #81979b;
}

.model-list strong {
  color: #dce5e6;
  font-weight: 600;
  text-align: right;
}

.model-card .btn {
  width: 100%;
  margin-top: auto;
}

.comparison-note {
  margin-top: 18px;
  color: #728a8e;
  font-size: 9.5px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

#faq {
  background: #0a2830;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .76fr) minmax(0, 1.24fr);
  gap: 72px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 112px;
}

.faq-intro p {
  max-width: 400px;
  margin-top: 17px;
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,.09);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 21px 0;
  border: 0;
  background: transparent;
  color: #eef3f3;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
}

.faq-icon {
  width: 28px;
  height: 28px;
  position: relative;
  flex: 0 0 28px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 6px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1px;
  background: #b9c7c8;
  transform: translate(-50%,-50%);
}

.faq-icon::after {
  transform: translate(-50%,-50%) rotate(90deg);
  transition: transform .2s ease;
}

.faq-item.open .faq-icon {
  border-color: rgba(255,113,77,.35);
  background: rgba(255,113,77,.08);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%,-50%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}

.faq-answer p {
  max-width: 700px;
  padding: 0 42px 20px 0;
  color: #91a7aa;
  font-size: 11px;
  line-height: 1.62;
}

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */

#kontakt {
  padding-bottom: 96px;
  background:
    linear-gradient(180deg, #0b2c35 0%, #09242c 100%);
}

.contact-panel {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  background: #10353f;
  box-shadow: 0 22px 54px rgba(0,0,0,.22);
}

.contact-copy {
  min-height: 610px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 52px;
  border-right: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(145deg, rgba(255,255,255,.018), transparent 50%),
    #0e3039;
}

.contact-copy p {
  max-width: 440px;
  margin-top: 18px;
}

.contact-meta {
  display: grid;
  gap: 9px;
  margin-top: 42px;
}

.contact-meta a,
.contact-meta span {
  color: #a6b9bc;
  font-size: 10.5px;
}

.contact-meta a {
  color: #fff;
}

.contact-form-wrap {
  padding: 48px;
  background: #123843;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  color: #d5dfe0;
  font-size: 10px;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 7px;
  outline: none;
  background: #0d2b34;
  color: #f4f6f6;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input,
select {
  height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 128px;
  padding: 13px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #71888d;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(255,113,77,.50);
  box-shadow: 0 0 0 3px rgba(255,113,77,.08);
}

.form-consent {
  margin-top: 15px !important;
  color: #8fa5a9 !important;
  font-size: 9.5px !important;
}

.form-consent input {
  accent-color: var(--accent) !important;
}

.form-consent a {
  color: #c9d8da !important;
}

.contact-form-wrap .btn {
  width: 100%;
  margin-top: 18px;
}

.form-note {
  margin-top: 11px;
  color: #748c91;
  font-size: 9px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

footer {
  position: relative;
  padding: 0 0 26px;
  background: #071b21;
}

footer::before {
  content: "";
  display: block;
  width: min(calc(100% - 48px), var(--container));
  height: 4px;
  margin: 0 auto;
  border-radius: 4px 4px 0 0;
  background: var(--accent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 54px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-top p {
  max-width: 450px;
  margin-top: 14px;
  color: #82999e;
  font-size: 10.5px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.footer-column strong {
  display: block;
  margin-bottom: 13px;
  color: #dfe7e8;
  font-size: 10px;
}

.footer-column a {
  display: block;
  margin-top: 8px;
  color: #758d91;
  font-size: 9.5px;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  color: #647a7e;
  font-size: 9px;
}

/* --------------------------------------------------------------------------
   REVEAL ANIMATION
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity .55s var(--ease),
    transform .55s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .06s; }
.reveal-delay-2 { transition-delay: .12s; }
.reveal-delay-3 { transition-delay: .18s; }

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 620px);
    min-height: 570px;
    margin-inline: auto;
  }

  .section-head,
  .process-v2__head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-head p,
  .process-v2__head p {
    justify-self: start;
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logistics-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .service-layout,
  .faq-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .service-sticky,
  .faq-intro {
    position: static;
  }

  .why-visual {
    min-height: 520px;
  }

  .process-v2__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-v2__step {
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .process-v2__step:nth-child(2n) {
    border-right: 0;
  }

  .process-v2__step:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .model-compare {
    grid-template-columns: 1fr;
  }

  .model-card--featured {
    order: -1;
    transform: none;
  }

  .contact-copy {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .section--tight {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.08;
  }

  h2 {
    font-size: 25px;
  }

  .lead {
    font-size: 13px;
  }

  .hero {
    padding: 106px 0 52px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-image-shell {
    inset: 0 16px 0 16px;
  }

  .channel-orbit {
    right: 4px;
    top: 130px;
  }

  .channel-badge {
    min-width: 112px;
  }

  .floating-card--talent {
    right: 6px;
    width: 196px;
  }

  .floating-card--metric {
    left: 2px;
    bottom: 12px;
    width: 194px;
  }

  .client-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0;
  }

  .client-row > p {
    display: none;
  }

  .industry-grid,
  .logistics-focus-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 0;
  }

  .industry-card img {
    height: 230px;
  }

  .why-grid {
    gap: 42px;
  }

  .why-visual {
    min-height: 470px;
  }

  .why-image {
    inset: 0 28px 0 0;
  }

  .why-note {
    width: 220px;
    bottom: 26px;
  }

  .service-layout {
    gap: 40px;
  }

  .process-v2__visual {
    min-height: 350px;
  }

  .process-v2__visual-copy {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .process-v2__visual-copy strong {
    font-size: 16px;
  }

  .process-v2__steps {
    grid-template-columns: 1fr;
  }

  .process-v2__step,
  .process-v2__step:nth-child(2n),
  .process-v2__step:last-child {
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .process-v2__step:last-child {
    border-bottom: 0;
  }

  .process-v2__cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-v2__cta .btn {
    width: 100%;
  }

  .metrics-main {
    min-height: 310px;
    padding: 30px;
  }

  .big-number {
    margin-top: 30px;
  }

  .faq-layout {
    gap: 34px;
  }

  .contact-copy,
  .contact-form-wrap {
    padding: 34px 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--full {
    grid-column: auto;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav {
    width: calc(100% - 20px);
    min-height: 58px;
    padding-left: 14px;
  }

  .nav-cta {
    display: none;
  }

  .brand-logo {
    height: 30px !important;
    max-width: 165px !important;
  }

  .hero-visual {
    min-height: 420px;
  }

  .channel-orbit {
    display: none;
  }

  .floating-card--talent {
    top: 10px;
    right: 0;
    width: 182px;
  }

  .floating-card--metric {
    left: 0;
    width: 184px;
  }

  .logistics-role-tags span {
    font-size: 9px;
  }

  .why-visual {
    min-height: 420px;
  }

  .why-image {
    inset: 0;
  }

  .why-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
  }

  .contact-copy,
  .contact-form-wrap {
    padding: 28px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
