/* ===== 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
}
img{max-width:100%;display:block}
a{color:inherit}
.container{width:98%;max-width:1200px;margin:0 auto;padding:0 20px}

/* ===== HEADER + NAV (immer Burger) ===== */
.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:72px;height:auto}

/* Burger */
.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 */
.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)
}
.nav-list{list-style:none;margin:0;padding:.25rem .75rem;display:flex;flex-direction:column}
.nav-link{display:block;padding:.9rem .5rem;text-decoration:none;color:#333;font-weight:800}
.nav-link:hover,.nav-link:focus{color:#007BFF}
.nav-link.active{color:#c8102e}

/* ===== HERO ===== */
.hub-hero{background:#fff;border-bottom:1px solid #eee;padding:54px 0}
.hero-inner{display:grid;grid-template-columns:1.25fr .75fr;gap:22px;align-items:start}

.eyebrow{
  margin:0 0 10px;font-size:12px;letter-spacing:.4px;text-transform:uppercase;
  color:#c8102e;font-weight:800
}
.hub-hero h1{margin:0 0 10px;font-size:clamp(1.8rem,2.9vw,2.5rem);line-height:1.2}
.sub{margin:0 0 16px;color:#444;max-width:65ch}

.trust-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}
.trust-pill{
  display:inline-flex;align-items:center;
  padding:10px 12px;border-radius:999px;
  background:#f6f6f6;border:1px solid #ececec;
  font-weight:800;font-size:.95rem;color:#222
}

.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:6px}
.btn-primary{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:12px;
  background:#c8102e;color:#fff;text-decoration:none;font-weight:900;
  box-shadow:0 12px 24px rgba(0,0,0,.14);
  transition:transform .15s ease,opacity .2s ease
}
.btn-primary:hover{transform:translateY(-2px);opacity:.95}
.btn-secondary{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:12px;
  background:#111;color:#fff;text-decoration:none;font-weight:800;
  transition:opacity .2s ease
}
.btn-secondary:hover{opacity:.92}

.hero-mini{
  margin-top:12px;
  color:#475569;
  font-weight:600;
  background:#f8fafc;
  border:1px solid #e8eef6;
  padding:12px 14px;
  border-radius:14px
}

.hero-note{
  background:#f8fafc;border:1px solid #e8eef6;border-radius:16px;
  padding:18px;box-shadow:0 1px 2px rgba(2,8,23,.06)
}
.hero-note h2{margin:0 0 10px;font-size:1.05rem}
.note-list{margin:0 0 12px;padding-left:18px;color:#334155}
.note-list li{margin:.25rem 0}
.hero-note .small{font-size:.95rem;color:#475569;margin:0}

/* ===== SECTIONS ===== */
.section-title{font-size:1.6rem;margin:0 0 8px}
.section-sub{margin:0 0 18px;color:#444}

/* ===== SERVICES ===== */
.services{padding:44px 0}
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  margin-top:16px
}
.service-card{
  background:#fff;border:1px solid #ececec;border-radius:18px;
  padding:16px;box-shadow:0 1px 2px rgba(2,8,23,.06);
  transition:transform .15s ease, box-shadow .2s ease, border-color .2s ease
}
.service-card:hover{
  transform:translateY(-2px);
  border-color:#ddd;
  box-shadow:0 14px 30px rgba(2,8,23,.10)
}
.service-card .icon{font-size:26px;margin-bottom:10px}
.service-card h3{margin:0 0 6px;font-size:1.05rem}
.service-card p{margin:0;color:#475569}

/* ===== HOW IT WORKS ===== */
.how{padding:28px 0 48px}
.steps{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  margin-top:14px
}
.step{
  background:#fff;border:1px solid #ececec;border-radius:18px;
  padding:16px;box-shadow:0 1px 2px rgba(2,8,23,.06)
}
.step-no{
  display:inline-flex;align-items:center;justify-content:center;
  width:36px;height:36px;border-radius:12px;
  background:#fff1f3;border:1px solid #ffd2d8;
  color:#c8102e;font-weight:900;margin-bottom:10px
}
.step h3{margin:0 0 6px}
.step p{margin:0;color:#475569}

/* ===== HUB MAIN ===== */
.hub-main{padding:10px 0 70px}
.hub-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-top:14px
}
.hub-card{
  display:block;background:#fff;border:1px solid #ececec;border-radius:18px;
  overflow:hidden;text-decoration:none;
  box-shadow:0 1px 2px rgba(2,8,23,.06);
  transition:transform .18s, box-shadow .25s, border-color .25s
}
.hub-card:hover{
  transform:translateY(-3px);
  border-color:#d8d8d8;
  box-shadow:0 14px 34px rgba(2,8,23,.12)
}
.hub-media{position:relative;background:#f2f2f2}
.hub-media img{width:100%;height:170px;object-fit:cover}
.hub-badge{
  position:absolute;left:12px;top:12px;
  background:#c8102e;color:#fff;
  font-weight:900;font-size:.9rem;
  padding:7px 10px;border-radius:999px;
  box-shadow:0 10px 20px rgba(0,0,0,.18)
}
.hub-meta{padding:14px 14px 16px}
.hub-meta strong{display:block;font-size:1.1rem;margin-bottom:6px}
.hub-meta span{display:block;color:#475569;margin-bottom:10px}
.hub-meta em{
  display:inline-block;font-style:normal;font-weight:900;color:#111;
  background:#f6f6f6;border:1px solid #ececec;
  padding:10px 12px;border-radius:12px
}
.hub-card:hover .hub-meta em{border-color:#ffd2d8;background:#fff1f3}

/* ===== INFO BOXEN ===== */
.help-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:18px}
.help-box{
  background:#fff;border:1px solid #ececec;border-radius:16px;
  padding:16px;box-shadow:0 1px 2px rgba(2,8,23,.06)
}
.help-box h3{margin:0 0 8px;font-size:1.05rem}
.help-box p{margin:0;color:#444}

/* ===== FAQ ===== */
.faq{padding:30px 0 0}
.faq-item{
  background:#fff;border:1px solid #ececec;border-radius:16px;
  padding:14px 16px;margin:10px 0;
  box-shadow:0 1px 2px rgba(2,8,23,.06)
}
.faq-item summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item p{margin-top:10px;color:#475569}

/* ===== FOOTER ===== */
.site-footer{background:#003366;color:#fff;padding:3rem 1rem 2rem;margin-top:30px}
.footer-flex{display:flex;justify-content:space-between;flex-wrap:wrap;gap:2rem;max-width:1200px;margin:0 auto}
.footer-info,.footer-kontakt,.footer-links{flex:1 1 250px}
.footer-logo{max-width:120px;margin-bottom:10px}
.footer-kontakt a,.footer-links a{color:#fff;text-decoration:none;display:block;margin:.3rem 0;transition:color .2s}
.footer-kontakt a:hover,.footer-links a:hover{color:#aad4ff;text-decoration:underline}
footer .copyright{border-top:1px solid rgba(255,255,255,.2);margin-top:2.5rem;padding-top:1rem;text-align:center;font-size:.9rem;color:#ddd}

/* ===== Sticky CTA (mobile) ===== */
.sticky-cta{
  position:fixed;
  left:14px; right:14px; bottom:14px;
  z-index:9999;
  display:none;
  align-items:center;justify-content:center;
  padding:14px 16px;
  background:#c8102e;color:#fff;text-decoration:none;
  font-weight:900;border-radius:14px;
  box-shadow:0 14px 30px rgba(0,0,0,.18);
}

/* ===== RESPONSIVE ===== */
@media (max-width:900px){
  .hero-inner{grid-template-columns:1fr}
  .help-row{grid-template-columns:1fr}
}
@media (max-width:560px){
  .sticky-cta{display:flex}
  .hub-media img{height:150px}
  .logo{max-height:60px}
}
.submenu{display:none;margin:0;padding:.25rem 0;list-style:none}
.nav-item.open > .submenu{display:block}
.submenu .nav-link{padding:.6rem .5rem;padding-left:1.25rem}

/* ===== TECH STRIP (Werkstatt Portraits + Einsatzbilder separat) ===== */
.tech-strip{
  padding: 10px 0 34px;
  background: transparent;
}

.tech-strip__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}

.tech-strip__cta{ white-space:nowrap; }

.rail-wrap{ margin-top: 10px; }

.rail-title{
  margin: 10px 0 10px;
  font-size: 1.05rem;
  font-weight: 900;
  color:#111;
}

/* Swipe-Leiste Portraits */
.tech-rail{
  display:grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 220px);
  gap: 14px;
  overflow:auto;
  padding: 8px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.tech-rail::-webkit-scrollbar{ height: 10px; }
.tech-rail::-webkit-scrollbar-thumb{ background: #d9dce2; border-radius: 999px; }
.tech-rail::-webkit-scrollbar-track{ background: transparent; }

.tech-card{
  scroll-snap-align: start;
  text-align:left;
  border:1px solid #ececec;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 1px 2px rgba(2,8,23,.06);
  cursor:pointer;
  padding:0;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}

.tech-card:hover{
  transform: translateY(-2px);
  border-color:#ddd;
  box-shadow:0 14px 30px rgba(2,8,23,.10);
}

/* Portrait-Bildfläche */
.tech-media{
  position:relative;
  background:#f2f2f2;
  aspect-ratio: 3 / 4;   /* länglich für Portraits */
}

.tech-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Chip NICHT auf der Stirn: unten links, in der dunklen Zone */
.chip{
  position:absolute;
  left:12px;
  bottom:12px;          /* <<< wichtig */
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:.85rem;
  line-height:1;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(17,17,17,.70);
  color:#fff;
  backdrop-filter: blur(6px);
}

/* Farbvarianten */
.chip--red{
  background: rgba(200,16,46,.82);
  border-color: rgba(255,255,255,.18);
}
.chip--soft{
  background: rgba(255,241,243,.92);
  color:#c8102e;
  border-color:#ffd2d8;
  backdrop-filter: none;
}

/* Name + Rolle unter Bild */
.tech-meta{ padding: 12px 12px 14px; }
.tech-meta strong{
  display:block;
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.tech-meta span{
  display:block;
  color:#475569;
  font-weight:600;
  font-size:.95rem;
}

/* Einsatzbilder separat */
.workshots{ margin-top: 18px; }

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

.workshot{
  background:#fff;
  border:1px solid #ececec;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 1px 2px rgba(2,8,23,.06);
}

.workshot img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

.workshot figcaption{
  padding: 12px 12px 14px;
  font-weight: 800;
  color:#334155;
}

/* Hinweis */
.tech-strip__hint{
  margin-top: 12px;
  color:#475569;
  font-weight:600;
  background:#f8fafc;
  border:1px solid #e8eef6;
  padding:12px 14px;
  border-radius:14px;
}

/* Mobile */
@media (max-width:560px){
  .tech-rail{
    grid-auto-columns: minmax(220px, 78%);
  }
  .workshots-grid{
    grid-template-columns: 1fr;
  }
  .workshot img{
    height: 210px;
  }
}

