/* ============================================================
   BRELUNQORLAB DIGITAL — ARCHITECTURAL GRID DESIGN SYSTEM
   ============================================================ */


:root {
  
  --color-bg:          #f4f5f7;
  --color-bg-alt:      #eef0f4;
  --color-surface:     #ffffff;
  --color-surface-raised: #ffffff;
  --color-surface-inset:  #e8edf4;
  --color-border:      #d0d8e8;
  --color-border-light: #e4e9f2;

  --color-ink:         #1a2035;
  --color-ink-mid:     #3d4a6b;
  --color-ink-muted:   #6b7a9e;
  --color-ink-faint:   #9aa3bc;

  --color-primary:     #1c3f8c;
  --color-primary-dark:#132d6a;
  --color-primary-light:#2a56c6;
  --color-accent:      #0ea5e9;
  --color-accent-warm: #3b82f6;
  --color-gold:        #e8b84b;

  
  --gradient-hero:     linear-gradient(135deg, #0f1f4a 0%, #1c3f8c 50%, #0ea5e9 100%);
  --gradient-cta:      linear-gradient(135deg, #132d6a 0%, #1c3f8c 60%, #2a56c6 100%);
  --gradient-accent:   linear-gradient(90deg, #0ea5e9, #3b82f6);

  
  --shadow-sm:   0 1px 3px rgba(28,63,140,0.08), 0 1px 2px rgba(28,63,140,0.04);
  --shadow-md:   0 4px 12px rgba(28,63,140,0.10), 0 2px 6px rgba(28,63,140,0.06);
  --shadow-lg:   0 8px 32px rgba(28,63,140,0.14), 0 4px 12px rgba(28,63,140,0.08);
  --shadow-xl:   0 16px 48px rgba(28,63,140,0.18), 0 6px 20px rgba(28,63,140,0.10);

  
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-pill: 100px;

  
  --font-head:  'Familjen Grotesk', sans-serif;
  --font-body:  'DM Sans', sans-serif;

  
  --nav-height: 68px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background-color: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
ul { list-style: none; }
address { font-style: normal; }


.surface         { background: var(--color-bg); }
.surface-raised  {
  background: var(--color-surface-raised);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
}
.surface-inset   {
  background: var(--color-surface-inset);
  border: 1px solid var(--color-border);
}


.text-display {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-ink);
  letter-spacing: -0.02em;
}
.text-body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--color-ink-mid);
}
.text-caption {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--color-ink-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.action-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--gradient-cta);
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 4px 16px rgba(28,63,140,0.25);
  text-decoration: none;
  min-height: 44px;
}
.action-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(28,63,140,0.35);
  opacity: 0.95;
}
.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  min-height: 44px;
}
.action-ghost:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.cta-ghost-light {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.5);
}
.cta-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}


.space-section { padding: var(--space-2xl) 0; }
.space-card    { padding: var(--space-lg); }


.container-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================================
   BACKGROUND GRID PATTERN (Architectural Blueprint)
   ============================================================ */
.hero-grid-overlay,
.page-hero-grid,
.cta-banner-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(14,165,233,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
}


.section-abende,
.section-comparison,
.section-ablauf {
  background-image:
    linear-gradient(var(--color-border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border-light) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-root {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.nav-root--solid,
.nav-root.nav-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-border-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo { width: 32px; height: 32px; flex-shrink: 0; }
.nav-brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  transition: color 0.2s;
}
.nav-brand-accent { color: var(--color-accent); }
.nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(28,63,140,0.06);
  border-radius: var(--radius-pill);
  padding: 0.3rem;
}
.nav-tab {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-ink-mid);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav-tab:hover { background: rgba(28,63,140,0.1); color: var(--color-ink); }
.nav-tab--active {
  background: var(--color-primary);
  color: #fff;
}
.nav-tab--active:hover { background: var(--color-primary-dark); color: #fff; }


.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.nav-mobile-panel {
  display: none;
  flex-direction: column;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.nav-mobile-panel.is-open { max-height: 400px; }
.nav-mobile-link {
  display: block;
  padding: 0.9rem var(--space-md);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink-mid);
  border-bottom: 1px solid var(--color-border-light);
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-link:hover { background: var(--color-bg-alt); color: var(--color-primary); }
.nav-mobile-link--active { color: var(--color-primary); font-weight: 600; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding: calc(var(--nav-height) + 2rem) var(--space-md) var(--space-2xl);
}
.hero-icon-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 80px);
  gap: 0;
  align-content: start;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-icon-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 1.8rem;
  color: rgba(255,255,255,0.05);
}
.hero-content-card {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 48px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14,165,233,0.2);
  border: 1px solid rgba(14,165,233,0.35);
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-md);
}
.hero-headline {
  color: #ffffff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-sm);
}
.hero-subline {
  color: rgba(255,255,255,0.78);
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.hero-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(232,184,75,0.12);
  border: 1px solid rgba(232,184,75,0.25);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: var(--space-lg);
  text-align: left;
}
.hero-notice i { color: var(--color-gold); font-size: 0.9rem; margin-top: 0.1rem; flex-shrink: 0; }
.hero-notice span { color: rgba(255,255,255,0.75); font-size: 0.85rem; line-height: 1.5; }
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .action-ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}
.hero-actions .action-ghost:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.section-intro { background: var(--color-surface); }
.intro-label { display: block; margin-bottom: 0.5rem; }
.intro-headline { margin-bottom: var(--space-sm); max-width: 700px; }
.intro-body { max-width: 620px; }

/* ============================================================
   ABENDE (COURSE EVENINGS) SECTION
   ============================================================ */
.abende-header { margin-bottom: var(--space-lg); }
.abende-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
}
.abend-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.abend-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
}
.abend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.abend-number {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-ink-faint);
  margin-bottom: 0.75rem;
}
.abend-icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}
.abend-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}
.abend-desc { font-size: 0.9rem; }

/* ============================================================
   FEATURE FULL WIDTH SECTION
   ============================================================ */
.section-feature-full { background: var(--color-surface); padding: 0; }
.feature-full-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.feature-full-image {
  position: relative;
  overflow: hidden;
}
.feature-full-image .feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feature-full-image:hover .feature-img { transform: scale(1.03); }
.feature-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,0.15) 100%);
}
.feature-full-content {
  padding: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
  background: var(--color-surface);
}
.feature-full-title { margin-bottom: 0.5rem; }

/* ============================================================
   COMPARISON CARDS
   ============================================================ */
.comparison-header { margin-bottom: var(--space-lg); }
.comparison-intro { max-width: 540px; }
.comparison-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}
.comparison-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.comparison-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.comparison-card--featured {
  border: 2px solid var(--color-primary);
  background: linear-gradient(160deg, #fff 0%, #f0f4ff 100%);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.comparison-card--featured:hover { transform: translateY(-12px); }
.cc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}
.cc-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
}
.cc-sub {
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  margin-bottom: var(--space-md);
}
.cc-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}
.cc-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-ink-mid);
}
.cc-features li i {
  color: var(--color-accent);
  font-size: 0.8rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.cc-cta { width: 100%; justify-content: center; }

/* ============================================================
   FUER WEN SECTION
   ============================================================ */
.fuer-wen-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.fuer-wen-image-col { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.fw-img { width: 100%; height: 400px; object-fit: cover; }
.fw-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--space-md); }
.fw-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--color-surface-inset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-ink-mid);
}
.fw-tag i { color: var(--color-primary); font-size: 0.8rem; }

/* ============================================================
   ABLAUF (PROCESS STEPS)
   ============================================================ */
.ablauf-header { margin-bottom: var(--space-lg); }
.ablauf-steps { display: flex; flex-direction: column; gap: 0; max-width: 800px; }
.ablauf-step { display: flex; gap: var(--space-md); }
.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  width: 44px;
  height: 44px;
  background: var(--gradient-cta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: var(--color-border);
  margin: 4px 0;
}
.step-content {
  padding-bottom: var(--space-lg);
  padding-top: 0.25rem;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}

/* ============================================================
   SPLIDE CAROUSEL
   ============================================================ */
.splide-header { margin-bottom: var(--space-lg); }
.slide-card { border-radius: var(--radius-lg); overflow: hidden; }
.slide-img { width: 100%; height: 200px; object-fit: cover; }
.slide-caption {
  padding: 0.75rem var(--space-sm);
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  font-family: var(--font-head);
  font-weight: 500;
}
.splide__pagination__page.is-active { background: var(--color-primary); }
.splide__arrow { background: var(--color-surface); box-shadow: var(--shadow-md); }
.splide__arrow svg { fill: var(--color-ink-mid); }

/* ============================================================
   HINWEIS BOX
   ============================================================ */
.hinweis-box {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-accent);
}
.hinweis-icon { color: var(--color-accent); font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.hinweis-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.section-cta-banner { padding: 0; }
.cta-banner-inner {
  position: relative;
  background: var(--gradient-cta);
  padding: var(--space-3xl) var(--space-md);
  text-align: center;
  overflow: hidden;
}
.cta-banner-title { color: #fff; margin-bottom: var(--space-sm); }
.cta-banner-sub { color: rgba(255,255,255,0.75); margin-bottom: var(--space-lg); }
.cta-banner-actions { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--gradient-hero);
  overflow: hidden;
}
.page-hero--small { padding: calc(var(--nav-height) + var(--space-xl)) var(--space-md) var(--space-xl); }
.page-hero--medium { padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(14,165,233,0.2);
  border: 1px solid rgba(14,165,233,0.35);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-sm);
}
.page-hero-title { color: #fff; margin-bottom: var(--space-sm); }
.page-hero-sub { color: rgba(255,255,255,0.75); max-width: 600px; }

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.5rem;
}
.section-title { margin-bottom: var(--space-sm); }

/* ============================================================
   SURFACE INSET SECTION
   ============================================================ */
.surface-inset-section { background: var(--color-bg-alt); }

/* ============================================================
   ZWEI SPALTEN (TWO COLUMN LAYOUT)
   ============================================================ */
.zwei-spalten {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.zwei-spalten--reverse { }
.zwei-spalten--reverse .zwei-spalten-content { order: 2; }
.zwei-spalten--reverse .zwei-spalten-image { order: 1; }
.zwei-spalten-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature-img { width: 100%; height: 380px; object-fit: cover; }
.zwei-spalten-content { display: flex; flex-direction: column; gap: var(--space-sm); }

/* ============================================================
   GRUNDSAETZE (PRINCIPLES) GRID
   ============================================================ */
.grundsaetze-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.grundsatz-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.grundsatz-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gs-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}
.gs-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}

/* ============================================================
   VERMIETER GRID
   ============================================================ */
.vermieter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.vermieter-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vermieter-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.vc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}
.vc-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.4rem;
}
.hinweis-inline {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--color-accent);
  margin-top: var(--space-sm);
}
.hinweis-inline i { color: var(--color-accent); flex-shrink: 0; margin-top: 0.15rem; }

/* ============================================================
   PREISE (PRICING)
   ============================================================ */
.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}
.preis-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.preis-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.preis-card--featured {
  border: 2px solid var(--color-primary);
  background: linear-gradient(160deg, #fff 0%, #f0f4ff 100%);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.preis-card--featured:hover { transform: translateY(-12px); }
.preis-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-cta);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.preis-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}
.preis-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 0.25rem;
}
.preis-sub { font-size: 0.88rem; color: var(--color-ink-muted); margin-bottom: var(--space-md); }
.preis-preis {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
}
.preis-amount {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}
.preis-currency {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
}
.preis-period { font-size: 0.8rem; color: var(--color-ink-muted); }
.preis-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: var(--space-md); }
.preis-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-ink-mid);
}
.preis-features li i { color: var(--color-accent); font-size: 0.8rem; margin-top: 0.2rem; flex-shrink: 0; }
.preis-cta { width: 100%; justify-content: center; }
.preis-hinweis-box {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-primary);
}
.preis-hinweis-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.preis-hinweis-title i { color: var(--color-primary); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin-top: var(--space-lg); }
.faq-item { border-bottom: 1px solid var(--color-border-light); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--color-primary); }
.faq-icon { font-size: 0.85rem; color: var(--color-ink-muted); flex-shrink: 0; transition: transform 0.3s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer.is-open { max-height: 300px; padding-bottom: 1rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.contact-info-card,
.contact-booking-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.contact-info-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.ci-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ci-label { font-size: 0.78rem; color: var(--color-ink-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.15rem; }
.ci-value { font-size: 0.95rem; color: var(--color-ink-mid); }
.ci-link { transition: color 0.2s; }
.ci-link:hover { color: var(--color-primary); }
.contact-booking-card { margin-top: var(--space-sm); }
.booking-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  background: var(--color-surface-inset);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
}
.booking-notice i { color: var(--color-primary); }
.contact-form-card { border-radius: var(--radius-lg); padding: var(--space-xl); }
.contact-form-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}


.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); margin-bottom: var(--space-sm); }
.form-field { margin-bottom: var(--space-sm); }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink-mid);
  margin-bottom: 0.4rem;
}
.form-required { color: var(--color-primary); }
.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  min-height: 44px;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(28,63,140,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-privacy { display: flex; align-items: flex-start; gap: 0.6rem; }
.form-checkbox-label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.form-checkbox {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox-text { font-size: 0.85rem; color: var(--color-ink-muted); line-height: 1.5; }
.form-link { color: var(--color-primary); text-decoration: underline; }
.form-actions { margin-top: var(--space-md); }
.form-submit { width: 100%; justify-content: center; }


.section-map { background: var(--color-surface); }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border-light);
  margin-top: var(--space-md);
}

/* ============================================================
   THANKS PAGE
   ============================================================ */
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-md) var(--space-2xl);
  background: var(--gradient-hero);
}
.thanks-container {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  text-align: center;
}
.thanks-quote-card {
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.thanks-quote-mark {
  font-family: var(--font-head);
  font-size: 6rem;
  color: rgba(14,165,233,0.4);
  line-height: 0.5;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}
.thanks-quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  font-style: normal;
  padding-top: 1.5rem;
}
.thanks-quote-source {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  font-style: normal;
}
.thanks-message { color: #fff; }
.thanks-icon { font-size: 3rem; color: var(--color-accent); margin-bottom: var(--space-sm); }
.thanks-title { color: #fff; margin-bottom: var(--space-sm); }
.thanks-body { color: rgba(255,255,255,0.75); margin-bottom: var(--space-lg); }
.thanks-home-link { }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-main { flex: 1; padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-2xl); }
.legal-container { max-width: 860px; }
.legal-header { margin-bottom: var(--space-xl); border-bottom: 2px solid var(--color-border-light); padding-bottom: var(--space-lg); }
.legal-title { margin-bottom: 0.4rem; }
.legal-date { }
.legal-content { display: flex; flex-direction: column; gap: var(--space-md); }
.legal-h2 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-ink);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}
.legal-h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink-mid);
  margin-top: var(--space-sm);
}
.legal-list {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-list li { font-size: 0.95rem; color: var(--color-ink-mid); line-height: 1.6; }
.legal-address { line-height: 1.8; color: var(--color-ink-mid); }
.legal-link { color: var(--color-primary); text-decoration: underline; transition: color 0.2s; }
.legal-link:hover { color: var(--color-primary-dark); }
.legal-intro { font-size: 1.05rem; border-left: 4px solid var(--color-accent); padding-left: 1rem; }
.legal-box {
  background: var(--color-surface-inset);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--color-border);
}
.legal-section { border-top: 1px solid var(--color-border-light); padding-top: var(--space-sm); }
.legal-section:first-child { border-top: none; }
.legal-table-wrap { overflow-x: auto; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.legal-table th, .legal-table td {
  padding: 0.65rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-ink-mid);
  vertical-align: top;
}
.legal-table th {
  background: var(--color-surface-inset);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--color-ink);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.impressum-table td:first-child {
  font-weight: 600;
  color: var(--color-ink);
  width: 240px;
  white-space: nowrap;
}
code {
  font-family: monospace;
  background: var(--color-surface-inset);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--color-primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.7);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
  text-decoration: none;
}
.footer-logo { width: 28px; height: 28px; filter: brightness(0) invert(1); }
.footer-tagline { display: block; margin-bottom: var(--space-sm); }
.footer-address { line-height: 1.8; }
.footer-address a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-address a:hover { color: var(--color-accent); }
.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-sm);
}
.footer-nav-col nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-link:hover { color: #fff; transform: translateX(3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-disclaimer { color: rgba(255,255,255,0.3); font-size: 0.75rem; }

/* ============================================================
   COOKIE CONSENT — NOTIFICATION BELL
   ============================================================ */
.cookie-bell-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient-cta);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: var(--shadow-xl);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cookie-bell-btn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(28,63,140,0.4); }
.cookie-bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  transition: opacity 0.3s ease;
}
.cookie-bell-badge.hidden { opacity: 0; pointer-events: none; }

.cookie-panel {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 9998;
  width: 360px;
  max-width: calc(100vw - 48px);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.cookie-panel-header {
  background: var(--gradient-cta);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}
.cookie-panel-header i { font-size: 1.1rem; }
.cookie-panel-header h3 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; }
.cookie-panel-body { padding: 1.25rem; }
.cookie-panel-body p { font-size: 0.85rem; color: var(--color-ink-muted); line-height: 1.5; margin-bottom: 1rem; }
.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border-light);
}
.cookie-toggle-row:last-of-type { border-bottom: none; }
.cookie-toggle-label { font-size: 0.88rem; font-weight: 600; color: var(--color-ink-mid); }
.cookie-toggle-sub { font-size: 0.75rem; color: var(--color-ink-faint); display: block; }
.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-track {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.25s;
}
.cookie-toggle input:checked + .cookie-toggle-track { background: var(--color-primary); }
.cookie-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
}
.cookie-toggle input:checked + .cookie-toggle-track::after { transform: translateX(18px); }
.cookie-toggle input:disabled + .cookie-toggle-track { opacity: 0.5; cursor: not-allowed; }
.cookie-panel-actions { display: flex; gap: 0.5rem; margin-top: 1.1rem; }
.cookie-panel-actions .action-primary,
.cookie-panel-actions .action-ghost { flex: 1; justify-content: center; padding: 0.6rem 1rem; font-size: 0.85rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .comparison-cards,
  .preise-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .comparison-card--featured,
  .preis-card--featured {
    transform: none;
  }
  .feature-full-inner { grid-template-columns: 1fr; }
  .feature-full-image { min-height: 300px; }
  .feature-full-image .feature-img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --space-2xl: 4rem; --space-3xl: 5rem; }

  .nav-tabs { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile-panel { display: flex; }

  .hero-content-card { padding: var(--space-lg) var(--space-md); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { justify-content: center; }

  .abende-grid { grid-template-columns: 1fr; }
  .grundsaetze-grid { grid-template-columns: 1fr; }
  .vermieter-grid { grid-template-columns: 1fr; }
  .zwei-spalten { grid-template-columns: 1fr; }
  .zwei-spalten--reverse .zwei-spalten-content { order: 1; }
  .zwei-spalten--reverse .zwei-spalten-image { order: 2; }
  .feature-img { height: 260px; }
  .fw-img { height: 260px; }

  .fuer-wen-inner { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions a { justify-content: center; }

  .hinweis-box { flex-direction: column; }

  .legal-table th:nth-child(3),
  .legal-table td:nth-child(3),
  .legal-table th:nth-child(4),
  .legal-table td:nth-child(4) { display: none; }
  .impressum-table td:first-child { width: auto; white-space: normal; }
}

@media (max-width: 480px) {
  .hero-content-card { padding: var(--space-md); }
  .container-grid { padding: 0 var(--space-sm); }
  .space-section { padding: var(--space-xl) 0; }
  .cookie-panel { right: 12px; left: 12px; width: auto; bottom: 80px; }
  .cookie-bell-btn { bottom: 16px; right: 16px; }
}