:root {
  --bg: #0f0f0f;
  --panel: #181818;
  --panel2: #222222;
  --gold: #cc9306;
  --text: #f1f1f1;
  --muted: #b8b8b8;
  --border: #2d2d2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  min-height: 80vh;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(204, 147, 6, 0.18), transparent 35%),
    linear-gradient(180deg, #121212, #0f0f0f);
}

.logo {
  width: 96px;
  height: 96px;
  border: 4px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 58px;
  font-weight: 800;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  color: var(--gold);
  font-size: 54px;
}

.subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.6;
}

.buttons,
.download-box {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.btn.primary {
  background: var(--gold);
  color: #111111;
}

.btn.secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}

section {
  margin-bottom: 70px;
}

h2 {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 18px;
}

p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 17px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
}

.card h3 {
  margin-top: 0;
  color: var(--text);
}

.list {
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
  font-size: 17px;
}

.small {
  font-size: 14px;
  color: #999999;
  margin-top: 20px;
}

a {
  color: var(--gold);
}

footer {
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: #0b0b0b;
}

footer p {
  margin: 0;
  color: #888888;
  font-size: 14px;
}

@media (max-width: 800px) {
  h1 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 18px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
.site-logo {
  width: 160px !important;
  height: 160px !important;
  max-width: 150px !important;
  max-height: 150px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 24px auto;
}

.hero {
  min-height: 70vh;
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Pricing / Preis-Karten */
.center {
  text-align: center;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto 36px auto;
  text-align: center;
  color: var(--muted);
}

.pricing-section {
  margin-top: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: linear-gradient(180deg, #1b1b1b, #141414);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.price-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-10px);
}

.badge {
  position: absolute;
  top: -14px;
  right: 22px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-card h3 {
  margin-top: 0;
  color: var(--text);
  font-size: 24px;
}

.price-subtitle {
  min-height: 58px;
  color: var(--muted);
  font-size: 15px;
}

.price {
  margin: 24px 0;
}

.amount {
  display: block;
  color: var(--gold);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.period {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.price-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 28px;
}

.price-card li::marker {
  color: var(--gold);
}

.price-btn {
  width: 100%;
  text-align: center;
}

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

  .price-card.featured {
    transform: none;
  }

  .amount {
    font-size: 38px;
  }
}

/* Lizenz-Anfrage Formular */
.license-form-section {
  margin-top: 40px;
}

.license-form {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1b1b1b, #141414);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.license-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

.license-form input,
.license-form select,
.license-form textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 15px;
  outline: none;
}

.license-form input:focus,
.license-form select:focus,
.license-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(204, 147, 6, 0.18);
}

.license-form textarea {
  resize: vertical;
}

.form-submit {
  border: none;
  cursor: pointer;
  margin-top: 10px;
  min-width: 220px;
}

@media (max-width: 800px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .license-form {
    padding: 22px;
  }

  .form-submit {
    width: 100%;
  }
}
