:root {
  --bg: #07111f;
  --bg-soft: #0d1a2e;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #172033;
  --muted: #667085;
  --line: rgba(15, 23, 42, .12);
  --blue: #123b88;
  --blue-dark: #0b2860;
  --cyan: #12aeea;
  --gold: #f3d21b;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 17, 31, .16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--gold); color: #111; padding: 10px 14px; border-radius: 10px; z-index: 99; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); min-width: max-content; }
.brand-logo { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; background: rgba(255,255,255,.04); }
.brand strong { display: block; font-size: 18px; letter-spacing: .04em; line-height: 1.1; }
.brand small { display: block; color: rgba(255,255,255,.65); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.76); font-size: 14px; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--gold); }
.header-call { color: var(--bg); background: var(--gold); padding: 10px 16px; border-radius: 999px; line-height: 1.1; box-shadow: 0 10px 28px rgba(243,210,27,.25); }
.header-call span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; opacity: .75; }
.header-call strong { display: block; font-size: 14px; }
.nav-toggle-input, .nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(18,174,234,.22), transparent 35%),
    linear-gradient(135deg, #07111f 0%, #0d1a2e 45%, #123b88 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% -10%;
  height: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: rotate(-3deg);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--cyan); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; font-weight: 800; }
.eyebrow.light { color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 5vw, 72px); line-height: .98; letter-spacing: -.055em; margin-bottom: 24px; max-width: 760px; }
h2 { font-size: clamp(30px, 3.2vw, 48px); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 18px; }
h3 { font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.lead { font-size: 19px; color: rgba(255,255,255,.78); max-width: 650px; margin-bottom: 32px; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 22px; border-radius: 999px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--bg); box-shadow: 0 14px 30px rgba(243,210,27,.24); }
.btn-secondary { color: var(--white); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; }
.hero-facts div { padding: 15px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }
.hero-facts dt { color: var(--gold); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.hero-facts dd { margin: 5px 0 0; font-size: 14px; color: rgba(255,255,255,.82); }
.hero-visual { position: relative; padding: 34px; border-radius: var(--radius-xl); background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 40px 90px rgba(0,0,0,.28); }
.hero-image { width: 100%; height: auto; filter: drop-shadow(0 30px 35px rgba(0,0,0,.35)); }
.visual-badge { position: absolute; left: 28px; bottom: 28px; right: 28px; padding: 16px 18px; border-radius: 18px; background: rgba(7,17,31,.82); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); }
.visual-badge span { display: block; color: var(--gold); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 900; }
.visual-badge strong { display: block; font-size: 16px; margin-top: 3px; }

.trust-strip { background: var(--blue); color: var(--white); padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-grid div { border-left: 2px solid var(--gold); padding-left: 18px; }
.trust-grid strong { display: block; font-size: 16px; }
.trust-grid span { display: block; color: rgba(255,255,255,.7); font-size: 14px; }

.split-heading { display: grid; grid-template-columns: .9fr 1fr; gap: 60px; align-items: end; margin-bottom: 34px; }
.split-heading p:last-child { color: var(--muted); font-size: 18px; margin-bottom: 18px; }
.highlight-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; padding: 38px; border-radius: var(--radius-xl); background: var(--surface-soft); border: 1px solid var(--line); box-shadow: var(--shadow); }
.highlight-panel p { color: var(--muted); margin-bottom: 0; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; font-weight: 700; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; color: var(--bg); background: var(--gold); display: grid; place-items: center; font-size: 13px; }

.muted { background: var(--surface-soft); }
.section-title { max-width: 760px; margin-bottom: 38px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { padding: 28px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: 0 18px 40px rgba(7,17,31,.08); min-height: 265px; }
.service-card span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.service-card h3 { margin-top: 20px; }
.service-card p { color: var(--muted); margin-bottom: 0; }
.service-card.featured { background: linear-gradient(145deg, var(--blue-dark), var(--blue)); color: var(--white); border-color: rgba(255,255,255,.1); }
.service-card.featured p { color: rgba(255,255,255,.78); }
.service-card.featured span { color: var(--gold); }

.dark-section { color: var(--white); background: linear-gradient(135deg, #07111f, #0d1a2e 55%, #123b88); }
.advantage-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; }
.dark-section p { color: rgba(255,255,255,.75); }
.advantage-list { display: grid; gap: 16px; }
.advantage-list article { padding: 24px; border-radius: var(--radius-lg); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.advantage-list h3 { color: var(--gold); }
.advantage-list p { margin-bottom: 0; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 50px; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); padding: 18px 20px; }
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); margin: 12px 0 0; }

.contact-section { background: var(--surface-soft); }
.contact-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; padding: 44px; border-radius: var(--radius-xl); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-intro p { color: var(--muted); }
.contact-details address { font-style: normal; margin-bottom: 20px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; }
.contact-list li { display: flex; gap: 18px; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.contact-list span:first-child { color: var(--muted); }
.contact-list a { font-weight: 800; color: var(--blue); }
.contact-card .btn-secondary { color: var(--blue); border-color: var(--line); background: var(--surface-soft); }

.site-footer { background: #050b14; color: rgba(255,255,255,.75); padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 12px; color: var(--white); font-weight: 900; font-size: 18px; margin-bottom: 12px; }
.footer-brand img { border-radius: 50%; }
.site-footer h2 { color: var(--white); font-size: 15px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.site-footer a { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 36px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 13px; }

@media (max-width: 980px) {
  .header-inner { height: 76px; }
  .header-call { display: none; }
  .nav-toggle { display: grid; gap: 5px; width: 42px; height: 42px; place-content: center; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 999px; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 86px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; background: rgba(7,17,31,.98); border: 1px solid rgba(255,255,255,.1); border-radius: 18px; box-shadow: 0 20px 40px rgba(0,0,0,.28); }
  .main-nav a { padding: 14px 12px; border-radius: 10px; }
  .main-nav a:hover { background: rgba(255,255,255,.06); }
  .nav-toggle-input:checked ~ .main-nav { display: flex; }
  .hero-grid, .split-heading, .highlight-panel, .advantage-grid, .faq-grid, .contact-card, .footer-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-facts, .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section-pad { padding: 66px 0; }
  .brand small { display: none; }
  .brand-logo { width: 50px; height: 50px; }
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  .lead { font-size: 17px; }
  .hero-visual, .highlight-panel, .contact-card { padding: 24px; }
  .hero-facts, .trust-grid, .service-grid { grid-template-columns: 1fr; }
  .visual-badge { position: static; margin-top: 18px; }
  .contact-list li, .footer-bottom { flex-direction: column; gap: 4px; }
}


/* Rechtliche Unterseiten */
.legal-hero {
  color: var(--white);
  background: linear-gradient(135deg, #07111f, #0d1a2e 52%, #123b88);
  padding: 120px 0 70px;
}
.legal-hero h1 {
  font-size: clamp(36px, 4vw, 58px);
  margin-bottom: 16px;
}
.legal-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.76);
  font-size: 18px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 46px;
  align-items: start;
}
.legal-sidebar {
  position: sticky;
  top: 104px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(7,17,31,.08);
}
.legal-sidebar a {
  display: block;
  padding: 10px 0;
  color: var(--blue);
  font-weight: 800;
}
.legal-content {
  display: grid;
  gap: 28px;
}
.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: 0 14px 36px rgba(7,17,31,.08);
}
.legal-card h2 {
  font-size: clamp(26px, 2.6vw, 38px);
}
.legal-card h3 {
  margin-top: 28px;
}
.legal-card p, .legal-card li {
  color: var(--muted);
}
.legal-card ul {
  padding-left: 20px;
}
.legal-contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 10px;
}
.legal-contact-list li {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal-contact-list span:first-child {
  color: var(--muted);
}
.legal-contact-list strong, .legal-contact-list a {
  color: var(--blue);
  font-weight: 900;
  text-align: right;
}
.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
}
@media (max-width: 640px) {
  .legal-hero { padding: 96px 0 56px; }
  .legal-card { padding: 24px; }
  .legal-contact-list li { flex-direction: column; gap: 3px; }
  .legal-contact-list strong, .legal-contact-list a { text-align: left; }
}
