/* ================================================
   TS BusCamp GmbH – Stylesheet v2.0
   Primär: #F9B707  |  Sekundär: #333333
   ================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #222222;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --c-primary:      #F9B707;
  --c-primary-dark: #E0A300;
  --c-dark:         #1A1A1A;
  --c-dark-2:       #333333;
  --c-dark-3:       #252525;
  --c-white:        #FFFFFF;
  --c-light:        #F4F4F4;
  --c-border:       #E0E0E0;
  --c-text:         #222222;
  --c-muted:        #666666;
  --max-w:          1280px;
  --pad-x:          clamp(20px, 5vw, 64px);
  --section-py:     clamp(64px, 8vw, 120px);
  --nav-h:          72px;
  --r:              4px;
  --ease-out:       cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- KEYFRAMES ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroBg {
  0%   { transform: scale(1); }
  100% { transform: scale(1.07); }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes accentGrow {
  from { width: 0; }
  to   { width: 72px; }
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--fade { transform: none; }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  @keyframes heroBg { 0%,100% { transform: none; } }
  @keyframes marqueeScroll { 0%,100% { transform: translateX(-50%); } }
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section          { padding: var(--section-py) 0; }
.section--dark    { background: var(--c-dark);   color: var(--c-white); }
.section--dark-2  { background: var(--c-dark-2); color: var(--c-white); }
.section--dark-3  { background: var(--c-dark-3); color: var(--c-white); }
.section--light   { background: var(--c-light); }
.section--primary { background: var(--c-primary); color: var(--c-dark); }

/* ---- GRID ---- */
.grid        { display: grid; gap: 32px; }
.grid--2     { grid-template-columns: repeat(2, 1fr); }
.grid--3     { grid-template-columns: repeat(3, 1fr); }
.grid--4     { grid-template-columns: repeat(4, 1fr); }
.grid--2-1   { grid-template-columns: 2fr 1fr; }
.grid--1-2   { grid-template-columns: 1fr 2fr; }
.grid--lg    { gap: 56px; }
.grid--sm    { gap: 16px; }

/* ---- TYPOGRAPHY ---- */
.t-hero { font-size: clamp(2.25rem, 5vw, 5rem);  font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.t-h1   { font-size: clamp(1.875rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.1;  letter-spacing: -0.015em; }
.t-h2   { font-size: clamp(1.5rem, 3vw, 2.5rem);   font-weight: 700; line-height: 1.2; }
.t-h3   { font-size: clamp(1.125rem, 2vw, 1.75rem); font-weight: 700; line-height: 1.3; }
.t-h4   { font-size: 1.125rem; font-weight: 700; line-height: 1.4; }
.t-lead { font-size: clamp(1rem, 1.5vw, 1.25rem); line-height: 1.75; color: var(--c-muted); }
.t-body { font-size: 1rem; line-height: 1.75; }
.t-small{ font-size: 0.875rem; line-height: 1.6; }
.t-label{ font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.t-primary { color: var(--c-primary); }
.t-white   { color: var(--c-white); }
.t-muted   { color: var(--c-muted); }
.t-dark    { color: var(--c-dark); }

.on-dark .t-lead  { color: rgba(255,255,255,0.65); }
.on-dark .t-muted { color: rgba(255,255,255,0.55); }

/* Spacing utilities */
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

/* Section header */
.section-header            { max-width: 760px; }
.section-header--center    { margin: 0 auto; text-align: center; }
.section-tag               { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 16px; }
.on-dark .section-tag      { color: var(--c-primary); }
.section-title             { margin-bottom: 20px; }
.section-lead              { font-size: 1.0625rem; line-height: 1.75; color: var(--c-muted); }
.on-dark .section-lead     { color: rgba(255,255,255,0.65); }
.section-divider           { width: 60px; height: 3px; background: var(--c-primary); margin-bottom: 32px; }
.section-divider--center   { margin-left: auto; margin-right: auto; }

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--c-dark);
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--c-primary);
  transition: box-shadow 0.3s ease;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav__logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__logo span { color: var(--c-primary); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__link {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.18s;
  position: relative;
  white-space: nowrap;
}
.nav__link:hover  { color: var(--c-white); }
.nav__link.active { color: var(--c-white); }
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px; right: 14px;
  height: 2px;
  background: var(--c-primary);
}

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #242424;
  min-width: 300px;
  border-top: 2px solid var(--c-primary);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 11px 20px;
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: all 0.15s;
}
.nav__dropdown-item:hover {
  background: rgba(249,183,7,0.09);
  color: var(--c-primary);
  padding-left: 28px;
}
.nav__dropdown-item:last-child { border-bottom: none; }

/* Nav CTA */
.nav__cta {
  background: var(--c-primary) !important;
  color: var(--c-dark) !important;
  font-weight: 700;
  padding: 9px 18px;
  margin-left: 8px;
  border-radius: var(--r) !important;
  transition: background 0.18s, transform 0.18s !important;
}
.nav__cta:hover    { background: var(--c-primary-dark) !important; transform: translateY(-1px) !important; }
.nav__cta.active::after { display: none; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  transition: all 0.25s;
}
.nav--open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
.nav--open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-top { padding-top: var(--nav-h); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--r);
  transition: all 0.22s ease;
  text-align: center;
  white-space: nowrap;
}
.btn--primary         { background: var(--c-primary);  color: var(--c-dark);  border-color: var(--c-primary); }
.btn--primary:hover   { background: var(--c-primary-dark); border-color: var(--c-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,183,7,0.28); }
.btn--dark            { background: var(--c-dark);    color: var(--c-white); border-color: var(--c-dark); }
.btn--dark:hover      { background: #000; border-color: #000; transform: translateY(-2px); }
.btn--outline-light         { background: transparent; color: var(--c-white);   border-color: rgba(255,255,255,0.55); }
.btn--outline-light:hover   { background: var(--c-white); color: var(--c-dark); border-color: var(--c-white); transform: translateY(-2px); }
.btn--outline-primary       { background: transparent; color: var(--c-primary); border-color: var(--c-primary); }
.btn--outline-primary:hover { background: var(--c-primary); color: var(--c-dark); transform: translateY(-2px); }
.btn--lg { padding: 17px 38px; font-size: 0.9rem; }
.btn--sm { padding: 9px 20px; font-size: 0.75rem; }
.btn--full { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--c-dark);
  color: var(--c-white);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero--short  { min-height: 62vh; }
.hero--page   { min-height: 46vh; padding: 120px 0 56px; }
.hero--career { min-height: 56vh; }

/* Hero background image + parallax */
.hero__bg-image {
  position: absolute;
  top: -20%; left: 0; right: 0; bottom: -20%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  animation: heroBg 24s ease-in-out infinite alternate;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(26,26,26,0.94) 0%,
    rgba(26,26,26,0.78) 55%,
    rgba(26,26,26,0.48) 100%
  );
  z-index: 1;
}

.hero__content  { position: relative; z-index: 3; max-width: 820px; }
.hero__tag      { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 24px; }
.hero__accent   { width: 72px; height: 4px; background: var(--c-primary); margin-bottom: 36px; animation: accentGrow 0.8s var(--ease-out) 0.4s both; }
.hero__title    { margin-bottom: 24px; }
.hero__subtitle {
  font-size: clamp(0.9375rem, 1.4vw, 1.1875rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero__breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.hero__breadcrumb a        { color: rgba(255,255,255,0.5); transition: color 0.18s; }
.hero__breadcrumb a:hover  { color: var(--c-primary); }
.hero__breadcrumb-sep      { color: rgba(255,255,255,0.3); }

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--c-primary);
  z-index: 4;
}
.hero__bg-lines {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  opacity: 0.03;
  background-image: repeating-linear-gradient(
    90deg,
    var(--c-white) 0px, var(--c-white) 1px,
    transparent 1px, transparent 60px
  );
  pointer-events: none;
  z-index: 2;
}

/* ---- STATS BAR ---- */
.stats-bar { background: var(--c-primary); padding: 0; }
.stats-bar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-bar__item {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(0,0,0,0.12);
  transition: background 0.22s ease;
  cursor: default;
}
.stats-bar__item:hover { background: rgba(0,0,0,0.06); }
.stats-bar__item:last-child { border-right: none; }
.stats-bar__number {
  font-size: clamp(1.75rem, 2.5vw, 2.75rem);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stats-bar__label  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(0,0,0,0.55); margin-top: 10px; }

/* ---- CARDS ---- */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  padding: 36px;
  transition: all 0.28s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--c-primary);
  transform: translateY(-5px);
  box-shadow: 0 16px 52px rgba(0,0,0,0.10);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--c-primary);
  border-radius: var(--r) var(--r) 0 0;
  transition: width 0.38s var(--ease-out);
}
.card:hover::before { width: 100%; }

.card--dark        { background: #242424; border-color: #383838; color: var(--c-white); }
.card--dark:hover  { border-color: var(--c-primary); }
.card--dark .card__text { color: rgba(255,255,255,0.62); }

.card__icon  {
  width: 48px; height: 48px;
  background: var(--c-primary);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.375rem; font-weight: 700; color: var(--c-dark);
  transition: transform 0.25s ease;
}
.card:hover .card__icon { transform: scale(1.1); }
.card__tag   { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 10px; }
.card__title { font-size: 1.1875rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.card__text  { font-size: 0.9375rem; line-height: 1.7; color: var(--c-muted); }

/* ---- PROCESS STEPS (fixed: dark bg, readable text) ---- */
.process { display: flex; gap: 0; }
.process__step {
  flex: 1;
  padding: 28px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  position: relative;
  text-align: center;
  transition: background 0.22s ease;
}
.process__step:first-child { border-radius: var(--r) 0 0 var(--r); }
.process__step:last-child  {
  border-right: 1px solid rgba(255,255,255,0.1);
  border-radius: 0 var(--r) var(--r) 0;
}
.process__step:hover { background: rgba(249,183,7,0.08); }
.process__number { font-size: 2.5rem; font-weight: 700; color: var(--c-primary); line-height: 1; margin-bottom: 12px; }
.process__title  { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; color: var(--c-white); }
.process__text   { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

.process__arrow {
  position: absolute;
  top: 50%; right: -13px;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--c-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  font-size: 0.8rem; font-weight: 700; color: var(--c-dark);
}
.process__step:last-child .process__arrow { display: none; }

/* ---- PAIN POINTS ---- */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pain-item {
  background: var(--c-white);
  padding: 36px 40px;
  border-radius: var(--r);
  border: 1px solid var(--c-border);
  transition: all 0.28s ease;
}
.pain-item:hover {
  border-color: var(--c-primary);
  box-shadow: 0 10px 36px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.pain-item__question {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.pain-item__icon   { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.pain-item__answer {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--c-muted);
  padding-left: 20px;
  border-left: 3px solid var(--c-primary);
  margin-left: 6px;
}

/* ---- JOB CARDS ---- */
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  border-left: 4px solid var(--c-primary);
  transition: all 0.22s ease;
  margin-bottom: 10px;
}
.job-card:hover {
  background: #fafafa;
  transform: translateX(5px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.job-card__left    { flex: 1; }
.job-card__type    { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 5px; }
.job-card__title   { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.job-card__meta    { display: flex; flex-wrap: wrap; gap: 16px; }
.job-card__tag     { font-size: 0.75rem; background: var(--c-light); border-radius: var(--r); padding: 3px 10px; color: var(--c-muted); font-weight: 500; }
.job-card__arrow   { font-size: 1.375rem; color: var(--c-primary); flex-shrink: 0; margin-left: 24px; transition: transform 0.22s ease; }
.job-card:hover .job-card__arrow { transform: translateX(5px); }

/* ---- BENEFIT LIST ---- */
.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.benefit-item { display: flex; gap: 18px; align-items: flex-start; }
.benefit-item__icon {
  width: 44px; height: 44px;
  background: var(--c-primary);
  border-radius: var(--r);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700; color: var(--c-dark);
  transition: transform 0.22s ease;
}
.benefit-item:hover .benefit-item__icon { transform: scale(1.1); }
.benefit-item__title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 5px; }
.benefit-item__text  { font-size: 0.875rem; line-height: 1.65; color: var(--c-muted); }
.on-dark .benefit-item__text  { color: rgba(255,255,255,0.6); }
.on-dark .benefit-item__title { color: var(--c-white); }

/* ---- CHECK LIST ---- */
.check-list { display: flex; flex-direction: column; gap: 13px; }
.check-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9375rem;
  line-height: 1.65;
}
.check-list__item::before {
  content: '';
  display: block;
  width: 20px; height: 20px;
  background: var(--c-primary);
  border-radius: var(--r);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A1A1A'%3E%3Cpath d='M13.485 1.431a1 1 0 00-1.46-.111L4.786 7.29l-2.81-2.81a1 1 0 00-1.415 1.415l3.5 3.5a1 1 0 001.402.017l8-7a1 1 0 00.022-1.381z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.check-list--light .check-list__item { color: rgba(255,255,255,0.85); }

/* ---- REQUIREMENT LIST ---- */
.req-list { display: flex; flex-direction: column; gap: 16px; }
.req-item {
  padding: 20px 24px;
  background: var(--c-light);
  border-left: 3px solid var(--c-primary);
  border-radius: 0 var(--r) var(--r) 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background 0.2s ease;
}
.req-item:hover { background: #ebebeb; }
.req-item__label { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 4px; }
.req-item__text  { font-size: 0.9375rem; line-height: 1.65; color: var(--c-text); }

/* ---- TASK BLOCKS ---- */
.task-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.task-item {
  background: var(--c-white);
  padding: 32px 36px;
  border-radius: var(--r);
  border: 1px solid var(--c-border);
  transition: all 0.25s ease;
}
.task-item:hover { border-color: var(--c-primary); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.task-item__title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 10px; }
.task-item__headline { font-size: 1.0625rem; font-weight: 700; margin-bottom: 10px; }
.task-item__text  { font-size: 0.9375rem; line-height: 1.7; color: var(--c-muted); }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding-left: 44px; }
.timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: var(--c-border); }
.timeline__item { position: relative; padding-bottom: 48px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute;
  left: -34px; top: 5px;
  width: 18px; height: 18px;
  background: var(--c-primary);
  border-radius: 50%;
  border: 3px solid var(--c-white);
  outline: 2px solid var(--c-primary);
}
.timeline__year  { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-primary); margin-bottom: 8px; }
.timeline__title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 10px; }
.timeline__text  { font-size: 0.9375rem; line-height: 1.75; color: var(--c-muted); }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--c-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,183,7,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-band__title { font-size: clamp(1.5rem, 3vw, 2.375rem); font-weight: 700; color: var(--c-white); max-width: 560px; }
.cta-band__title em { color: var(--c-primary); font-style: normal; }

/* ---- PARTNER TABLE ---- */
.partner-table { width: 100%; border-collapse: collapse; border-radius: var(--r); overflow: hidden; }
.partner-table th {
  text-align: left; padding: 13px 20px;
  background: var(--c-dark); color: var(--c-white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.partner-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9375rem; vertical-align: top; line-height: 1.65;
}
.partner-table tr:last-child td { border-bottom: none; }
.partner-table tr:nth-child(even) td { background: var(--c-light); }
.partner-table td:first-child { font-weight: 700; width: 160px; }
.partner-table td strong { display: block; font-weight: 700; }
.partner-table a { color: var(--c-primary); }

/* ---- USP BLOCK ---- */
.usp-item { display: flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--c-border); transition: padding-left 0.22s ease; }
.usp-item:hover { padding-left: 8px; }
.usp-item:last-child { border-bottom: none; }
.usp-item__number { font-size: 3.5rem; font-weight: 700; color: var(--c-primary); line-height: 1; flex-shrink: 0; width: 60px; }
.usp-item__title  { font-size: 1.1875rem; font-weight: 700; margin-bottom: 8px; }
.usp-item__text   { font-size: 0.9375rem; line-height: 1.75; color: var(--c-muted); }

/* ---- CONTACT SECTION ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-panel { padding: 56px; }
.contact-panel--dark { background: var(--c-dark); color: var(--c-white); }
.contact-panel--light { background: var(--c-light); }

.contact-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-item__icon { font-size: 1.125rem; flex-shrink: 0; margin-top: 3px; width: 24px; text-align: center; }
.contact-item__label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 3px; }
.contact-panel--dark .contact-item__label { color: rgba(255,255,255,0.45); }
.contact-item__value { font-size: 0.9375rem; font-weight: 500; }
.contact-item__value a:hover { color: var(--c-primary); }

/* ---- FORM ---- */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--c-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  background: var(--c-white);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(249,183,7,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.78rem; color: var(--c-muted); }

/* ---- MESSE TABLE ---- */
.messe-table { width: 100%; border-collapse: collapse; border-radius: var(--r); overflow: hidden; }
.messe-table th {
  text-align: left; padding: 12px 16px;
  background: var(--c-dark-2); color: var(--c-white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.messe-table td { padding: 14px 16px; border-bottom: 1px solid var(--c-border); font-size: 0.9rem; }
.messe-table tr:last-child td { border-bottom: none; }
.messe-table td:first-child { font-weight: 700; }

/* ---- HIGHLIGHT BOX ---- */
.highlight-box { background: var(--c-primary); padding: 36px; border-radius: var(--r); }
.highlight-box--border { background: var(--c-white); border: 2px solid var(--c-primary); padding: 32px; border-radius: var(--r); }

.notice {
  padding: 16px 20px;
  border-left: 4px solid var(--c-primary);
  border-radius: 0 var(--r) var(--r) 0;
  background: rgba(249,183,7,0.08);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ---- FEATURED STRIP ---- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  overflow: hidden;
}
.feature-strip__item {
  padding: 32px 28px;
  border-right: 1px solid var(--c-border);
  text-align: center;
  transition: background 0.2s ease;
}
.feature-strip__item:hover { background: var(--c-light); }
.feature-strip__item:last-child { border-right: none; }
.feature-strip__icon  { font-size: 2rem; margin-bottom: 12px; }
.feature-strip__title { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.feature-strip__text  { font-size: 0.8125rem; color: var(--c-muted); line-height: 1.55; }

/* ---- MARQUEE ---- */
.marquee {
  overflow: hidden;
  background: #111111;
  position: relative;
  line-height: 0;
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right,  #111111 0%, transparent 100%); }
.marquee::after  { right: 0; background: linear-gradient(to left,   #111111 0%, transparent 100%); }

.marquee__track {
  display: flex;
  animation: marqueeScroll 50s linear infinite;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

.marquee__item {
  width: 260px;
  height: 160px;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 4px;
}
.marquee__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.8);
  transition: filter 0.4s ease;
  display: block;
}
.marquee:hover .marquee__item img { filter: brightness(0.88) saturate(1); }

/* ---- ABOUT IMAGE BLOCK ---- */
.about-img-wrap { position: relative; padding-bottom: 40px; }
.about-img-block {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  display: block;
}
.about-img-block:hover img { transform: scale(1.04); }

.about-contact-float {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--c-primary);
  padding: 22px 26px;
  border-radius: var(--r);
  min-width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 2;
}

/* ---- SECTION WITH BG IMAGE ---- */
.section-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

/* ---- FOOTER ---- */
.footer { background: var(--c-dark); color: rgba(255,255,255,0.68); padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer__brand-name      { font-size: 1.2rem; font-weight: 700; color: var(--c-white); margin-bottom: 14px; }
.footer__brand-name span { color: var(--c-primary); }
.footer__tagline         { font-size: 0.875rem; line-height: 1.65; margin-bottom: 24px; }
.footer__col-title       { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-white); margin-bottom: 18px; }
.footer__links           { display: flex; flex-direction: column; gap: 9px; }
.footer__link            { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.18s; }
.footer__link:hover      { color: var(--c-primary); }
.footer__contact-item    { font-size: 0.875rem; margin-bottom: 8px; }
.footer__contact-item a  { color: rgba(255,255,255,0.65); transition: color 0.18s; }
.footer__contact-item a:hover { color: var(--c-primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.8rem;
}
.footer__legal          { display: flex; gap: 24px; }
.footer__legal a        { color: rgba(255,255,255,0.45); transition: color 0.18s; }
.footer__legal a:hover  { color: var(--c-white); }

/* ---- UTILITIES ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.d-flex      { display: flex; }
.items-center{ align-items: center; }
.gap-16      { gap: 16px; }
.gap-24      { gap: 24px; }
.full-width  { width: 100%; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid--4   { grid-template-columns: repeat(2, 1fr); }
  .grid--3   { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-panel { padding: 40px; }
  .about-contact-float { right: -8px; bottom: -16px; min-width: 190px; padding: 18px 20px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }

  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--c-dark);
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.09);
    gap: 2px;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav--open .nav__link { padding: 12px 14px; }
  .nav--open .nav__link.active::after { display: none; }
  .nav--open .nav__cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .nav--open .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    margin-left: 14px;
    margin-top: 4px;
    min-width: 0;
  }

  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .grid--2-1, .grid--1-2       { grid-template-columns: 1fr; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { padding: 24px 12px; }
  .stats-bar__item:nth-child(2) { border-right: none; }

  .process { flex-direction: column; }
  .process__step { border-right: 1px solid rgba(255,255,255,0.1); border-bottom: none; padding: 24px; border-radius: 0; }
  .process__step:first-child { border-radius: var(--r) var(--r) 0 0; }
  .process__step:last-child  { border-radius: 0 0 var(--r) var(--r); border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
  .process__arrow { display: none; }

  .pain-grid    { grid-template-columns: 1fr; }
  .task-grid    { grid-template-columns: 1fr; }
  .benefit-list { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip__item { border-right: none; border-bottom: 1px solid var(--c-border); }
  .feature-strip__item:last-child { border-bottom: none; }

  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__inner .btn-group { justify-content: center; }

  .footer__grid  { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }

  .job-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .job-card__arrow { align-self: flex-end; }

  .form__row { grid-template-columns: 1fr; }
  .contact-panel { padding: 32px 24px; }

  .marquee__item { width: 180px; height: 115px; }
  .about-contact-float { position: static; margin-top: 16px; right: auto; bottom: auto; box-shadow: none; }
  .about-img-wrap { padding-bottom: 0; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; text-align: center; }
  .hero { padding: 90px 0 56px; }
  .hero--page { padding: 90px 0 48px; }
  .marquee__item { width: 140px; height: 88px; }
}
