/* ================================================
   ZELUVQENAI DIGITAL - ARCHITECTURAL GRID SYSTEM
   IT-Sicherheitsberatung für Arztpraxen
   ================================================ */

/* ----------------------------------------
   1. DESIGN TOKENS / CUSTOM PROPERTIES
   ---------------------------------------- */
:root {
  /* Colors */
  --color-bg:           #f4f5f7;
  --color-bg-dark:      #0d1b2a;
  --color-bg-section:   #eef0f4;
  --color-primary:      #0d1b2a;
  --color-secondary:    #1a3a5c;
  --color-accent:       #2e6da4;
  --color-accent-light: #4a90c4;
  --color-accent-muted: rgba(46,109,164,0.12);
  --color-text:         #1c2635;
  --color-text-muted:   #5a6a7e;
  --color-text-light:   #8a9ab0;
  --color-border:       rgba(13,27,42,0.12);
  --color-border-light: rgba(13,27,42,0.06);
  --color-white:        #ffffff;
  --color-grid-line:    rgba(46,109,164,0.08);
  --color-card-bg:      #ffffff;
  --color-footer-bg:    #0a1520;
  --color-footer-text:  #8a9ab0;

  /* Typography */
  --font-heading:  'Libre Baskerville', Georgia, serif;
  --font-body:     'DM Sans', system-ui, sans-serif;

  /* Spacing Scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Section Padding */
  --section-padding-y: clamp(64px, 8vw, 120px);

  /* Border Radius Scale */
  --radius-sm:  3px;
  --radius-md:  6px;
  --radius-lg:  12px;
  --radius-xl:  20px;

  /* Shadows - Layered System */
  --shadow-card:
    0 1px 2px rgba(13,27,42,0.06),
    0 4px 16px rgba(13,27,42,0.08),
    0 8px 32px rgba(13,27,42,0.04);
  --shadow-card-hover:
    0 2px 4px rgba(13,27,42,0.08),
    0 8px 32px rgba(13,27,42,0.14),
    0 20px 48px rgba(46,109,164,0.10);
  --shadow-nav:
    0 1px 0 rgba(13,27,42,0.08),
    0 4px 20px rgba(13,27,42,0.06);
  --shadow-btn:
    0 1px 3px rgba(13,27,42,0.20),
    0 4px 12px rgba(13,27,42,0.12);
  --shadow-btn-hover:
    0 2px 6px rgba(13,27,42,0.24),
    0 8px 24px rgba(46,109,164,0.20);

  /* Transitions */
  --transition-fast:   150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base:   250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Grid */
  --container-max:  1280px;
  --container-pad:  clamp(20px, 5vw, 80px);
}

/* ----------------------------------------
   2. RESET & BASE
   ---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body.canvas {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Architectural Background Grid */
body.canvas::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(var(--color-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}

body.canvas > * {
  position: relative;
  z-index: 1;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--color-secondary); }

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ----------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
}

.section-headline {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.section-headline-large {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: var(--space-5);
}

.body-text {
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.section-intro-text {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: var(--space-7);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}

/* ----------------------------------------
   4. LAYOUT UTILITIES
   ---------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.canvas-section {
  padding: var(--section-padding-y) 0;
  position: relative;
}

.grid-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
  margin: 0;
}

/* ----------------------------------------
   5. NAVIGATION
   ---------------------------------------- */
.nav-frame {
  position: relative;
  z-index: 100;
  background: rgba(244,245,247,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
}

.nav-logo {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-brand-text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.nav-brand-accent { color: var(--color-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

.nav-link:hover { color: var(--color-primary); }
.nav-link:hover::after { width: 100%; }

.nav-link-cta {
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  box-shadow: var(--shadow-btn);
  transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.nav-link-cta::after { display: none; }
.nav-link-cta:hover {
  background: var(--color-secondary) !important;
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.nav-hamburger:hover {
  background: var(--color-accent-muted);
  border-color: var(--color-accent);
}

.hamburger-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ----------------------------------------
   6. MOBILE DRAWER (Circular Reveal)
   ---------------------------------------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  overflow: hidden;
}

.drawer.is-open { pointer-events: all; }

.drawer-stage-curtain {
  position: absolute;
  inset: 0;
  background: var(--color-bg-dark);
  clip-path: circle(0px at calc(100% - 36px) 36px);
  transition: clip-path 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: clip-path;
}

.drawer.is-open .drawer-stage-curtain {
  clip-path: circle(150vmax at calc(100% - 36px) 36px);
}

.drawer-nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 250ms ease 200ms;
}

.drawer.is-open .drawer-nav {
  opacity: 1;
}

.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 18px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.drawer-close:hover { background: rgba(255,255,255,0.2); }

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  text-align: center;
}

.drawer-link {
  font-family: var(--font-heading);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  letter-spacing: -0.01em;
}

.drawer-link:hover {
  opacity: 1;
  color: var(--color-accent-light);
}

/* ----------------------------------------
   7. HERO STAGE
   ---------------------------------------- */
.stage {
  min-height: clamp(600px, 92vh, 960px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #0f2744 60%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
}

.stage-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,109,164,0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,109,164,0.15) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.stage-grid-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46,109,164,0.12) 0%, transparent 70%);
}

.stage-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-10) var(--container-pad) var(--space-9);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
  width: 100%;
}

.stage-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: var(--space-5);
}

.label-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent-light);
}

.stage-headline {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.stage-typed-wrap {
  color: var(--color-accent-light);
  display: inline-block;
  min-width: 240px;
}

.stage-subline {
  font-size: clamp(15px, 1.3vw, 18px);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: var(--space-7);
}

.stage-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Blueprint Aside Cards */
.stage-aside {
  display: flex;
  justify-content: flex-end;
}

.stage-blueprint {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  max-width: 440px;
  width: 100%;
}

.blueprint-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  backdrop-filter: blur(8px);
  transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.blueprint-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(46,109,164,0.4);
  transform: translateY(-2px);
}

.blueprint-card.spotlight {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  background: rgba(46,109,164,0.18);
  border-color: rgba(46,109,164,0.35);
}

.blueprint-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46,109,164,0.25);
  border-radius: var(--radius-sm);
  color: var(--color-accent-light);
  font-size: 18px;
  flex-shrink: 0;
}

.blueprint-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  display: block;
}

.blueprint-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: block;
}

.stage-scroll-hint {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ----------------------------------------
   8. BUTTONS
   ---------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.btn-primary:hover {
  background: var(--color-secondary);
  box-shadow: var(--shadow-btn-hover);
  transform: translateY(-2px);
  color: var(--color-white);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: var(--color-white);
}

/* ----------------------------------------
   9. INTRO SECTION
   ---------------------------------------- */
.section-intro {
  background: var(--color-bg);
}

.intro-layout {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-8);
  align-items: start;
}

.intro-numeral {
  font-family: var(--font-heading);
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 700;
  color: var(--color-border);
  line-height: 1;
  user-select: none;
  letter-spacing: -0.04em;
}

.intro-lead {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 26px);
  color: var(--color-primary);
  line-height: 1.5;
  margin-bottom: var(--space-6);
}

/* ----------------------------------------
   10. LEISTUNGEN SECTION
   ---------------------------------------- */
.section-leistungen {
  background: var(--color-bg-section);
}

.section-header-asymmetric {
  max-width: 720px;
  margin-bottom: var(--space-8);
}

.leistungen-gallery.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.shelf-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.shelf-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(46,109,164,0.25);
}

.shelf-card-featured {
  grid-column: 1 / 3;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border-color: transparent;
  color: var(--color-white);
}

.shelf-card-featured .card-title,
.shelf-card-featured .card-number {
  color: var(--color-white);
}

.shelf-card-featured .card-body {
  color: rgba(255,255,255,0.70);
}

.shelf-card-featured .card-icon-frame {
  background: rgba(255,255,255,0.12);
  color: var(--color-accent-light);
}

.shelf-card-featured .card-list li {
  color: rgba(255,255,255,0.75);
}

.shelf-card-featured .card-list i {
  color: var(--color-accent-light);
}

.shelf-card-accent {
  background: var(--color-accent-muted);
  border-color: rgba(46,109,164,0.20);
}

.shelf-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-5);
}

.card-icon-frame {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-muted);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 20px;
}

.card-number {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.card-title {
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.card-body {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-4);
  flex: 1;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: auto;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--color-text-muted);
}

.card-list i {
  color: var(--color-accent);
  font-size: 11px;
  flex-shrink: 0;
}

/* ----------------------------------------
   11. VORTEILE / BENEFITS SECTION
   ---------------------------------------- */
.section-vorteile {
  background: var(--color-bg);
}

.vorteile-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-9);
  align-items: start;
}

.vorteile-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.vorteil-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-4);
  align-items: start;
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-border-light);
}

.vorteil-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vorteil-check {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-muted);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.vorteil-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.vorteil-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ----------------------------------------
   12. ABLAUF / PROCESS SECTION
   ---------------------------------------- */
.section-ablauf {
  background: var(--color-bg-section);
}

.section-header-centered {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-9);
}

.ablauf-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.ablauf-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  align-items: start;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.step-number {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-card-bg);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
  box-shadow:
    0 2px 8px rgba(46,109,164,0.12),
    0 0 0 4px rgba(46,109,164,0.06);
}

.step-line {
  width: 1px;
  height: 100%;
  min-height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-border));
  margin: var(--space-2) 0;
}

.step-content {
  padding-bottom: var(--space-7);
}

.step-title {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.step-content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ----------------------------------------
   13. COMPLIANCE SECTION
   ---------------------------------------- */
.section-compliance {
  background: var(--color-bg);
}

.compliance-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-9);
  align-items: start;
}

.compliance-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.compliance-tag-item {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.compliance-tag-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateX(4px);
}

.compliance-tag-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: var(--space-2);
}

.compliance-tag-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ----------------------------------------
   14. ZIELGRUPPE SECTION
   ---------------------------------------- */
.section-zielgruppe {
  background: var(--color-bg-section);
}

.zielgruppe-gallery.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.zielgruppe-card {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base),
    border-color var(--transition-base);
}

.zielgruppe-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: rgba(46,109,164,0.25);
}

.zg-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-muted);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 22px;
  margin-bottom: var(--space-4);
}

.zielgruppe-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.zielgruppe-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ----------------------------------------
   15. KONTAKT SECTION
   ---------------------------------------- */
.section-kontakt {
  background: var(--color-bg);
}

.kontakt-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--space-9);
  align-items: start;
}

.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: var(--space-6);
}

.kontakt-detail-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 14px;
  color: var(--color-text-muted);
}

.kontakt-detail-item i {
  color: var(--color-accent);
  font-size: 15px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.kontakt-detail-item a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.kontakt-detail-item a:hover { color: var(--color-accent); }

.kontakt-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

/* Contact Form */
.kontakt-form-wrap {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  box-shadow: var(--shadow-card);
}

.form-row-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
  width: 100%;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-accent);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(46,109,164,0.10);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--color-text-light);
}

.form-field {
  margin-bottom: var(--space-4);
}

.form-field:last-of-type { margin-bottom: 0; }

.form-row-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-5);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--color-border);
  border-radius: 3px;
  background: var(--color-bg);
  margin-top: 1px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-checkbox-label input:checked + .checkbox-custom {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.form-checkbox-label input:checked + .checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 10px;
}

.btn-submit {
  align-self: flex-start;
  min-height: 48px;
}

/* ----------------------------------------
   16. FOOTER
   ---------------------------------------- */
.canvas-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding-top: var(--space-9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: var(--space-7);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  margin-bottom: var(--space-5);
}

.footer-logo { width: 32px; height: 32px; }

.footer-brand span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-white);
}

.footer-tagline {
  font-size: 13px;
  color: var(--color-footer-text);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--color-footer-text);
}

.footer-contact-block a {
  color: var(--color-footer-text);
  transition: color var(--transition-fast);
}
.footer-contact-block a:hover { color: var(--color-accent-light); }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-5);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a {
  font-size: 14px;
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav a:hover { color: var(--color-accent-light); }

.footer-news-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.footer-news-item {
  border-left: 2px solid rgba(46,109,164,0.35);
  padding-left: var(--space-4);
}

.news-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  display: block;
  margin-bottom: var(--space-1);
}

.footer-news-item h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-news-item h5 a {
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-news-item h5 a:hover { color: var(--color-white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-5) 0;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-5);
}

.footer-legal-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover { color: var(--color-accent-light); }

/* ----------------------------------------
   17. BACK TO TOP
   ---------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition-base),
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  box-shadow: var(--shadow-btn);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-btn-hover);
}

/* ----------------------------------------
   18. INNER PAGE STYLES
   ---------------------------------------- */
.page-header {
  background: var(--color-bg-dark);
  padding: var(--space-9) 0 var(--space-7);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,109,164,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,109,164,0.12) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-header-inner {
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-4);
}

.page-header .breadcrumb a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.page-header .breadcrumb a:hover { color: var(--color-accent-light); }
.page-header .breadcrumb i { font-size: 10px; }

.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.60);
  max-width: 560px;
}

.page-meta {
  display: flex;
  gap: var(--space-5);
  margin-top: var(--space-5);
  flex-wrap: wrap;
}

.page-meta span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

/* Accordion Legal Pages */
.legal-content {
  padding: var(--space-9) 0;
}

.legal-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  background: var(--color-card-bg);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition-base);
}

.accordion-item:hover {
  box-shadow: var(--shadow-card-hover);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  user-select: none;
  gap: var(--space-4);
  transition: background var(--transition-fast);
}

.accordion-header:hover { background: var(--color-bg); }

.accordion-header h2,
.accordion-header h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.4;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-muted);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 12px;
  flex-shrink: 0;
  transition: transform var(--transition-base), background var(--transition-fast);
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(180deg);
  background: var(--color-accent);
  color: var(--color-white);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.is-open .accordion-body {
  max-height: 2000px;
}

.accordion-body-inner {
  padding: 0 var(--space-6) var(--space-6);
  border-top: 1px solid var(--color-border-light);
  padding-top: var(--space-5);
}

.accordion-body-inner p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.accordion-body-inner p:last-child { margin-bottom: 0; }

.accordion-body-inner ul,
.accordion-body-inner ol {
  padding-left: var(--space-5);
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.accordion-body-inner li { margin-bottom: var(--space-2); }

.accordion-body-inner h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
}

.accordion-body-inner a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-color: rgba(46,109,164,0.35);
  transition: text-decoration-color var(--transition-fast);
}

.accordion-body-inner a:hover {
  text-decoration-color: var(--color-accent);
}

/* Share Widget */
.share-widget {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin: var(--space-7) 0;
}

.share-widget-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.share-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-accent-muted);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.share-copy-btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.share-toast {
  font-size: 12px;
  font-weight: 600;
  color: #2a7a4f;
  background: rgba(42,122,79,0.10);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.share-toast.is-visible { opacity: 1; }

/* Impressum Tables */
.impressum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: var(--space-5);
}

.impressum-table th,
.impressum-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  vertical-align: top;
}

.impressum-table th {
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
  width: 35%;
}

.impressum-table td {
  color: var(--color-text-muted);
}

.impressum-table tr:last-child th,
.impressum-table tr:last-child td {
  border-bottom: none;
}

/* Thanks Page */
.thanks-stage {
  min-height: calc(100vh - 72px - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-9) var(--container-pad);
}

.thanks-inner {
  text-align: center;
  max-width: 520px;
}

.thanks-checkmark {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-6);
}

.thanks-checkmark circle {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 3;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: drawCircle 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.thanks-checkmark path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  animation: drawCheck 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thanks-headline {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.1s forwards;
}

.thanks-text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-7);
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.3s forwards;
}

.thanks-btn {
  opacity: 0;
  animation: fadeInUp 0.5s ease 1.5s forwards;
  display: inline-block;
}

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

/* ----------------------------------------
   19. COOKIE CONSENT (Notification Bell)
   ---------------------------------------- */
.cookie-bell-btn {
  position: fixed;
  bottom: 32px;
  right: 88px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--shadow-btn);
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.cookie-bell-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.cookie-bell-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 14px;
  height: 14px;
  background: #e63946;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  transition: opacity var(--transition-base);
}

.cookie-bell-badge.is-hidden { opacity: 0; pointer-events: none; }

.cookie-panel {
  position: fixed;
  bottom: 92px;
  right: 32px;
  width: 380px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow:
    0 4px 16px rgba(13,27,42,0.12),
    0 16px 48px rgba(13,27,42,0.10),
    0 32px 64px rgba(13,27,42,0.06);
  z-index: 998;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform var(--transition-slow),
    opacity var(--transition-slow);
  overflow: hidden;
}

.cookie-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cookie-panel-header {
  padding: var(--space-5) var(--space-5) var(--space-4);
  border-bottom: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.cookie-panel-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-muted);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  font-size: 16px;
  flex-shrink: 0;
}

.cookie-panel-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.cookie-panel-subtitle {
  font-size: 12px;
  color: var(--color-text-muted);
}

.cookie-panel-body {
  padding: var(--space-4) var(--space-5);
  max-height: 280px;
  overflow-y: auto;
}

.cookie-panel-intro {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border-light);
  gap: var(--space-3);
}

.cookie-toggle-row:last-child { border-bottom: none; }

.cookie-toggle-info { flex: 1; }

.cookie-toggle-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  margin-bottom: 2px;
}

.cookie-toggle-desc {
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.4;
}

.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 11px;
  cursor: pointer;
  transition: background var(--transition-base);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-accent);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background: var(--color-accent);
  opacity: 0.7;
  cursor: not-allowed;
}

.cookie-panel-footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--color-border-light);
  display: flex;
  gap: var(--space-3);
}

.cookie-btn-all {
  flex: 1;
  padding: 10px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cookie-btn-all:hover { background: var(--color-secondary); }

.cookie-btn-save {
  flex: 1;
  padding: 10px;
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cookie-btn-save:hover {
  background: var(--color-accent-muted);
}

/* ----------------------------------------
   20. RESPONSIVE - TABLET (max 1024px)
   ---------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --container-pad: 32px;
  }

  .stage-inner {
    grid-template-columns: 1fr;
    gap: var(--space-7);
    padding-top: var(--space-9);
  }

  .stage-aside { justify-content: flex-start; }

  .stage-blueprint {
    max-width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .blueprint-card.spotlight {
    grid-column: 1 / 3;
  }

  .leistungen-gallery.gallery {
    grid-template-columns: 1fr 1fr;
  }

  .shelf-card-featured {
    grid-column: 1 / -1;
  }

  .zielgruppe-gallery.gallery {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }
}

/* ----------------------------------------
   21. RESPONSIVE - MOBILE (max 768px)
   ---------------------------------------- */
@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
    --section-padding-y: clamp(48px, 8vw, 80px);
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .stage {
    min-height: auto;
    padding: var(--space-8) 0 var(--space-7);
  }

  .stage-inner {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }

  .stage-blueprint {
    grid-template-columns: 1fr 1fr;
  }

  .blueprint-card.spotlight {
    grid-column: 1 / -1;
  }

  .intro-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .intro-numeral { display: none; }

  .leistungen-gallery.gallery {
    grid-template-columns: 1fr;
  }

  .shelf-card-featured { grid-column: auto; }

  .vorteile-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .compliance-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .zielgruppe-gallery.gallery {
    grid-template-columns: 1fr;
  }

  .kontakt-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .form-row-inline {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
  }

  .cookie-bell-btn {
    right: 76px;
    bottom: 20px;
  }

  .cookie-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 80px;
  }

  .ablauf-step {
    grid-template-columns: 60px 1fr;
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .stage-actions {
    flex-direction: column;
  }

  .btn-primary, .btn-ghost {
    text-align: center;
    justify-content: center;
  }

  .stage-blueprint {
    grid-template-columns: 1fr;
  }

  .blueprint-card.spotlight {
    grid-column: auto;
  }

  .kontakt-form-wrap {
    padding: var(--space-5);
  }
}