/* Google Fonts für eckige Headlines */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Rajdhani:wght@700&display=swap');

/* Farbpalette nach Screenshot */
:root {
  --bg: #0a0a0a;
  --bg-alt: #16181c;
  --text: #e6e6e6;
  --accent: #00e0ff;
  --accent-hover: #00b8cc;
  --accent-glow: 0 0 16px #00e0ff, 0 0 32px #00e0ff88;
  --accent-gradient: linear-gradient(90deg, #00e0ff 0%, #a259ff 100%);
  --border: #23272f;
  --radius: 14px;
  --shadow: 0 2px 12px 0 #000a;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Rajdhani', 'Orbitron', 'Segoe UI', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--accent, #00e0ff) #181b20;
}

body::-webkit-scrollbar, html::-webkit-scrollbar,
.reviews-slider::-webkit-scrollbar,
.products-main-grid::-webkit-scrollbar,
.products-small-grid::-webkit-scrollbar {
  width: 10px;
  background: #181b20;
}
body::-webkit-scrollbar-thumb, html::-webkit-scrollbar-thumb,
.reviews-slider::-webkit-scrollbar-thumb,
.products-main-grid::-webkit-scrollbar-thumb,
.products-small-grid::-webkit-scrollbar-thumb {
  background: var(--accent, #00e0ff);
  border-radius: 8px;
  border: 2px solid #181b20;
  transition: background 0.2s;
}
body::-webkit-scrollbar-thumb:hover, html::-webkit-scrollbar-thumb:hover,
.reviews-slider::-webkit-scrollbar-thumb:hover,
.products-main-grid::-webkit-scrollbar-thumb:hover,
.products-small-grid::-webkit-scrollbar-thumb:hover {
  background: var(--accent-hover, #00b8cc);
}

body::before {
  display: none;
}

header, footer {
  width: 100%;
  z-index: 2;
  position: relative;
}

/* Animierter Hintergrund */
.animated-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.animated-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: floatGlow 12s ease-in-out infinite alternate;
  z-index: 2;
}
.animated-bg .glow1 {
  width: 420px; height: 420px;
  background: var(--accent, #00e0ff);
  left: 5vw; top: 10vh;
  animation-delay: 0s;
}
.animated-bg .glow2 {
  width: 340px; height: 340px;
  background: var(--accent, #a259ff);
  right: 8vw; top: 40vh;
  animation-delay: 2s;
}
.animated-bg .glow3 {
  width: 260px; height: 260px;
  background: var(--accent, #00ff94);
  left: 40vw; bottom: 8vh;
  animation-delay: 4s;
}
@keyframes floatGlow {
  0% { transform: translateY(0) scale(1);}
  100% { transform: translateY(-40px) scale(1.08);}
}

/* Animierte Fade-In Bereiche */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.1s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Navbar */
.navbar {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  user-select: none;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: color 0.18s;
}
.logo:hover {
  color: var(--accent-hover);
}

.accent-glow {
  color: var(--accent);
  text-shadow: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0.4em 1em;
  border-radius: var(--radius);
  transition: background 0.18s, color 0.18s;
  text-transform: uppercase;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
  background: #181b20;
}


/* Farbwahl-Button modern (Dropdown) */
.color-switcher-wrap {
  position: relative;
  margin-left: 1.2rem;
  z-index: 100;
  margin-top: -8px; /* Button etwas höher */
}
.color-switcher-btn {
  background: #181b20;
  border: 2px solid var(--accent, #00e0ff);
  color: var(--accent, #00e0ff);
  border-radius: 12px;
  padding: 0.4em 0.7em 0.4em 0.7em; /* weniger horizontaler Platz */
  font-size: 1.1rem;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  position: relative;
  min-width: 0;
}
.color-switcher-btn:hover,
.color-switcher-btn.active {
  background: var(--accent, #00e0ff);
  color: #181b20;
  border-color: var(--accent-hover, #00b8cc);
}
.color-switcher-btn .color-switcher-dot {
  width: 1.3em;
  height: 1.3em;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0;
  border: 2px solid #fff2;
  box-shadow: 0 0 0 2px #0004;
}
.color-switcher-btn .color-switcher-label {
  display: none; /* Name ausblenden */
}
.color-switcher-arrow {
  display: none !important;
}
.color-switcher-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 120%;
  min-width: 170px;
  background: #181b20;
  border: 2px solid var(--accent, #00e0ff);
  border-radius: 14px;
  box-shadow: 0 8px 32px #000a;
  z-index: 1000;
  padding: 0.7em 0;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  margin-top: 0.3em;
}
.color-switcher-dropdown.open {
  display: block;
}
.color-switcher-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.color-switcher-dropdown-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.6em 1.2em;
  cursor: pointer;
  color: #e6e6e6;
  font-size: 1.08rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  font-weight: 700;
}
.color-switcher-dropdown-list li.selected,
.color-switcher-dropdown-list li:hover {
  background: var(--accent, #00e0ff);
  color: #181b20;
}
.color-switcher-dropdown-dot {
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.7em;
  border: 2px solid #fff2;
  box-shadow: 0 0 0 2px #0004;
}
.color-switcher-arrow {
  margin-left: 0.2em;
  color: var(--accent);
  font-size: 1.1em;
  pointer-events: none;
  transition: transform 0.18s;
}
.color-switcher-btn.active .color-switcher-arrow {
  transform: rotate(180deg);
}

/* Verstecke das alte Select */
#color-switcher-combo {
  display: none !important;
}

/* Navbar Icon Buttons */
.navbar-icons {
  display: flex;
  align-items: center;
  gap: 0.7em;
  margin-left: 1.2em;
}

.navbar-icon-btn {
  background: none;
  border: 2px solid var(--accent, #00e0ff);
  color: var(--accent, #00e0ff);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  margin: 0;
  position: relative;
}
.navbar-icon-btn:hover,
.navbar-icon-btn.active {
  background: var(--accent, #00e0ff);
  color: #181b20;
  border-color: var(--accent-hover, #00b8cc);
}

/* Currency Dropdown */
.currency-dropdown-wrap {
  position: relative;
  margin-left: 1.2em;
}
.currency-btn {
  background: none;
  border: 2px solid var(--accent, #00e0ff);
  color: var(--accent, #00e0ff);
  border-radius: 999px;
  padding: 0.3em 1.2em 0.3em 0.9em;
  font-size: 1.1rem;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.7em;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  position: relative;
}
.currency-btn:hover,
.currency-btn.active {
  background: var(--accent, #00e0ff);
  color: #181b20;
  border-color: var(--accent-hover, #00b8cc);
}
.currency-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 120%;
  min-width: 210px;
  background: #181b20;
  border: 2px solid var(--accent, #00e0ff);
  border-radius: 12px;
  box-shadow: 0 8px 32px #00e0ff22;
  z-index: 100;
  padding: 0.7em 0;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
}
.currency-dropdown.open {
  display: block;
}
.currency-dropdown-title {
  color: #b6c2d1;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0.7em 1.2em 0.5em 1.2em;
  border-bottom: 1px solid #23272f;
  margin-bottom: 0.5em;
}
.currency-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 220px;
  overflow-y: auto;
}
.currency-list li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.6em 1.2em;
  cursor: pointer;
  color: #e6e6e6;
  font-size: 1.08rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.currency-list li.selected,
.currency-list li:hover {
  background: var(--accent, #00e0ff);
  color: #181b20;
}
.currency-list .currency-symbol {
  font-size: 1.15em;
  width: 1.7em;
  text-align: center;
}
.currency-list .currency-default {
  margin-left: auto;
  font-size: 0.98em;
  color: #ff2d2d;
  font-weight: 700;
}

/* Warenkorb Badge */
.navbar-cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  background: #ff2d2d;
  color: #fff;
  font-size: 0.93em;
  font-weight: 900;
  border-radius: 50%;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #181b20;
  z-index: 2;
  pointer-events: none;
}

main {
  flex: 1 1 auto;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 2rem 1.2rem;
  position: relative;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.2rem 2rem 1.2rem;
  width: 100%;
}

section {
  margin-bottom: 3.5rem;
}

.hero {
  text-align: center;
  margin: 0 0 3rem 0;
  position: relative;
  z-index: 2;
  padding-top: 2.5rem;
}

.hero-card {
  max-width: 1050px;
  min-width: 420px;
  margin: 3.5rem auto 2.5rem auto;
  background: var(--bg-alt);
  border-radius: 32px;
  box-shadow: 0 8px 48px 0 #000a, 0 2px 24px 0 var(--accent, #00e0ff)22;
  padding: 2.5rem 3.5rem 2.2rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2.5px solid var(--accent, #00e0ff);
  position: relative;
  z-index: 1;
  font-size: 1.18rem;
  line-height: 1.8;
}

.hero-about {
  margin-bottom: 1.5rem;
}

.hero-stats-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 2.2rem;
  margin-top: 1.5rem;
  width: 100%;
  flex-wrap: nowrap;
}

.hero-stat-card {
  background: rgba(20, 24, 40, 0.92);
  border: none;
  border-radius: 16px;
  min-width: 150px;
  max-width: 180px;
  padding: 1.2rem 1.2rem;
  text-align: center;
  box-shadow: 0 2px 16px var(--accent, #00e0ff)22;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
}

.hero-stat-value {
  font-size: 1.45rem;
}

.hero-stat-label {
  font-size: 1.13rem;
}

/* Hero Gradient Background */
.hero-gradient {
  background: linear-gradient(120deg, #1a237e 0%, #1e2746 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: var(--shadow);
  padding-bottom: 3.5rem;
  border: none;
}

/* Hero Badge */
.hero-badge {
  display: inline-block;
  background: var(--accent, #00e0ff);
  color: #111;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.4em 1.4em;
  margin-bottom: 2.2rem;
  letter-spacing: 0.5px;
  border: none;
}

.hero-title {
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  line-height: 1.1;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.hero-title-main {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.hero-title-gradient {
  background: var(--accent-gradient, linear-gradient(90deg, #00e0ff 0%, #a259ff 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.hero-sub {
  color: #b6c2d1;
  font-size: 1.25rem;
  margin: 0 auto 2.2rem auto;
  max-width: 600px;
  line-height: 1.8;
  text-align: center;
}

.hero-link {
  color: #00e0ff;
  font-weight: 700;
  text-decoration: underline;
  background: none;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
}

.hero-highlight {
  color: #00ff94;
  font-weight: 900;
  font-size: 1.1em;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.btn.hero-btn-primary {
  background: var(--accent, #00e0ff);
  color: #181b20;
  border: none;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 1em 2.2em;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--accent, #00e0ff)33;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn.hero-btn-primary:hover {
  background: var(--accent-hover, #00b8cc);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent, #00e0ff)55;
}

.btn.hero-btn-secondary {
  background: none;
  color: var(--accent, #00e0ff);
  border: 1.5px solid var(--accent, #00e0ff);
  font-weight: 700;
  font-size: 1.13rem;
  padding: 1em 2.2em;
  border-radius: 14px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn.hero-btn-secondary:hover {
  background: var(--accent, #00e0ff);
  color: #181b20;
  border-color: var(--accent-hover, #00b8cc);
}

@media (max-width: 1100px) {
  .hero-card {
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    max-width: 98vw;
  }
  .hero-stats-row {
    gap: 1.2rem;
  }
  .hero-stat-card {
    min-width: 120px;
    max-width: 160px;
    padding: 1rem 0.7rem;
  }
}
@media (max-width: 700px) {
  .hero-card {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    min-width: 0;
  }
  .hero-stats-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: stretch;
  }
  .hero-stat-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* Better Warzone Audio Promo */
.bwa-promo-section {
  background: linear-gradient(120deg,#181b20 60%,#1a1a1a 100%);
  border-radius: 22px;
  box-shadow: 0 4px 32px #ff2d2d22, 0 2px 24px #00e0ff22;
  padding: 3.2rem 2.5rem 2.5rem 2.5rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.bwa-promo-section .bwa-promo-content {
  position: relative;
  z-index: 2;
}
.bwa-promo-section h2 {
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
}
.bwa-promo-section ul {
  margin: 0 0 1.2em 1.2em;
  padding-left: 1.2em;
}
.bwa-promo-section a.btn.hero-btn-primary {
  background: #ff2d2d;
  color: #fff;
  border: none;
}
.bwa-promo-section a.btn.hero-btn-primary:hover {
  background: #ff4d4d;
  color: #fff;
}
.bwa-promo-section a.btn.hero-btn-secondary {
  border-color: #ff2d2d;
  color: #ff2d2d;
}
.bwa-promo-section a.btn.hero-btn-secondary:hover {
  background: #ff2d2d;
  color: #fff;
  border-color: #ff2d2d;
}
@media (max-width: 900px) {
  .bwa-promo-section {
    padding: 2rem 0.5rem 2rem 0.5rem;
  }
  .bwa-promo-section .bwa-promo-content {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Inputs & Textareas */
input[type="text"],
input[type="email"],
textarea {
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7em 1em;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.18s, background 0.18s;
  margin-bottom: 1rem;
  outline: none;
  box-shadow: none;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--accent);
  background: #181b20;
}

/* Label */
label {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.2em;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  letter-spacing: 1px;
  display: block;
}

/* Performance Boost kompakter */
.perfboost-section {
  margin: 4rem auto 4rem auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.perfboost-title {
  font-size: 2.3rem;
  color: #ff6f91;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  margin-bottom: 2.5rem;
  letter-spacing: 1.5px;
  text-shadow: 0 0 24px #ff6f9188;
}
.perfboost-card {
  background: #18181f;
  border: 1.5px solid #ff6f91;
  border-radius: 22px;
  box-shadow: 0 0 32px 0 #ff6f9140, 0 2px 24px 0 #00e0ff22;
  max-width: 700px;
  margin: 0 auto;
  padding: 2.2rem 2.5rem 2.2rem 2.5rem;
  position: relative;
  overflow: visible;
}
.perfboost-badge {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: -1.3em;
  transform: translateX(-50%);
  background: #ff3860;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 16px;
  padding: 0.45em 1.5em;
  border: none;
  box-shadow: 0 0 24px #ff386088;
  letter-spacing: 1px;
  z-index: 2;
}
.perfboost-row {
  margin-top: 2.2rem;
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.perfboost-label.before {
  color: #ff6f91;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  min-width: 180px;
  text-align: left;
}
.perfboost-label.after {
  color: #00ff94;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  min-width: 180px;
  text-align: left;
}
.perfboost-bar-wrap {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.perfboost-bar {
  flex: 1 1 auto;
  height: 10px;
  background: #23232b;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid #232d4d;
  box-shadow: 0 0 12px #0008;
}
.perfboost-bar-inner.before,
.perfboost-bar-inner.after {
  display: block;
  height: 100%;
  min-width: 8px;
  width: 0;
  border-radius: 6px;
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
}
.perfboost-fps.before {
  color: #ff3860;
  font-size: 1.35rem;
  font-weight: 900;
  min-width: 110px;
  text-align: right;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #ff386088;
}
.perfboost-fps.after {
  color: #00ff94;
  font-size: 1.35rem;
  font-weight: 900;
  min-width: 110px;
  text-align: right;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #00ff9488;
}

/* Projekte-Showcase */
.projects-showcase {
  margin: 5rem auto 4rem auto;
  max-width: 1200px;
  text-align: center;
}
.projects-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin: 2.5rem 0 2.5rem 0;
}
.project-showcase-card {
  background: var(--bg-alt);
  border: 2px solid var(--accent, #00e0ff);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 var(--accent, #00e0ff)22;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.project-showcase-card:hover {
  border-color: var(--accent-hover, #00b8cc);
  box-shadow: 0 6px 32px 0 var(--accent, #00e0ff)33;
  transform: translateY(-4px) scale(1.03);
}
.project-icon {
  font-size: 2.7rem;
  margin-bottom: 1.1rem;
}
.project-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent, #00e0ff);
  margin-bottom: 0.7rem;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
}
.project-desc {
  color: #b6c2d1;
  font-size: 1.13rem;
  line-height: 1.7;
}

/* Warum Raspyy */
.why-raspyy-section {
  margin: 4rem auto 4rem auto;
  max-width: 1200px;
  text-align: center;
}
.why-raspyy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.2rem;
  margin: 2.2rem 0 2.2rem 0;
}
.why-card {
  background: var(--bg-alt);
  border: 2px solid var(--accent, #00e0ff);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--accent, #00e0ff)22;
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.why-card:hover {
  border-color: var(--accent-hover, #00b8cc);
  box-shadow: 0 6px 24px 0 var(--accent, #00e0ff)33;
  transform: translateY(-3px) scale(1.02);
}
.why-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}
.why-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--accent, #00e0ff);
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
}
.why-desc {
  color: #b6c2d1;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Ablauf/Timeline */
.ablauf-section {
  margin: 4rem auto 4rem auto;
  max-width: 1100px;
  text-align: center;
}
.ablauf-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem 0 2.5rem 0;
}
.ablauf-step {
  background: var(--bg-alt);
  border: 2px solid var(--accent, #00e0ff);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 var(--accent, #00e0ff)22;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.ablauf-step:hover {
  border-color: var(--accent-hover, #00b8cc);
  box-shadow: 0 6px 24px 0 var(--accent, #00e0ff)33;
  transform: translateY(-3px) scale(1.02);
}
.ablauf-step-icon {
  width: 48px;
  height: 48px;
  background: var(--accent, #00e0ff);
  color: #181b20;
  border-radius: 50%;
  font-size: 1.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 18px var(--accent, #00e0ff)44;
}
.ablauf-step-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--accent, #00e0ff);
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
}
.ablauf-step-desc {
  color: #b6c2d1;
  font-size: 1.08rem;
  line-height: 1.7;
}

/* Call-to-Action Bereich */
.cta-section {
  margin: 5rem auto 4rem auto;
  text-align: center;
  max-width: 700px;
}
.cta-desc {
  font-size: 1.18rem;
  color: #b6c2d1;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

/* Reviews Slider */
.reviews-section {
  margin: 3.5rem auto 3.5rem auto;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
}
.reviews-title {
  font-size: 2.2rem;
  color: var(--accent);
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  margin-bottom: 0.5rem;
}
.reviews-sub {
  color: #b6c2d1;
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
}
.reviews-slider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.reviews-arrow {
  background: var(--bg-alt);
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}
.reviews-arrow:hover {
  background: var(--accent);
  color: #111;
  border-color: var(--accent-hover);
}
.reviews-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  scroll-behavior: smooth;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  scrollbar-width: thin;
  scrollbar-color: #232d4d #181b20;
}
.reviews-slider::-webkit-scrollbar {
  height: 8px;
  background: #181b20;
}
.reviews-slider::-webkit-scrollbar-thumb {
  background: #232d4d;
  border-radius: 8px;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-width: 300px;
  max-width: 300px;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.18s, background 0.18s;
  position: relative;
  font-size: 1.13rem;
  box-shadow: none;
}
.review-stars {
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 0.7em;
  letter-spacing: 0.12em;
}
.review-text {
  color: var(--text);
  font-size: 1.13rem;
  margin-bottom: 1em;
  font-style: italic;
  line-height: 1.7;
}
.review-user {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}
.review-role {
  color: #b6c2d1;
  font-size: 0.95em;
  font-weight: 400;
  margin-left: 0.5em;
}
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.7em;
  margin-top: 1.5em;
}
.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #23272f;
  border: 1px solid var(--accent);
  transition: background 0.18s, border-color 0.18s;
  cursor: pointer;
}
.reviews-dot.active {
  background: var(--accent);
  border-color: #fff;
}

@media (max-width: 1100px) {
  .reviews-slider-wrap { max-width: 100%; }
  .review-card { min-width: 220px; max-width: 220px; }
  .reviews-slider { gap: 1rem; }
}
@media (max-width: 700px) {
  .reviews-slider-wrap { gap: 0.5rem; }
  .review-card { min-width: 90vw; max-width: 90vw; }
  .reviews-slider { gap: 0.5rem; }
}

/* Leistungen, Projekte, Downloads Cards */
.leistungen-list, .downloads-list, .projekte-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-bottom: 2rem;
}
.leistung, .download-item, .projekt-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 1.2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 180px;
  justify-content: flex-start;
  transition: border-color 0.18s, background 0.18s;
  position: relative;
  font-size: 1.18rem;
  line-height: 1.8;
}
.leistung h2, .download-item h2, .projekt-card h2 {
  font-size: 1.45rem;
  color: var(--accent);
  margin-bottom: 0.7em;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}
.leistung p, .download-item p, .projekt-card p {
  color: #b6c2d1;
  font-size: 1.18rem;
  margin-bottom: 1.2em;
  line-height: 1.8;
}
.leistung ul, .download-item ul, .projekt-card ul {
  font-size: 1.13rem;
  line-height: 1.8;
  margin-bottom: 1.2em;
}

.leistung .btn, .download-item .btn, .projekt-card .btn {
  margin-top: auto;
  align-self: flex-end;
}

.products-section {
  margin-top: 5.5rem;
  margin-bottom: 5.5rem;
}
.products-title {
  text-align: center;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-size: 2.3rem;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 2.8rem;
}
.products-title-small {
  text-align: center;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-size: 1.45rem;
  color: var(--accent);
  margin: 4.2rem 0 2.2rem 0;
  letter-spacing: 1px;
}

.products-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 2.8rem;
  max-width: 1400px;
  margin: 0 auto 0 auto;
  padding: 0 2vw;
  justify-content: center;
}

.products-small-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem 2.8rem; /* noch mehr Abstand zwischen den Karten */
  max-width: 1800px;
  margin: 3.5rem auto 0 auto;
  padding: 0 1vw 3.5rem 1vw; /* unten mehr padding */
  justify-content: center;
  align-items: stretch;
}

/* Abstand zwischen den Karten unten erhöhen */
.products-small-grid .product-card-small {
  margin-bottom: 0;
}

/* Hauptproduktkarte: noch breiter, weniger hoch */
.product-card-main {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  min-width: 340px;
  width: 100%;
  min-height: 340px;
  margin: 0 auto;
  border: 2.5px solid var(--accent, #00e0ff);
  background: var(--bg-alt);
  border-radius: 22px;
  box-shadow: 0 4px 32px 0 var(--accent, #00e0ff)11;
  align-items: stretch;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  position: relative;
  font-size: 1.13rem;
  line-height: 1.7;
}

.product-card-main:hover {
  border-color: var(--accent-hover, #00b8cc);
  box-shadow: 0 8px 40px 0 var(--accent, #00e0ff)33;
  transform: translateY(-4px) scale(1.025);
}

.product-card-main .product-img {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 210px;
  max-height: 210px;
  background: #181b20;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
  padding: 0; /* entfernt das Padding */
}

.product-card-main .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bild füllt den Bereich */
  object-position: center;
  display: block;
  border-radius: 0;
  max-width: 100%;
  max-height: 100%;
}

.product-card-main .product-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.2rem 1.5rem 1.1rem 1.5rem;
  gap: 0.7rem;
  height: 100%;
  font-size: 1.13rem;
  line-height: 1.7;
}

/* Kleine Produktkarte: noch breiter, weniger hoch */
.product-card-small {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  min-width: 280px;
  width: 100%;
  min-height: 220px;
  margin: 0 auto;
  border: 1.5px solid var(--accent, #00e0ff);
  background: var(--bg-alt);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 var(--accent, #00e0ff)11;
  align-items: stretch;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  position: relative;
  font-size: 1.08rem;
  line-height: 1.6;
}

.product-card-small:hover {
  border-color: var(--accent-hover, #00b8cc);
  box-shadow: 0 6px 24px 0 var(--accent, #00e0ff)22;
  transform: translateY(-3px) scale(1.02);
}

.product-card-small .product-img {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 150px;
  max-height: 150px;
  background: #181b20;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  overflow: hidden;
  padding: 0; /* entfernt das Padding */
}

.product-card-small .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Bild füllt den Bereich */
  object-position: center;
  display: block;
  border-radius: 0;
  max-width: 100%;
  max-height: 100%;
}

.product-card-small .product-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem 1.2rem 1rem 1.2rem;
  gap: 0.5rem;
  height: 100%;
  font-size: 1.08rem;
  line-height: 1.5;
  overflow: hidden;
}

/* Abstand zwischen den Karten unten erhöhen */
.products-small-grid .product-card-small {
  margin-bottom: 0.7rem;
}

/* Text in Karten kompakter */
.product-card-main .product-content ul,
.product-card-small .product-content ul {
  font-size: 0.98em;
  line-height: 1.4;
  margin-bottom: 0.5em;
  margin-top: 0.2em;
  padding-left: 1.1em;
}
.product-card-main .product-content p,
.product-card-small .product-content p {
  margin-bottom: 0.3em;
  font-size: 1em;
  line-height: 1.4;
}

/* Responsive: auf Mobil untereinander */
@media (max-width: 1100px) {
  .products-main-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    gap: 1.5rem;
  }
  .product-card-main,
  .product-card-small {
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
  }
  .product-card-main .product-img {
    height: 110px;
    max-height: 110px;
  }
  .product-card-small .product-img {
    height: 80px;
    max-height: 80px;
  }
  .product-card-main .product-content,
  .product-card-small .product-content {
    padding: 1rem 1rem 1rem 1rem;
  }
}

@media (max-width: 1400px) {
  .products-small-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 2.2rem 1.2rem;
  }
}
@media (max-width: 900px) {
  .products-small-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    gap: 1.5rem 0.7rem;
  }
  .product-card-main .product-img {
    height: 110px;
    max-height: 110px;
  }
  .product-card-small .product-img {
    height: 80px;
    max-height: 80px;
  }
}

.page-header, .perfboost-title, .products-title, .reviews-title, .services-preview h2 {
  text-align: center;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-size: 2.2rem;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.leistungen-list, .downloads-list, .referenzen-list, .faq-list, .products-grid, .services-grid, .projekte-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-bottom: 2rem;
}

.leistung, .download-item, .referenz-card, .projekt-card, .faq-item, .product-card, .service-card, .kontakt-formular, .review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.2rem;
  transition: border-color 0.18s, background 0.18s;
  position: relative;
}

.leistung:hover, .download-item:hover, .referenz-card:hover, .projekt-card:hover, .faq-item:hover, .product-card:hover, .service-card:hover, .kontakt-formular:hover, .review-card:hover {
  border-color: var(--accent);
  background: #181b20;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: border-color 0.18s, background 0.18s;
  overflow: hidden;
}

.faq-item.open {
  border-color: var(--accent);
  background: #181b20;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 1.3em 1.5em;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 1px;
  position: relative;
}

.faq-question::after {
  content: "+";
  float: right;
  font-size: 1.2em;
  color: var(--accent);
  transition: transform 0.18s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: var(--bg-alt);
  color: var(--text);
  padding: 0 1.2em;
  transition: max-height 0.3s cubic-bezier(.4,0,.2,1), padding 0.18s;
  font-size: 1.13rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 1.1em 1.5em;
}

/* Kontakt-Hinweis */
.kontakt-hinweis {
  margin-top: 1.2rem;
  text-align: center;
  color: #b6c2d1;
}

.kontakt-hinweis a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 700;
}

.kontakt-hinweis a:hover {
  color: var(--accent-hover);
}

.btn, .accent-btn, .product-btn {
  display: inline-block;
  background: var(--accent);
  color: #111;
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 1em 2.2em;
  font-size: 1.13rem;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  margin-top: 1rem;
  box-shadow: none;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover, .accent-btn:hover, .product-btn:hover {
  background: var(--accent-hover);
  color: #fff;
  border-color: var(--accent-hover);
}

/* Moderner Footer wie Screenshot */
.footer-modern {
  background: radial-gradient(ellipse at 50% 0%, #16181c 60%, #0a0a0a 100%);
  border-top: 1px solid #181b20;
  padding: 3.5rem 0 0 0;
  margin-top: 4rem;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  color: #b6c2d1;
  box-shadow: none;
  position: relative;
}

.footer-main {
  display: flex;
  justify-content: center;
  gap: 4.5rem;
  max-width: 1400px;
  margin: 0 auto 2.5rem auto;
  flex-wrap: wrap;
  font-size: 1.13rem;
  align-items: flex-start;
}

.footer-col {
  min-width: 180px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.13rem;
  margin-bottom: 2.5rem;
}

.footer-col-title {
  font-size: 1.22rem;
  font-weight: 900;
  margin-bottom: 1.2em;
  color: #fff;
  letter-spacing: 1.5px;
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.7em;
}
.footer-col ul li a {
  color: #b6c2d1;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.18s;
}
.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-connect .footer-socials {
  display: flex;
  gap: 1.1em;
  margin-bottom: 1.5em;
  justify-content: flex-start;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  border: 1.5px solid #b6c2d1;
  box-shadow: none;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  font-size: 1.25rem;
}
.footer-social-icon:hover {
  background: #181b20;
  color: var(--accent);
  border-color: var(--accent);
}

.footer-community-btn {
  display: inline-block;
  background: #1a0a0a;
  color: #ff2d2d;
  border: 1.5px solid #ff2d2d;
  border-radius: 999px;
  padding: 0.45em 1.5em;
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 0.7em;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  box-shadow: 0 0 12px #ff2d2d22;
}
.footer-community-btn:hover {
  background: #ff2d2d;
  color: #fff;
  border-color: #ff2d2d;
}

.footer-bottom-center {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.7rem 4vw 1.2rem 4vw;
  border-top: 1px solid #181b20;
  font-size: 1.08rem;
  color: #b6c2d1;
  gap: 0.5em;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Orbitron', 'Rajdhani', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 0.1em;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.footer-logo .footer-logo-accent {
  color: #ff2d2d;
  letter-spacing: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5em;
  margin-bottom: 0.1em;
}
.footer-bottom-links a {
  color: #b6c2d1;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.18s;
}
.footer-bottom-links a:hover {
  color: var(--accent);
}

.footer-bottom-center .footer-copyright {
  color: #b6c2d1;
  font-size: 0.97rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 0.1em;
  text-align: right;
}

@media (max-width: 1100px) {
  .footer-main { gap: 2.2rem; }
  .footer-bottom-center { flex-direction: column; align-items: flex-start; gap: 0.7em; padding: 1.2rem 2vw 1rem 2vw; }
}
@media (max-width: 700px) {
  .footer-main { flex-direction: column; gap: 1.5rem; align-items: flex-start; padding-left: 2rem; }
  .footer-bottom-center { flex-direction: column; align-items: flex-start; gap: 0.7em; padding: 1.2rem 2vw 1rem 2vw; }
}
