
:root {
  --bg: #071015;
  --bg-2: #0b1820;
  --paper: #f6f3ed;
  --paper-2: #ece6dc;
  --ink: #142126;
  --muted: #5f6b70;
  --line: rgba(20, 33, 38, 0.13);
  --line-dark: rgba(255,255,255,0.14);
  --brand: #c8984a;
  --brand-2: #ffd78d;
  --accent: #7fc4b3;
  --danger-soft: #3a2d1c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
img, svg { max-width: 100%; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--ink); color: white; padding: .7rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 243, 237, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.2rem;
  gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: .75rem; font-weight: 800;
  letter-spacing: -.03em;
  min-width: 0;
}
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(135deg, #0a1a22, #17313b 56%, #c8984a);
  display: grid; place-items: center;
  color: var(--brand-2); box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.brand span small { display: block; font-size: .72rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.brand-logo {
  display: block;
  height: clamp(74px, 8.5vw, 96px);
  width: auto;
  max-width: min(230px, 48vw);
  object-fit: contain;
  border-radius: 14px;
}

.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a {
  padding: .55rem .65rem; border-radius: 999px; font-size: .94rem; color: #26373d;
}
.nav-links a.active, .nav-links a:hover { background: #fffaf1; color: #111; }
.nav-cta { background: var(--ink)!important; color: #fff!important; margin-left: .35rem; }
.menu-toggle { display: none; background: var(--ink); color: #fff; border: 0; border-radius: 999px; padding: .65rem .9rem; font-weight: 700; }

main { overflow: hidden; }
.section { padding: 86px 1.2rem; }
.section.tight { padding-top: 46px; }
.wrap { max-width: var(--max); margin: 0 auto; }
.hero {
  color: white;
  background:
    radial-gradient(circle at 78% 8%, rgba(200,152,74,.30), transparent 30%),
    radial-gradient(circle at 12% 20%, rgba(127,196,179,.20), transparent 36%),
    linear-gradient(135deg, #061016 0%, #0a1b24 44%, #101915 100%);
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 95%);
}
.hero-grid {
  min-height: 720px;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 54px; align-items: center;
}
.kicker {
  color: var(--brand-2); font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  font-size: .79rem; margin-bottom: 1rem;
}
h1, h2, h3 { line-height: 1.08; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); max-width: 900px; }
h2 { font-size: clamp(2rem, 4.6vw, 4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0; }
.lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem); color: rgba(255,255,255,.80);
  max-width: 780px; margin-top: 1.5rem;
}
/* Lesbarkeit: Lead-Texte in hellen Bereichen dunkel, in Hero/Band weiterhin hell */
.section .lead { color: var(--muted); }
.band .lead, .hero .lead, .cta-panel .lead { color: rgba(255,255,255,.80); }

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.15rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 800; transition: transform .18s ease, background .18s ease, border .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--brand); color: #111; }
.button.secondary { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }
.button.dark { background: var(--ink); color: #fff; }
.button.light { background: #fff; color: var(--ink); }

.notice {
  display: inline-flex; gap: .6rem; align-items: center;
  margin-top: 1.5rem; padding: .75rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.84); font-weight: 700;
}
.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px; padding: 1.35rem; box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.system-panel {
  border-radius: 24px; overflow: hidden; background: #071015; border: 1px solid rgba(255,255,255,.16);
}
.panel-top { display: flex; gap: .4rem; padding: .9rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.dot { width: 11px; height: 11px; border-radius: 50%; background: #8c9498; }
.dot:nth-child(1) { background: #ef6a5b; } .dot:nth-child(2) { background: #f4bd4f; } .dot:nth-child(3) { background: #61c554; }
.panel-body { padding: 1.35rem; }
.status-row {
  display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.78);
}
.status-row strong { color: #fff; }
.pulse {
  display: inline-flex; align-items: center; gap: .5rem; color: var(--accent); font-weight: 800;
}
.pulse::before { content: ""; width: .55rem; height: .55rem; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 8px rgba(127,196,179,.14); }

.trust-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px; overflow: hidden; margin-top: -56px; position: relative; z-index: 2;
}
.trust-item { background: #fbf8f1; padding: 1.2rem; }
.trust-item strong { display: block; font-size: 1.4rem; letter-spacing: -.03em; }
.trust-item span { color: var(--muted); font-size: .92rem; }

.section-head { display: flex; justify-content: space-between; gap: 2rem; align-items: end; margin-bottom: 2rem; }
.section-head p { color: var(--muted); max-width: 610px; font-size: 1.05rem; }
.grid { display: grid; gap: 1rem; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fffaf1; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem; box-shadow: 0 10px 28px rgba(20,33,38,.055);
}
.card.dark {
  background: linear-gradient(135deg, #0d1b23, #10232c); color: #fff; border-color: rgba(255,255,255,.12);
}
.card p, .card li { color: var(--muted); }
.card.dark p, .card.dark li { color: rgba(255,255,255,.72); }
.icon {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  background: #f1e5d2; color: #5d431e; margin-bottom: 1.1rem; font-weight: 900;
}
.card.dark .icon { background: rgba(255,255,255,.1); color: var(--brand-2); }
.card h3 { margin-bottom: .75rem; }
.card ul { margin: .9rem 0 0; padding-left: 1.1rem; }
.card li + li { margin-top: .38rem; }

.split { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 3rem; align-items: center; }
.feature-box {
  background: #fff; border-radius: 32px; border: 1px solid var(--line); padding: 2rem; box-shadow: var(--shadow);
}
.feature-list { display: grid; gap: .85rem; margin-top: 1.4rem; }
.feature-list div { display: flex; gap: .8rem; align-items: flex-start; padding: .85rem; border-radius: 18px; background: #faf5eb; }
.check { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); display: grid; place-items:center; color:#08211c; font-weight: 900; }

.band { background: var(--bg); color: #fff; }
.band .section-head p { color: rgba(255,255,255,.68); }
.process { counter-reset: step; }
.step { position: relative; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: #111; font-weight: 900; margin-bottom: 1rem;
}

.cta-panel {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,215,141,.28), transparent 28%),
    linear-gradient(135deg, #0b1820, #142126);
  color: white; border-radius: 34px; padding: clamp(2rem, 5vw, 4rem);
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
  box-shadow: var(--shadow);
}
.cta-panel p { color: rgba(255,255,255,.72); font-size: 1.1rem; margin-top: 1rem; max-width: 720px; }

.page-hero { padding: 96px 1.2rem 70px; background: linear-gradient(135deg, #08151c, #142126); color: #fff; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 820px; margin-top: 1.2rem; font-size: 1.15rem; }
.breadcrumb { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 1.2rem; }
.breadcrumb a { color: rgba(255,255,255,.78); }

.info-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 20px; }
.info-table th, .info-table td { text-align: left; padding: .95rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { width: 32%; color: #33464c; background: #f7efe1; }
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 1.2rem; align-items: start; }
.contact-card { background: #fffaf1; border: 1px solid var(--line); border-radius: 28px; padding: 1.5rem; }
.contact-line { display: grid; gap: .2rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line span { color: var(--muted); font-size: .9rem; }
.contact-line strong { font-size: 1.08rem; }

.alt { background: #f1ece3; }
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}
.two-col h2 + p { margin-top: 1.35rem; }
.two-col p + p { margin-top: .95rem; }
.eyebrow {
  display: inline-block;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: .55rem;
}
.check-list { margin: .9rem 0 0; padding-left: 1.1rem; }
.check-list li + li { margin-top: .45rem; }

.footer { background: #061016; color: rgba(255,255,255,.72); padding: 46px 1.2rem; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.footer strong { color: #fff; }
.footer a { display: inline-block; color: rgba(255,255,255,.76); margin: .2rem 0; }
.footer small { display: block; margin-top: 2rem; color: rgba(255,255,255,.45); }

.legal { max-width: 880px; }
.legal h2 { font-size: 2rem; margin-top: 2.2rem; }
.legal h3 { margin-top: 1.6rem; }
.legal p, .legal li { color: var(--muted); }
.legal a { text-decoration: underline; text-underline-offset: 3px; }
.note-box { background: #fff3dc; border: 1px solid #ead6ae; padding: 1rem; border-radius: 18px; margin: 1.2rem 0; color: #5f441a; }

@media (max-width: 920px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; left: 1rem; right: 1rem; top: 78px; flex-direction: column; align-items: stretch;
    padding: .8rem; border: 1px solid var(--line); background: rgba(246,243,237,.98); border-radius: 22px;
    box-shadow: var(--shadow); transform-origin: top; transform: scale(.96); opacity: 0; pointer-events: none;
    transition: .18s ease;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; transform: scale(1); }
  .nav-links a { border-radius: 14px; padding: .8rem; }
  .hero-grid, .split, .contact-grid, .cta-panel, .two-col { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 96px 0 120px; }
  .trust-row, .grid.cols-3, .grid.cols-2, .footer-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .section-head p { margin-top: 1rem; }
  .cta-panel { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto!important; transition: none!important; }
}


.dark-box { background: #fffaf1; color: var(--ink); }
.dark-box h3 { color: var(--ink); }
.dark-box li { color: var(--muted); }
@media (max-width: 1120px) {
  .nav-links a { padding: .5rem .52rem; font-size: .88rem; }
  .brand span small { font-size: .66rem; }
}

@media (max-width: 720px) { .brand-logo { height: 74px; max-width: 42vw; } }
