:root {
  --color-primary: #12355b;
  --color-primary-dark: #08223f;
  --color-primary-soft: #eaf2fb;
  --color-accent: #c9953f;
  --color-accent-dark: #a97825;
  --color-text: #1d2939;
  --color-muted: #667085;
  --color-border: #d9e2ec;
  --color-bg: #ffffff;
  --color-bg-soft: #f6f9fc;
  --color-card: #ffffff;
  --shadow-sm: 0 8px 24px rgba(18, 53, 91, 0.08);
  --shadow-md: 0 18px 50px rgba(18, 53, 91, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--color-primary-dark);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 900px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-primary-dark);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 236, 0.7);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
}

/* Neues VAP Logo Styling */
.brand-vap {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary-dark);
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Der farbige Punkt in der Komplementärfarbe */
.brand-dot {
  color: var(--color-accent); 
}

/* Anpassung für den dunklen Footer (VAP wird weiß, Punkt bleibt farbig) */
.footer-brand .brand-vap {
  color: #ffffff;
}



.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--color-primary-dark);
  font-weight: 650;
  font-size: 0.96rem;
}

.main-nav a,
.footer-nav a,
.footer-bottom a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--color-accent-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}

.btn-secondary {
  color: var(--color-primary-dark);
  background: #fff;
  border-color: var(--color-border);
}

.btn-outline {
  color: var(--color-primary-dark);
  border-color: var(--color-border);
  background: #fff;
}

.btn-light {
  color: var(--color-primary-dark);
  background: #fff;
}

.btn-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.btn-large {
  min-height: 60px;
  padding-inline: 34px;
  font-size: 1.05rem;
}

.section {
  padding: 96px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(201, 149, 63, 0.18), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.section-muted {
  background: var(--color-bg-soft);
}

.hero {
  padding: 86px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(18, 53, 91, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-accent);
}

.hero-text {
  margin-top: 24px;
  max-width: 720px;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-primary-dark);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-card {
  position: relative;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-md);
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -38px;
  top: -36px;
  border-radius: 50%;
  background: rgba(201, 149, 63, 0.25);
  z-index: -1;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 320px;
  border: 2px dashed rgba(18, 53, 91, 0.22);
  border-radius: var(--radius-md);
  color: rgba(18, 53, 91, 0.75);
  background:
    linear-gradient(135deg, rgba(18, 53, 91, 0.06), rgba(201, 149, 63, 0.09)),
    repeating-linear-gradient(-45deg, rgba(18, 53, 91, 0.04) 0 10px, transparent 10px 20px);
  text-align: center;
  font-weight: 800;
}

/* Styling für das Hero-Video mit exakten Platzhalter-Maßen */
.hero-video {
  width: 100%;
  height: 430px; /* Die exakte Höhe des alten Platzhalters */
  object-fit: cover; /* Schneidet das Video passend zu, ohne es zu verzerren */
  border-radius: var(--radius-md);
}

.image-hero {
  min-height: 430px;
}

.image-wide {
  min-height: 520px;
}

.image-square {
  min-height: 380px;
}

.hero-info {
  margin: -58px auto 0;
  position: relative;
  width: calc(100% - 34px);
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.info-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--color-accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-info strong {
  display: block;
  color: var(--color-primary-dark);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-info p {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.trustbar {
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.trustbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trustbar-grid div {
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--color-bg-soft);
}

.trustbar-grid strong,
.trustbar-grid span {
  display: block;
}

.trustbar-grid strong {
  color: var(--color-primary-dark);
}

.trustbar-grid span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.cards {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.card,
.step,
.stat-card,
.check-card,
.quote-card,
.faq-list details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
}

.card {
  padding: 32px;
}

.featured-card {
  border-color: rgba(201, 149, 63, 0.46);
  background: linear-gradient(180deg, #fffdf8, #fff);
  transform: translateY(-10px);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  font-size: 1.25rem;
  font-weight: 900;
}

.card p,
.step p,
.check-card p {
  margin-top: 14px;
  color: var(--color-muted);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 58px;
}

.split-content p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 1.06rem;
}

/* Styling für das Beratungs-Bild mit exakter Platzhalter-Höhe */
.consultation-image {
  width: 100%;
  height: 520px; /* Exakt die Höhe des alten Platzhalters */
  object-fit: cover; /* Schneidet das Bild dynamisch zu, ohne es zu verzerren */
  object-position: center; /* Hält den Fokus in der Mitte des Bildes */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}


.benefit-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.benefit-list div {
  padding: 20px 20px 20px 58px;
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
}

.benefit-list div::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 900;
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  color: var(--color-primary-dark);
}

.benefit-list span {
  margin-top: 4px;
  color: var(--color-muted);
}

.stats-section {
  padding: 56px 0;
  background: var(--color-primary-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat-card {
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.stat-number {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.stat-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(18, 53, 91, 0.06);
}

.step-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--color-accent-dark);
  font-weight: 950;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 48px;
}

.comparison-grid .btn {
  margin-top: 28px;
}

.check-card {
  padding: 36px;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--color-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: center;
  gap: 34px;
}

.quote-card {
  padding: clamp(34px, 7vw, 76px);
  background:
    radial-gradient(circle at top right, rgba(201, 149, 63, 0.16), transparent 32%),
    #fff;
}

.quote {
  color: var(--color-primary-dark);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.quote-card span {
  display: block;
  margin-top: 24px;
  color: var(--color-muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 42px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  color: var(--color-primary-dark);
  font-weight: 850;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 26px 26px;
  color: var(--color-muted);
}

.final-cta {
  padding-top: 40px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(34px, 7vw, 70px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at right, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: var(--shadow-md);
}

.cta-box h2,
.cta-box .eyebrow {
  color: #fff;
}

.cta-box .eyebrow {
  background: rgba(255, 255, 255, 0.12);
}

.cta-box p:not(.eyebrow) {
  margin-top: 16px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.site-footer {
  margin-top: 70px;
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  background: #071d35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 44px;
}

.footer-brand .brand-mark {
  background: #fff;
  color: var(--color-primary-dark);
}

.footer-brand .brand-text strong {
  color: #fff;
}

.footer-brand .brand-text small,
.site-footer p {
  color: rgba(255, 255, 255, 0.62);
}

.site-footer p {
  max-width: 470px;
  margin-top: 18px;
}

.footer-nav {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-nav strong {
  margin-bottom: 6px;
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
}

/* ==========================================================================
   MEDIEN-KLASSEN (Video & Bilder)
   ========================================================================== */
.hero-video {
  width: 100%;
  height: 430px; 
  object-fit: cover; 
  border-radius: var(--radius-md);
}

.consultation-image {
  width: 100%;
  height: 520px; 
  object-fit: cover; 
  object-position: center; 
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.testimonial-image {
  width: 100%;
  height: 380px; 
  object-fit: cover; 
  object-position: center 60%; /* Gesicht perfekt fokussiert */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   EU AI ACT COMPLIANCE (Art. 50 Transparenz)
   ========================================================================== */

/* Wrapper positioniert den Badge exakt über dem jeweiligen Medium */
/* Wrapper positioniert den Badge exakt über dem jeweiligen Medium */
.ai-media-wrapper {
  position: relative;
  display: flex; /* Flexbox hilft hier, den Rahmen eng am Bild zu halten */
  width: 100%;
  height: fit-content; /* <-- Das ist die magische Zeile: Passt sich exakt ans Bild an statt an den Text */
  align-self: center; /* <-- Zwingt den Wrapper in die vertikale Mitte der Spalte */
}

/* Der Badge nutzt Glassmorphism: Unaufdringlich, aber juristisch eindeutig */
.ai-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari Support */
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--color-primary-dark);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none; /* Klicks gehen durch den Badge hindurch */
  box-shadow: 0 4px 12px rgba(18, 53, 91, 0.08);
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

/* Leichter Hover-Effekt: Wenn man über das Bild fährt, wird der Badge präsenter */
.ai-media-wrapper:hover .ai-badge {
  opacity: 1;
}

/* Styling für den globalen Footer-Disclaimer */
.ai-disclaimer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.ai-disclaimer strong {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.75);
}

.ai-disclaimer p {
  margin: 0;
  color: inherit;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .split-grid,
  .comparison-grid,
  .testimonial-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .three-columns,
  .steps,
  .stats-grid,
  .trustbar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-card {
    transform: none;
  }

  .cta-box {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 48px;
  }

  .header-inner .btn-small {
    width: 100%;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.92rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .three-columns,
  .steps,
  .stats-grid,
  .trustbar-grid {
    grid-template-columns: 1fr;
  }

 .image-hero,
  .image-wide,
  .image-square,
  .hero-video,
  .consultation-image { /* <-- Hier das neue Bild hinzufügen */
    min-height: 300px;
    height: 300px;
  }
 
  
  .card,
  .step,
  .check-card {
    padding: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

  /* Styling für das echte Testimonial-Bild mit exakter Platzhalter-Höhe */
.testimonial-image {
  width: 100%;
  height: 380px; /* Exakt die Höhe des alten Platzhalters */
  object-fit: cover; /* Schneidet das Bild dynamisch zu, ohne es zu verzerren */
  object-position: center 60%; /* Fokussiert das Gesicht im Hochformat */
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}