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

:root {
  --red:        #ff5252;
  --red-dark:   #e03e3e;
  --red-light:  #fff0f0;
  --bg:         #f2f2f2;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --text-soft:  #555555;
  --text-muted: #888888;
  --border:     #e0e0e0;
  --shadow:     0 2px 16px rgba(0,0,0,0.07);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.11);
  --radius:     10px;
  --max-w:      1120px;
  --font:       'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Staggered grid animations */
.problem-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.problem-grid .reveal:nth-child(2) { transition-delay: 150ms; }
.problem-grid .reveal:nth-child(3) { transition-delay: 300ms; }

.webinar-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.webinar-grid .reveal:nth-child(2) { transition-delay: 120ms; }
.webinar-grid .reveal:nth-child(3) { transition-delay: 240ms; }
.webinar-grid .reveal:nth-child(4) { transition-delay: 360ms; }
.webinar-grid .reveal:nth-child(5) { transition-delay: 480ms; }
.webinar-grid .reveal:nth-child(6) { transition-delay: 600ms; }
.webinar-grid .reveal:nth-child(7) { transition-delay: 720ms; }

.vorort-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.vorort-grid .reveal:nth-child(2) { transition-delay: 150ms; }

.zielgruppen-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.zielgruppen-grid .reveal:nth-child(2) { transition-delay: 200ms; }

.about-right .reveal:nth-child(1) { transition-delay: 0ms; }
.about-right .reveal:nth-child(2) { transition-delay: 150ms; }
.about-right .reveal:nth-child(3) { transition-delay: 300ms; }

.header-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.header-grid .reveal:nth-child(2) { transition-delay: 200ms; }

.smart-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.smart-grid .reveal:nth-child(2) { transition-delay: 100ms; }
.smart-grid .reveal:nth-child(3) { transition-delay: 200ms; }
.smart-grid .reveal:nth-child(4) { transition-delay: 300ms; }
.smart-grid .reveal:nth-child(5) { transition-delay: 400ms; }
.smart-grid .reveal:nth-child(6) { transition-delay: 500ms; }

.pricing-grid .reveal:nth-child(1) { transition-delay: 0ms; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 200ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .problem-grid .reveal, .webinar-grid .reveal, .vorort-grid .reveal, .zielgruppen-grid .reveal, .about-right .reveal, .header-grid .reveal, .smart-grid .reveal, .pricing-grid .reveal { transition-delay: 0ms !important; }
}

/* ─── NAV ─── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--red);
  width: 0%;
  transition: width 0.1s ease-out;
  z-index: 100;
  box-shadow: 0 0 12px var(--red), 0 0 4px var(--red);
}

.main-nav .container {
  width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo span { color: var(--red); }

.nav-cta {
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); }
.nav-cta:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* ─── HERO ─── */
#hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background: url('img/hero.webp') no-repeat center center;
  background-size: cover;
  z-index: 0;
  will-change: transform;
  pointer-events: none;
  animation: heroFadeIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-wave path {
  fill: var(--white);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 56px 48px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 640px) {
  #hero {
    padding: 80px 0 60px;
  }
  .hero-content {
    padding: 36px 24px;
    border-radius: 16px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.btn-outline {
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 7px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }
.btn-outline:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

.btn-disabled {
  background: var(--border);
  color: var(--text-muted);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 7px;
  border: none;
  cursor: not-allowed;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

/* ─── SECTION BASE ─── */
section { padding: 80px 0; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 560px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ─── PROBLEM ─── */
#problem { background: var(--bg); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.problem-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.problem-icon svg { color: var(--red); }

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.problem-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ─── LÖSUNG ─── */
#loesung { background: var(--white); }

.loesung-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.loesung-text {
  width: 100%;
}

.loesung-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  order: -1;
}

.loesung-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.loesung-img:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

@media (min-width: 900px) {
  .loesung-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
  }
  .loesung-image-wrapper {
    order: 0;
  }
}

.loesung-text p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-top: 24px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}
@media (max-width: 600px) {
  .feature-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ─── ZIELGRUPPEN ─── */
#zielgruppen { background: var(--bg); }

.zg-banner-wrapper {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 40px;
}

.zg-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.zg-banner-wrapper:hover .zg-banner-img {
  transform: scale(1.05);
  filter: saturate(1.1) brightness(1.02);
}

@media (max-width: 480px) {
  .zg-banner-wrapper {
    height: 200px;
    margin-bottom: 24px;
  }
}

.zielgruppen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 640px) {
  .zielgruppen-grid { grid-template-columns: 1fr; }
}

.zg-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.zg-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.zg-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.zg-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.zg-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.zg-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.zg-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
}
.zg-list li svg { flex-shrink: 0; color: var(--red); }

.zg-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  cursor: pointer;
  transition: gap 0.2s;
}
.zg-cta:hover { gap: 11px; }
.zg-cta:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 3px; }



/* ─── CTA-BAND ─── */
#cta-band {
  background: var(--text);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

#cta-band .section-label { color: rgba(255,82,82,0.9); }
#cta-band .section-title { color: var(--white); }
#cta-band .section-sub {
  color: rgba(255,255,255,0.65);
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.btn-white {
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-white:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 7px;
  border: 2px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--white); transform: translateY(-1px); }
.btn-ghost:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

/* ─── WEBINARE ─── */
#webinare {
  padding: 80px 0;
  background: var(--white);
}

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.webinar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.webinar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.webinar-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.badge-vereine {
  background: var(--red-light);
  color: var(--red);
}

.badge-sozialwirtschaft {
  background: #ffebee;
  color: #c62828;
}

.webinar-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.webinar-topic {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--text);
  flex-grow: 1;
}

.webinar-details {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.webinar-details li {
  margin-bottom: 8px;
}

.webinar-details li:last-child {
  margin-bottom: 0;
}

.webinar-btn {
  text-align: center;
  justify-content: center;
  font-size: 0.9rem;
  padding: 12px 20px;
}

/* ─── FOOTER ─── */
footer {
  background: #eaeaea;
  color: var(--text-soft);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.footer-logo span { color: var(--red); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-links a:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

.footer-copy {
  font-size: 0.75rem;
  width: 100%;
}

/* ─── TABS ─── */
.tab-container {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
}
.tab-btn {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--text-soft);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 8px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -2px;
  position: relative;
}
.tab-btn:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: var(--border);
  pointer-events: none;
}
.tab-btn:hover {
  color: var(--red);
  border-color: rgba(255, 82, 82, 0.3);
}
.tab-btn.active {
  color: var(--red);
  border-color: var(--red);
}
.tab-icon {
  transition: transform 0.25s ease;
}
.tab-btn:hover .tab-icon {
  transform: translateY(-2px);
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
  animation: tabFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── VOR ORT GRID & CARDS ─── */
.vorort-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .vorort-grid {
    grid-template-columns: 360px 1fr;
    grid-template-rows: auto auto;
    align-items: stretch;
  }
  .vorort-image-card {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    min-height: 100%;
  }
  .vorort-grid > .vorort-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .vorort-grid > .vorort-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }
}
.vorort-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.vorort-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}
.vorort-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--red-light);
  color: var(--red);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.vorort-badge.badge-planung {
  background: #f2f2f2;
  color: var(--text-soft);
}
.vorort-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.vorort-topic {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--text);
  flex-grow: 1;
}
.vorort-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 20px;
}
.vorort-details {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.vorort-details li {
  margin-bottom: 8px;
}
.vorort-details li:last-child {
  margin-bottom: 0;
}

.vorort-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  margin: 20px 0 8px;
  letter-spacing: 0.03em;
}
.vorort-highlights, .vorort-speakers {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 0.875rem;
  color: var(--text-soft);
}
.vorort-highlights li, .vorort-speakers li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  line-height: 1.5;
}
.vorort-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.vorort-speakers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 24px;
}
.speaker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.speaker-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.speaker-item:hover .speaker-img {
  transform: scale(1.1) rotate(3deg);
  border-color: var(--red);
  box-shadow: 0 4px 12px rgba(255, 82, 82, 0.25);
}
.speaker-info {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.speaker-info strong {
  font-size: 0.95rem;
  color: var(--text);
}
.speaker-info span {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 2px;
}
/* ─── BENTO GRID & GLASSMORPHISM ─── */
.webinar-image-card, .vorort-image-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 0 !important;
  border-left: none !important;
  display: flex;
  align-items: flex-end;
}

.webinar-bg-img, .vorort-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}

.vorort-bg-mobile {
  display: none;
}

@media (max-width: 899px) {
  .vorort-bg-desktop {
    display: none;
  }
  .vorort-bg-mobile {
    display: block;
  }
}

.webinar-image-card::before, .vorort-image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}

.webinar-image-card:hover::before, .vorort-image-card:hover::before {
  opacity: 1;
}

.webinar-image-card:hover .webinar-bg-img,
.vorort-image-card:hover .vorort-bg-img {
  transform: scale(1.08);
  filter: brightness(1.05) contrast(1.05);
}

.glass-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
}

.glass-overlay h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--white) !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.glass-overlay p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
  .webinar-image-card {
    grid-column: span 2;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  section { padding: 56px 0; }
  #hero { padding: 64px 0 56px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn-white,
  .cta-actions .btn-ghost { width: 100%; justify-content: center; }
}

/* ─── SCROLL ANIMATIONS ─── */
@keyframes scroll-fade-in-scale {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.scroll-fade-in-scale {
  animation-name: scroll-fade-in-scale;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
  animation-fill-mode: both;
  animation-duration: auto;
}

/* ─── ÜBER UNS (MODERNIZED) ─── */
#ueber-uns {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.about-intro {
  font-size: 1.15rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 16px 0 32px;
}
.about-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-links .btn-primary,
.about-links .btn-outline {
  width: 100%;
  justify-content: center;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.about-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.about-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--red-light);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-card-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.about-card-text p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}
@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
  }
  .about-left {
    position: sticky;
    top: 100px;
  }
}

/* ─── FLOATING LIVE EVENT WIDGET ─── */
.floating-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 320px;
  background: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid transparent;
  background-image: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), 
                    linear-gradient(135deg, var(--red) 0%, #ff8a8a 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 82, 82, 0.15);
  color: var(--white);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-widget.visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.widget-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px;
}

.widget-close:hover {
  color: var(--white);
}

.widget-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: rgba(255, 82, 82, 0.15);
  color: var(--red);
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
  letter-spacing: 0.05em;
}

.widget-dot {
  width: 6px;
  height: 6px;
  background-color: var(--red);
  border-radius: 50%;
  animation: pulseDot 1.5s infinite alternate;
}

@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.5; box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7); }
  100% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px 3px rgba(255, 82, 82, 0.3); }
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.widget-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
  margin: 0;
}

.widget-btn {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.widget-btn:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.widget-btn svg {
  transition: transform 0.2s;
}

.widget-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .floating-widget {
    bottom: 16px;
    right: 16px;
    width: calc(100% - 32px);
    padding: 20px;
  }
}

/* ─── WEBINAR CALLOUT ─── */
.webinar-callout {
  margin-top: 16px;
  font-size: 0.825rem;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.45;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
}
.webinar-callout a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  display: inline-block;
  margin-top: 2px;
  transition: color 0.2s;
}
.webinar-callout a:hover {
  color: var(--red-dark);
}


