﻿/*
  ============================================
  ORDER OF OWL ZUKUNFTSPLATTFORM
  Farbanpassung zentral an dieser Stelle
  ============================================
*/
:root {
  --bg: #eef1f4;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --text: #21313f;
  --text-soft: #4d5e6d;
  --headline: #172430;
  --primary: #233849;
  --primary-strong: #182a38;
  --accent: #6c4fe0;
  --accent-soft: #e9e3ff;
  --gold: #b8934b;
  --border: rgba(35, 56, 73, 0.12);
  --shadow: 0 18px 50px rgba(24, 42, 56, 0.12);
  --radius: 20px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--headline);
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
h3 { font-size: 1.2rem; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.8rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(24, 42, 56, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; }
.brand-top {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}
.brand-name {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--primary-strong);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.main-nav a {
  font-weight: 700;
  color: var(--primary);
  opacity: 0.9;
}
.main-nav a:hover { color: var(--accent); }

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: #10202d;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 15, 22, 0.84) 0%, rgba(11, 20, 29, 0.70) 28%, rgba(14, 25, 36, 0.46) 48%, rgba(14, 25, 36, 0.58) 100%),
linear-gradient(180deg, rgba(6, 12, 18, 0.34) 0%, rgba(6, 12, 18, 0.58) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 18% 40%, rgba(184, 147, 75, 0.14), transparent 36%);
  pointer-events: none;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding-block: 7rem 5rem;
  color: #fff;
  max-width: 760px;
}
.hero h1,
.hero p,
.hero li {
  color: #f8fbff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.42);
}
.hero h1 {
  color: #f4efe2;
  text-shadow: 0 4px 18px rgba(0,0,0,0.48);
}
.eyebrow {
  display: inline-block;
  width: fit-content;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 62ch;
  color: rgba(255,255,255,0.92);
}
.hero-text {
  max-width: 64ch;
  color: rgba(255,255,255,0.9);
}
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

.btn:focus-visible,
.main-nav a:focus-visible,
.footer-nav a:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.7);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #d3af62);
  color: #12202d;
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
}
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}
.trust-points li {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.95rem;
}

section { padding: 5.2rem 0; }
.section-light { background: var(--surface); }
.section-dark {
  background: linear-gradient(180deg, var(--primary), var(--primary-strong));
  color: #fff;
}
.section-accent {
  background: linear-gradient(180deg, #243949, #1a2936);
  color: #fff;
}
.section-accent h2,
.section-dark h2,
.section-accent h3,
.section-dark h3,
.section-accent p, 
.section-dark p { color: #fff; }
.section-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.section-label-light { color: #b9cbff; }
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.card,
.feature-card,
.value-card,
.stat-card {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.quote-card {
  padding: 2rem;
  background: linear-gradient(180deg, #f9fbff, #eef3f9);
}
.quote {
  font-size: 1.24rem;
  color: var(--primary-strong);
  font-weight: 700;
}
.quote-author {
  color: var(--text-soft);
  margin-bottom: 0;
}

.stats-grid,
.feature-grid,
.value-grid {
  display: grid;
  gap: 1.2rem;
}
.stats-grid { grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.feature-grid { grid-template-columns: repeat(3, 1fr); margin-top: 2rem; }
.value-grid { grid-template-columns: repeat(4, 1fr); margin-top: 2rem; }
.stat-card,
.feature-card,
.value-card {
  padding: 1.5rem;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: #fff;
}
.source-note {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

.image-section img {
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.benefit-list {
  padding-left: 1.2rem;
  margin: 1rem 0 1.2rem;
}
.benefit-list li { margin-bottom: 0.7rem; }

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.faq-list details {
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.2rem;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-strong);
}
.faq-list p { margin: 1rem 0 0; }

.faq-list a {
  color: #6c4fe0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-list a:hover {
  color: #233849;
}
.cta-section {
  background: linear-gradient(180deg, #ecf1f5, #f8fafc);
}
.cta-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--surface);
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.site-footer {
  background: #162431;
  color: #dbe6ee;
  padding: 2.4rem 0;
}
.site-footer h3,
.site-footer p,
.site-footer a { color: #dbe6ee; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a:hover { color: #fff; }

@media (max-width: 1080px) {
  .stats-grid,
  .feature-grid,
  .value-grid,
  .two-col,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 0.8rem;
  }
  .main-nav { gap: 0.8rem; }
  section { padding: 4rem 0; }
  .two-col,
  .stats-grid,
  .feature-grid,
  .value-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .brand-logo { width: 56px; height: 56px; }
  .hero-content { padding-block: 6rem 4rem; }
  .hero-actions,
  .cta-actions,
  .trust-points { flex-direction: column; align-items: stretch; }
}
