/*
 * ═══════════════════════════════════════════════════════════════
 *  DIGITALE BAUKOMMUNIKATION – STATE-OF-THE-ART DESIGN SYSTEM
 * ═══════════════════════════════════════════════════════════════
 */

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --primary:         #009678;
  --primary-dark:    #007A61;
  --primary-light:   #CCEDE6;
  --primary-glow:    rgba(0, 150, 120, 0.25);
  
  --slate-900:       #0F172A;
  --slate-800:       #1E293B;
  --slate-700:       #334155;
  --slate-600:       #475569;
  --slate-500:       #64748B;
  --slate-300:       #CBD5E1;
  --slate-200:       #E2E8F0;
  --slate-100:       #F1F5F9;
  --slate-50:        #F8FAFC;

  --white:           #FFFFFF;
  --text:            #0F172A;
  --muted:           #64748B;
  --bg:              #F8FAFC;
  --accent:          #F9C8C8;

  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       20px;
  --radius-xl:       28px;

  --shadow-sm:       0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md:       0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.04);
  --shadow-lg:       0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.05);
  --shadow-glow:     0 8px 30px rgba(0, 150, 120, 0.25);

  --font-sans:       'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:      0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* ─── SCROLL ANIMATIONEN ─── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════════════════════════
   NAVIGATION (Sticky Glassmorphism)
   ═══════════════════════════════════════════════════════════════ */
.nav-glass {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: all var(--transition);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  height: 42px;
  width: 42px;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0, 150, 120, 0.15);
  transition: transform var(--transition);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-org-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.2px;
}

.nav-subtitle {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.nav-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 150, 120, 0.2);
  box-shadow: 0 2px 8px rgba(0, 150, 120, 0.1);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 150, 120, 0.7);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 150, 120, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(0, 150, 120, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 150, 120, 0);
  }
}


/* ═══════════════════════════════════════════════════════════════
   HERO SEKTION (Mesh Backdrop & Glassmorphic Cards)
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, #0F172A 0%, #1E293B 60%, #0F172A 100%);
  color: var(--white);
  padding: 64px 24px 80px;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 150, 120, 0.35) 0%, rgba(15, 23, 42, 0) 70%);
  pointer-events: none;
  filter: blur(40px);
}

.hero-container {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-header-box {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--primary-light);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.8px;
  background: linear-gradient(180deg, #FFFFFF 0%, #E2E8F0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 17px;
  color: #94A3B8;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Hero Quick Stats */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.stat-chip {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition), border-color var(--transition);
}

.stat-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 150, 120, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.stat-icon {
  font-size: 24px;
  line-height: 1;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 12px;
  color: #94A3B8;
}

/* Progress Tracker Card */
.progress-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.progress-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.progress-status-text {
  font-size: 13px;
  color: var(--primary-light);
  font-weight: 600;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
}

@media (max-width: 768px) {
  .progress-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

@media (max-width: 768px) {
  .progress-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
}

.progress-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  z-index: 2;
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .progress-step-icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

.progress-step.completed .progress-step-icon {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 0 16px var(--primary-glow);
}

.progress-step.active .progress-step-icon {
  background: var(--white);
  color: var(--slate-900);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  border: 2px solid var(--primary);
}

.progress-step.pending .progress-step-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.progress-step-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.progress-step.pending .progress-step-name {
  color: #94A3B8;
}

.progress-step-date {
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════════
   ALERT BANNER
   ═══════════════════════════════════════════════════════════════ */
.alert-wrapper {
  max-width: 1080px;
  margin: -32px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.alert-banner {
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--primary);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.alert-icon-box {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.alert-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.alert-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}


/* ═══════════════════════════════════════════════════════════════
   MAIN CONTAINER & SEKTIONEN
   ═══════════════════════════════════════════════════════════════ */
.main-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px 90px;
}

.content-section {
  margin-bottom: 64px;
}

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

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-header h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.5px;
}

.section-subtext {
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
}


/* ═══════════════════════════════════════════════════════════════
   TIMELINE (NEWSFEED)
   ═══════════════════════════════════════════════════════════════ */
.newsfeed-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.newsfeed-timeline::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary) 0%, rgba(0, 150, 120, 0.15) 100%);
  border-radius: 3px;
}

.newsfeed-item {
  position: relative;
  padding-left: 56px;
}

.newsfeed-dot-glow {
  position: absolute;
  left: 14px;
  top: 24px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--white);
  border: 4px solid var(--primary);
  box-shadow: 0 0 10px rgba(0, 150, 120, 0.4);
  z-index: 2;
  transition: transform var(--transition), background var(--transition);
}

.newsfeed-item:hover .newsfeed-dot-glow {
  transform: scale(1.25);
  background: var(--primary);
}

.newsfeed-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  transition: all var(--transition);
}

.newsfeed-item:hover .newsfeed-card {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(0, 150, 120, 0.3);
}

.newsfeed-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.newsfeed-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.newsfeed-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.newsfeed-tag.update {
  background: #DCFCE7;
  color: #15803D;
}

.newsfeed-tag.planung {
  background: #FEF9C3;
  color: #A16207;
}

.newsfeed-tag.sperrung {
  background: #FEE2E2;
  color: #B91C1C;
}

.newsfeed-tag.meilenstein {
  background: #DBEAFE;
  color: #1D4ED8;
}

.newsfeed-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.newsfeed-card p {
  font-size: 14.5px;
  color: var(--slate-600);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════════
   INTRO CARD (Hintergrund)
   ═══════════════════════════════════════════════════════════════ */
.glass-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
}

.intro-card p {
  margin-bottom: 16px;
  font-size: 15.5px;
  color: var(--slate-700);
  line-height: 1.7;
}

.intro-card p:last-child {
  margin-bottom: 0;
}

.highlight {
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 600;
}


/* ═══════════════════════════════════════════════════════════════
   MEASURES GRID (Baumaßnahmen)
   ═══════════════════════════════════════════════════════════════ */
.measures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 150, 120, 0.3);
}

.step-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #E6F7F3 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 150, 120, 0.15);
}

.step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════════
   IMPACTS GRID (Auswirkungen)
   ═══════════════════════════════════════════════════════════════ */
.impacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.impact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  border-top: 4px solid var(--primary);
  transition: all var(--transition);
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.impact-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.impact-icon {
  font-size: 24px;
}

.impact-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
}

.impact-list {
  list-style: none;
}

.impact-list li {
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.impact-list li::before {
  content: '•';
  color: var(--primary);
  font-size: 20px;
  position: absolute;
  left: 6px;
  top: -2px;
}


/* ═══════════════════════════════════════════════════════════════
   PROPERTY BANNER (Grundstückshinweis)
   ═══════════════════════════════════════════════════════════════ */
.property-banner {
  background: linear-gradient(135deg, var(--slate-900) 0%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  color: var(--white);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.property-banner::after {
  content: '';
  position: absolute;
  right: -50px; bottom: -50px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,150,120,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.property-banner .icon {
  font-size: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.property-banner h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--white);
}

.property-banner p {
  font-size: 14.5px;
  color: #CBD5E1;
  line-height: 1.7;
}

.property-banner p + p {
  margin-top: 10px;
}


/* ═══════════════════════════════════════════════════════════════
   WHATSAPP CTA CARD
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-card {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 50%, #25D366 100%);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.22);
  position: relative;
  overflow: hidden;
}

.whatsapp-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

@media (max-width: 640px) {
  .whatsapp-inner {
    flex-direction: column;
  }
}

.whatsapp-icon-wrap {
  width: 68px;
  height: 68px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-icon-wrap svg {
  width: 38px;
  height: 38px;
  fill: white;
}

.whatsapp-content {
  flex: 1;
}

.whatsapp-content h3 {
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.whatsapp-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Checkbox Styles */
.dsgvo-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.dsgvo-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
  border-radius: 4px;
}

.dsgvo-check label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  cursor: pointer;
}

.dsgvo-check label a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #075E54;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  color: #075E54;
}

.whatsapp-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}

.whatsapp-btn svg {
  width: 22px;
  height: 22px;
  fill: #25D366;
}


/* ═══════════════════════════════════════════════════════════════
   E-MAIL NEWSLETTER CARD
   ═══════════════════════════════════════════════════════════════ */
.newsletter-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
}

.newsletter-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.newsletter-icon-box {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.newsletter-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.newsletter-header p {
  font-size: 14.5px;
  color: var(--muted);
}

.newsletter-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 540px) {
  .newsletter-input-group {
    flex-direction: column;
  }
}

.newsletter-input-group input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition);
  background: var(--slate-50);
}

.newsletter-input-group input[type="email"]:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.newsletter-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 16px var(--primary-glow);
  white-space: nowrap;
}

.newsletter-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.newsletter-dsgvo label {
  color: var(--slate-600);
}

.newsletter-dsgvo label a {
  color: var(--primary);
}

.newsletter-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--slate-100);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--slate-600);
  margin-top: 16px;
}

.newsletter-success {
  display: none;
  background: #DCFCE7;
  color: #15803D;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 15px;
  border: 1px solid #BBF7D0;
}

.newsletter-success.show {
  display: block;
}


/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer-modern {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand-area {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.footer-text {
  display: flex;
  flex-direction: column;
}

.footer-text strong {
  color: var(--white);
  font-size: 15px;
}

.footer-text span {
  font-size: 13px;
  color: var(--slate-500);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--slate-300);
  font-size: 14px;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-copyright {
  font-size: 13px;
  color: var(--slate-500);
}


/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER (Floating Pill)
   ═══════════════════════════════════════════════════════════════ */
.cookie-banner-floating {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 999;
  width: calc(100% - 48px);
  max-width: 680px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.cookie-banner-floating.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-glass-card {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 640px) {
  .cookie-glass-card {
    flex-direction: column;
    align-items: stretch;
  }
}

.cookie-content {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cookie-icon {
  font-size: 24px;
}

.cookie-text strong {
  color: var(--white);
  font-size: 14px;
  display: block;
}

.cookie-text p {
  color: #94A3B8;
  font-size: 12.5px;
  line-height: 1.4;
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 18px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn.primary {
  background: var(--primary);
  color: white;
}

.cookie-btn.primary:hover {
  background: var(--primary-dark);
}

.cookie-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.cookie-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}


/* ─── ANIMATION HELPER ─── */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
