:root {
  --bg-main: #05060a;
  --bg-alt: #111521;
  --accent-blue: #0066b3;
  --accent-orange: #f4a300;
  --text-light: #ffffff;
  --text-muted: #d0d4e0;
  --border-color: #2a3244;
  --danger: #ff4b4b;
  --max-width: 1080px;
  --radius: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: var(--bg-main);
  color: var(--text-light);
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
}

/* Layout */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 6, 10, 0.96);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo img {
  height: 40px;
  display: block;
  margin-left: 0.4rem;
}

/* Navigation */

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: rgba(244, 163, 0, 0.1);
}

.nav-link.active {
  background: var(--accent-blue);
}

/* Mobile Nav Toggle */

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 6px;
  padding: 0.2rem 0.5rem;
  font-size: 1.3rem;
}

/* Sections */

.section {
  padding: 4rem 0 4rem;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--text-muted);
  max-width: 760px;
  margin-bottom: 1rem;
}

/* Hero */

.hero {
  padding: 5.2rem 0 3.8rem;
  background: radial-gradient(
      circle at top left,
      rgba(0, 102, 179, 0.5),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(244, 163, 0, 0.4),
      transparent 55%
    );
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Grid */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Cards */

.card {
  background: rgba(17, 21, 33, 0.9);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.price {
  font-weight: 700;
  margin: 0.4rem 0 0.2rem;
  color: var(--accent-orange);
  font-size: 0.98rem;
}

.price-note {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.6rem 0 0;
  list-style: none;
}

.card:hover {
  border-color: rgba(244, 163, 0, 0.6); /* Orange Akzent */
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.card-outline {
  background: transparent;
  border-style: dashed;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr);
  gap: 2rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  color: #ffffff;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent-blue);
}

/* Kontaktformular */

.contact-form {
  max-width: 650px;
  margin-top: 2rem;
  background: rgba(17, 21, 33, 0.9);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-row label {
  margin-bottom: 0.3rem;
}

.form-row input,
.form-row textarea {
  padding: 0.6rem 0.7rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: #05060a;
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 1px solid var(--accent-blue);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.form-hint a {
  color: var(--accent-orange);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 1.2rem 0 1.5rem;
  background-color: #05060a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

/* Cookie Banner */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(5, 6, 10, 0.97);
  border-top: 1px solid var(--border-color);
  padding: 0.8rem 0;
  z-index: 100;
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cookie-banner.hidden {
  display: none;
}

/* Links */

a {
  color: var(--accent-blue);
}

a:hover {
  color: var(--accent-orange);
}

/* Responsive */

@media (max-width: 720px) {
  .header-inner {
    align-items: center;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    right: 1.5rem;
    top: 3.3rem;
    flex-direction: column;
    background: #05060a;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: 8px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
}
.spacer-lg {
  height: 3rem;
}
.card-outline {
  background: transparent;
  border-style: dashed;
}
.card ul {
  padding-left: 1.1rem;
  margin: 0.6rem 0 0;
  list-style: none;
}

.card ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.25rem;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
  transform: translateY(-50%);
}
