:root {
  --primary: #003b8f;
  --primary-dark: #082b66;
  --primary-light: #006a86;
  --primary-light-dark: #014d61;

  --accent: #10b5e8;
  --accent-dark: #eb8500;
  --accent-soft: #e9f8fd;

  --text: #0f2747;
  --muted: #66788f;
  --bg: #f5f7fa;
  --white: #ffffff;

  --line: #dde5ee;
  --card-border: rgba(15, 23, 42, 0.06);

  --shadow-sm: 0 10px 30px rgba(15, 39, 71, 0.06);
  --shadow-md: 0 20px 60px rgba(15, 39, 71, 0.08);
  --shadow-hover: 0 20px 50px rgba(15, 23, 42, 0.10);

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-xl: 30px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  text-decoration: none;
}

.dkOrange {
  color: var(--accent-dark);
}

/* =========================
     TOPBAR / BRAND 006a86
  ========================= */
.topbar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: 14px 0;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
     GLOBAL SECTIONS
  ========================= */
.section {
  padding: 88px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-title {
  font-size: clamp(1.6rem, 2.0vw, 2.2rem);
  /*1.9rem, 2.5vw, 2.8rem*/
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 920px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.eyebrow {
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.text-muted-custom {
  color: var(--muted);
}

.bg-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.highlight-section {
  background: #fff;
  border-top: 1px solid #e8eef4;
  border-bottom: 1px solid #e8eef4;
}

/* =========================
     HERO MASTER
  ========================= */
/*
  .hero {
    
    background:
      radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 30%),
      radial-gradient(circle at bottom right, rgba(255,255,255,0.14), transparent 26%),
      linear-gradient(135deg, var(--primary-light) 0%, var(--primary-light-dark) 55%, var(--primary) 100%);
      
    
  }
*/
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -110px -10%;
  height: 200px;
  background: var(--bg);
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

.hero-content,
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.badge-soft,
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero h1 {
  /*font-size: clamp(2.1rem, 4vw, 4rem);*/
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}

.hero p,
.hero-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

/* Alternative Hero mit Bild */
.hero-image-bg {
  min-height: 500px;
  height: 45vh;
  background:
    linear-gradient(rgba(0, 0, 0, .60), rgba(0, 0, 0, .60)),
    url('/assets/img/titel-algemein-2.webp'); /*https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1600&auto=format&fit=crop*/
  background-size: cover;
  background-position: center;
  color: #fff;
}



.hero-headline {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--accent-dark);
}

.hero-intro {
  background: #f1f1f1;
  padding: 50px 0 60px;
  border-bottom: 1px solid #e6edf3;
}

.hero-subtext {
  margin: 0 auto 30px;
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* =========================
     BUTTONS
  ========================= */
.btn-main,
.btn-custom-primary {
  background: #fff;
  color: var(--primary);
  border: 2px solid #2b8fd1;
  padding: 12px 24px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.btn-main:hover,
.btn-custom-primary:hover {
  background: #f7fbff;
  color: var(--primary);
  border-color: #187fbe;
  transform: translateY(-1px);
}

.btn-ghost,
.btn-custom-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 12px 24px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: inline-block;
  transition: 0.2s ease;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-custom-outline:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-dkbtn {
  display: inline-block;
  width: 100%;
  text-align: center;
  border: 2px solid #2f62af;
  color: #11408b;
  background: #fff;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-outline-dkbtn:hover {
  background: #f7fbff;
  color: #11408b;
}

/* =========================
     SEARCH AREA
  ========================= */
.search-area {
  background: #fff;
  padding: 26px 0 44px;
}

.search-shell {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d7e0ea;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
}

.search-shell input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 18px;
  font-size: 1rem;
  color: var(--text);
}

.search-shell input::placeholder {
  color: #8a9ab0;
}

.search-shell button {
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  padding: 0 28px;
  transition: 0.2s ease;
}

.search-shell button:hover {
  background: #0a9aca;
}

/* =========================
     CARDS
  ========================= */
.card-modern,
.card-clean,
.card-feature,
.card-step,
.card-highlight,
.mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px 22px 22px 22px;
  /*var(--radius-lg)*/
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
  height: 100%;
}

.card-modern:hover,
.card-clean:hover,
.card-feature:hover,
.card-step:hover,
.card-highlight:hover,
.mini-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.card-modern img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 24px 22px 22px;
}

.card-content h3,
.mini-card h3 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 800;
  color: var(--text);
}

.card-content p,
.mini-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.card-clean,
.card-feature {
  padding: 30px;
}

.card-step {
  padding: 28px 24px;
  text-align: center;
}

.card-highlight {
  padding: 34px;
}

.mini-card {
  padding: 30px 24px 24px;
}

/* =========================
     ICONS
  ========================= */
.icon-circle {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin: 0 auto 18px;
  background: linear-gradient(180deg, #f5fbff, #edf7ff);
  border: 2px solid rgba(17, 64, 139, 0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
}

.step-icon,
.feature-icon,
.mini-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(13, 110, 253, 0.10);
  margin-bottom: 1rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  font-size: 1.2rem;
  border-radius: 14px;
}

/* =========================
     STEPS
  ========================= */
.steps-grid .step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0px;
  /*var(--radius-md)*/
  box-shadow: var(--shadow-sm);
  padding: 22px 20px 22px 24px;
  height: 100%;
  position: relative;
  transition: 0.25s ease;
}

.steps-grid .step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.steps-grid .step-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-radius: 0 0 0 0;
  /*var(--radius-md) 0 0 var(--radius-md)*/
  background: var(--accent-dark);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 14px;
}

.step-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}

.step-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* =========================
     LISTS / HIGHLIGHTS
  ========================= */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 1rem;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 24px;
  text-align: center;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.06), rgba(10, 88, 202, 0.10));
  border: 1px solid rgba(13, 110, 253, 0.10);
  border-radius: 20px;
  padding: 24px;
}

.stats-row .card-clean {
  text-align: center;
  padding: 26px 20px;
}

.stats-row h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* =========================
     SEO / CTA / NOTE
  ========================= */
.seo-box {
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  padding: 34px 30px;
}

.seo-box p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.seo-box p:last-child {
  margin-bottom: 0;
}

.cta-box {
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-light-dark) 100%);
  color: #fff;
  border: 1px solid rgba(13, 110, 253, 0.12);
  border-radius: 30px;
  box-shadow: 0 24px 60px rgba(13, 110, 253, 0.22);
  padding: 44px 30px;
  text-align: center;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 740px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.company-note {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

/* =========================
     FAQ
  ========================= */
.faq .accordion-item {
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  background: #fff;
}

.faq .accordion-button {
  font-weight: 600;
  padding: 1.2rem 1.25rem;
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: rgba(13, 110, 253, 0.06);
  color: var(--text);
}

/* =========================
     FOOTER
  ========================= */
.footer {
  padding: 34px 0 48px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer a {
  color: var(--muted);
  margin: 0 12px;
}

.footer a:hover {
  color: var(--primary);
}

.site-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border-top: 1px solid #e5edf4;
  margin-top: 80px;
  padding-top: 60px;
}

.footer-top {
  padding-bottom: 34px;
}

.footer-logo {
  display: inline-block;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.footer-text {
  color: var(--muted);
  line-height: 1.8;
  /* max-width: 360px; */
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #dce6ef;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(15, 39, 71, 0.04);
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom-right a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #e5edf4;
  padding: 22px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-left,
.footer-bottom-right a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

footer {
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* =========================
     RESPONSIVE
  ========================= */
@media (max-width: 991.98px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 100px 0 85px;
  }

  .hero::after {
    height: 150px;
    bottom: -90px;
  }

  .search-shell {
    flex-direction: column;
  }

  .search-shell button {
    padding: 16px 20px;
  }

  .card-content p,
  .mini-card p {
    min-height: auto;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-text {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}