/* ===== RESET & BASIS ===== */
*{box-sizing:border-box;margin:0;padding:0}
html,body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:#222; background:#f9f9f9; line-height:1.6;
}

/* ===== CONTAINER ===== */
.container{width:98%;max-width:1400px;margin:0 auto;padding:0 20px}

/* ===== HEADER + NAV (wie INDEX, unverändert) ===== */
.site-header{position:sticky;top:0;z-index:100;background:#fff;border-bottom:1px solid #eee}
.header-flex{display:flex;justify-content:space-between;align-items:center;padding:10px 20px;position:relative}
.logo{max-height:80px;height:auto;display:block}

/* Hamburger immer sichtbar */
.menu-toggle{
  display:inline-flex!important;align-items:center;justify-content:center;
  width:44px;height:44px;font-size:22px;border:0;background:transparent;cursor:pointer;color:#333
}

/* Panel-Navigation (standardmäßig zu) */
.main-nav{display:none}
.main-nav.show{
  display:block;position:absolute;top:100%;left:0;right:0;background:#fff;z-index:1000;
  border-top:1px solid rgba(0,0,0,.06);box-shadow:0 12px 24px rgba(0,0,0,.08)
}

/* Vertikale Liste im Panel */
.nav-list{list-style:none;margin:0;padding:.25rem .75rem;display:flex;flex-direction:column;gap:0}
.nav-item{position:relative}
.nav-link{display:block;padding:.9rem .5rem;text-decoration:none;color:#333;font-weight:600;background:transparent}

/* Hover wie auf Index: nur Farbe, kein Kasten */
.site-header nav a:hover,.nav-link:hover,.nav-link:focus{color:#007BFF;background:transparent}

/* Submenü – optisch wie normale Links; nur Einrückung */
.submenu{display:none;margin:0;padding:.25rem 0;list-style:none}
.nav-item.open>.submenu{display:block}
.submenu .nav-link{display:block;padding:.6rem .5rem;padding-left:1.25rem}

/* Panel-Layout im aufgeklappten Zustand */
.main-nav.show .nav-list{flex-direction:column;align-items:stretch;gap:0}
.main-nav.show .nav-item{width:100%}
.main-nav.show .nav-link{padding:.9rem 0;width:100%;justify-content:space-between}

/* ========================================================================
   MARKEN – „alte Website“-Stil (flat, neutral, ohne Schatten/rosa)
   ======================================================================== */

/* Abschnitt: neutral, ohne Box-Shadow & ohne „Card“-Look */
.marken-section{
  background:transparent;      /* vorher #fff */
  border-radius:0;             /* vorher 10px */
  box-shadow:none;             /* vorher Schatten */
  padding:2rem 0;              /* saubere vertikale Abstände */
  margin-top:1.5rem;
}
.marken-section h1{
  font-size:2rem;
  margin-bottom:.75rem;
  color:#1e1e1e;
  border-bottom:1px solid #e5e5e5; /* dünne Trennlinie statt roter Balken */
  padding-bottom:.4rem;
}
.marken-section p.intro{
  max-width:900px; color:#444; font-size:1rem; margin:0 0 1.25rem 0;
}

/* Grid: gleich, nur etwas enger und klassischer */
.marken-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.25rem;                 /* etwas kompakter als 1.8rem */
  margin-top:1.25rem;
}

/* Karten: flach, dezente Ränder, keine Schatten, keine farbigen Flächen */
.marken-card{
  background:#fff;
  border:1px solid #e5e5e5;    /* neutraler Rahmen */
  border-radius:6px;           /* dezente Rundung */
  padding:1rem 1rem 1.1rem;
  display:flex;flex-direction:column;align-items:center;text-align:center;
  transition:border-color .2s ease;
  box-shadow:none;             /* explizit ohne Schatten */
}
.marken-card:hover{ border-color:#d2d2d2 } /* dezenter Hover */

/* Logo-Größe ruhig und neutral */
.marken-card img{
  max-width:150px;
  max-height:60px;
  object-fit:contain;
  margin-bottom:.75rem;
  filter:none;                 /* keine Entsättigung/Spielereien */
}

/* Titel schlicht, ohne Marken-Rot */
.marken-card h3{
  color:#222;
  font-size:1.05rem;
  font-weight:700;
  margin-bottom:.4rem;
}

/* Beschreibung neutral */
.marken-card p{
  font-size:.95rem; color:#333;
}

/* Link als klassischer Text-Link (kein roter Button) */
.marken-card a{
  margin-top:.6rem;
  display:inline;
  padding:0;
  background:transparent;
  color:#005599;               /* klassischer Link-Farbton */
  text-decoration:underline;
  font-weight:600;
  border-radius:0;
  transition:color .2s ease, text-decoration-color .2s ease;
}
.marken-card a:hover{
  color:#003a80;               /* dunkleres Blau beim Hover */
  text-decoration:none;
}

/* Hinweisbox: neutralisiert (kein rosa Kasten) */
.marken-hinweis{
  background:#fff;
  border:1px solid #e5e5e5;    /* statt roter Linksborde */
  border-radius:6px;
  padding:1rem 1.1rem;
  margin-top:1.75rem;
  color:#333; max-width:900px;
}
.marken-hinweis a{
  color:#005599; text-decoration:underline;
}
.marken-hinweis a:hover{
  color:#003a80; text-decoration:none;
}

/* ===== ZUBEHÖR-STRIP ===== */
.zubehoer-strip{
    --zb-h: 86px; --zb-pad: 10px 8px; --zb-gap: 14px;
    --zb-border:#e5e5e5; --zb-muted:#6b6b6b; --zb-bg:#fff;
    max-width:1200px; margin:24px auto 48px; padding:0 20px;
  }
  .zb-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:8px}
  .zb-head h2{font-size:1.15rem;margin:0}
  .zb-note{color:var(--zb-muted)}
  .zb-arrows{display:flex;gap:8px}
  .zb-arrow{
    appearance:none;border:1px solid var(--zb-border);background:var(--zb-bg);
    width:32px;height:32px;border-radius:8px;display:grid;place-items:center;cursor:pointer;
    transition:border-color .2s, box-shadow .2s;
  }
  .zb-arrow:hover{border-color:#d7d7d7;box-shadow:0 2px 8px rgba(0,0,0,.05)}
  .zb-arrow:focus{outline:2px solid #007BFF;outline-offset:2px}
  
  .zb-scroller{
    display:grid;grid-auto-flow:column;grid-auto-columns:max-content;gap:var(--zb-gap);
    overflow:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;
    padding:var(--zb-pad);border:1px solid var(--zb-border);border-radius:12px;background:var(--zb-bg);
    height:var(--zb-h);
  }
  .zb-scroller::-webkit-scrollbar{height:8px}
  .zb-scroller::-webkit-scrollbar-thumb{background:#ddd;border-radius:999px}
  .zb-scroller{scrollbar-color:#ddd transparent;scrollbar-width:thin}
  
  .zb-item{
    scroll-snap-align:center;display:grid;place-items:center;padding:8px 14px;height:100%;
    border-radius:10px;transition:background .2s ease, transform .2s ease;
  }
  .zb-item:hover{background:#f8f8f8;transform:translateY(-1px)}
  .zb-item img{display:block;height:34px;width:auto;max-width:160px;object-fit:contain}

  /* ===== ANTRIEBE-STRIP ===== */
.drive-strip{
  --dr-h: 86px; --dr-pad: 10px 8px; --dr-gap: 14px;
  --dr-border:#e5e5e5; --dr-muted:#6b6b6b; --dr-bg:#fff;
  max-width:1200px; margin:24px auto 48px; padding:0 20px;
}
.dr-head{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:8px}
.dr-head h2{font-size:1.15rem;margin:0}
.dr-note{color:var(--dr-muted)}
.dr-arrows{display:flex;gap:8px}
.dr-arrow{
  appearance:none;border:1px solid var(--dr-border);background:var(--dr-bg);
  width:32px;height:32px;border-radius:8px;display:grid;place-items:center;cursor:pointer;
  transition:border-color .2s, box-shadow .2s;
}
.dr-arrow:hover{border-color:#d7d7d7;box-shadow:0 2px 8px rgba(0,0,0,.05)}
.dr-arrow:focus{outline:2px solid #007BFF;outline-offset:2px}

.dr-scroller{
  display:grid;grid-auto-flow:column;grid-auto-columns:max-content;gap:var(--dr-gap);
  overflow:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;
  padding:var(--dr-pad);border:1px solid var(--dr-border);border-radius:12px;background:var(--dr-bg);
  height:var(--dr-h);
}
.dr-scroller::-webkit-scrollbar{height:8px}
.dr-scroller::-webkit-scrollbar-thumb{background:#ddd;border-radius:999px}
.dr-scroller{scrollbar-color:#ddd transparent;scrollbar-width:thin}

.dr-item{
  scroll-snap-align:center;display:grid;place-items:center;padding:8px 14px;height:100%;
  border-radius:10px;transition:background .2s ease, transform .2s ease;
}
.dr-item:hover{background:#f8f8f8;transform:translateY(-1px)}
.dr-item img{
  display:block;height:34px;width:auto;max-width:180px;object-fit:contain;
}

/* kompakter auf sehr kleinen Screens */
@media (max-width:520px){
  .drive-strip{--dr-h:72px}
  .dr-item img{height:28px}
}

  
  /* ===== CTA: BEWERBUNG AUF MARKEN-SEITE ===== */
  .bewerbung-marken{
    background:#f4f4f4;border-top:1px solid #e5e5e5;margin-top:48px;padding:48px 20px;text-align:center;
  }
  .bewerbung-marken h3{font-size:1.6rem;margin:0 0 .5rem 0;color:#222}
  .bewerbung-marken p{font-size:1.05rem;color:#444;max-width:800px;margin:0 auto 20px}
  
  .btn-bewerbung{
    display:inline-block;background:#007BFF;color:#fff;text-decoration:none;
    padding:12px 22px;border-radius:6px;font-weight:700;transition:filter .2s ease, transform .1s ease;
  }
  .btn-bewerbung:hover{filter:brightness(.95)}
  .btn-bewerbung:active{transform:translateY(1px)}
  
  @media (max-width:520px){
    .zubehoer-strip{--zb-h:72px}
    .zb-item img{height:28px}
    .bewerbung-marken h3{font-size:1.35rem}
  }
  
/* Globale Links im Content (nicht Header/Footer) klassisch blau */
a{color:#005599}
a:hover{color:#003a80}


/* ===== FOOTER (wie INDEX, unverändert) ===== */
.site-footer{
  background:#fff;color:#555;border-top:1px solid #e0e0e0;
  padding:40px 20px 20px;margin-top:60px;
}
.footer-flex{display:flex;flex-wrap:wrap;justify-content:space-between;gap:30px;max-width:1200px;margin:0 auto}
.footer-info,.footer-kontakt,.footer-links{flex:1 1 200px}
.footer-logo{max-width:120px;margin-bottom:10px;display:block}
.site-footer a{color:#666;text-decoration:none}
.site-footer a:hover{color:#c8102e;text-decoration:underline}
.copyright{text-align:center;margin-top:30px;font-size:.9rem;color:#888}

/* ===== RESPONSIVE ===== */
@media (max-width:768px){
  .footer-flex{flex-direction:column;gap:1.5rem}
  .footer-info,.footer-kontakt,.footer-links{flex:1 1 100%}
}
