/* ========================================
   REEMENTO - Optimized Styles
   ======================================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0057B8;
  --blue-dark: #003d82;
  --blue-light: #e8f2fc;
  --blue-50: #f0f7ff;
  --dark: #0F2238;
  --dark-bg: #0c1a2e;
  --text: #334155;
  --text-light: #64748b;
  --border: #c8d5e1;
  --border-light: #e2e8f0;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.08);
  --transition: 0.3s ease;
  --container: 1080px;
  --content-width: 680px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%; /* iOS Safari: kein Auto-Zoom bei Landscape */
  text-size-adjust: 100%;
  /* Robuste Overflow-Sperre (iOS Safari Bugfix) */
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  width: 100%;
  max-width: 100vw;
  overflow-x: clip;
  position: relative;
  margin: 0;
  /* Tap-Highlight dezent (iOS) */
  -webkit-tap-highlight-color: rgba(0, 87, 184, 0.15);
}

/* Fallback für Browser ohne overflow: clip */
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden; }
}

/* Root-Container: verhindert Overflow durch alle direkten Kinder */
body > *, main > * {
  max-width: 100%;
}

/* Long-Word-Break Safety: break-word statt hyphens (Safari-Kompatibilität) */
h1, h2, h3, h4, p, li, a, span, strong, em, blockquote, td, th {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Grid/Flex-Children: min-width: 0 verhindert Aufblähen durch langen Content.
   CSS-Grid "1fr" = minmax(auto, 1fr) = min-content kann Grid-Spalten über Parent hinaus wachsen lassen.
   Fix: explizit minmax(0, 1fr) oder min-width: 0 auf die Children. */
.hero-grid,
.hero-content,
.hero-card,
.packages-grid,
.package-card,
.comparison-grid,
.comparison-card,
.deliverables-grid,
.deliverable-card,
.audience-grid,
.audience-card,
.process-grid,
.process-step,
.about-content,
.about-text,
.about-details,
.contact-form-section,
.contact-form-section > *,
.package-detail,
.package-detail > *,
.hero-flow,
.footer-inner,
.footer-col,
.comparison-contrast,
.hero-card-item,
.hero-card-item > *,
.container,
.content-narrow {
  min-width: 0;
}

/* Fixed/sticky Elemente: bounded by viewport */
.site-header, .cookie-banner, .sticky-cta, .pdf-modal, .cookie-modal-overlay {
  max-width: 100vw;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
img { border: 0; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }

/* Alle Touch-Elemente: mindestens 44×44 (iOS HIG), kein Tap-Delay */
button, a, input, textarea, select {
  touch-action: manipulation;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.content-narrow { max-width: var(--content-width); margin: 0 auto; padding: 0 24px; width: 100%; }

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  /* Lange deutsche Komposita korrekt umbrechen */
  overflow-wrap: break-word;
  word-wrap: break-word;
  max-width: 100%;
}

h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: -0.025em; font-weight: 800; }
h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

.text-accent { color: var(--blue); }
.text-accent-light { color: #60a5fa; }
.text-white { color: var(--white); }
.text-light { color: #94a3b8; }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: var(--content-width);
  line-height: 1.6;
}
p { max-width: 70ch; } /* ~65-75 chars per line */

/* ========================================
   Buttons
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--blue);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-50);
  color: var(--blue);
}

/* Outline-Variante für dunkle Sektionen (section--dark) */
.btn-outline--light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline--light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Automatische Anpassung aller .btn-outline innerhalb von .section--dark */
.section--dark .btn-outline:not(.btn-primary) {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.section--dark .btn-outline:not(.btn-primary):hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-sm { padding: 10px 16px; font-size: 14px; border-radius: 12px; }

/* ========================================
   Header
   ======================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: all var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 4px 24px -8px rgba(15, 34, 56, 0.08);
  border-bottom-color: var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
  min-width: 0;
  max-width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  transition: opacity 0.2s ease;
}
.logo:hover { opacity: 0.85; }
.logo-icon {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.logo:hover .logo-icon { transform: rotate(-4deg) scale(1.05); }
.logo-name {
  font-size: 1.2rem;
  font-weight: 800;
  display: block;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.main-nav a {
  padding: 9px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}
.main-nav a:not(.btn):hover {
  color: var(--blue);
  background: var(--blue-50);
}
.main-nav a.nav-active:not(.btn) {
  color: var(--blue);
  font-weight: 600;
}
.main-nav a.nav-active:not(.btn)::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}
.main-nav .btn-sm {
  margin-left: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 2px 12px -4px rgba(0, 87, 184, 0.35);
}
.main-nav .btn-sm:hover {
  box-shadow: 0 6px 20px -6px rgba(0, 87, 184, 0.5);
  transform: translateY(-1px);
}
.nav-pill {
  background: var(--blue-50);
  color: var(--blue) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* Hamburger → X animation */
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   Hero
   ======================================== */

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-tags span {
  background: var(--blue-light);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-top: 20px;
  line-height: 1.7;
}
.hero-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 12px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
}
.stat-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 10px;
}
.stat strong { display: block; font-size: 0.9rem; color: var(--dark); }
.stat span { font-size: 0.8rem; color: var(--text-light); }

/* Hero Card */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.hero-card-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
}
.hero-card-item:first-of-type { border-top: none; padding-top: 0; }
.hero-card-item strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 4px; }
.hero-card-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.5; }

.card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
.card-icon--blue { background: var(--blue-light); color: var(--blue); }

.hero-card-highlight {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

/* ========================================
   Logo Bar (dezente Referenz-Leiste)
   ======================================== */

.logo-bar {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.logo-bar-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-bar-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  color: #94a3b8;
  opacity: 0.75;
  transition: opacity 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.logo-bar-item:hover {
  opacity: 1;
  color: var(--blue);
  transform: translateY(-1px);
}
.logo-bar-item svg {
  height: 100%;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .logo-bar { padding: 32px 0; }
  .logo-bar-track { gap: 28px; }
  .logo-bar-item { height: 28px; }
}

/* ========================================
   Compliance Bar
   ======================================== */

.compliance-bar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.compliance-bar .container {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.compliance-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}
.compliance-items { display: flex; gap: 10px; flex-wrap: wrap; }
.compliance-badge {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
}

/* ========================================
   Sections
   ======================================== */

.section { padding: 96px 0; }
.section--light { background: var(--blue-50); }
.section--dark { background: var(--dark-bg); }

.section-header {
  margin-bottom: 48px;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-label--light { color: #60a5fa; }
.section-header h2 { margin-bottom: 16px; }

/* ========================================
   Packages
   ======================================== */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.package-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg);
  position: relative;
}

.package-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 8px;
}
.package-card h3 { margin-bottom: 12px; }
.package-card > p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.package-meta {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}
.package-meta span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.package-features li {
  font-size: 0.9rem;
  padding-left: 22px;
  position: relative;
  color: var(--text);
}
.package-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

/* package-card--compact removed - not needed with 2x2 grid */

/* ========================================
   Deliverables
   ======================================== */

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.deliverables-grid--3 { grid-template-columns: repeat(3, 1fr); }
.deliverables-grid--4 { grid-template-columns: repeat(4, 1fr); }

.deliverable-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.deliverable-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.deliverable-card h4 { margin-bottom: 8px; }
.deliverable-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; flex: 1; }

.disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--border);
}

/* ========================================
   Audience
   ======================================== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.audience-card {
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid transparent;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.audience-card:hover { border-color: var(--blue); }
.audience-card h4 { margin-bottom: 8px; }
.audience-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ========================================
   Process
   ======================================== */

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

.process-step {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ========================================
   About
   ======================================== */

.about-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}
.about-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--blue-50);
  padding: 28px;
  border-radius: var(--radius);
}
.about-detail strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-bottom: 4px;
}
.about-detail span { font-weight: 600; color: var(--dark); font-size: 0.95rem; }

/* ========================================
   Contact
   ======================================== */

.section--dark h2 { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.contact-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 20px;
}
.contact-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 6px;
}
.contact-item a, .contact-item span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-item a:hover { color: #60a5fa; }

/* ========================================
   FAQ
   ======================================== */

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--blue); }

.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-light);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: '-';
}
.faq-item summary:hover { color: var(--blue); }

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  background: var(--dark-bg);
  color: #94a3b8;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 24px;
  flex-wrap: wrap;
}

.footer-brand .logo { margin-bottom: 12px; }
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: #64748b; }
.footer-address { font-size: 0.88rem; }

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 600;
}
.footer-links a:hover { color: var(--white); }

.footer-social a {
  color: #94a3b8;
  transition: color var(--transition);
}
.footer-social a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: #64748b; font-size: 0.82rem; }
.footer-legal a:hover { color: var(--white); }

/* ========================================
   Breadcrumb
   ======================================== */

.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--blue); font-weight: 600; }
.breadcrumb a:hover { color: var(--blue-dark); }
.breadcrumb span { margin: 0 8px; color: var(--border); }

/* ========================================
   Page Header (Subpages)
   ======================================== */

.page-header {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border-light);
}
.page-header h1 { margin-bottom: 12px; }
.page-header .section-lead { margin-bottom: 0; }

/* ========================================
   Legal Content (Impressum, Datenschutz, AGB)
   ======================================== */

.legal-content {
  max-width: 780px;
  padding: 48px 0 80px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-content p {
  margin-bottom: 12px;
  line-height: 1.8;
}
.legal-content ul, .legal-content ol {
  margin: 12px 0 16px 24px;
  line-height: 1.8;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-content a:hover { color: var(--blue-dark); }
.legal-content strong { color: var(--dark); }

/* ========================================
   Contact Form
   ======================================== */

.contact-form-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .form-hint {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}
.form-group.error input,
.form-group.error textarea {
  border-color: #dc2626;
}
.form-group .error-msg {
  font-size: 0.8rem;
  color: #dc2626;
  margin-top: 4px;
  display: none;
}
.form-group.error .error-msg { display: block; }

.form-success {
  display: none;
  padding: 20px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius-sm);
  color: #065f46;
  font-weight: 600;
}

/* ========================================
   Cookie Banner (DSGVO-konform)
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 24px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner .container {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 0.88rem;
  color: var(--text);
  min-width: 280px;
  line-height: 1.6;
}
.cookie-text a { color: var(--blue); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-actions .btn { padding: 10px 18px; font-size: 0.85rem; }

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal-overlay.visible { display: flex; }

.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.cookie-modal h3 { margin-bottom: 8px; font-size: 1.2rem; }
.cookie-modal > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 24px; line-height: 1.6; }

.cookie-category {
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-category-header strong { font-size: 0.95rem; color: var(--dark); }
.cookie-category-header .cookie-badge {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 700;
}
.cookie-category p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.5;
}
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
}
.cookie-toggle input:checked + .cookie-toggle-track {
  background: var(--blue);
}
.cookie-toggle input:checked + .cookie-toggle-track::after {
  transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-toggle-track {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cookie-modal-actions .btn { flex: 1; justify-content: center; min-width: 140px; }

/* ========================================
   Active Nav State
   ======================================== */

.main-nav a.nav-active {
  color: var(--blue);
  background: var(--blue-50);
  border-radius: 10px;
}

/* ========================================
   Package Detail (Leistungen page)
   ======================================== */

.package-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}
.package-detail:last-child { border-bottom: none; }
.package-detail-header .package-label { margin-bottom: 8px; }
.package-detail-header h2 { font-size: 1.6rem; margin-bottom: 12px; }
.package-detail-header > p { color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.package-detail-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}
.package-detail-meta .meta-item {
  padding: 10px 16px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}
.package-detail-features {
  background: var(--blue-50);
  border-radius: var(--radius);
  padding: 28px;
}
.package-detail-features h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}
.package-detail-features .package-features { gap: 12px; }

/* ========================================
   About Page Extended
   ======================================== */

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-value-card {
  padding: 28px;
  background: var(--blue-50);
  border-radius: var(--radius);
}
.about-value-card h4 { margin-bottom: 8px; }
.about-value-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ========================================
   Problem / Lösung Section
   ======================================== */

.problem-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.problem-intro .section-label {
  display: inline-block;
  margin-bottom: 16px;
}
.problem-intro h2 {
  margin-bottom: 24px;
}
.problem-intro .section-lead {
  margin: 0 auto 16px;
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
}
.problem-intro p:not(.section-lead) {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-light);
}

/* --- Comparison Grid --- */

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.comparison-card {
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.comparison-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -12px rgba(0, 87, 184, 0.15);
  border-color: var(--blue-light);
}
.comparison-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.comparison-card:hover .comparison-icon {
  background: var(--blue);
  color: var(--white);
}
.comparison-contrast {
  flex: 1;
  min-width: 0;
}
.comparison-other {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
}
.comparison-other::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--border);
}
.comparison-us {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.45;
  position: relative;
  padding-left: 22px;
}
.comparison-us::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 2px;
  background: var(--blue);
}

/* --- Differentiator Quote --- */

.differentiator-quote {
  max-width: 760px;
  margin: 72px auto 0;
  text-align: center;
  padding: 40px 24px 0;
  position: relative;
}
.differentiator-marks {
  color: var(--blue);
  opacity: 0.25;
  margin-bottom: 20px;
}
.differentiator-quote blockquote {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--dark);
  letter-spacing: -0.015em;
  margin: 0;
}
.differentiator-quote blockquote em {
  color: var(--blue);
  font-style: normal;
  position: relative;
  display: inline-block;
}
.differentiator-quote blockquote em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background: var(--blue-light);
  z-index: -1;
  border-radius: 2px;
}

/* Legacy support for old .differentiator */
.differentiator {
  display: none;
}

@media (max-width: 768px) {
  .comparison-card { padding: 20px 22px; gap: 14px; }
  .comparison-icon { width: 38px; height: 38px; }
  .differentiator-quote { margin-top: 48px; padding: 32px 16px 0; }
}

/* ========================================
   Problem Bullets
   ======================================== */

.problem-bullets {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.problem-bullets li {
  font-size: 0.9rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}
.problem-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #dc2626;
}

/* ========================================
   Package Goal
   ======================================== */

.package-goal {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 12px;
  margin-bottom: 16px;
}

/* ========================================
   Deliverable Audience
   ======================================== */

.deliverable-audience {
  display: block;
  margin-top: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ========================================
   Section Footer Note
   ======================================== */

.section-footer-note {
  margin-top: 32px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}

/* ========================================
   5-Step Process Grid
   ======================================== */

.process-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}

/* ========================================
   Footer Columns
   ======================================== */

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 4px;
}
.footer-col a {
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 400;
}
.footer-col a:hover { color: var(--white); }

/* ========================================
   Skip Navigation (Accessibility)
   ======================================== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  background: var(--blue);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* ========================================
   Focus States (Accessibility)
   ======================================== */

a:focus-visible,
button:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.15);
}

/* ========================================
   Sticky Mobile CTA
   ======================================== */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  text-align: center;
}
.sticky-cta .btn { width: 100%; justify-content: center; }
.sticky-cta.hidden { display: none !important; }

/* ========================================
   Trust Bar
   ======================================== */

.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 1.6rem;
  color: var(--blue);
  font-weight: 800;
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ========================================
   Honeypot (hidden from users)
   ======================================== */

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ========================================
   ASSESSMENT TEASER (Homepage)
   ======================================== */

.assessment-teaser {
  background: linear-gradient(135deg, var(--blue-50) 0%, #e8f2fc 100%);
  border: 1px solid var(--blue-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.assessment-teaser::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,87,184,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.assessment-teaser-content {
  flex: 1;
  min-width: 280px;
  position: relative;
}
.assessment-teaser-badge {
  display: inline-block;
  background: var(--white);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  border: 1px solid var(--blue-light);
}
.assessment-teaser h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
.assessment-teaser p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.5;
}
.assessment-teaser .btn {
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 768px) {
  .assessment-teaser { padding: 28px 24px; }
  .assessment-teaser .btn { width: 100%; justify-content: center; }
}

/* ========================================
   HIGH-SPEED ASSESSMENT
   ======================================== */

.body-assessment { background: var(--blue-50); }

.assessment-main {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}

.assessment-stage {
  display: none;
  width: 100%;
  animation: assessFadeIn 0.35s ease;
}
.assessment-stage.active { display: block; }

@keyframes assessFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.assessment-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.assessment-container--result { max-width: 640px; }

.assessment-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 16px;
}

.assessment-stage--intro h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.assessment-lead {
  font-size: 1.15rem;
  color: var(--text-light);
  margin: 0 auto 40px;
  max-width: 520px;
  line-height: 1.5;
}

.btn-lg {
  padding: 18px 32px;
  font-size: 1rem;
  border-radius: 14px;
}

.assessment-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---- Quiz Stage ---- */

.assessment-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.assessment-progress-bar {
  flex: 1;
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  overflow: hidden;
}
.assessment-progress-fill {
  height: 100%;
  background: var(--blue);
  width: 0%;
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.assessment-counter {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  flex-shrink: 0;
  min-width: 72px;
  text-align: right;
}

.assessment-question-wrap {
  margin-bottom: 32px;
}

.assessment-question-card {
  animation: questionSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes questionSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.assessment-question-text {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 40px;
  font-weight: 700;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.assessment-answers {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}

.assessment-answer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 14px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  width: 100%;
}
.assessment-answer:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 87, 184, 0.1);
}
.assessment-answer:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.assessment-answer.selected {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.assessment-answer.pulse {
  transform: scale(0.98);
}

.assessment-answer-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.answer-yes .assessment-answer-icon { background: #dcfce7; color: #16a34a; }
.answer-partial .assessment-answer-icon { background: #fef3c7; color: #d97706; }
.answer-no .assessment-answer-icon { background: #fee2e2; color: #dc2626; }
.assessment-answer.selected .assessment-answer-icon { background: rgba(255,255,255,0.2); color: var(--white); }

.assessment-answer-label { flex: 1; }

.assessment-back {
  margin-top: 32px;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}
.assessment-back:hover {
  color: var(--blue);
  background: var(--white);
}

/* ---- Result Stage ---- */

.result-header { margin-bottom: 32px; }
.result-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0;
  letter-spacing: -0.02em;
}

.result-score {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
}
.result-score-ring { width: 100%; height: 100%; }
.result-score-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.result-score-value span:first-child {
  font-size: 3.2rem;
  line-height: 1;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
}
.result-score-max {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 4px;
}

.result-summary {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 40px;
}

.result-gaps {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.result-gaps h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.result-gaps ol {
  list-style: none;
  counter-reset: gap-counter;
  padding: 0;
  margin: 0;
}
.result-gaps li {
  counter-increment: gap-counter;
  padding: 14px 0 14px 48px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.98rem;
  color: var(--text);
  line-height: 1.5;
}
.result-gaps li:last-child { border-bottom: none; }
.result-gaps li::before {
  content: counter(gap-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.result-actions .btn { min-width: 240px; }

.assessment-restart {
  background: none;
  border: none;
  color: var(--text-light);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s ease;
}
.assessment-restart:hover { color: var(--blue); }

/* ---- PDF Modal ---- */

.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(15, 34, 56, 0.6);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.pdf-modal.visible {
  display: flex;
  animation: modalFade 0.25s ease;
}
@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pdf-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pdf-modal-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.pdf-modal-content > p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.pdf-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--blue-50);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.2s ease;
}
.pdf-modal-close:hover { background: var(--border-light); color: var(--dark); }
.pdf-modal-content .form-hint {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  text-align: center;
}

/* ---- Print Report (nur beim Drucken sichtbar) ---- */
.print-report {
  display: none;
  position: absolute;
  left: -99999px;
  top: 0;
  width: 100%;
}

@media (max-width: 640px) {
  .assessment-main { padding: 24px 0; }
  .assessment-question-text { min-height: 60px; margin-bottom: 28px; }
  .assessment-answer { padding: 18px 20px; font-size: 1rem; }
  .assessment-answer-icon { width: 32px; height: 32px; }
  .result-score { width: 170px; height: 170px; }
  .result-score-value span:first-child { font-size: 2.7rem; }
  .result-gaps { padding: 24px 20px; }
  .result-actions .btn { min-width: auto; width: 100%; }
  .pdf-modal-content { padding: 28px 24px; }
  .assessment-meta { gap: 14px; font-size: 0.78rem; }
}

/* ========================================
   Print Styles
   ======================================== */

@page {
  size: A4;
  margin: 0;
}

@media print {
  .site-header, .site-footer, .cookie-banner, .cookie-modal-overlay, .sticky-cta, .pdf-modal, .skip-link { display: none !important; }
  .section { padding: 24px 0; }
  .reveal { opacity: 1; transform: none; }
  body { font-size: 10pt; color: #000; background: #fff; margin: 0; padding: 0; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  a { color: #000; text-decoration: underline; }
  .legal-content { max-width: 100%; }

  /* Assessment: zeige nur den Print-Report beim Drucken */
  .body-assessment .assessment-main,
  .body-assessment .assessment-stage,
  .body-assessment .assessment-main > *,
  .body-assessment .site-footer { display: none !important; }

  .body-assessment { background: #fff !important; }
  .body-assessment .print-report {
    display: block !important;
    padding: 14mm 16mm;
    max-width: 100%;
    width: 100%;
    color: #000;
    font-family: 'Inter', sans-serif;
    position: static;
    box-sizing: border-box;
    page-break-after: avoid;
    page-break-inside: avoid;
  }

  /* Header */
  .print-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8pt;
    border-bottom: 1.5pt solid #0057B8;
    margin-bottom: 12pt;
  }
  .print-logo { font-size: 14pt; font-weight: 800; color: #0057B8; letter-spacing: -0.02em; }
  .print-date { font-size: 8.5pt; color: #64748b; }

  /* Title */
  .print-report h1 {
    font-size: 18pt;
    color: #0F2238;
    margin: 0 0 14pt;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    page-break-after: avoid;
  }

  /* H2 */
  .print-report h2 {
    font-size: 9pt;
    color: #0057B8;
    margin: 10pt 0 4pt;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    page-break-after: avoid;
  }

  /* Score Block */
  .print-score-block {
    text-align: center;
    padding: 14pt 16pt;
    border: 1.5pt solid #0057B8;
    border-radius: 6pt;
    margin-bottom: 12pt;
    background: #f0f7ff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .print-score-value {
    font-size: 32pt;
    font-weight: 800;
    color: #0057B8;
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .print-score-category {
    font-size: 11pt;
    font-weight: 700;
    margin-top: 4pt;
    color: #64748b;
  }

  /* Text */
  .print-report p {
    font-size: 9.5pt;
    line-height: 1.45;
    margin: 0 0 6pt;
    color: #334155;
  }

  /* Lists */
  .print-report ol, .print-report ul {
    margin: 4pt 0 0 16pt;
    padding: 0;
    font-size: 9.5pt;
    line-height: 1.5;
    color: #334155;
  }
  .print-report li {
    margin-bottom: 2pt;
    padding-left: 2pt;
  }

  /* Disclaimer */
  .print-disclaimer {
    margin-top: 12pt;
    padding: 8pt 10pt;
    background: #f0f7ff !important;
    border-left: 2pt solid #0057B8;
    font-size: 7.5pt;
    line-height: 1.4;
    color: #334155;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Footer */
  .print-footer {
    margin-top: 10pt;
    padding-top: 6pt;
    border-top: 0.5pt solid #c8d5e1;
    font-size: 7.5pt;
    color: #64748b;
    text-align: center;
  }
}

/* ========================================
   Animations & Wow Effects
   ======================================== */

/* --- Scroll Reveal (enhanced) --- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered reveal for grid children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* --- Headline Reveal (scroll-triggered split) --- */
.reveal-headline {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-headline.visible { opacity: 1; transform: translateY(0); }
.reveal-headline .text-accent {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
  display: inline-block;
}
.reveal-headline.visible .text-accent { opacity: 1; transform: translateY(0); }

/* --- Card hover premium --- */
.package-card,
.deliverable-card,
.audience-card,
.comparison-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.package-card:hover,
.deliverable-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 87, 184, 0.08), 0 4px 12px rgba(0,0,0,0.04);
}
.comparison-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

/* --- Animated counter --- */
.counter-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

/* --- Hero Flow Pipeline (continuous animation) --- */
.hero-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  /* Extra Inline-Padding, damit Glow/Scale des aktiven Nodes nicht abgeschnitten wird */
  padding: 20px 12px;
  margin-left: -12px;
  margin-right: -12px;
  overflow-x: auto;
  /* Scrollbar ausblenden (funktional bleibt, nur visuell weg) */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge Legacy */
}
.hero-flow::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
.hero-flow-step {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-flow-node {
  padding: 10px 18px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
  position: relative;
  transition: all 0.4s ease;
}
.hero-flow-node:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Pulse travels through the pipeline */
.hero-flow-node.flow-active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 6px rgba(0, 87, 184, 0.12), 0 4px 16px rgba(0, 87, 184, 0.15);
  transform: scale(1.05);
}
/* Nodes that have been "passed" stay highlighted */
.hero-flow-node.flow-done {
  border-color: var(--blue);
  color: var(--blue);
}

.hero-flow-arrow {
  width: 36px;
  height: 2px;
  background: var(--border-light);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-flow-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border: solid var(--border);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(-45deg);
  transition: border-color 0.3s ease;
}
.hero-flow-arrow.flow-active::after {
  border-color: var(--blue);
}

/* Data pulse traveling through arrow */
.hero-flow-arrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 12px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  opacity: 0;
}
.hero-flow-arrow.flow-pulse::before {
  opacity: 1;
  animation: arrowPulse 0.5s ease forwards;
}

@keyframes arrowPulse {
  0% { left: 0; opacity: 1; }
  100% { left: calc(100% - 12px); opacity: 0.3; }
}

/* --- Process step hover pulse --- */
.process-step {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 87, 184, 0.1);
}
.step-number {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(0, 87, 184, 0.12);
}

/* --- Differentiator pulse --- */
.differentiator {
  position: relative;
  overflow: hidden;
}
.differentiator::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite 2s;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* --- Section parallax subtle --- */
.section--parallax {
  background-attachment: fixed;
  background-size: cover;
}

/* --- Gradient border glow on featured card --- */
.package-card--featured {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 4px 24px rgba(0, 87, 184, 0.12);
}
.package-card--featured::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg, var(--blue), #60a5fa, var(--blue));
  background-size: 200% 200%;
  z-index: -1;
  animation: gradientShift 4s ease infinite;
}
.package-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  z-index: -1;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Readiness Assessment Widget --- */
.assessment-widget {
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.assessment-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.assessment-progress-dot {
  width: 100%;
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  transition: background 0.4s ease;
}
.assessment-progress-dot.active { background: var(--blue); }
.assessment-progress-dot.done { background: var(--blue); }

.assessment-question {
  display: none;
  animation: fadeSlideIn 0.4s ease;
}
.assessment-question.active { display: block; }
.assessment-question h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--dark);
}
.assessment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.assessment-option {
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.25s ease;
  background: var(--white);
  color: var(--text);
  text-align: left;
  font-family: inherit;
}
.assessment-option:hover {
  border-color: var(--blue);
  background: var(--blue-50);
  color: var(--blue);
}
.assessment-option.selected {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.assessment-result {
  display: none;
  text-align: center;
  animation: fadeSlideIn 0.5s ease;
}
.assessment-result.active { display: block; }
.assessment-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.assessment-score-label {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.assessment-score-bar {
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  margin-bottom: 24px;
  overflow: hidden;
}
.assessment-score-fill {
  height: 100%;
  background: linear-gradient(90deg, #dc2626, #f59e0b, #22c55e);
  border-radius: 4px;
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Floating dots background (subtle) --- */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 50vw);
  height: min(400px, 50vw);
  max-width: 100%;
  background: radial-gradient(circle, rgba(0,87,184,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero::before { display: none; }
}
.hero { position: relative; }
.hero > * { position: relative; z-index: 1; }

/* --- Smooth underline on links --- */
.about-text a, .legal-content a, .deliverable-card a {
  text-decoration: none;
  background-image: linear-gradient(var(--blue), var(--blue));
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease;
}
.about-text a:hover, .legal-content a:hover, .deliverable-card a:hover {
  background-size: 100% 2px;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-stagger > * { opacity: 1; transform: none; }
  .reveal-headline { opacity: 1; transform: none; }
  .reveal-headline .text-accent { opacity: 1; transform: none; }
  .hero-flow-step { opacity: 1; transform: none; }
}

/* ========================================
   Responsive
   ======================================== */

/* ============================================================
   RESPONSIVE SYSTEM
   Breakpoints:
     - 1024px: Tablet / kleines Desktop
     - 768px:  Mobile-Landscape / großes Handy
     - 480px:  Mobile-Portrait / Standard-iPhone
   ============================================================ */

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  :root { --container: 100%; }

  .container { padding: 0 28px; }
  .content-narrow { padding: 0 28px; }

  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .hero-card { max-width: 560px; margin: 0 auto; }

  .packages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-content { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .contact-form-section { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .package-detail { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .about-values { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .deliverables-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deliverables-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .deliverables-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .section { padding: 72px 0; }
}

/* ---------- MOBILE (≤ 768px) ---------- */
@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }

  .container { padding: 0 20px; }
  .content-narrow { padding: 0 20px; }

  /* Typografie: kompakter, aber lesbar */
  body { font-size: 17px; line-height: 1.6; }
  h1 {
    font-size: clamp(1.6rem, 5.5vw, 2rem);
    line-height: 1.2;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  h2 {
    font-size: clamp(1.35rem, 4.5vw, 1.7rem);
    line-height: 1.25;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  h3 { font-size: 1.1rem; }
  .section-lead { font-size: 1rem; }

  /* Header / Mobile Nav */
  .site-header { position: sticky; top: 0; }
  .header-inner { height: 64px; gap: 16px; }
  .logo-name { font-size: 1.05rem; }
  .logo-tagline { font-size: 0.68rem; }
  .logo-icon { width: 36px; height: 36px; }

  /* Mobile Full-Screen Overlay Navigation
     Das Nav wird per JS beim Öffnen in <body> verschoben, um den iOS-Safari-Bug zu umgehen,
     bei dem position:fixed innerhalb eines position:sticky Parents zu absolute wird. */
  .main-nav {
    display: none !important;
  }
  /* Nur wenn Nav offen ist UND direkt in body verschoben wurde: Fullscreen Overlay */
  body > .main-nav.open {
    display: flex !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100vh - 64px) !important;
    height: calc(100dvh - 64px) !important;
    background: var(--white) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 24px 24px calc(40px + env(safe-area-inset-bottom, 0px)) !important;
    gap: 0 !important;
    margin: 0 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    z-index: 9999 !important;
    box-shadow: 0 8px 32px rgba(15, 34, 56, 0.1);
    animation: mobileNavIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }
  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Nav-Links: schlicht, kein Underline, kein Active-Pseudo */
  .main-nav a {
    padding: 18px 4px !important;
    font-size: 1.05rem !important;
    color: var(--text) !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
    border-bottom: 1px solid var(--border-light) !important;
    text-align: left !important;
    width: 100% !important;
    display: block !important;
  }
  /* Active-Underline (Desktop ::after) komplett entfernen */
  .main-nav a::after,
  .main-nav a::before,
  .main-nav a.nav-active::after,
  .main-nav a:not(.btn)::after {
    display: none !important;
    content: none !important;
  }
  .main-nav a.nav-active {
    color: var(--blue) !important;
    font-weight: 700 !important;
  }

  /* "Erstgespräch buchen" Button am Ende */
  .main-nav .btn,
  .main-nav .btn-sm,
  .main-nav .btn-primary {
    margin-top: 24px !important;
    margin-left: 0 !important;
    padding: 16px 24px !important;
    font-size: 0.95rem !important;
    width: 100% !important;
    justify-content: center !important;
    background: var(--blue) !important;
    color: var(--white) !important;
    border-radius: 12px !important;
    border-bottom: none !important;
    text-align: center !important;
  }

  .nav-pill { background: transparent !important; }
  .mobile-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  /* Body scroll-lock, wenn Menu offen (iOS-kompatibel) */
  body.nav-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    left: 0;
    right: 0;
  }

  /* Sections & Spacing */
  .section { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }

  /* Hero */
  .hero { padding: 32px 0 48px; }
  .hero-content .hero-lead { font-size: 1rem; }
  .hero-tags { gap: 6px; margin-bottom: 16px; }
  .hero-tags span { font-size: 0.7rem; padding: 3px 10px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
  }
  .stat { padding: 10px 12px; }
  .stat strong { font-size: 0.82rem; }
  .stat span { font-size: 0.72rem; }
  .hero-card { padding: 24px; }
  .hero-card h3 { font-size: 1.15rem; margin-bottom: 18px; }
  .hero-card-item { padding: 14px 0; gap: 12px; }
  .hero-card-item strong { font-size: 0.92rem; }
  .hero-card-item p { font-size: 0.85rem; }
  .card-icon { width: 38px; height: 38px; }
  .hero-card-highlight { padding: 14px 16px; font-size: 0.85rem; }

  /* Hero-Flow: horizontal scrollbar */
  .hero-flow {
    padding: 16px 4px;
    margin-top: 24px;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .hero-flow-node { padding: 8px 14px; font-size: 0.75rem; }
  .hero-flow-arrow { width: 24px; }

  /* Problem-Section */
  .problem-intro { margin-bottom: 40px; }
  .problem-intro .section-lead { font-size: 1rem; }
  .problem-bullets { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .problem-bullets li { font-size: 0.92rem; }

  /* Comparison */
  .comparison-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .comparison-card { padding: 22px 22px; gap: 14px; }
  .comparison-icon { width: 40px; height: 40px; }
  .comparison-other { font-size: 0.72rem; }
  .comparison-us { font-size: 0.95rem; }

  /* Differentiator */
  .differentiator-quote { margin-top: 48px; padding: 24px 12px 0; }
  .differentiator-quote blockquote { font-size: 1.15rem; line-height: 1.35; }
  .differentiator-marks { width: 28px; height: 22px; }

  /* Für wen / Audience */
  .audience-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .audience-card { padding: 22px 22px; }
  .audience-card h4 { font-size: 1rem; }
  .audience-card p { font-size: 0.88rem; }
  .not-for { padding: 16px 20px; }

  /* Packages */
  .packages-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .package-card { padding: 24px; }
  .package-card h3 { font-size: 1.2rem; }
  .package-card > p { font-size: 0.92rem; }
  .package-meta { gap: 14px; padding: 12px 0; flex-wrap: wrap; }
  .package-meta span { font-size: 0.85rem; }
  .package-features li { font-size: 0.88rem; }
  .package-card .btn { width: 100%; justify-content: center; }

  /* Deliverables */
  .deliverables-grid,
  .deliverables-grid--3,
  .deliverables-grid--4 {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .deliverable-card { padding: 24px; }
  .deliverable-card h4 { font-size: 1rem; }
  .deliverable-card p { font-size: 0.88rem; }
  .deliverable-icon { width: 44px; height: 44px; }

  /* Process */
  .process-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .process-grid--5 { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .process-step { padding: 24px 20px; text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .process-step .step-number { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 1.05rem; }
  .process-step h4 { margin-bottom: 6px; }
  .process-step p { font-size: 0.88rem; }

  /* About */
  .about-text h2 { font-size: 1.4rem; }
  .about-text p { font-size: 0.95rem; }
  .about-details { padding: 24px 22px; gap: 18px; }
  .about-values { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .about-value-card { padding: 22px 22px; }

  /* Legal Content */
  .legal-content { padding: 32px 0 56px; }
  .legal-content h2 { font-size: 1.25rem; margin-top: 28px; padding-top: 20px; }
  .legal-content h3 { font-size: 1rem; }
  .legal-content p, .legal-content li { font-size: 0.95rem; }

  /* Page-Header (Unterseiten) */
  .page-header { padding: 32px 0 32px; }

  /* Breadcrumb */
  .breadcrumb { padding: 12px 0; font-size: 0.82rem; }

  /* Trust Bar */
  .trust-bar { padding: 24px 0; }
  .trust-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
    flex-direction: initial;
    align-items: start;
    text-align: center;
  }
  .trust-item strong { font-size: 1.3rem; }
  .trust-item span { font-size: 0.75rem; }

  /* Compliance Bar */
  .compliance-bar { padding: 16px 0; }
  .compliance-bar .container { flex-direction: column; gap: 10px; text-align: center; }
  .compliance-items { justify-content: center; gap: 6px; }
  .compliance-badge { font-size: 0.75rem; padding: 4px 10px; }

  /* Logo Bar */
  .logo-bar { padding: 32px 0; }
  .logo-bar-track { gap: 24px 28px; }
  .logo-bar-item { height: 26px; }

  /* Buttons: mindestens 44px Touch-Target */
  .btn {
    min-height: 44px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .btn-sm { min-height: 40px; padding: 10px 16px; font-size: 0.85rem; }
  .btn-lg { min-height: 52px; padding: 16px 28px; font-size: 0.95rem; }

  /* Forms - iOS: font-size ≥ 16px verhindert Auto-Zoom */
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    padding: 14px 16px;
    min-height: 48px;
  }
  .form-group textarea { min-height: 120px; }
  .form-group label { font-size: 0.88rem; }

  /* Contact-Form Abschnitt */
  .contact-form-section { gap: 32px; }
  .booking-card { padding: 24px !important; }
  .booking-card h2 { font-size: 1.2rem; }

  /* FAQ */
  .faq-item summary { padding: 18px 20px; font-size: 0.95rem; gap: 12px; }
  .faq-item summary::after { font-size: 1.25rem; }
  .faq-item p { padding: 0 20px 18px; font-size: 0.9rem; }

  /* Contact grid (dark) */
  .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .contact-item { padding: 18px 20px; }

  /* Footer */
  .footer-inner { flex-direction: column; padding: 40px 20px; gap: 32px; }
  .footer-links {
    flex-direction: column;
    gap: 28px;
    width: 100%;
  }
  .footer-col { gap: 10px; }
  .footer-col a { padding: 4px 0; min-height: 32px; display: flex; align-items: center; }
  .footer-bottom { padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .footer-address { font-size: 0.85rem; }

  /* Cookie Banner */
  .cookie-banner { padding: 18px 0 calc(18px + env(safe-area-inset-bottom, 0px)); }
  .cookie-banner .container { flex-direction: column; text-align: center; gap: 14px; }
  .cookie-text { font-size: 0.82rem; min-width: 0; }
  .cookie-actions { width: 100%; justify-content: center; flex-wrap: wrap; gap: 8px; }
  .cookie-actions .btn { flex: 1 1 auto; min-width: 140px; }

  /* Cookie Modal */
  .cookie-modal-overlay { padding: 16px; }
  .cookie-modal { padding: 28px 22px; max-height: 88vh; }
  .cookie-modal h3 { font-size: 1.1rem; }
  .cookie-modal > p { font-size: 0.85rem; }
  .cookie-modal-actions { flex-direction: column; gap: 8px; }
  .cookie-modal-actions .btn { width: 100%; }

  /* Sticky CTA */
  .sticky-cta {
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .sticky-cta .btn { width: 100%; min-height: 46px; }

  /* Assessment Widget (Homepage Teaser) */
  .assessment-teaser { padding: 24px 22px; gap: 20px; }
  .assessment-teaser h3 { font-size: 1.2rem; }
  .assessment-teaser p { font-size: 0.88rem; }
  .assessment-teaser .btn { width: 100%; justify-content: center; }

  /* High-Speed Assessment Page */
  .assessment-main { padding: 32px 0 calc(32px + env(safe-area-inset-bottom, 0px)); }
  .assessment-container { padding: 0 20px; }
  .assessment-stage--intro h1 { font-size: clamp(1.75rem, 7vw, 2.3rem); }
  .assessment-lead { font-size: 1rem; margin-bottom: 32px; }
  .assessment-meta { gap: 14px; font-size: 0.78rem; flex-direction: column; }
  .assessment-header { margin-bottom: 36px; }
  .assessment-question-text {
    font-size: 1.15rem;
    min-height: 0;
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .assessment-answers { gap: 12px; }
  .assessment-answer {
    padding: 18px 20px;
    font-size: 0.95rem;
    min-height: 60px;
  }
  .assessment-answer-icon { width: 32px; height: 32px; font-size: 1rem; }
  .assessment-back { margin-top: 24px; min-height: 44px; }
  .assessment-widget { padding: 26px 22px; border-radius: var(--radius); }

  /* Result Stage */
  .result-score { width: 170px; height: 170px; margin-bottom: 24px; }
  .result-score-value span:first-child { font-size: 2.7rem; }
  .result-header h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .result-summary { font-size: 0.95rem; margin-bottom: 32px; }
  .result-gaps { padding: 24px 22px; margin-bottom: 32px; }
  .result-gaps h3 { font-size: 0.85rem; }
  .result-gaps li { font-size: 0.92rem; padding: 12px 0 12px 44px; }
  .result-actions { flex-direction: column; gap: 10px; }
  .result-actions .btn { min-width: auto; width: 100%; }

  /* PDF Modal */
  .pdf-modal { padding: 16px; }
  .pdf-modal-content { padding: 28px 22px; max-height: 90vh; overflow-y: auto; }
  .pdf-modal-content h3 { font-size: 1.2rem; }
  .pdf-modal-close { width: 40px; height: 40px; top: 12px; right: 12px; }
}

/* ---------- SMALL MOBILE (≤ 480px) ---------- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .content-narrow { padding: 0 16px; }

  h1 { font-size: 1.45rem; line-height: 1.25; }
  h2 { font-size: 1.25rem; line-height: 1.3; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }

  .header-inner { height: 60px; }
  .logo-name { font-size: 1rem; }
  .logo-tagline { display: none; } /* Tagline ausblenden, spart Platz */
  .logo-icon { width: 34px; height: 34px; }

  .main-nav { top: 60px; }

  /* Hero kompakter */
  .hero { padding: 24px 0 40px; }
  .hero-tags span { font-size: 0.68rem; padding: 3px 8px; }
  .hero-stats { grid-template-columns: minmax(0, 1fr); gap: 8px; }

  .hero-card { padding: 22px 20px; }
  .hero-card h3 { font-size: 1.1rem; }

  /* Buttons Small-Mobile */
  .btn { padding: 12px 18px; font-size: 0.88rem; }

  /* Assessment Small-Mobile */
  .assessment-container { padding: 0 16px; }
  .assessment-question-text { font-size: 1.05rem; }
  .assessment-answer { padding: 16px 18px; font-size: 0.92rem; }
  .assessment-widget { padding: 22px 18px; }
  .result-score { width: 150px; height: 150px; }
  .result-score-value span:first-child { font-size: 2.4rem; }
  .result-gaps { padding: 22px 18px; }
  .result-gaps li { padding: 12px 0 12px 40px; font-size: 0.88rem; }
  .result-gaps li::before { width: 28px; height: 28px; font-size: 0.82rem; }

  /* Package-Cards small */
  .package-card { padding: 22px 20px; }
  .package-meta { flex-direction: column; gap: 4px; align-items: flex-start; }

  /* Footer kompakt */
  .footer-inner { padding: 32px 16px; }

  /* Cookie-Modal kleiner */
  .cookie-modal { padding: 24px 18px; }

  /* Trust Items einspaltig */
  .trust-items { grid-template-columns: minmax(0, 1fr); gap: 16px; }
}

/* ---------- LANDSCAPE-ORIENTIERUNG AUF MOBILE ---------- */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 24px 0; }
  .hero-card { padding: 20px; }
  .section { padding: 40px 0; }
  .assessment-main { padding: 16px 0; }
}
