@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/sora-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/sora-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/sora-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/sora-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-latin-700-normal.woff2") format("woff2");
}

:root {
  --bg: #090b10;
  --bg-soft: #10141d;
  --surface: rgba(16, 21, 31, 0.8);
  --surface-strong: rgba(23, 29, 42, 0.94);
  --text: #eef1f7;
  --muted: #a8b0c2;
  --line: rgba(255, 255, 255, 0.12);
  --brand: #c5993a;
  --brand-soft: rgba(197, 153, 58, 0.16);
  --radius: 18px;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 75% -10%, rgba(197, 153, 58, 0.22), transparent 62%),
    radial-gradient(800px 430px at 20% 8%, rgba(76, 113, 214, 0.17), transparent 65%),
    linear-gradient(180deg, #05070b 0%, #0a0f18 50%, #090b10 100%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 10%, transparent 82%);
  opacity: 0.4;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(9, 11, 16, 0.9), rgba(9, 11, 16, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  height: 62px;
  width: auto;
  max-width: min(38vw, 300px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  white-space: nowrap;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-links a {
  color: #93a0bb;
  font-size: 0.8rem;
  text-decoration: none;
}

.legal-links a:hover,
.legal-links a:focus-visible {
  color: var(--text);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  max-width: 760px;
  margin-bottom: 18px;
}

h1 span {
  color: var(--brand);
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
}

h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.lead {
  margin: 0;
  max-width: 62ch;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--muted);
}

.hero {
  padding-top: 104px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-facts {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-facts li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d1d6e2;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
}

.section-head {
  margin-bottom: 26px;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.panel,
.contact-box {
  background: linear-gradient(160deg, var(--surface), var(--surface-strong));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.panel {
  padding: 22px;
}

.card p,
.panel p,
.contact-box p {
  margin: 0;
  color: var(--muted);
}

.panel a {
  color: #f1cb78;
}

.legal-panel {
  margin-top: 22px;
}

.legal-panel h2 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p {
  margin-bottom: 10px;
  max-width: 82ch;
}

.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, transparent 60%, var(--brand-soft));
  opacity: 0;
  transition: opacity 220ms ease;
}

.card:hover::before {
  opacity: 1;
}

.contact-box {
  padding: clamp(22px, 3.2vw, 38px);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.chip-list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.79rem;
  color: #d4dae8;
  background: rgba(255, 255, 255, 0.03);
}

.solution-panel {
  border-color: rgba(197, 153, 58, 0.45);
}

.contact-form {
  width: min(560px, 100%);
  display: grid;
  gap: 12px;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  color: #d5dbea;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 9, 14, 0.66);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(197, 153, 58, 0.55);
  outline-offset: 0;
  border-color: rgba(197, 153, 58, 0.8);
}

.form-hint {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

/* Honeypot-Feld: für Menschen unsichtbar, für einfache Bots aber im DOM vorhanden */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-hint a {
  color: #f1cb78;
}

.form-note {
  margin: 0;
  min-height: 1.2em;
  color: #d6ddb0;
  font-size: 0.86rem;
}

.form-note--error {
  color: #e6a4a4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 600;
  text-decoration: none;
  color: #111218;
  background: linear-gradient(135deg, #d9ac4f, #b98526);
  transition: transform 170ms ease, box-shadow 170ms ease;
  box-shadow: 0 8px 22px rgba(197, 153, 58, 0.33);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-small {
  padding: 9px 13px;
  font-size: 0.86rem;
}

.btn-ghost {
  color: #e6ebf5;
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  box-shadow: none;
}

.footer {
  padding: 24px 0 34px;
}

.footer-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer small,
.footer a {
  color: #95a0b8;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav {
    gap: 16px;
  }

  .legal-links {
    display: none;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 700px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 78px;
  }

  .nav {
    display: none;
  }

  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
  }

  .nav-utility {
    width: 100%;
    justify-content: flex-end;
  }

  .nav-phone {
    width: auto;
  }

  .cards-3,
  .cards-2 {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .btn,
  .btn-small {
    width: 100%;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand-logo {
    height: 48px;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
