/* =================================================================
   wowobot — styles.css
   Modernes, modulares CSS mit CSS-Variablen. Mobile-First.
   Lokale Schriften via @font-face (kein externes CDN, DSGVO-konform).
================================================================= */

/* ---------- Fonts (lokal) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/inter-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/inter-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/sora-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/sora-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('assets/fonts/sora-latin-800-normal.woff2') format('woff2');
}

/* ---------- Design-Tokens ---------- */
:root {
  /* Farbwelt: tiefes Navy + Cyan-Akzent (zum digitalen/tech Thema passend) */
  --bg:           #0a0f1c;
  --bg-soft:      #0f1626;
  --bg-card:      #131c30;
  --surface:      #ffffff;
  --surface-alt:  #f5f8fc;

  --text:         #e8edf6;
  --text-soft:    #a7b2c6;
  --text-ink:     #16202e;   /* Text auf hellen Flächen */
  --text-ink-soft:#52617a;

  --accent:       #22b8e0;
  --accent-deep:  #1483b8;
  --accent-soft:  rgba(34, 184, 224, 0.12);

  --border:       rgba(255, 255, 255, 0.10);
  --border-ink:   #e3e9f2;

  /* Maße */
  --maxw:         1180px;
  --radius:       18px;
  --radius-sm:    12px;
  --radius-lg:    26px;

  /* Schatten (weich, hochwertig) */
  --shadow:       0 18px 50px -20px rgba(7, 12, 24, 0.55);
  --shadow-soft:  0 12px 30px -16px rgba(7, 12, 24, 0.35);
  --shadow-accent:0 18px 40px -16px rgba(34, 184, 224, 0.45);

  --header-h:     74px;

  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head:    'Sora', 'Inter', system-ui, sans-serif;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #04121a; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--accent);
  color: #04121a;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ---------- Layout-Helfer ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.section { padding-block: clamp(64px, 10vw, 120px); }
.section--alt { background: var(--bg-soft); }
.accent { color: var(--accent); }

.section__head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section__title { font-size: clamp(1.7rem, 4.5vw, 2.7rem); }
.section__lead {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px;
  --pad-x: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #04121a;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -14px rgba(34,184,224,0.6); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn--lg { --pad-y: 16px; --pad-x: 30px; min-height: 56px; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* =================================================================
   HEADER
================================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
              border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 15, 28, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo { display: flex; align-items: center; }
.header__logo img { width: 150px; height: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; align-items: center; gap: 26px; }
.nav__list a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav__list a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}
.nav__list a:hover { color: var(--text); }
.nav__list a:hover::after { width: 100%; }
.nav__cta { padding-block: 11px; min-height: 44px; }

/* Burger */
.burger {
  display: none;
  width: 48px; height: 48px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger span:nth-child(1) { transform: translate(-50%, -8px); }
.burger span:nth-child(3) { transform: translate(-50%, 8px); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* =================================================================
   HERO
================================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,15,28,0.55) 0%, rgba(10,15,28,0.78) 60%, rgba(10,15,28,0.96) 100%),
    radial-gradient(120% 90% at 15% 20%, rgba(34,184,224,0.18), transparent 55%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding-block: 60px;
}
.hero__eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(2.2rem, 7vw, 4.3rem);
  line-height: 1.05;
}
.hero__subtitle {
  margin-top: 24px;
  max-width: 640px;
  font-size: clamp(1.02rem, 2.4vw, 1.22rem);
  color: #d4dcea;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__trust {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 44px);
}
.hero__trust li {
  font-size: 0.95rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__trust strong { color: var(--text); font-size: 1.15rem; font-family: var(--font-head); }

.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  z-index: 1;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}

/* =================================================================
   TRUST-BAR
================================================================= */
.trustbar {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
  padding-block: 30px;
}
.trustbar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 500;
}
.trustbar__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  border-radius: 12px;
}

/* =================================================================
   CARDS / LEISTUNGEN
================================================================= */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(34,184,224,0.4);
  box-shadow: var(--shadow);
}
.card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 26px 24px 30px; }
.card__body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card__body > p { color: var(--text-soft); font-size: 0.98rem; }
.card__list { margin-top: 18px; display: grid; gap: 8px; }
.card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.93rem;
  color: var(--text-soft);
}
.card__list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* =================================================================
   SPLIT (Über uns / Standort)
================================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 64px);
  align-items: center;
}
.split__media { position: relative; }
.split__media > img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.split__badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(10,15,28,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-soft);
}
.split__badge strong { display: block; color: var(--accent); font-family: var(--font-head); }
.split__badge span { font-size: 0.85rem; color: var(--text-soft); }

.features { margin: 28px 0 32px; display: grid; gap: 20px; }
.features li { display: flex; gap: 14px; align-items: flex-start; }
.features__check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 9px;
  font-weight: 800;
}
.features li strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.features li p { color: var(--text-soft); font-size: 0.94rem; margin-top: 2px; }

/* =================================================================
   STEPS / PROZESS
================================================================= */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.step:hover { transform: translateY(-5px); border-color: rgba(34,184,224,0.4); }
.step__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.2rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { color: var(--text-soft); font-size: 0.95rem; }

/* =================================================================
   REVIEWS / MARQUEE
================================================================= */
.reviews { overflow: hidden; }
.marquee {
  position: relative;
  width: 100%;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding-block: 8px;
  animation: marquee 48s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review {
  flex: 0 0 auto;
  width: min(340px, 80vw);
  background: var(--surface);
  color: var(--text-ink);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  margin: 0;
  box-shadow: var(--shadow-soft);
}
.review__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review__avatar {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--c, var(--accent));
  color: #fff;
  font-weight: 700;
  font-family: var(--font-head);
}
.review__head strong { display: block; font-family: var(--font-head); font-size: 0.98rem; }
.review__meta { font-size: 0.8rem; color: var(--text-ink-soft); }
.review__stars { margin-left: auto; color: #f5b53d; letter-spacing: 1px; font-size: 0.95rem; }
.review blockquote {
  margin: 0;
  font-style: italic;
  font-size: 0.96rem;
  color: #38465c;
  line-height: 1.55;
}

/* =================================================================
   STANDORT / MAP-PLATZHALTER
================================================================= */
.contact-facts { display: grid; gap: 14px; margin: 24px 0 30px; }
.contact-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-soft);
}
.contact-facts li span { font-size: 1.2rem; }
.contact-facts a:hover { color: var(--accent); }

.map-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-placeholder img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(0.9) brightness(0.85); }
.map-placeholder__pin {
  position: absolute;
  left: 50%; top: 44%;
  transform: translate(-50%, -50%);
  font-size: 2.6rem;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.5));
  animation: pinBounce 2.4s var(--ease) infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -62%); }
}
.map-placeholder__label {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(10,15,28,0.85);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* =================================================================
   KONTAKT
================================================================= */
.section--cta {
  background:
    radial-gradient(120% 100% at 85% 0%, rgba(34,184,224,0.14), transparent 50%),
    var(--bg-soft);
}
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 6vw, 60px);
  align-items: start;
}
.contact__intro .section__head { text-align: left; }
.contact-facts--light li { color: var(--text); }

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-ink-soft); }
.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: rgba(34,184,224,0.06);
  outline: none;
}
.field textarea { resize: vertical; min-height: 120px; }

.field--check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}
.field--check input {
  width: 22px; height: 22px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.field--check label { font-weight: 400; font-size: 0.9rem; color: var(--text-soft); line-height: 1.5; }
.field--check a { color: var(--accent); text-decoration: underline; }

/* Honeypot — visuell & für Screenreader entfernt */
.hp {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status {
  font-size: 0.92rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.is-ok { color: #2bc48a; }
.form-status.is-error { color: #ff6b81; }
.form-note { font-size: 0.8rem; color: var(--text-ink-soft); }

input:invalid:not(:placeholder-shown) { border-color: rgba(255,107,129,0.6); }

/* =================================================================
   FOOTER
================================================================= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-top: clamp(48px, 7vw, 72px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer__brand img { width: 160px; margin-bottom: 16px; }
.footer__brand p { color: var(--text-soft); font-size: 0.94rem; max-width: 340px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-soft);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.socials a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-2px); }

.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--text);
}
.footer__nav ul,
.footer__contact ul { display: grid; gap: 10px; }
.footer__nav a,
.footer__contact a,
.footer__contact li { color: var(--text-soft); font-size: 0.94rem; transition: color 0.2s var(--ease); }
.footer__nav a:hover,
.footer__contact a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 24px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer__copy { color: var(--text-ink-soft); font-size: 0.86rem; }
.footer__powered { font-size: 0.9rem; color: var(--text-soft); }
.powered-brand { color: #22b8e0; font-weight: 700; }
.powered-brand:hover { text-decoration: underline; }

/* =================================================================
   RECHTSTEXTE (Impressum / Datenschutz)
================================================================= */
.legal {
  padding-top: calc(var(--header-h) + clamp(40px, 7vw, 70px));
  padding-bottom: clamp(60px, 10vw, 110px);
}
.legal .section__title { margin-bottom: 26px; }
.legal h2 {
  font-size: 1.25rem;
  margin: 34px 0 10px;
  color: var(--text);
}
.legal p { color: var(--text-soft); max-width: 760px; margin-bottom: 12px; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal__note {
  background: var(--accent-soft);
  border: 1px solid rgba(34,184,224,0.3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 30px !important;
  color: var(--text) !important;
}

/* =================================================================
   SCROLL-REVEAL
================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE — Tablet
================================================================= */
@media (min-width: 640px) {
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer__contact { grid-column: span 1; }
}

/* =================================================================
   RESPONSIVE — Desktop
================================================================= */
@media (min-width: 940px) {
  .trustbar__grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr 1.1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }

  /* Standort: Text links, Bild rechts beibehalten;
     Über-uns: Bild links, Text rechts */

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .footer__powered { text-align: right; }
}

/* =================================================================
   MOBILE NAV (Burger-Overlay)
================================================================= */
@media (max-width: 939px) {
  .burger { display: block; z-index: 110; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: rgba(10, 15, 28, 0.97);
    backdrop-filter: blur(16px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), visibility 0.4s;
    padding: 90px 28px 40px;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__list {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    width: 100%;
  }
  .nav__list a {
    font-size: 1.4rem;
    font-family: var(--font-head);
    color: var(--text);
    padding: 14px;
    min-height: 44px;
    display: block;
  }
  .nav__list a::after { display: none; }
  .nav__cta { font-size: 1.05rem; padding: 16px 34px; }
  body.nav-open { overflow: hidden; }
}

/* =================================================================
   MOBILE PERFORMANCE — Video durch Bild ersetzen
================================================================= */
@media (max-width: 768px) {
  .hero__video { display: none; }
  .hero__media {
    background-image: url('assets/img/hero-poster.jpg');
    background-size: cover;
    background-position: center;
  }
  .hero { min-height: 92svh; }
}

/* =================================================================
   PREFERS-REDUCED-MOTION
================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero__scroll span { animation: none; }
  /* Video stoppen / durch statisches Bild ersetzen */
  .hero__video { display: none; }
  .hero__media {
    background-image: url('assets/img/hero-poster.jpg');
    background-size: cover;
    background-position: center;
  }
}
