/* ============================================================
   ORYX TECHNOLOGIES — styles.css  (Light Theme)
   Farben: #da1212 (Rot) · #111111 (Dunkel) · #ffffff (Weiß)
   ============================================================ */

/* Inter — lokal gehostet (kein Drittanbieter-Request an Google, DSGVO-konform) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('fonts/inter-latin-var.woff2') format('woff2-variations'), url('fonts/inter-latin-var.woff2') format('woff2');
}

:root {
  --red:       #da1212;
  --red-dark:  #b50f0f;
  --black:     #0a0a0a;
  --dark:      #111111;
  --dark-2:    #1a1a1a;
  --white:     #ffffff;
  --light:     #f5f5f5;
  --alt:       #f7f7f7;
  --muted:     #6b6b6b;
  --border-d:  rgba(255,255,255,0.07);
  --border-l:  #e0e0e0;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --ease:      cubic-bezier(0.25,0.46,0.45,0.94);
  --max:       1200px;
  --r:         4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button, input, select, textarea { font-family: var(--font); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.2; }
h4 { font-size: 1rem; font-weight: 700; }
p  { line-height: 1.75; color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red); margin-bottom: 20px;
  white-space: nowrap;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--red); flex-shrink: 0; }
.eyebrow-logo { height: 14px; width: auto; flex-shrink: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.01em; border: none; cursor: pointer;
  border-radius: var(--r); transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(218,18,18,0.35); }
.btn-ghost { background: transparent; color: var(--dark); border: 1.5px solid rgba(0,0,0,0.18); }
.btn-ghost:hover { border-color: var(--dark); background: rgba(0,0,0,0.05); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn svg { flex-shrink: 0; }

/* ============================================================
   NAVIGATION  (white header — logo has white background)
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 28px; background: var(--white);
  border-bottom: 1px solid var(--border-l);
  transition: box-shadow 0.35s ease;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 34px; width: auto; }
.nav-logo-fallback {
  font-size: 1rem; font-weight: 900; letter-spacing: 0.1em;
  color: var(--dark); text-transform: uppercase;
}
.nav-logo-fallback em { color: var(--red); font-style: normal; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item  { position: relative; }
.nav-link  {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; color: rgba(0,0,0,0.72);
  font-size: 0.875rem; font-weight: 500; cursor: pointer;
  transition: color 0.2s ease; border-radius: 4px;
  background: none; border: none;
}
.nav-link:hover { color: var(--red); }
.nav-link .chevron { transition: transform 0.25s ease; }
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown — hover bridge prevents the menu from closing when the
   pointer crosses the gap between the trigger and the panel. */
.dropdown {
  position: absolute; top: 100%; left: 0;
  margin-top: 8px;
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: 8px; min-width: 260px; padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.14);
}
.dropdown::before {
  content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 16px;
}
.nav-item:hover .dropdown,
.dropdown:hover {
  opacity: 1; visibility: visible; pointer-events: all; transform: translateY(0);
}
.dropdown a {
  display: block; padding: 11px 20px;
  color: rgba(0,0,0,0.68); font-size: 0.85rem; font-weight: 500;
  border-left: 2px solid transparent;
  transition: all 0.18s ease;
}
.dropdown a:hover {
  color: var(--red); background: rgba(218,18,18,0.05);
  border-left-color: var(--red); padding-left: 24px;
}

.nav-cta { margin-left: 20px; padding: 10px 20px; font-size: 0.82rem; }

.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.25s ease; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none; position: fixed; inset: 72px 0 0 0; z-index: 999;
  background: var(--white);
  padding: 24px 28px; flex-direction: column; gap: 4px;
  overflow-y: auto; border-top: 1px solid var(--border-l);
}
.nav-mobile.open { display: flex; }
.nav-mobile a, .nav-mobile button {
  display: block; padding: 14px 0; color: var(--dark);
  font-size: 1.1rem; font-weight: 500; border: none; background: none;
  text-align: left; cursor: pointer;
  border-bottom: 1px solid var(--border-l); transition: color 0.2s;
}
.nav-mobile a:hover, .nav-mobile button:hover { color: var(--red); }
.nav-mobile .nav-mobile-sub { padding: 4px 0 4px 16px; }
.nav-mobile .nav-mobile-sub a { font-size: 0.95rem; color: var(--muted); border: none; padding: 10px 0; }
.nav-mobile .nav-mobile-cta { margin-top: 20px; color: var(--white); border: none; }

/* ============================================================
   HERO — Startseite (LIGHT, split with photo)
   ============================================================ */
.hero {
  position: relative; background: var(--white);
  padding: 108px 28px 0; overflow: hidden;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: 56px;
  padding: 48px 0 72px;
}
.hero-text .eyebrow { margin-bottom: 22px; }
.hero h1 { color: var(--dark); margin-bottom: 22px; }
.hero h1 strong { color: var(--red); font-weight: 800; }
.hero-desc {
  color: var(--muted); font-size: 1.08rem;
  max-width: 480px; margin-bottom: 34px; line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: 1px solid var(--border-l);
}
.hero-media::before, .hero-media::after,
.page-hero-media::before, .page-hero-media::after {
  content: ''; position: absolute; width: 26px; height: 26px;
  border-color: var(--red); border-style: solid; z-index: 1; pointer-events: none;
}
.hero-media::before, .page-hero-media::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hero-media::after, .page-hero-media::after { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ============================================================
   VALUES STRIP — Widerstandsfähig · Anpassungsfähig · …
   ============================================================ */
.values-strip { background: var(--white); padding: 60px 28px; border-bottom: 1px solid var(--border-l); }
.values-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.value-item { position: relative; padding-top: 20px; }
.value-item::before { content: ''; position: absolute; top: 0; left: 0; width: 34px; height: 3px; background: var(--red); }
.value-item h4 { font-size: 1.02rem; color: var(--dark); margin-bottom: 9px; }
.value-item p  { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ============================================================
   KUNDEN-LOGOS — continuous marquee
   ============================================================ */
.logo-marquee { background: var(--alt); border-bottom: 1px solid var(--border-l); padding: 34px 0; overflow: hidden; }
.logo-marquee-label {
  text-align: center; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 24px;
}
.logo-viewport { position: relative; overflow: hidden; }
.logo-viewport::before, .logo-viewport::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.logo-viewport::before { left: 0; background: linear-gradient(90deg, var(--alt), rgba(247,247,247,0)); }
.logo-viewport::after  { right: 0; background: linear-gradient(270deg, var(--alt), rgba(247,247,247,0)); }
.logo-track {
  display: flex; align-items: center; gap: 56px; width: max-content;
  animation: marquee 70s linear infinite;
}
@media (hover: hover) {
  .logo-marquee:hover .logo-track { animation-play-state: paused; }
}
.logo-item { display: flex; align-items: center; justify-content: center; height: 46px; flex-shrink: 0; }
.logo-item img {
  max-height: 100%; max-width: 140px; width: auto; height: auto;
  object-fit: contain;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

/* ============================================================
   PAGE HERO — Unterseiten (LIGHT, split with photo)
   ============================================================ */
.page-hero {
  background: var(--alt); padding: 128px 28px 72px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-l);
}
.page-hero-inner {
  max-width: var(--max); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.page-hero h1  { color: var(--dark); margin-bottom: 20px; }
.page-hero .hero-desc { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin-bottom: 32px; }
.page-hero .trust-item { color: var(--muted); }
.page-hero .trust-item::before { background: var(--red); }
.page-hero-media { position: relative; }
.page-hero-media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: 1px solid var(--border-l);
}

.trust-item { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.trust-item::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ============================================================
   PROCESS STRIP (white, red accent only on numbers)
   ============================================================ */
.process-strip {
  background: var(--white); padding: 52px 28px;
  border-bottom: 1px solid var(--border-l);
}
.process-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; gap: 0; align-items: center;
}
.process-divider { background: var(--border-l); height: 56px; width: 1px; }
.process-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 0 40px; color: var(--dark);
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { padding-right: 0; }
.p-num {
  flex-shrink: 0; width: 38px; height: 38px;
  border: 2px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; margin-top: 2px;
  color: var(--red);
}
.p-body h4 { font-size: 0.95rem; color: var(--dark); margin-bottom: 5px; }
.p-body p  { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section       { padding: 96px 28px; background: var(--white); }
.section-alt   { padding: 96px 28px; background: var(--alt); }

.s-head        { margin-bottom: 60px; }
.s-head.center { text-align: center; }
.s-head h2     { color: var(--dark); margin-bottom: 14px; }
/* .s-head h1: z. B. Kontaktseite ohne eigenen Hero — SEO-H1, optisch aber auf H2-Größe */
.s-head h1     { color: var(--dark); margin-bottom: 14px; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
.s-head p      { max-width: 520px; font-size: 1rem; }
.s-head.center p { margin: 0 auto; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.products-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  max-width: var(--max); margin: 0 auto;
}
.pcard {
  flex: 1 1 calc(33.333% - 14px); max-width: calc(33.333% - 14px);
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: 8px; overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  transform-style: preserve-3d; cursor: pointer;
  scroll-margin-top: 100px; /* Platz für fixe Nav bei Sprung per Anker-Link */
}
.pcard:hover {
  border-color: rgba(218,18,18,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.pcard-img {
  width: 100%; height: 210px; background: var(--alt);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pcard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pcard:hover .pcard-img img { transform: scale(1.04); }
.pcard-placeholder {
  width: 100%; height: 210px;
  background: var(--alt);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.pcard-placeholder span { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(0,0,0,0.25); }
.pcard-body    { padding: 28px 32px; }
.pcard-tag     { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.pcard h3      { color: var(--dark); font-size: 1.2rem; margin-bottom: 10px; }
.pcard p       { color: var(--muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 22px; }
.pcard-link    {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--red); font-size: 0.82rem; font-weight: 600;
  transition: gap 0.2s ease;
}
.pcard-link:hover { gap: 12px; }

/* ============================================================
   INDUSTRIES (with photos)
   ============================================================ */
.ind-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 20px;
  max-width: var(--max); margin: 0 auto;
}
.ind-item {
  flex: 1 1 calc(33.333% - 14px); max-width: calc(33.333% - 14px);
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: 8px; overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.ind-item:hover { border-color: var(--red); box-shadow: 0 8px 28px rgba(0,0,0,0.07); transform: translateY(-3px); }
.ind-img {
  width: 100%; aspect-ratio: 16/9;
  background: var(--alt);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ind-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ind-item:hover .ind-img img { transform: scale(1.05); }
.ind-img-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(0,0,0,0.2);
}
.ind-body { padding: 22px 22px 26px; }
.ind-item h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--dark); }
.ind-item p  { font-size: 0.82rem; line-height: 1.55; }

/* ============================================================
   SPEC CARDS — Unterseiten
   ============================================================ */
.specs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: var(--max); margin: 0 auto;
}
.spec-card {
  padding: 32px; background: var(--white);
  border: 1px solid var(--border-l); border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.spec-card:hover { border-color: var(--red); box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-3px); }
.spec-icon {
  width: 48px; height: 48px; background: rgba(218,18,18,0.08);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--red); margin-bottom: 20px;
}
.spec-card h4 { color: var(--dark); margin-bottom: 8px; }
.spec-card p  { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }

/* ============================================================
   PRODUCT DETAIL — 2-col
   ============================================================ */
.detail-wrap {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.detail-wrap.reverse { direction: rtl; }
.detail-wrap.reverse > * { direction: ltr; }
.detail-img {
  width: 100%; aspect-ratio: 4/3; background: var(--alt);
  border-radius: 8px; overflow: hidden; border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
}
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-img-placeholder {
  width: 100%; height: 100%; min-height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: rgba(0,0,0,0.2); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.detail-text .eyebrow { margin-bottom: 20px; }
.detail-text h2 { color: var(--dark); margin-bottom: 16px; }
.detail-text p  { color: var(--muted); margin-bottom: 24px; }
.detail-list    { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.detail-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--muted); font-size: 0.875rem;
}
.detail-list li::before { content: '→'; color: var(--red); flex-shrink: 0; font-weight: 700; }

/* ============================================================
   CTA BANNER (dark, not red)
   ============================================================ */
.cta-banner { background: var(--dark); padding: 88px 28px; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.65); max-width: 460px; margin: 0 auto 36px; font-size: 1rem; }

/* ============================================================
   KONTAKT — Light form
   ============================================================ */
.contact-wrap { max-width: 660px; margin: 0 auto; }
.form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group   { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 8px;
}
.form-group label .req { color: var(--red); margin-left: 3px; }
.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--white); border: 1px solid var(--border-l);
  border-radius: var(--r); color: var(--dark); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}
.form-group input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; cursor: pointer;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(218,18,18,0.08);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  background-color: var(--white); padding-right: 40px;
}
.form-group select option { background: var(--white); color: var(--dark); }
.form-note { font-size: 0.75rem; color: var(--muted); margin-top: 10px; }
.form-submit { width: 100%; padding: 16px; font-size: 0.95rem; margin-top: 8px; border-radius: var(--r); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #060606; border-top: 1px solid var(--border-d); padding: 72px 28px 36px; }
.footer-top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1.5fr; gap: 56px; margin-bottom: 48px;
}
.f-brand p { color: rgba(255,255,255,0.38); font-size: 0.82rem; max-width: 280px; margin-top: 16px; line-height: 1.65; }
.f-cert { margin-top: 24px; background: var(--white); border-radius: 6px; padding: 10px 12px; display: inline-block; }
.f-cert img { height: 46px; width: auto; }
.f-col h5, .f-contact h5 {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.f-col a   { display: block; color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 11px; transition: color 0.2s ease; }
.f-col a:hover { color: var(--red); }

/* Footer contact blocks (DE + AT, compact) */
.f-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.f-loc h6 { font-size: 0.74rem; font-weight: 700; color: rgba(255,255,255,0.62); margin-bottom: 8px; letter-spacing: 0.02em; }
.f-loc p  { font-size: 0.76rem; color: rgba(255,255,255,0.4); line-height: 1.55; margin-bottom: 4px; }
.f-loc a  { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.f-loc a:hover { color: var(--red); }
.f-contact-mail { margin-top: 20px; font-size: 0.8rem; }
.f-contact-mail a { color: var(--red); font-weight: 600; }

.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  padding-top: 28px; border-top: 1px solid var(--border-d);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.22); }
.footer-legal    { display: flex; gap: 20px; }
.footer-legal a  { font-size: 0.75rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: var(--red); }

/* ============================================================
   LEGAL PAGES (Impressum)
   ============================================================ */
.legal-page { max-width: 820px; margin: 0 auto; padding: 140px 28px 96px; }
.legal-page h1 { color: var(--dark); margin-bottom: 12px; }
.legal-page .eyebrow { margin-bottom: 22px; }
.legal-block { margin-bottom: 34px; }
.legal-block h2 { font-size: 1.15rem; color: var(--dark); margin-bottom: 10px; }
.legal-block h3 { font-size: 0.98rem; color: var(--dark); margin: 20px 0 8px; }
.legal-block p  { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.legal-block a  { color: var(--red); word-break: break-word; }
.legal-block ul { margin: 0 0 12px 20px; list-style: disc; }
.legal-block li { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.legal-block .caps { text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.01em; }
.legal-lead { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border-l); }
.legal-meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 40px; }
.legal-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* ============================================================
   DANKE
   ============================================================ */
.ty-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--dark); text-align: center; padding: 120px 28px;
}
.ty-inner { max-width: 520px; }
.ty-icon  {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--red); background: rgba(218,18,18,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin: 0 auto 32px;
}
.ty-inner h1  { color: var(--white); font-size: 2.2rem; margin-bottom: 20px; }
.ty-inner p   { color: rgba(255,255,255,0.58); font-size: 1rem; margin-bottom: 10px; }
.ty-inner .btn { margin-top: 40px; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pcard, .ind-item { flex-basis: calc(50% - 10px); max-width: calc(50% - 10px); }
  .specs-grid    { grid-template-columns: repeat(2, 1fr); }
  .values-inner  { grid-template-columns: repeat(2, 1fr); gap: 24px 32px; }
  .footer-top    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .detail-wrap   { grid-template-columns: 1fr; gap: 48px; }
  .detail-wrap.reverse { direction: ltr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 32px 0 56px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-media { order: -1; }
  .process-inner { grid-template-columns: 1fr; gap: 28px; }
  .process-divider { display: none; }
  .process-step { padding: 0; }
  .pcard, .ind-item { flex-basis: 100%; max-width: 100%; }
  .specs-grid    { grid-template-columns: 1fr; }
  .app-grid      { grid-template-columns: 1fr; }
  .values-inner  { grid-template-columns: 1fr; gap: 28px; }
  .footer-top    { grid-template-columns: 1fr; gap: 32px; }
  .f-contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row      { grid-template-columns: 1fr; }
  .legal-cols    { grid-template-columns: 1fr; }
  .section       { padding: 72px 24px; }
  .section-alt   { padding: 72px 24px; }
  .page-hero     { padding: 108px 24px 64px; }
  .eyebrow       { white-space: normal; }
  .cta-banner .btn { white-space: normal; max-width: 100%; text-align: center; }
  .logo-track    { animation-duration: 32s; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .f-contact-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   COOKIE-CONSENT-BANNER — dezent, unterer Bildschirmrand
   ============================================================ */
.cc-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000;
  background: var(--white); border-top: 1px solid var(--border-l);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  padding: 18px 28px; font-size: 0.85rem;
  transform: translateY(110%); transition: transform 0.4s var(--ease);
}
.cc-banner.cc-visible { transform: translateY(0); }
.cc-inner { max-width: var(--max); margin: 0 auto; }
.cc-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cc-text { flex: 1 1 420px; color: var(--muted); line-height: 1.6; margin: 0; font-size: 0.85rem; }
.cc-text a { color: var(--red); text-decoration: underline; }
.cc-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cc-btn {
  padding: 11px 20px; font-size: 0.82rem; font-weight: 600;
  border-radius: var(--r); cursor: pointer; white-space: nowrap;
  transition: all 0.2s ease; line-height: 1;
}
.cc-btn-accept, .cc-btn-reject {
  background: var(--dark); color: var(--white); border: 1.5px solid var(--dark);
}
.cc-btn-reject { background: var(--white); color: var(--dark); }
.cc-btn-accept:hover, .cc-btn-reject:hover { opacity: 0.82; }
.cc-btn-settings {
  background: none; border: none; color: var(--muted);
  text-decoration: underline; font-weight: 500; padding: 11px 4px;
}
.cc-btn-settings:hover { color: var(--dark); }

.cc-panel {
  max-width: var(--max); margin: 16px auto 0;
  border-top: 1px solid var(--border-l); padding-top: 18px;
  display: none;
}
.cc-panel.cc-panel-open { display: block; }
.cc-cat { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--border-l); }
.cc-cat:last-of-type { border-bottom: none; }
.cc-cat-info h5 { font-size: 0.85rem; color: var(--dark); margin-bottom: 4px; }
.cc-cat-info p { font-size: 0.78rem; color: var(--muted); margin: 0; max-width: 620px; }
.cc-switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.cc-switch input { opacity: 0; width: 0; height: 0; }
.cc-switch-track {
  position: absolute; inset: 0; background: var(--border-l); border-radius: 20px;
  cursor: pointer; transition: background 0.2s ease;
}
.cc-switch-track::before {
  content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  background: var(--white); border-radius: 50%; transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cc-switch input:checked + .cc-switch-track { background: var(--red); }
.cc-switch input:checked + .cc-switch-track::before { transform: translateX(18px); }
.cc-switch input:disabled + .cc-switch-track { opacity: 0.5; cursor: not-allowed; }
.cc-panel-footer { display: flex; justify-content: flex-end; margin-top: 16px; }

.cc-footer-link { background: none; border: none; padding: 0; font: inherit; cursor: pointer; }

@media (max-width: 768px) {
  .cc-banner { padding: 16px 20px 20px; }
  .cc-row { flex-direction: column; align-items: stretch; }
  .cc-actions { width: 100%; }
  .cc-btn, .cc-btn-settings { flex: 1 1 auto; text-align: center; }
  .cc-cat { flex-direction: column; gap: 8px; }
  .cc-switch { align-self: flex-start; }
}
