: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%;
  }
}
/* Goldener Hover-Rahmen für Paket-Karten */
.price-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.price-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(204, 147, 6, 0.35),
              0 18px 45px rgba(204, 147, 6, 0.18);
  transform: translateY(-6px);
}

.price-card.featured:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(204, 147, 6, 0.45),
              0 22px 55px rgba(204, 147, 6, 0.22);
  transform: translateY(-14px);
}
/* Pakete auf gleicher Höhe */
.price-card.featured {
  transform: none !important;
}

.price-card:hover {
  transform: translateY(-6px);
}

.price-card.featured:hover {
  transform: translateY(-6px) !important;
}

/* Klickbare Begriffe oben */
.term-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.term-links a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.term-links a:hover {
  border-color: var(--gold);
  color: #f0c15a;
}

/* Kleinere Hero-Sektion für Unterseiten */
.small-hero {
  min-height: 55vh;
}

/* Fragen-Liste */
.question-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 850px;
  margin-top: 24px;
}

.question-list a {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.question-list a:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 2px rgba(204, 147, 6, 0.25),
              0 14px 35px rgba(204, 147, 6, 0.14);
  transform: translateY(-3px);
}

.pricing-section {
  padding: 80px 20px;
}

.section-kicker {
  color: #cc9306;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section-text {
  color: #cfcfcf;
  max-width: 760px;
  margin-bottom: 30px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.package-card {
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: all 0.25s ease;
}

.package-card:hover {
  border-color: #cc9306;
  box-shadow: 0 0 0 1px rgba(204, 147, 6, 0.35);
  transform: translateY(-3px);
}

.package-top {
  margin-bottom: 18px;
}

.package-label {
  color: #cc9306;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  font-weight: 700;
}

.package-card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  color: #ffffff;
}

.package-computers {
  color: #e0e0e0;
  font-weight: 600;
  margin: 0;
}

.package-details {
  color: #d6d6d6;
  line-height: 1.6;
  margin-bottom: 24px;
}

.package-details p {
  margin: 0 0 10px;
}

.package-card .btn {
  margin-top: auto;
  text-align: center;
}

.premium-note {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(204, 147, 6, 0.35);
  border-radius: 14px;
  background: rgba(204, 147, 6, 0.06);
  color: #d9d9d9;
}

@media (max-width: 1100px) {
  .packages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

/* SOFBAC Footer */
.site-footer {
  margin-top: 90px;
  padding: 0 20px 34px;
}

.footer-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #050505;
  border: 1px solid rgba(204,147,6,0.35);
  border-radius: 24px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 34px;
  box-shadow: 0 0 0 1px rgba(204,147,6,0.05) inset;
}

.footer-col h4,
.footer-brand h3 {
  color: #ffffff;
  margin: 0 0 18px;
}

.footer-brand h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-top: 18px;
}

.footer-brand p,
.footer-meta,
.footer-col li a,
.footer-col p,
.footer-lang,
.footer-lang a {
  color: #d7d7d7;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.65;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a:hover,
.footer-lang a:hover {
  color: var(--gold);
}

.footer-logo-wrap {
  width: 260px;
  max-width: 100%;
  min-height: 88px;
  border: 1px solid rgba(204,147,6,0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 18px;
  background: rgba(255,255,255,0.01);
}

.footer-logo {
  max-width: 82px;
  height: auto;
  display: block;
}

.footer-lang {
  margin-top: 20px;
}

.footer-lang a {
  margin-right: 12px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: #9d9d9d;
  font-size: 0.9rem;
}

.scroll-top {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(204,147,6,0.5);
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.scroll-top:hover {
  background: rgba(204,147,6,0.12);
}

@media (max-width: 980px) {
  .footer-box {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .footer-box {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .footer-logo-wrap {
    width: 100%;
  }
}
/* Header / Navigation - Logo links ausrichten */
.site-header,
.header,
nav,
.navbar {
  max-width: 1320px;
  margin: 0 auto;
}

.header-inner,
.nav-inner,
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo,
.nav-logo,
.logo-header {
  margin-left: 0 !important;
}
/* Seitenübersicht */
.sitemap-section {
  margin-bottom: 70px;
}

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

.sitemap-card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

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

.sitemap-card p {
  color: var(--muted);
  margin: 0;
}

.sitemap-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(204, 147, 6, 0.25),
              0 14px 35px rgba(204, 147, 6, 0.14);
  transform: translateY(-4px);
}

.sitemap-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 20px;
  max-width: 850px;
}

.sitemap-list a {
  display: block;
  background: #121212;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.sitemap-list a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

/* Top Navigation wie bei SOFBAC */
.top-nav {
  width: 100%;
  background: #050505;
  border-bottom: 1px solid rgba(204,147,6,0.35);
  position: sticky;
  top: 0;
  z-index: 999;
}

.top-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.top-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.top-brand span {
  color: #cc9306;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.top-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.top-menu a:hover {
  color: #cc9306;
}

/* Hero etwas nach unten korrigieren, weil jetzt Navigation oben ist */
.hero {
  padding-top: 70px;
}

@media (max-width: 850px) {
  .top-nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-menu {
    gap: 14px;
  }

  .top-brand span {
    font-size: 16px;
  }
}
/* Navigation soll NICHT mitscrollen */
.top-nav {
  position: relative !important;
  top: auto !important;
}

/* Hero-Bereich mehr nach links ausrichten */
.hero {
  align-items: flex-start !important;
  text-align: left !important;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 80px !important;
  padding-right: 80px !important;
}

/* Hero-Inhalte begrenzen, damit sie links sauber stehen */
.hero .site-logo,
.hero .eyebrow,
.hero h1,
.hero .subtitle,
.hero .buttons {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Großes Hero-Logo etwas kleiner */
.hero .site-logo {
  width: 120px !important;
  height: 120px !important;
  object-fit: contain;
}

/* Titel links und nicht zu riesig */
.hero h1 {
  text-align: left !important;
  max-width: 900px;
}

/* Untertitel links */
.hero .subtitle {
  text-align: left !important;
  max-width: 760px;
}

/* Buttons links */
.hero .buttons {
  justify-content: flex-start !important;
}

/* Mobile Ansicht wieder zentrierter */
@media (max-width: 800px) {
  .hero {
    align-items: center !important;
    text-align: center !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .hero h1,
  .hero .subtitle {
    text-align: center !important;
  }

  .hero .buttons {
    justify-content: center !important;
  }
}
/* Hero näher an die obere Navigation schieben */
.hero {
  min-height: 620px !important;
  justify-content: flex-start !important;
  padding-top: 110px !important;
  padding-bottom: 70px !important;
}

/* Hero-Inhalt kompakter */
.hero .site-logo {
  width: 105px !important;
  height: 105px !important;
  margin-bottom: 28px !important;
}

.hero .eyebrow {
  margin-bottom: 18px !important;
}

.hero h1 {
  margin-bottom: 22px !important;
}

.hero .subtitle {
  margin-bottom: 28px !important;
}

.hero .buttons {
  margin-top: 22px !important;
}

/* Wenn auf kleineren Bildschirmen zu viel Abstand ist */
@media (max-width: 800px) {
  .hero {
    min-height: auto !important;
    padding-top: 70px !important;
    padding-bottom: 60px !important;
  }
}

/* Datenschutz / rechtliche Unterseiten */
.legal-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 70px 24px;
}

.legal-page section {
  margin-bottom: 46px;
}

.legal-page h2 {
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 16px;
}

.legal-page p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.legal-page a {
  color: var(--gold);
}

.legal-hero {
  min-height: 360px !important;
}

.breadcrumb {
  font-size: 14px !important;
  color: #999999 !important;
  margin-bottom: 28px;
}
/* Hero mit Grafik rechts */
.hero {
  max-width: none !important;
  margin: 0 !important;
  padding: 70px 24px !important;
}

.hero-layout {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.hero-text {
  max-width: 620px;
}

.hero-image-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.hero-image {
  width: 100%;
  max-width: 680px;
  border-radius: 22px;
  border: 1px solid rgba(204, 147, 6, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  display: block;
}

/* Logo im Hero etwas kleiner */
.hero-text .site-logo {
  width: 90px !important;
  height: 90px !important;
}

/* Mobile Ansicht */
@media (max-width: 950px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image-wrap {
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
  }
}
/* Hero-Grafik ohne Box-Look, weich in den Hintergrund eingeblendet */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bild selbst: keine harte Box, kein Rahmen */
.hero-image {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  max-width: 720px;
  width: 100%;
  opacity: 0.78;
  filter: saturate(0.95) contrast(1.05);
}

/* Weicher dunkler Verlauf über dem Bild */
.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 35%, rgba(15,15,15,0.35) 70%, rgba(15,15,15,0.85) 100%),
    linear-gradient(90deg, rgba(15,15,15,0.55), transparent 35%, rgba(15,15,15,0.35));
}

/* Hero-Bereich optisch als eine Fläche */
.hero {
  background:
    radial-gradient(circle at 55% 15%, rgba(204,147,6,0.16), transparent 32%),
    linear-gradient(180deg, #111111, #0f0f0f) !important;
}
/* Hero-Grafik heller machen */
.hero-image {
  opacity: 1 !important;
  filter: saturate(1.08) contrast(1.08) brightness(1.18) !important;
}

/* Dunklen Overlay deutlich reduzieren */
.hero-image-wrap::after {
  background:
    radial-gradient(circle at center, transparent 55%, rgba(15,15,15,0.12) 80%, rgba(15,15,15,0.35) 100%),
    linear-gradient(90deg, rgba(15,15,15,0.18), transparent 45%, rgba(15,15,15,0.10)) !important;
}
.hero-image-box img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  border-radius: 18px;
}

/* Eigener Hetzner Remote-Server */
.server-offer-section {
  margin-top: 70px;
}

.server-offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.server-offer-card {
  background: linear-gradient(180deg, #181818, #121212);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.server-offer-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(204, 147, 6, 0.25),
              0 14px 35px rgba(204, 147, 6, 0.14);
  transform: translateY(-4px);
}

.server-offer-card h3 {
  color: var(--text);
  margin-top: 0;
  margin-bottom: 12px;
}

.server-offer-card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

/* Gemeinsame obere Navigation auf allen Seiten */
.top-nav {
  width: 100%;
  background: #050505;
  border-bottom: 1px solid rgba(204,147,6,0.35);
  position: relative !important;
  top: auto !important;
  z-index: 999;
}

.top-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.top-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.top-brand span {
  color: #cc9306;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.top-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.top-menu a:hover {
  color: #cc9306;
}

@media (max-width: 850px) {
  .top-nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-menu {
    gap: 14px;
  }

  .top-brand span {
    font-size: 16px;
  }
}

/* Feste obere Navigation auf allen Seiten */
.top-nav {
  width: 100%;
  background: #050505;
  border-bottom: 1px solid rgba(204,147,6,0.35);
  position: relative !important;
  top: auto !important;
  z-index: 999;
}

.top-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.top-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.top-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.top-brand span {
  color: #cc9306;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
}

.top-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.top-menu a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.top-menu a:hover {
  color: #cc9306;
}

@media (max-width: 850px) {
  .top-nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-menu {
    gap: 14px;
  }

  .top-brand span {
    font-size: 16px;
  }
}

/* Hetzner Logo / Infrastruktur-Hinweis */
.hetzner-trust-box {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(204,147,6,0.35);
  border-radius: 14px;
  background: rgba(255,255,255,0.035);
}

.hetzner-logo {
  max-width: 150px;
  width: 150px;
  height: auto;
  display: block;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 10px;
}

.hetzner-trust-box strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.hetzner-trust-box p {
  margin: 6px 0 0;
  color: #d7d7d7;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .hetzner-trust-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .hetzner-logo {
    max-width: 140px;
    width: 140px;
  }
}

/* Hetzner Logo im Footer */
.footer-hetzner {
  margin: 16px auto 14px;
  padding: 12px 14px;
  border: 1px solid rgba(204,147,6,0.35);
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-hetzner span {
  color: #d7d7d7;
  font-size: 0.85rem;
}

.footer-hetzner img {
  width: 115px;
  max-width: 115px;
  height: auto;
  display: block;
  background: #ffffff;
  padding: 7px 10px;
  border-radius: 8px;
}
