/* =========================================
   VANOR – CSS
   Brand: #bf1922 (red), #fdf1e7 (cream), #000 (black), #92131a (dark red)
   ========================================= */

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

:root {
  --red: #bf1922;
  --red-dark: #92131a;
  --cream: #fdf1e7;
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #555;
  --gray-800: #222;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.12);
  --nav-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { color: var(--gray-600); }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 16px;
}
.section-label.light { color: rgba(255,255,255,0.5); }

.body-text { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 20px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font);
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(191,25,34,0.3); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover { border-color: var(--black); }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.nav.scrolled .nav-links a { color: var(--gray-800); }
.nav.scrolled .nav-links a:hover { color: var(--red); background: var(--gray-100); }
.nav.scrolled .logo-white { display: none; }
.nav.scrolled .logo-dark { display: block; }
.nav.scrolled .lang-toggle { color: var(--gray-800); }
.nav.scrolled .hamburger span { background: var(--black); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}
.nav-logo { flex-shrink: 0; }
.logo-img { height: 36px; width: auto; display: block; }
.logo-dark { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-800) !important;
  background: transparent !important;
  transition: var(--transition);
}
.nav-dropdown a:hover { background: var(--gray-100) !important; color: var(--red) !important; }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 10px 20px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }
.nav.scrolled .nav-cta { background: var(--red) !important; color: var(--white) !important; }

.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.05em;
  transition: var(--transition);
  font-family: var(--font);
}
.lang-toggle:hover { color: var(--white); }
.lang-sep { opacity: 0.4; }
.lang-de, .lang-en { transition: var(--transition); opacity: 0.5; }
.lang-de.active, .lang-en.active { opacity: 1; color: var(--red); }
.nav.scrolled .lang-toggle { color: var(--gray-600); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  flex-direction: column;
  background: var(--white);
  padding: 8px 20px 20px;
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 4px;
  border-bottom: 1px solid var(--gray-100);
  font-weight: 500;
  color: var(--gray-800);
  font-size: 1rem;
}
.mobile-menu a:last-child { border-bottom: none; color: var(--red); font-weight: 700; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 32px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(191,25,34,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(146,19,26,0.12) 0%, transparent 60%),
              linear-gradient(160deg, #0a0a0a 0%, #111 50%, #0d0d0d 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.hero-headline {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}
.hero-headline .line {
  color: var(--white);
  display: block;
}
.hero-headline .accent { color: var(--red); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.hero-tag:last-child {
  border-color: rgba(230,50,50,0.4);
  color: rgba(230,100,100,0.9);
  background: rgba(230,50,50,0.08);
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(0,0,0,0.2);
}
.stat {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.stat-num {
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  margin: 0 auto;
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── WHY ─── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-left h2 { margin-bottom: 24px; color: var(--black); }

.quote-block {
  margin-top: 32px;
  padding: 24px 28px;
  border-left: 3px solid var(--red);
  background: var(--cream);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.quote-mark {
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: -8px;
}
.quote-block p {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  font-style: italic;
}

.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.promise-card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.promise-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.promise-icon {
  width: 32px;
  height: 32px;
  color: var(--red);
  margin-bottom: 14px;
}
.promise-icon svg { width: 100%; height: 100%; }
.promise-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--black); }
.promise-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.55; }

/* ─── MODEL ─── */
.model {
  background: var(--black);
  color: var(--white);
}
.model-header { text-align: center; margin-bottom: 56px; }
.model-header h2 { color: var(--white); margin-bottom: 12px; }
.model-sub { color: rgba(255,255,255,0.45); font-size: 1.05rem; }
.model-header .section-label { color: var(--red); }

.model-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.pillar {
  background: rgba(255,255,255,0.03);
  padding: 44px 32px;
  transition: var(--transition);
}
.pillar:hover { background: rgba(255,255,255,0.06); }
.pillar-center {
  background: rgba(191,25,34,0.08);
  border-left: 1px solid rgba(191,25,34,0.2);
  border-right: 1px solid rgba(191,25,34,0.2);
}
.pillar-center:hover { background: rgba(191,25,34,0.12); }

.pillar-number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 18px;
}
.pillar-icon {
  width: 30px;
  height: 30px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-center .pillar-icon { color: var(--red); }
.pillar h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 6px; }
.pillar > p { color: rgba(255,255,255,0.35); font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.pillar ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.pillar ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.pillar ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 1px;
  background: var(--red);
}
.pillar-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.pillar:hover .pillar-link { color: var(--red); }

.model-tech-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: rgba(191,25,34,0.08);
  border: 1px solid rgba(191,25,34,0.2);
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}
.model-tech-note svg { flex-shrink: 0; color: var(--red); }
.tech-link {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  transition: var(--transition);
}
.tech-link:hover { color: #ff3340; }

/* ─── SITUATIONS / MANDATE ─── */
.situations { background: var(--cream); }
.situations-header { margin-bottom: 52px; }
.situations-header h2 { color: var(--black); margin-bottom: 8px; }
.situations-header > p { font-size: 1.05rem; color: var(--gray-600); }

.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.situation-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.situation-card:hover {
  border-color: var(--red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.situation-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--red);
}
.situation-card h3 { font-size: 1rem; color: var(--black); line-height: 1.3; }
.situation-card p { font-size: 0.86rem; color: var(--gray-600); line-height: 1.65; flex: 1; }

/* ─── REFERENZPROJEKTE ─── */
.references { background: var(--gray-50, #f8f9fa); }
.ref-header { margin-bottom: 56px; }
.ref-header h2 { color: var(--black); margin-bottom: 8px; }
.ref-header p { color: var(--gray-600); font-size: 0.95rem; }
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.ref-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}
.ref-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ref-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.ref-card h3 {
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.3;
  margin: 0;
}
.ref-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}
.ref-result {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .ref-grid { grid-template-columns: 1fr; }
}

/* ─── PROCESS ─── */
.process-section { background: var(--white); }
.process-header { margin-bottom: 56px; }
.process-header h2 { color: var(--black); margin-bottom: 8px; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.process-step {}
.process-step .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 18px;
}
.process-step h3 { font-size: 0.95rem; color: var(--black); margin-bottom: 8px; }
.process-step p { font-size: 0.845rem; color: var(--gray-600); line-height: 1.6; }
.process-arrow {
  color: var(--red);
  font-size: 1.4rem;
  padding: 0 16px;
  margin-top: 14px;
  opacity: 0.5;
  align-self: flex-start;
}

/* ─── CONTACT ─── */
.contact {
  background: linear-gradient(135deg, var(--black) 0%, #0d0d0d 100%);
  color: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 { color: var(--white); margin-bottom: 20px; }
.contact-left > p { color: rgba(255,255,255,0.45); margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: var(--transition);
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.contact-link:hover { color: var(--white); border-color: rgba(255,255,255,0.18); }
.contact-link svg { flex-shrink: 0; color: var(--red); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 13px 15px;
  color: var(--white);
  font-size: 0.9rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; color: var(--white); }

/* ─── FOOTER ─── */
.footer {
  background: #050505;
  padding: 56px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 28px; opacity: 0.65; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.65; max-width: 260px; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.2); transition: var(--transition); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.5); }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  background: var(--black);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(191,25,34,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header .section-label { color: rgba(255,255,255,0.4); }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 16px; }
.page-header > .container > p { color: rgba(255,255,255,0.45); font-size: 1.1rem; max-width: 540px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.breadcrumb a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { color: rgba(255,255,255,0.15); font-size: 0.7rem; }
.breadcrumb span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ─── LEISTUNGEN page ─── */
.service-page { padding: 80px 0 120px; }
.service-page-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}
.service-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.sidebar-nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav a {
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
  border-left: 2px solid transparent;
  display: block;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--red);
  border-left-color: var(--red);
  background: rgba(191,25,34,0.06);
}
.sidebar-cta {
  margin-top: 28px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(191,25,34,0.15);
}
.sidebar-cta h4 { color: var(--black); margin-bottom: 8px; font-size: 0.9rem; }
.sidebar-cta p { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 14px; line-height: 1.5; }

.service-area {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--gray-200);
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.service-area:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-area-head { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
.service-area-icon {
  width: 48px;
  height: 48px;
  background: rgba(191,25,34,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.service-area-icon svg { width: 24px; height: 24px; }
.service-area-head h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--black); margin-bottom: 4px; }
.service-area-head .sub { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); }
.service-area > p { font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 28px; max-width: 640px; }
.service-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.service-item {
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.service-item:hover { border-color: var(--red); background: rgba(191,25,34,0.03); }
.service-item h4 { color: var(--black); margin-bottom: 6px; font-size: 0.9rem; }
.service-item p { font-size: 0.82rem; color: var(--gray-600); line-height: 1.55; }

/* ─── ÜBER UNS page ─── */
.about-page { padding: 80px 0 120px; }
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--gray-200);
}
.about-intro-grid h2 { color: var(--black); margin-bottom: 20px; }
.about-intro-grid p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.75; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-value {
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.about-value:hover { border-color: var(--red); }
.about-value h4 { color: var(--black); font-size: 0.875rem; margin-bottom: 4px; }
.about-value p { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 0; }

.team-coming-soon {
  background: var(--gray-100);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  margin-bottom: 72px;
}
.team-coming-soon h3 { color: var(--black); margin-bottom: 10px; }
.team-coming-soon p { color: var(--gray-600); max-width: 380px; margin: 0 auto; font-size: 0.9rem; }

.mission-block {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  text-align: center;
}
.mission-block .section-label { color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.mission-block blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: -0.01em;
  max-width: 720px;
  margin: 0 auto;
}

/* ─── LEGAL pages ─── */
.legal-page { padding: 80px 0 120px; }
.legal-body { max-width: 740px; }
.legal-body h2 { font-size: 1.35rem; color: var(--black); margin: 40px 0 12px; font-weight: 700; }
.legal-body h3 { font-size: 1.05rem; color: var(--black); margin: 28px 0 8px; font-weight: 700; }
.legal-body p { color: var(--gray-600); margin-bottom: 14px; font-size: 0.925rem; line-height: 1.75; }
.legal-body a { color: var(--red); }
.legal-body a:hover { text-decoration: underline; }
.legal-body ul {
  margin: 12px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: disc;
}
.legal-body ul li { font-size: 0.925rem; color: var(--gray-600); }

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .model-pillars { grid-template-columns: 1fr; }
  .pillar-center { border-left: none; border-right: none; border-top: 1px solid rgba(191,25,34,0.2); border-bottom: 1px solid rgba(191,25,34,0.2); }
  .situations-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-page-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-arrow { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: calc(var(--nav-h) + 40px) 20px 0; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 60%; height: 1px; }
  .situations-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .mission-block { padding: 40px 24px; }
  .service-items { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .model-tech-note { flex-direction: column; align-items: flex-start; gap: 10px; }
  .tech-link { margin-left: 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { display: none; }
}

/* ── Logo Strip ─────────────────────────────── */
.logo-strip-section {
  padding: 36px 0 40px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.logo-strip-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
  padding: 0 20px;
}
.logo-strip-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.logo-strip-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: logo-scroll 40s linear infinite;
}
.logo-strip-track:hover { animation-play-state: paused; }
.logo-strip-img {
  display: block;
  width: 110px;
  height: 30px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  filter: grayscale(1) opacity(0.45);
  transition: filter 0.3s ease;
}
.logo-strip-img:hover { filter: grayscale(0) opacity(1); }
@keyframes logo-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .logo-strip-section { padding: 28px 0 32px; }
  .logo-strip-track { gap: 32px; }
  .logo-strip-img {
    width: 80px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .logo-strip-track { gap: 24px; }
  .logo-strip-img {
    width: 64px;
    height: 20px;
  }
}
