:root {
  --sb-midnight: #050a24;
  --sb-royal: #2837ff;
  --sb-coral: #ff6f61;
  --sb-amber: #f9b234;
  --sb-cyan: #3fd8ff;
  --sb-violet: #8d6bff;
  --sb-emerald: #2ed07c;
  --sb-slate-100: #f5f7fb;
  --sb-slate-700: #2a3149;
  --sb-slate-900: #0b1026;
  --sb-text: #121635;
  --sb-muted: #6d748f;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  margin: 0;
  background-color: var(--sb-slate-100);
  color: var(--sb-text);
}

.site-body {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--sb-slate-100);
}

.site-gradient {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at top left, rgba(40, 55, 255, 0.35), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255, 111, 97, 0.25), transparent 50%),
    radial-gradient(circle at 5% 85%, rgba(47, 222, 124, 0.2), transparent 55%);
  pointer-events: none;
}

.site-wrapper {
  position: relative;
  z-index: 1;
}

.hero-banner {
  background: linear-gradient(135deg, rgba(5, 10, 36, 0.92), rgba(27, 34, 82, 0.95)),
    url('images/sicher-bezahlt-logo.png') no-repeat right -40px top -60px / 360px;
  border-radius: 0 0 3rem 3rem;
  box-shadow: 0 25px 60px rgba(5, 10, 36, 0.45);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-banner::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(63, 216, 255, 0.4), transparent 70%);
  top: -120px;
  right: -160px;
  filter: blur(0.5px);
}

.hero-banner .container {
  position: relative;
  z-index: 1;
}

.py-lg-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.brand-seal {
  background: rgba(0, 0, 0, 0.35);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seal-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.seal-text {
  font-weight: 600;
}

.opacity-85 {
  opacity: 0.85;
}

.btn-warning {
  background: var(--sb-amber);
  border: none;
}

.btn-warning:hover {
  background: #e59c1e;
}

.btn-outline-light {
  border-width: 2px;
}

.intel-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(65, 88, 208, 0.35));
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.intel-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intel-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.18);
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.intel-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.intel-card__list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  padding-bottom: 0.65rem;
}

.intel-card__list li strong {
  font-weight: 600;
  color: #fff;
  max-width: 60%;
  text-align: right;
  word-break: break-word;
}

.intel-card__list li span {
  color: rgba(255, 255, 255, 0.75);
  padding-right: 0.75rem;
}

.intel-card__footer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: 4.5rem 0;
}

.section-intro .section-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sb-royal);
  background: rgba(40, 55, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-kicker-invert {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 700;
  color: var(--sb-text);
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 720px;
  margin: 0 auto;
  color: var(--sb-muted);
}

.section-spotlights {
  position: relative;
}

.spotlight-card {
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(7, 18, 57, 0.15);
}

.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.25), transparent 55%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.spotlight-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.spotlight-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.spotlight-text {
  opacity: 0.9;
  margin-bottom: 0;
  line-height: 1.6;
}

.accent-violet {
  background: linear-gradient(140deg, #6b5dff, #9b72ff);
}

.accent-amber {
  background: linear-gradient(140deg, #ff8f5f, #f9b234);
}

.accent-cyan {
  background: linear-gradient(140deg, #3fd8ff, #2a6fff);
}

.accent-rose {
  background: linear-gradient(140deg, #ff6f91, #ff9671);
}

.accent-emerald {
  background: linear-gradient(140deg, #24c08e, #6de3bc);
}

.accent-slate {
  background: linear-gradient(140deg, #343b5f, #6a78ff);
}

.hero-emphasis {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.85rem 1.2rem;
  font-size: 1.05rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75) !important;
}

.section-timeline {
  background: linear-gradient(180deg, #ffffff 0%, #eef1ff 100%);
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(40, 55, 255, 0.2), rgba(255, 111, 97, 0.2));
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #fff;
  border: 4px solid rgba(40, 55, 255, 0.55);
  box-shadow: 0 0 0 6px rgba(40, 55, 255, 0.1);
}

.timeline-content {
  background: #fff;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 15px 40px rgba(10, 18, 46, 0.12);
}

.timeline-moment {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sb-royal);
}

.timeline-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.timeline-text {
  margin-bottom: 0;
  color: var(--sb-muted);
}

.section-actions {
  background: linear-gradient(180deg, #040821 0%, #0d1642 100%);
  color: #fff;
}

.section-actions .section-title {
  color: #fff;
}

.section-actions .section-lead {
  color: rgba(255, 255, 255, 0.8);
}

.action-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1.35rem;
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.action-icon {
  font-size: 2rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.action-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.section-signals {
  background: #fff;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.signal-tile {
  background: #f2f4ff;
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: inset 0 0 0 1px rgba(40, 55, 255, 0.12);
}

.signal-icon {
  font-size: 1.35rem;
  color: var(--sb-royal);
  margin-top: 0.2rem;
}

.signal-text {
  color: var(--sb-slate-700);
  line-height: 1.5;
}

.section-myths {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.myth-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.25rem 2rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(40, 55, 255, 0.08);
}

.myth-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sb-royal);
  margin-bottom: 1rem;
}

.myth-text {
  margin: 0;
  color: var(--sb-muted);
  line-height: 1.65;
}

.section-callout {
  padding-bottom: 6rem;
}

.callout-block {
  background: linear-gradient(135deg, #2837ff, #8d6bff);
  border-radius: 2rem;
  padding: 3rem;
  color: #fff;
  box-shadow: 0 25px 60px rgba(40, 55, 255, 0.25);
}

.callout-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.callout-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer {
  background: #060a1f;
}

.footer .container {
  position: relative;
}

.footer a {
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .hero-banner {
    border-radius: 0 0 2.5rem 2.5rem;
    background-position: right -80px top -80px;
    text-align: center;
  }

  .intel-card {
    margin: 0 auto;
  }

  .brand-seal {
    margin: 0 auto 1.5rem;
  }

  .section-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 575.98px) {
  .hero-banner {
    border-radius: 0 0 2rem 2rem;
  }

  .hero-banner h1 {
    font-size: 2.1rem;
  }

  .spotlight-card,
  .myth-card,
  .callout-block {
    border-radius: 1.35rem;
  }

  .timeline {
    padding-left: 1.75rem;
  }

  .timeline::before {
    left: 0.6rem;
  }

  .timeline-marker {
    left: 0;
  }
}
