/* Grundlayout – schlicht, neutral, professionell */
:root {
  --bg: #0e0f11;
  --panel: #14161a;
  --text: #e8eaed;
  --muted: #a9b1bb;
  --brand: #ff6b35; /* Akzent bleibt zur Wiedererkennbarkeit */
  --border: #262a2f;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(14,15,17,0.65);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
nav { display:flex; align-items:center; justify-content:space-between; height:72px; gap: 16px; }
.logo { display:flex; align-items:center; gap:12px; }
.logo img { width:40px; height:40px; border-radius:6px; object-fit:cover; }
.logo h1 { font-size: 18px; font-weight: 700; color: var(--text); letter-spacing: .2px; }
.logo-link { display:flex; align-items:center; gap:12px; text-decoration:none; color: inherit; }

.nav-links { display:flex; gap:22px; list-style:none; padding:0; margin:0; }
.nav-links a { color: var(--text); text-decoration:none; font-weight:500; font-size:14px; padding:8px 0; }
.nav-links a:hover { color: var(--brand); }

.menu-toggle { display:none; width:40px; height:40px; border-radius:8px; border:1px solid var(--border); background: transparent; color: var(--text); }
.mobile-menu { display:none; position: fixed; top:72px; left:0; right:0; background: rgba(20,22,26,.98); border-bottom:1px solid var(--border); padding:8px 16px 16px; }
.mobile-menu.open { display:block; }
.mobile-menu a { display:block; color: var(--text); text-decoration:none; padding:10px 6px; border-radius:8px; }
.mobile-menu a:hover { background: #171a1f; color: var(--brand); }

/* Hero */
.hero { margin-top: 72px; padding: 0 0 64px; border-bottom: 1px solid var(--border); background: #111316 url('../../Logo_Banner/Banner-new.gif') center/contain no-repeat; min-height: 75vh; position: relative; display:flex; align-items: flex-start; justify-content: center; --hero-top: clamp(260px, 48vh, 520px); --hero-shift-x: 0px; --hero-shift-y: 0px; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(29, 57, 99, 0.55) 0%, rgba(17,19,22,0.20) 30%, rgba(14, 48, 99, 0.25) 60%, rgba(17,19,22,0.55) 100%); pointer-events: none; }
.hero .container { position: absolute; z-index: 1; left: 50%; top: var(--hero-top); transform: translate(calc(-50% + var(--hero-shift-x)), var(--hero-shift-y)); text-align: center; width: min(1000px, calc(100% - 48px)); }
.hero h2 { font-size: 42px; line-height:1.2; margin: 0 0 12px; }
.hero h2 { text-shadow: 0 2px 12px rgba(0,0,0,.45); }
.hero p { color: var(--muted); max-width: 820px; margin: 0 auto 20px; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top: 16px; }

.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding: 12px 20px; font-weight:600; font-size: 15px; border-radius: 10px; text-decoration:none; cursor:pointer; border:1px solid var(--border); color: var(--text); background: #15171b; }
.btn:hover { border-color: var(--brand); }
.btn.primary { background: var(--brand); border-color: var(--brand); color: #111; }
.btn.primary:hover { filter: brightness(1.05); }

/* Sektionen */
.section { padding: 64px 0; }
.hero-intro { padding-top: 28px; padding-bottom: 52px; border-bottom: 1px solid var(--border); }
.page-offset { padding-top: 112px; }
.sticky-spacer { height: 72px; }
.section-title { text-align:center; font-size: 28px; margin: 0 0 28px; }
.grid { display:grid; gap: 24px; }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.products-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card { background: var(--panel); border:1px solid var(--border); border-radius: 14px; padding: 22px; }
.card-narrow { max-width: 900px; margin: 0 auto; }
.card h3 { margin: 8px 0 8px; font-size: 18px; }
.card .muted { color: var(--muted); }

/* Feature-/Team-Karten – veredelt, gleicher Look */
.feature-card, .team-card { 
  background: linear-gradient(180deg, #15171b 0%, #121418 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04), 0 2px 12px rgba(0,0,0,0.18);
}
.feature-card::before, .team-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  border-top-left-radius: 14px; border-top-right-radius: 14px;
  background: linear-gradient(90deg, rgba(255,107,53,.0) 0%, var(--brand) 18%, var(--brand) 82%, rgba(255,107,53,.0) 100%);
  opacity: .9;
}
.feature-card:hover, .team-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 6px 22px rgba(0,0,0,0.28);
}
.feature-card h3 { font-size: 18px; margin: 6px 0 10px; letter-spacing: .2px; }
.feature-card p { color: var(--muted); margin: 0; font-size: 14px; }


.product-card { overflow:hidden; display:flex; flex-direction:column; }
.product-image { position: relative; height: 180px; background: #191c21; display:flex; align-items:center; justify-content:center; font-size: 28px; border-radius: 12px; border:1px solid var(--border); overflow:hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02); }
.product-image .media { position: relative; width:100%; height:100%; }
.product-image .media .bg { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; filter: blur(12px) brightness(0.6); transform: scale(1.08); }
.product-image .media .fg { position:relative; width:100%; height:100%; object-fit: contain; z-index:1; }
.product-info { padding: 18px 22px; }
.product-title { font-size: 18px; margin-bottom: 6px; }
.product-price { font-size: 20px; font-weight: 700; color: var(--brand); margin-bottom: 10px; }
.product-description { color: var(--muted); margin-bottom: 14px; font-size: 14px; }
.buy-button { width:100%; }

.tabs { display:flex; gap:10px; justify-content:center; flex-wrap:wrap; margin: 0 0 18px; }
.tab-btn { background: #15171b; color: var(--text); border:1px solid var(--border); border-radius: 999px; padding: 10px 16px; cursor:pointer; font-weight:500; }
.tab-btn.active { background: var(--brand); color: #111; border-color: var(--brand); }
.tab-content { display:none; }
.tab-content.active { display:block; }

/* Team */
.team-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.team-card { display:flex; flex-direction:column; align-items:flex-start; gap:8px; }
.team-card .avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: radial-gradient(100% 100% at 50% 0%, #1f232a 0%, #171a20 100%);
  border: 1px solid var(--border);
  font-weight: 700; color: var(--text);
}
.team-card .name { margin: 6px 0 0; font-size: 18px; }
.team-card .role { margin: 0; font-weight: 600; color: var(--brand); font-size: 14px; }
.team-card .bio { margin: 6px 0 0; font-size: 14px; }
.team-card .links { display:flex; gap:10px; margin-top: 8px; }
.team-card .links a { text-decoration:none; color: var(--muted); font-size: 18px; }
.team-card .links a:hover { color: var(--text); }

/* Formulare */
.form { max-width: 800px; margin: 0 auto; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap: 16px; }
.form-group { display:block; margin-bottom: 14px; }
.form-group label { display:block; font-weight:600; margin-bottom:6px; color: var(--text); font-size: 14px; }
input, select, textarea { width:100%; padding:12px; border:1px solid var(--border); border-radius: 10px; background:#111316; color: var(--text); font-size: 14px; }
textarea { min-height: 120px; resize: vertical; }

/* Footer */
footer { border-top: 1px solid var(--border); background: #0f1013; }
.footer-top { padding: 48px 0 28px; }
.footer-content { display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-section h3 { margin: 0 0 12px; font-size: 16px; }
.footer-section p, .footer-section a { color: var(--muted); text-decoration:none; font-size: 14px; margin: 4px 0; }
.footer-section a:hover { color: var(--text); }
.footer-logo { display:flex; align-items:center; gap:12px; margin-bottom: 10px; }
.footer-logo img { width:44px; height:44px; border-radius: 8px; }
.footer-bottom { padding: 18px 0; border-top:1px solid var(--border); }
.footer-bottom-content { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.footer-links { display:flex; gap: 18px; flex-wrap:wrap; }
.footer-links a { color: var(--muted); text-decoration:none; font-size: 13px; }
.footer-links a:hover { color: var(--text); }
/* Footer credit */
.footer-credit a { color: var(--muted); text-decoration: none; }
.footer-credit a:hover { color: var(--text); }

/* Kontaktliste im Footer */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.contact-item { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 8px; }
.contact-item .icon { width: 20px; text-align: center; opacity: .9; }
.contact-item a { color: var(--muted); text-decoration: none; }
.contact-item a:hover { color: var(--text); }

/* Responsiv */
@media (max-width: 900px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display:none; }
  .menu-toggle { display:inline-flex; align-items:center; justify-content:center; }
  .hero h2 { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .hero { --hero-top: clamp(160px, 36vh, 340px); }
}

/* Modal / Checkout */
.modal { display:none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); }
.modal-content { background: var(--panel); border:1px solid var(--border); border-radius: 14px; width: 92%; max-width: 600px; margin: 5% auto; padding: 22px; position: relative; }
.modal h2 { margin: 0 0 10px; font-size: 20px; }
.close { position: absolute; right: 14px; top: 10px; cursor: pointer; font-size: 22px; color: var(--muted); }
.close:hover { color: var(--text); }
.payment-options { display:grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 10px; }
.payment-option { border:1px solid var(--border); background:#111316; border-radius: 12px; padding: 16px; text-align:center; cursor:pointer; }
.payment-option.selected, .payment-option:hover { border-color: var(--brand); }
.payment-option .icon { font-size: 20px; margin-bottom: 6px; }

/* Utilities */
.btn-block { width: 100%; }
.center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.text-muted { color: var(--muted); }
.text-secondary { color: var(--muted); }
.section-accent { color: var(--brand); }
