/* ============================================================
   EVIL OFFICE – Corporate Identity Stylesheet 2026
   CI-Basis: Originalseite evil-office.de
   
   FARBSYSTEM (aus CI-Analyse):
   – Nav / Header:    #2e3133  (dunkles Anthrazit)
   – Hintergrund:     #f5f0e8  (warmes Cremeweiß / Papier)
   – Karten / Blöcke: #ffffff  (reines Weiß)
   – Akzent Rot:      #cc2222  (Teufelrot)
   – Akzent Rot hell: #e63030  (Hover)
   – Blau Akzent:     #4a6580  (Stahlblau – Überschriften/Highlights)
   – Blau dark:       #3a4f62
   – Text dunkel:     #1a1a1a  (fast Schwarz)
   – Text mittel:     #4a4a4a
   – Text weich:      #7a7a7a
   – Border:          #d8d0c4  (warmes Beige)
   – Backstein-Ton:   #8b5a4a  (für Deko-Elemente)
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Hauptfarben CI */
  --nav-bg:        #2e3133;
  --nav-text:      #ffffff;
  --nav-active-bg: #ffffff;
  --nav-active-tx: #2e3133;

  --bg-page:       #f5f0e8;
  --bg-white:      #ffffff;
  --bg-cream:      #faf7f2;
  --bg-dark:       #1e2022;
  --bg-darker:     #141618;

  --red:           #cc2222;
  --red-hover:     #e63030;
  --red-light:     rgba(204,34,34,.1);
  --red-border:    rgba(204,34,34,.25);

  --blue:          #4a6580;
  --blue-dark:     #3a4f62;
  --blue-light:    rgba(74,101,128,.08);
  --blue-border:   rgba(74,101,128,.2);

  --text:          #1a1a1a;
  --text-mid:      #4a4a4a;
  --text-soft:     #7a7a7a;
  --text-muted:    #ababab;

  --border:        #d8d0c4;
  --border-soft:   rgba(0,0,0,.07);
  --brick:         #8b5a4a;

  /* Hero-Variante (dunkel) */
  --hero-bg:       #1e2022;
  --hero-text:     #f5f0e8;

  /* Radius */
  --radius-xs:     4px;
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  /* Schatten */
  --shadow-sm:     0 1px 4px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  --shadow:        0 4px 16px rgba(0,0,0,.12), 0 8px 32px rgba(0,0,0,.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.18), 0 4px 12px rgba(0,0,0,.1);
  --shadow-red:    0 6px 24px rgba(204,34,34,.28);

  /* Typografie */
  --font-head:     'Playfair Display', 'Georgia', serif;
  --font-display:  'Oswald', 'Impact', sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --header-h:      80px;
  --max-w:         1240px;
  --col:           min(calc(100% - 40px), var(--max-w));

  /* Animationen */
  --transition:    200ms cubic-bezier(.4,0,.2,1);
  --ease-out:      cubic-bezier(.0,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Backstein-Seitenrahmen (CI-Merkmal) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 22px,
      rgba(139,90,74,.06) 22px,
      rgba(139,90,74,.06) 23px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(139,90,74,.04) 48px,
      rgba(139,90,74,.04) 49px
    ),
    linear-gradient(180deg, #e8e0d4 0%, #f5f0e8 30%, #f5f0e8 100%);
  pointer-events: none;
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
fieldset { border: none; }
input, textarea, select { font: inherit; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

::selection {
  background: var(--red);
  color: #ffffff;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: var(--col);
  margin-inline: auto;
}

.section       { padding-block: 80px; }
.section--sm   { padding-block: 56px; }
.section--xs   { padding-block: 36px; }
.section--dark {
  background: var(--bg-dark);
  color: var(--hero-text);
}

.grid { display: grid; gap: 20px; }

.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;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); }
h4 { font-size: 1.05rem; font-weight: 700; }

/* Eyebrow – Sektionslabel im CI-Stil */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--red);
  opacity: .6;
}

/* Decorative rule (CI-Linie im Blau-Stil) */
.rule {
  display: block;
  width: 52px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin-top: 10px;
}

/* Section intro */
.section-intro { margin-bottom: 0; }
.section-intro h2 { margin-bottom: 12px; }
.section-intro p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 620px;
}

.section-intro--center {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
}
.section-intro--center p { margin-inline: auto; }
.section-intro--center .eyebrow { justify-content: center; }
.section-intro--center .rule { margin-inline: auto; }

/* Vintage-Display Text */
.display-text {
  font-family: var(--font-display);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:active { transform: scale(.97) !important; }

.btn--primary {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}
.btn--primary:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn--blue {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,101,128,.3);
}

.btn--ghost-red {
  background: var(--red-light);
  color: var(--red);
  border-color: var(--red-border);
}
.btn--ghost-red:hover {
  background: rgba(204,34,34,.16);
  transform: translateY(-1px);
}

.btn--ghost-dark {
  background: rgba(255,255,255,.08);
  color: #ffffff;
  border-color: rgba(255,255,255,.18);
}
.btn--ghost-dark:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.34);
  transform: translateY(-1px);
}

.btn--sm  { padding: 9px 16px; font-size: .84rem; min-height: 40px; }
.btn--lg  { padding: 16px 30px; font-size: 1rem; min-height: 54px; border-radius: var(--radius); }

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- Cards (CI-Weißkarten) ---------- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(204,34,34,.22);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card--red-top {
  border-top: 3px solid var(--red);
}

.card--blue {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue-dark);
}

/* ---------- Icon Box ---------- */
.icon-box {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--red-light);
  border: 1px solid var(--red-border);
  color: var(--red);
  flex-shrink: 0;
}

/* ---------- Divider ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-block: 40px;
}

/* =============================================================
   HEADER & NAVIGATION (CI: Dunkelanthrazit + Weiß)
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--nav-bg);
  border-bottom: 3px solid var(--red);
  transition: box-shadow .3s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  /* Kein Filter – echtes Logo mit eigenen Farben inkl. Teufel & Western-Schrift */
  transition: opacity .2s;
}
.logo-img:hover { opacity: .88; }

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-name .logo-evil { color: var(--red); font-style: italic; }
.logo-name .logo-office { color: #ffffff; }

.logo-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 3px;
  font-family: var(--font-body);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-link:hover { color: #ffffff; background: rgba(255,255,255,.08); }
.nav-link.active {
  background: #ffffff;
  color: var(--nav-bg);
  font-weight: 700;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: .84rem; font-weight: 700;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.header-tel:hover { color: #ffffff; }
.header-tel svg { width: 15px; height: 15px; }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255,255,255,.2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: border-color var(--transition);
}
.burger:hover { border-color: rgba(255,255,255,.4); }
.burger-line {
  display: block; width: 18px; height: 2px;
  background: #ffffff; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open .burger-line:nth-child(2) { opacity: 0; }
.burger.open .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: #272b2e;
  border-bottom: 3px solid var(--red);
  flex-direction: column;
  padding: 8px 0 16px;
  box-shadow: var(--shadow-lg);
  z-index: 800;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  font-size: .95rem; font-weight: 600;
  color: rgba(255,255,255,.75);
  padding: 12px 24px;
  border-left: 3px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.mobile-nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,.06);
  border-left-color: var(--red);
}
.mobile-menu-footer {
  margin-top: 12px;
  padding: 12px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid; gap: 8px;
}
.mobile-menu-footer .btn { width: 100%; justify-content: center; }

/* =============================================================
   TOP BAR (Kontaktleiste über dem Header)
   ============================================================= */
.top-bar {
  background: var(--bg-darker);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 6px 0;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-contact {
  display: flex; align-items: center; gap: 20px;
}

.top-bar-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.55);
}
.top-bar-item a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.top-bar-item a:hover { color: var(--red); }
.top-bar-item svg { width: 12px; height: 12px; color: var(--red); }

.top-bar-tagline {
  font-size: .72rem;
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* =============================================================
   HERO (CI: dunkel + Vintage + Teufel-Bildsprache)
   ============================================================= */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--hero-text);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Hintergrundmuster – Vintage-Raster */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .32;
  filter: grayscale(.4) contrast(1.1);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(30,32,34,.94) 0%,
    rgba(30,32,34,.78) 55%,
    rgba(30,32,34,.55) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-eyebrow span {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--red); opacity: .7;
}

.hero h1 {
  color: #ffffff;
  font-family: var(--font-head);
  margin-bottom: 20px;
  line-height: 1.08;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
  text-shadow: 0 0 40px rgba(204,34,34,.3);
}

.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  color: rgba(245,240,232,.75);
  max-width: 520px;
  line-height: 1.72;
  margin-bottom: 0;
}

/* Trust Chips (Vintage-Style) */
.trust-chips {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px;
}

.trust-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(245,240,232,.85);
}
.trust-chip svg { width: 13px; height: 13px; color: var(--red); flex-shrink: 0; }

/* Hero Side */
.hero-side {
  display: flex; flex-direction: column; gap: 20px;
}

/* Logo-Box im Hero */
.hero-logo-box {
  background: transparent;
  border: none;
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
}

.hero-logo-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: none;
  /* Heller Hintergrund – Logo hat cream-weißen Hintergrund, passt auf dunkle Karte */
  border-radius: 12px;
  background: rgba(245,240,232,.96);
  padding: 16px;
  box-shadow: 0 6px 28px rgba(0,0,0,.5);
}

.hero-logo-sub {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 10px;
}

/* Hero Stat-Karte */
.hero-stat {
  background: var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-red);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: #ffffff; line-height: 1;
  flex-shrink: 0;
}
.hero-stat-label {
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.85); line-height: 1.4;
}

/* Hero Images Stack */
.hero-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-img-frame {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #111;
  aspect-ratio: 4/3;
}
.hero-img-frame:first-child { margin-top: 20px; }

.hero-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
  transition: transform .4s ease;
}
.hero-img-frame:hover img { transform: scale(1.04); }

/* =============================================================
   TRUST BAR
   ============================================================= */
.trust-bar {
  background: var(--nav-bg);
  border-bottom: 2px solid var(--bg-dark);
  padding-block: 0;
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.trust-item:last-child { border-right: none; }

.trust-item-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-xs);
  background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.trust-item-icon svg { width: 18px; height: 18px; }

.trust-item strong {
  display: block; font-size: .88rem; font-weight: 700;
  color: #ffffff; margin-bottom: 2px;
}
.trust-item span { font-size: .75rem; color: rgba(255,255,255,.5); }

/* =============================================================
   LEISTUNGEN (Services)
   ============================================================= */
.section--leistungen {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  padding: 28px;
  display: flex; flex-direction: column;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { border-top-color: var(--red); }

.service-card .icon-box { margin-bottom: 18px; }

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--blue);
}

.service-card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.service-card .btn { align-self: flex-start; margin-top: auto; }

/* =============================================================
   WARUM EVIL OFFICE
   ============================================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.why-img-main {
  position: absolute; top: 0; right: 0;
  width: 78%; height: 78%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  filter: saturate(.95) contrast(1.04);
}

.why-img-second {
  position: absolute; bottom: 0; left: 0;
  width: 52%; height: 52%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--bg-page);
  box-shadow: var(--shadow-lg);
}

.why-badge {
  position: absolute; top: 40%; right: -18px;
  transform: translateY(-50%);
  background: var(--red);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-red);
  min-width: 160px;
}
.why-badge strong {
  display: block; font-size: 1.8rem; font-weight: 800;
  font-family: var(--font-display); line-height: 1;
}
.why-badge span { font-size: .76rem; color: rgba(255,255,255,.8); margin-top: 4px; display: block; }

/* Advantage List */
.advantage-list { display: grid; gap: 14px; margin-top: 28px; }

.advantage-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.advantage-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }

.adv-icon {
  width: 38px; height: 38px; border-radius: var(--radius-xs);
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center; color: var(--red); flex-shrink: 0;
}
.adv-icon svg { width: 17px; height: 17px; }

.adv-content strong {
  display: block; font-weight: 700; font-size: .92rem;
  margin-bottom: 3px; color: var(--text);
}
.adv-content span { font-size: .84rem; color: var(--text-soft); line-height: 1.5; }

/* =============================================================
   ANKAUF (dunkle Sektion)
   ============================================================= */
.section--ankauf {
  background: var(--bg-dark);
  color: var(--hero-text);
}

.section--ankauf h2 { color: #ffffff; }
.section--ankauf .eyebrow { /* erbt var(--red) */ }

.ankauf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ankauf-lead {
  font-size: 1.02rem;
  color: rgba(245,240,232,.72);
  line-height: 1.72;
  margin-top: 16px;
}

.ankauf-note {
  font-size: .88rem;
  color: rgba(245,240,232,.5);
  font-style: italic;
  margin-top: 8px;
}

.ankauf-list {
  display: grid; gap: 10px; margin-top: 24px;
}

.ankauf-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  font-size: .91rem; font-weight: 600;
  color: rgba(245,240,232,.88);
  transition: background var(--transition);
}
.ankauf-item:hover { background: rgba(255,255,255,.08); }
.ankauf-item svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; }

.ankauf-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}
.ankauf-visual img { width: 100%; height: 100%; object-fit: cover; }
.ankauf-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,32,34,.92) 0%, transparent 55%);
}
.ankauf-cta-box {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(20,22,24,.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(204,34,34,.3);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 18px;
}
.ankauf-cta-box strong { display: block; color: #ffffff; margin-bottom: 6px; font-size: .95rem; }
.ankauf-cta-box p { font-size: .83rem; color: rgba(255,255,255,.55); margin-bottom: 12px; }

/* =============================================================
   BÜROAUFLÖSUNG – Prozess
   ============================================================= */
.section--aufloesung {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.process-connector {
  position: absolute;
  top: 44px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg, var(--red) 0px, var(--red) 8px, transparent 8px, transparent 16px
  );
  opacity: .45;
  z-index: 0;
}

.process-step {
  padding: 32px 24px 28px;
  text-align: center;
  position: relative; z-index: 1;
}

.process-num {
  width: 58px; height: 58px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  background: var(--red);
  color: #ffffff;
  box-shadow: var(--shadow-red);
  position: relative; z-index: 2;
}

.process-step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--blue);
}
.process-step p { font-size: .88rem; color: var(--text-mid); line-height: 1.65; }

/* Proof-Karten */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.proof-card { padding: 24px; text-align: center; }

.proof-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--red-light);
  border: 1px solid var(--red-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin: 0 auto 14px;
}
.proof-icon svg { width: 22px; height: 22px; }
.proof-card h4 { font-size: .95rem; margin-bottom: 6px; color: var(--blue); }
.proof-card p { font-size: .84rem; color: var(--text-mid); line-height: 1.6; }

/* =============================================================
   SORTIMENT
   ============================================================= */
.sortiment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.category-card {
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none; color: inherit;
  border-top: 3px solid transparent;
}
.category-card:hover { color: inherit; border-top-color: var(--red); }
.category-card:hover .category-arrow { color: var(--red); letter-spacing: .02em; }

.cat-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  background: var(--red-light);
  border: 1px solid var(--red-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.cat-icon svg { width: 19px; height: 19px; }
.category-card h3 { font-size: .95rem; font-weight: 700; color: var(--text); margin: 0; }
.category-card p { font-size: .82rem; color: var(--text-soft); line-height: 1.5; flex: 1; }
.category-arrow {
  font-size: .8rem; font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition), letter-spacing var(--transition);
  margin-top: auto;
}

/* Shop-Banner */
.shop-banner {
  margin-top: 40px;
  padding: 36px 44px;
  background: var(--blue);
  color: #ffffff;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  box-shadow: 0 8px 32px rgba(74,101,128,.28);
}
.shop-banner h3 { color: #ffffff; margin-bottom: 6px; }
.shop-banner p { color: rgba(255,255,255,.72); font-size: .95rem; }
.shop-banner-btns { display: flex; gap: 12px; flex-shrink: 0; }

/* =============================================================
   GOOGLE REZENSIONEN
   ============================================================= */
.section--reviews {
  background: var(--bg-dark);
  color: var(--hero-text);
}
.section--reviews h2 { color: #ffffff; }

/* Header-Bereich: Intro + Score-Card nebeneinander */
.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.reviews-intro { max-width: 500px; }

/* Google Score Card – klickbar, direkt zu Google verlinkt */
.google-score-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-top: 3px solid #4285F4;
  border-radius: var(--radius);
  min-width: 240px;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.google-score-card:hover {
  background: rgba(255,255,255,.1);
  border-top-color: #4285F4;
  border-color: rgba(66,133,244,.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(66,133,244,.18);
  color: inherit;
}

.google-logo { opacity: .85; }

.google-score-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.google-score-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.google-score-stars {
  display: flex; gap: 2px;
}
.google-score-stars svg {
  width: 18px; height: 18px;
  fill: #f4b400; color: #f4b400;
}

.google-score-count {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* Sterne-Balken */
.google-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.g-bar-row {
  display: flex; align-items: center; gap: 8px;
}
.g-bar-row span {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  width: 8px;
  text-align: right;
  flex-shrink: 0;
}
.g-bar {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
  min-width: 100px;
}
.g-bar-fill {
  height: 100%;
  background: #f4b400;
  border-radius: 3px;
}

.google-score-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: #4285F4;
  margin-top: 2px;
}

/* Themen-Chips */
.reviews-theme-intro {
  margin-bottom: 28px;
}
.reviews-theme-intro p {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
}
.review-topics {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.topic-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .78rem; font-weight: 700;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(245,240,232,.75);
}
.topic-chip svg { color: var(--red); flex-shrink: 0; }

/* Rezensions-Grid: 3 Spalten */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

/* Basis-Karte – jetzt als <a> → kein Box-Shadow, hover deutlicher */
.review-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: none;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(66,133,244,.3);
  transform: translateY(-3px);
  color: inherit;
}

/* Linked-Variante – zusätzlicher visueller Hinweis */
.review-card--linked {
  cursor: pointer;
}
.review-card--linked:hover .review-link-hint {
  color: #4285F4;
  letter-spacing: .01em;
}

/* Legacy (Gästebuch) – eigener Border */
.review-card--legacy {
  border-top: 2px solid rgba(204,34,34,.4);
}
.review-card--legacy:hover {
  border-color: rgba(204,34,34,.5);
}

/* Innen-Wrapper (für Padding) */
.review-card-inner {
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Top-Zeile: Sterne + Badge */
.review-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.review-stars {
  display: flex; gap: 2px;
}
.review-stars svg { width: 15px; height: 15px; color: #f4b400; fill: #f4b400; }

/* Google-Badge (blaues G-Label) */
.review-google-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: .7rem; font-weight: 700;
  background: rgba(66,133,244,.12);
  border: 1px solid rgba(66,133,244,.25);
  color: #7fb3f8;
  white-space: nowrap;
}

/* Legacy-Badge (rotes Gästebuch-Label) */
.review-legacy-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: .7rem; font-weight: 700;
  background: rgba(204,34,34,.12);
  border: 1px solid rgba(204,34,34,.25);
  color: #f08080;
  white-space: nowrap;
}

/* Themen-Tag */
.review-topic-tag {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(245,240,232,.35);
  margin-bottom: 10px;
}

/* Zitat */
.review-text {
  font-size: .91rem;
  color: rgba(245,240,232,.82);
  line-height: 1.68;
  font-style: italic;
  margin: 0 0 16px;
  flex: 1;
  quotes: "„" """;
}
.review-text strong { color: rgba(245,240,232,.95); font-style: normal; }

/* Autor */
.review-author {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto;
}
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .88rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.review-name { font-size: .85rem; font-weight: 700; color: rgba(245,240,232,.88); }
.review-date { font-size: .72rem; color: rgba(245,240,232,.38); margin-top: 1px; }

/* Link-Hint */
.review-link-hint {
  display: block;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.28);
  transition: color var(--transition), letter-spacing var(--transition);
}

/* Footer der Sektion */
.reviews-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.reviews-footer-note {
  flex: 1;
  font-size: .78rem;
  color: rgba(245,240,232,.28);
  font-style: italic;
  min-width: 200px;
  margin: 0;
}

/* Responsive Anpassungen für Reviews */
@media (max-width: 1100px) {
  .reviews-header { grid-template-columns: 1fr; }
  .google-score-card { flex-direction: row; align-items: center; flex-wrap: wrap; min-width: auto; }
  .google-score-body { flex-direction: row; align-items: center; gap: 12px; }
  .google-bars { display: none; }
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-footer { flex-direction: column; align-items: flex-start; }
  .reviews-footer .btn { width: 100%; justify-content: center; }
  .google-score-card { flex-direction: column; }
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-wrap {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 20px 0; text-align: left;
  font-weight: 700; font-size: .97rem; color: var(--text);
  transition: color var(--transition);
}
.faq-trigger:hover { color: var(--red); }

.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--bg-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.faq-icon svg { width: 15px; height: 15px; color: var(--red); transition: transform var(--transition); }

.faq-item.open .faq-icon { background: var(--red-light); border-color: var(--red-border); }
.faq-item.open .faq-icon svg { transform: rotate(180deg); }

.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-body-inner {
  padding-bottom: 20px;
  font-size: .93rem; color: var(--text-mid); line-height: 1.72;
}

/* =============================================================
   KONTAKT
   ============================================================= */
.section--kontakt {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.kontakt-info {
  background: var(--nav-bg);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border-top: 4px solid var(--red);
  box-shadow: var(--shadow-lg);
}
.kontakt-info h3 { color: #ffffff; margin-bottom: 24px; }

.contact-list { display: grid; gap: 18px; }

.contact-item { display: flex; align-items: flex-start; gap: 14px; }

.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 17px; height: 17px; color: #ffffff; }

.contact-text strong {
  display: block; font-size: .74rem; font-weight: 700;
  color: rgba(255,255,255,.45); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 3px;
}
.contact-text a, .contact-text span {
  font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.88);
  display: block; transition: color var(--transition);
}
.contact-text a:hover { color: #ffffff; }

.kontakt-quick {
  display: grid; gap: 10px; margin-top: 24px;
}
.kontakt-quick .btn { width: 100%; justify-content: center; }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--blue); margin-bottom: 24px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: .8rem; font-weight: 700;
  color: var(--text-soft); letter-spacing: .01em;
}
.form-group label .required { color: var(--red); margin-left: 2px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 15px;
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  border: 1px solid var(--border);
  color: var(--text); font-size: .92rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:hover, .form-group textarea:hover, .form-group select:hover {
  border-color: #b8a89a;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--red);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px var(--red-light);
  outline: none;
}

.form-group textarea { min-height: 140px; resize: vertical; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237a7a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px; cursor: pointer;
}
.form-group select option { background: #fff; color: var(--text); }

.honey { display: none; }

.form-submit { margin-top: 8px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.form-note {
  font-size: .77rem; color: var(--text-muted); flex: 1;
}
.form-note a { color: var(--text-soft); text-decoration: underline; }
.form-note a:hover { color: var(--red); }

.form-status {
  display: none; margin-top: 14px;
  padding: 14px 18px; border-radius: var(--radius-sm);
  font-size: .92rem; font-weight: 600;
}
.form-status.success {
  background: rgba(34,155,73,.1);
  border: 1px solid rgba(34,155,73,.25);
  color: #1a7a3a;
}
.form-status.error {
  background: rgba(204,34,34,.08);
  border: 1px solid var(--red-border);
  color: var(--red);
}

.has-error input, .has-error textarea, .has-error select {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(204,34,34,.08) !important;
}
.field-error { display: block; font-size: .78rem; color: var(--red); margin-top: 4px; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--nav-bg);
  color: rgba(255,255,255,.65);
  border-top: 3px solid var(--red);
  padding-top: 52px;
  padding-bottom: 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo-img {
  height: auto;
  width: 200px;
  max-width: 100%;
  /* Heller Hintergrund für Logo im dunklen Footer */
  background: rgba(245,240,232,.95);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  object-fit: contain;
}

.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 8px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link {
  font-size: .86rem; color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--red); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .86rem; color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-contact-item a:hover { color: #ffffff; }

.footer-bottom {
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}

.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-legal a { font-size: .76rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.65); }

.footer-copy { font-size: .76rem; color: rgba(255,255,255,.25); }

/* =============================================================
   MOBILE STICKY BAR
   ============================================================= */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 850;
  padding: 10px 14px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: var(--nav-bg);
  border-top: 2px solid var(--red);
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.sticky-bar .btn { justify-content: center; min-height: 46px; font-size: .9rem; }

/* =============================================================
   ANIMATIONEN
   ============================================================= */
.animate-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.animate-in.is-visible { opacity: 1; transform: translateY(0); }
.animate-in:nth-child(2) { transition-delay: .08s; }
.animate-in:nth-child(3) { transition-delay: .16s; }
.animate-in:nth-child(4) { transition-delay: .24s; }
.animate-in:nth-child(5) { transition-delay: .32s; }
.animate-in:nth-child(6) { transition-delay: .40s; }

/* =============================================================
   SKIP LINK
   ============================================================= */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 9999;
  background: var(--red); color: #fff; padding: 12px 18px;
  border-radius: var(--radius-sm); font-weight: 700; font-size: .88rem;
}
.skip-link:focus { left: 12px; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .ankauf-grid { grid-template-columns: 1fr; }
  .ankauf-visual { height: 340px; order: -1; }
  .sortiment-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .shop-banner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .section { padding-block: 56px; }

  .top-bar { display: none; }

  /* Logo auf Mobile etwas kleiner */
  .logo-img { height: 50px; max-width: 170px; }

  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-side .hero-imgs { display: none; }
  .hero-badge { display: none; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.07); }
  .trust-item:last-child { border-bottom: none; }

  .leistungen-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-connector { display: none; }
  .sortiment-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .main-nav { display: none; }
  .header-actions .btn--secondary { display: none; }
  .header-tel { display: none; }
  .burger { display: flex; }

  .sticky-bar { display: grid; }
  .site-footer { padding-bottom: 86px; }

  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }

  .shop-banner { padding: 24px 22px; }
  .shop-banner-btns { width: 100%; }
  .shop-banner-btns .btn { flex: 1; justify-content: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.6rem; }
  .sortiment-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .animate-in { transition: none; opacity: 1; transform: none; }
  * { animation: none !important; transition-duration: 0ms !important; }
}
